/* ========== GLOBAL FIX FOR HORIZONTAL SCROLL ========== */
body {
  overflow-x: hidden;
  width: 100%;
}

html {
  overflow-x: hidden;
  width: 100%;
}

/* ========== ABOUT CONTENT SECTION ========== */

.about-content-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}

.about-content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, #f8f9fa 0%, transparent 100%);
  pointer-events: none;
}

.about-content-section .container {
  position: relative;
  z-index: 1;
}

/* ========== CONTENT WRAPPER ========== */

.content-wrapper {
  padding-right: 30px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 106, 0, 0.1);
  color: #ff6a00;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 106, 0, 0.2);
}

.section-label i {
  font-size: 16px;
}

.content-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 25px;
  line-height: 1.2;
}

.content-text {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Stat Badges */
.stat-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #ff6a00;
  transition: all 0.3s ease;
}

.stat-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.15);
}

.stat-badge i {
  font-size: 32px;
  color: #ff6a00;
}

.stat-badge strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
}

.stat-badge span {
  display: block;
  font-size: 12px;
  color: #666;
  font-weight: 600;
}

/* ========== ABOUT IMAGE ========== */

.about-image-wrapper {
  position: relative;
  height: 450px;
}

.about-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(rgba(255, 106, 0, 0.2), rgba(255, 133, 51, 0.2)),
    url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=800")
      center/cover no-repeat;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  animation: floatImage 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.about-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 106, 0, 0.3) 0%,
    rgba(255, 133, 51, 0.1) 100%
  );
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #ffffff;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge i {
  font-size: 18px;
  color: #ff6a00;
}

.badge-1 {
  top: 30px;
  right: -15px;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 80px;
  left: -20px;
  animation-delay: 1s;
}

.badge-3 {
  bottom: 30px;
  right: 20px;
  animation-delay: 2s;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ========== INFO CARDS (MISSION & VISION) ========== */

.info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid #f0f0f0;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6a00, #ff8533);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.info-card:hover::before {
  transform: scaleX(1);
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 106, 0, 0.2);
}

.card-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6a00, #ff8533);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.3);
  transition: all 0.4s ease;
}

.info-card:hover .card-icon-wrapper {
  transform: rotate(5deg) scale(1.1);
}

.card-icon-wrapper i {
  font-size: 32px;
  color: #ffffff;
}

.card-content {
  position: relative;
  z-index: 1;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.info-card:hover .card-title {
  color: #ff6a00;
}

.card-text {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

.card-decoration {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(255, 106, 0, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transition: all 0.4s ease;
}

.info-card:hover .card-decoration {
  transform: scale(1.3);
  opacity: 0.8;
}

/* ========== HISTORY CARD ========== */

.history-card {
  background: linear-gradient(135deg, #fff8f5 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 106, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.history-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 106, 0, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.history-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6a00, #ff8533);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.3);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.history-icon i {
  font-size: 36px;
  color: #ffffff;
}

.history-content {
  position: relative;
  z-index: 1;
}

.history-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.timeline-decoration {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6a00, #ff8533);
  border-radius: 2px;
  margin-bottom: 20px;
}

.history-text {
  font-size: 16px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 30px;
}

.history-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.history-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #ffffff;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.history-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(255, 106, 0, 0.15);
}

.history-stat i {
  font-size: 18px;
  color: #ff6a00;
}

/* ========== VALUE CARDS ========== */

.section-heading {
  font-size: 38px;
  font-weight: 800;
  color: #1a1a1a;
}

.value-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 106, 0, 0.2);
}

.value-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(
    135deg,
    rgba(255, 106, 0, 0.1),
    rgba(255, 133, 51, 0.15)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, #ff6a00, #ff8533);
  transform: rotate(360deg) scale(1.1);
}

.value-icon i {
  font-size: 28px;
  color: #ff6a00;
  transition: color 0.4s ease;
}

.value-card:hover .value-icon i {
  color: #ffffff;
}

.value-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.value-card:hover .value-title {
  color: #ff6a00;
}

.value-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ========== REVEAL ANIMATIONS ========== */

.revealY {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.revealY.active {
  opacity: 1;
  transform: translateY(0);
}

.revealX {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.revealX.active {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delays */
.col-lg-6:nth-child(2) .revealX {
  transform: translateX(50px);
  transition-delay: 0.2s;
}

.col-lg-3:nth-child(1) .revealY,
.col-md-6:nth-child(1) .revealY {
  transition-delay: 0.1s;
}

.col-lg-3:nth-child(2) .revealY,
.col-md-6:nth-child(2) .revealY {
  transition-delay: 0.2s;
}

.col-lg-3:nth-child(3) .revealY {
  transition-delay: 0.3s;
}

.col-lg-3:nth-child(4) .revealY {
  transition-delay: 0.4s;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
======================================== */

/* Large Desktops (1920px and above) */
@media (min-width: 1920px) {
  .about-content-section {
    padding: 120px 0;
  }

  .about-content-section::before {
    height: 240px;
  }

  .content-wrapper {
    padding-right: 40px;
  }

  .section-label {
    font-size: 14px;
    padding: 9px 22px;
  }

  .section-label i {
    font-size: 18px;
  }

  .content-title {
    font-size: 48px;
    margin-bottom: 30px;
  }

  .content-text {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .stat-badges {
    gap: 25px;
  }

  .stat-badge {
    padding: 24px 30px;
  }

  .stat-badge i {
    font-size: 36px;
  }

  .stat-badge strong {
    font-size: 28px;
  }

  .stat-badge span {
    font-size: 13px;
  }

  .about-image-wrapper {
    height: 520px;
  }

  .floating-badge {
    padding: 14px 24px;
    font-size: 14px;
  }

  .floating-badge i {
    font-size: 20px;
  }

  .info-card {
    padding: 45px;
  }

  .card-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
  }

  .card-icon-wrapper i {
    font-size: 36px;
  }

  .card-title {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .card-text {
    font-size: 16px;
  }

  .history-card {
    padding: 60px;
  }

  .history-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 35px;
  }

  .history-icon i {
    font-size: 40px;
  }

  .history-title {
    font-size: 36px;
    margin-bottom: 25px;
  }

  .timeline-decoration {
    width: 70px;
    height: 5px;
    margin-bottom: 25px;
  }

  .history-text {
    font-size: 17px;
    margin-bottom: 35px;
  }

  .history-stats {
    gap: 35px;
  }

  .history-stat {
    padding: 14px 24px;
    font-size: 15px;
  }

  .history-stat i {
    font-size: 20px;
  }

  .section-heading {
    font-size: 42px;
  }

  .value-card {
    padding: 40px 30px;
  }

  .value-icon {
    width: 75px;
    height: 75px;
    margin-bottom: 25px;
  }

  .value-icon i {
    font-size: 32px;
  }

  .value-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .value-text {
    font-size: 15px;
  }
}

/* Standard Desktop (1200px - 1919px) */
@media (min-width: 1200px) and (max-width: 1919px) {
  .about-content-section {
    padding: 100px 0;
  }
}

/* Tablets and Small Laptops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .about-content-section {
    padding: 80px 0;
  }

  .about-content-section::before {
    height: 180px;
  }

  .content-wrapper {
    padding-right: 20px;
  }

  .section-label {
    font-size: 12px;
    padding: 7px 18px;
  }

  .section-label i {
    font-size: 15px;
  }

  .content-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .content-text {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .stat-badges {
    gap: 15px;
  }

  .stat-badge {
    padding: 18px 22px;
  }

  .stat-badge i {
    font-size: 28px;
  }

  .stat-badge strong {
    font-size: 22px;
  }

  .stat-badge span {
    font-size: 11px;
  }

  .about-image-wrapper {
    height: 400px;
  }

  .floating-badge {
    padding: 10px 18px;
    font-size: 12px;
  }

  .floating-badge i {
    font-size: 16px;
  }

  .info-card {
    padding: 35px 30px;
  }

  .card-icon-wrapper {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }

  .card-icon-wrapper i {
    font-size: 30px;
  }

  .card-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .card-text {
    font-size: 14px;
  }

  .history-card {
    padding: 45px 40px;
  }

  .history-icon {
    width: 75px;
    height: 75px;
    margin-bottom: 25px;
  }

  .history-icon i {
    font-size: 34px;
  }

  .history-title {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .timeline-decoration {
    width: 55px;
    margin-bottom: 18px;
  }

  .history-text {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .history-stats {
    gap: 25px;
  }

  .history-stat {
    padding: 11px 18px;
    font-size: 13px;
  }

  .history-stat i {
    font-size: 16px;
  }

  .section-heading {
    font-size: 34px;
  }

  .value-card {
    padding: 30px 22px;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }

  .value-icon i {
    font-size: 26px;
  }

  .value-title {
    font-size: 17px;
  }

  .value-text {
    font-size: 13px;
  }
}

/* Tablets Portrait (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .revealX {
    transform: translateY(60px) translateX(0) !important;
    opacity: 0;
  }

  .revealX.active {
    transform: translateY(0) translateX(0) !important;
    opacity: 1;
  }

  .about-content-section {
    padding: 70px 0;
  }

  .about-content-section::before {
    height: 150px;
  }

  .content-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .section-label {
    font-size: 12px;
    padding: 7px 16px;
  }

  .section-label i {
    font-size: 14px;
  }

  .content-title {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .content-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .stat-badges {
    gap: 15px;
  }

  .stat-badge {
    padding: 16px 20px;
    flex: 1;
    min-width: 200px;
  }

  .stat-badge i {
    font-size: 28px;
  }

  .stat-badge strong {
    font-size: 20px;
  }

  .about-image-wrapper {
    height: 350px;
  }

  .floating-badge {
    padding: 10px 16px;
    font-size: 12px;
  }

  .floating-badge i {
    font-size: 16px;
  }

  .badge-1 {
    top: 25px;
    right: -12px;
  }

  .badge-2 {
    bottom: 75px;
    left: -15px;
  }

  .badge-3 {
    bottom: 25px;
    right: 18px;
  }

  .info-card {
    padding: 35px 28px;
    margin-bottom: 20px;
  }

  .card-icon-wrapper {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }

  .card-icon-wrapper i {
    font-size: 30px;
  }

  .card-title {
    font-size: 21px;
    margin-bottom: 12px;
  }

  .card-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .history-card {
    padding: 40px 30px;
  }

  .history-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
  }

  .history-icon i {
    font-size: 32px;
  }

  .history-title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .timeline-decoration {
    width: 50px;
    margin-bottom: 16px;
  }

  .history-text {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .history-stats {
    gap: 20px;
  }

  .history-stat {
    padding: 10px 16px;
    font-size: 13px;
  }

  .history-stat i {
    font-size: 16px;
  }

  .section-heading {
    font-size: 32px;
  }

  .value-card {
    padding: 28px 22px;
    margin-bottom: 15px;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .value-icon i {
    font-size: 26px;
  }

  .value-title {
    font-size: 17px;
  }

  .value-text {
    font-size: 13px;
  }
}

/* Mobile Landscape & Large Phones (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .about-content-section {
    padding: 60px 0;
  }

  .about-content-section::before {
    height: 130px;
  }

  .content-wrapper {
    padding-right: 0;
    margin-bottom: 35px;
  }

  .section-label {
    font-size: 11px;
    padding: 7px 14px;
  }

  .section-label i {
    font-size: 13px;
  }

  .content-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .content-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
  }

  .stat-badges {
    flex-direction: column;
    gap: 12px;
  }

  .stat-badge {
    width: 100%;
    padding: 16px 20px;
  }

  .stat-badge i {
    font-size: 28px;
  }

  .stat-badge strong {
    font-size: 20px;
  }

  .about-image-wrapper {
    height: 300px;
    margin-top: 30px;
  }

  .floating-badge {
    padding: 9px 14px;
    font-size: 11px;
  }

  .floating-badge i {
    font-size: 15px;
  }

  .badge-1 {
    top: 20px;
    right: -8px;
  }

  .badge-2 {
    bottom: 70px;
    left: -12px;
  }

  .badge-3 {
    bottom: 20px;
    right: 15px;
  }

  .info-card {
    padding: 30px 24px;
    margin-bottom: 15px;
  }

  .card-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }

  .card-icon-wrapper i {
    font-size: 28px;
  }

  .card-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .card-text {
    font-size: 14px;
  }

  .history-card {
    padding: 35px 25px;
  }

  .history-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }

  .history-icon i {
    font-size: 30px;
  }

  .history-title {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .timeline-decoration {
    width: 45px;
    margin-bottom: 14px;
  }

  .history-text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .history-stats {
    flex-direction: column;
    gap: 12px;
  }

  .history-stat {
    width: 100%;
    padding: 10px 16px;
  }

  .section-heading {
    font-size: 28px;
  }

  .value-card {
    padding: 26px 20px;
  }

  .value-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 15px;
  }

  .value-icon i {
    font-size: 24px;
  }

  .value-title {
    font-size: 16px;
  }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
  .revealX {
    transform: translateY(40px) translateX(0) !important;
    opacity: 0;
  }

  .revealY {
    transform: translateY(40px) !important;
  }

  .about-content-section {
    padding: 50px 0;
  }

  .about-content-section::before {
    height: 120px;
  }

  .content-wrapper {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .section-label {
    font-size: 10px;
    padding: 6px 12px;
    gap: 6px;
  }

  .section-label i {
    font-size: 12px;
  }

  .content-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .content-text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .stat-badges {
    flex-direction: column;
    gap: 10px;
  }

  .stat-badge {
    width: 100%;
    padding: 15px 18px;
    gap: 12px;
  }

  .stat-badge i {
    font-size: 26px;
  }

  .stat-badge strong {
    font-size: 18px;
  }

  .stat-badge span {
    font-size: 11px;
  }

  .about-image-wrapper {
    height: 280px;
    margin-top: 30px;
  }

  .about-img {
    border-radius: 16px;
  }

  .floating-badge {
    padding: 8px 12px;
    font-size: 10px;
    gap: 6px;
  }

  .floating-badge i {
    font-size: 14px;
  }

  .badge-1 {
    top: 15px;
    right: -10px;
  }

  .badge-2 {
    bottom: 60px;
    left: -10px;
  }

  .badge-3 {
    bottom: 15px;
    right: 15px;
  }

  .info-card {
    padding: 28px 22px;
    margin-bottom: 15px;
    border-radius: 16px;
  }

  .card-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
    border-radius: 14px;
  }

  .card-icon-wrapper i {
    font-size: 28px;
  }

  .card-title {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .card-text {
    font-size: 13px;
    line-height: 1.7;
  }

  .history-card {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .history-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
    border-radius: 16px;
  }

  .history-icon i {
    font-size: 30px;
  }

  .history-title {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .timeline-decoration {
    width: 50px;
    height: 3px;
    margin-bottom: 14px;
  }

  .history-text {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .history-stats {
    flex-direction: column;
    gap: 10px;
  }

  .history-stat {
    width: 100%;
    padding: 10px 16px;
    font-size: 12px;
  }

  .history-stat i {
    font-size: 16px;
  }

  .section-heading {
    font-size: 26px;
  }

  .value-card {
    padding: 25px 20px;
    margin-bottom: 15px;
    border-radius: 14px;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .value-icon i {
    font-size: 26px;
  }

  .value-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .value-text {
    font-size: 12px;
    line-height: 1.6;
  }
}

/* Extra Small Devices (up to 375px) */
@media (max-width: 375px) {
  .about-content-section {
    padding: 45px 0;
  }

  .about-content-section::before {
    height: 100px;
  }

  .section-label {
    font-size: 10px;
    padding: 6px 12px;
  }

  .content-title {
    font-size: 22px;
  }

  .content-text {
    font-size: 12px;
  }

  .stat-badge {
    padding: 14px 16px;
  }

  .stat-badge i {
    font-size: 24px;
  }

  .stat-badge strong {
    font-size: 17px;
  }

  .about-image-wrapper {
    height: 260px;
  }

  .floating-badge {
    padding: 7px 10px;
    font-size: 9px;
  }

  .floating-badge i {
    font-size: 12px;
  }

  .info-card {
    padding: 25px 20px;
  }

  .card-icon-wrapper {
    width: 55px;
    height: 55px;
  }

  .card-icon-wrapper i {
    font-size: 26px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-text {
    font-size: 12px;
  }

  .history-card {
    padding: 28px 18px;
  }

  .history-icon {
    width: 60px;
    height: 60px;
  }

  .history-icon i {
    font-size: 28px;
  }

  .history-title {
    font-size: 20px;
  }

  .history-text {
    font-size: 12px;
  }

  .history-stat {
    padding: 9px 14px;
    font-size: 11px;
  }

  .section-heading {
    font-size: 24px;
  }

  .value-card {
    padding: 22px 18px;
  }

  .value-icon {
    width: 55px;
    height: 55px;
  }

  .value-icon i {
    font-size: 24px;
  }

  .value-title {
    font-size: 15px;
  }

  .value-text {
    font-size: 11px;
  }
}

/* Very Small Devices (up to 320px) */
@media (max-width: 320px) {
  .about-content-section {
    padding: 40px 0;
  }

  .section-label {
    font-size: 9px;
    padding: 5px 10px;
  }

  .content-title {
    font-size: 20px;
  }

  .content-text {
    font-size: 11px;
  }

  .stat-badge {
    padding: 12px 14px;
  }

  .stat-badge i {
    font-size: 22px;
  }

  .stat-badge strong {
    font-size: 16px;
  }

  .stat-badge span {
    font-size: 10px;
  }

  .about-image-wrapper {
    height: 240px;
  }

  .floating-badge {
    padding: 6px 9px;
    font-size: 8px;
  }

  .info-card {
    padding: 22px 18px;
  }

  .card-icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .card-icon-wrapper i {
    font-size: 24px;
  }

  .card-title {
    font-size: 17px;
  }

  .card-text {
    font-size: 11px;
  }

  .history-card {
    padding: 25px 16px;
  }

  .history-icon {
    width: 55px;
    height: 55px;
  }

  .history-icon i {
    font-size: 26px;
  }

  .history-title {
    font-size: 18px;
  }

  .timeline-decoration {
    width: 40px;
    height: 3px;
  }

  .history-text {
    font-size: 11px;
  }

  .history-stat {
    padding: 8px 12px;
    font-size: 10px;
  }

  .history-stat i {
    font-size: 14px;
  }

  .section-heading {
    font-size: 22px;
  }

  .value-card {
    padding: 20px 16px;
  }

  .value-icon {
    width: 50px;
    height: 50px;
  }

  .value-icon i {
    font-size: 22px;
  }

  .value-title {
    font-size: 14px;
  }

  .value-text {
    font-size: 11px;
  }
}

/* Landscape Orientation (Mobile) */
@media (max-height: 500px) and (orientation: landscape) {
  .about-content-section {
    padding: 40px 0;
  }

  .about-content-section::before {
    height: 100px;
  }

  .content-wrapper {
    margin-bottom: 25px;
  }

  .content-title {
    font-size: 24px;
  }

  .about-image-wrapper {
    height: 260px;
  }

  .info-card {
    padding: 25px 20px;
  }

  .card-icon-wrapper {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }

  .history-card {
    padding: 30px 25px;
  }

  .history-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .value-card {
    padding: 22px 18px;
  }

  @keyframes floatImage {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }

  @keyframes floatBadge {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .about-content-section {
    padding: 60px 0;
  }

  .content-wrapper {
    padding-right: 15px;
    margin-bottom: 30px;
  }

  .content-title {
    font-size: 30px;
  }

  .about-image-wrapper {
    height: 320px;
  }

  .info-card {
    padding: 30px 25px;
  }

  .history-card {
    padding: 35px 28px;
  }

  .value-card {
    padding: 26px 20px;
  }
}
