/*!*************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/components/AboutUspage/about-us.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************/
.main-banner.mobile-banner.about-us {
  background-image: url(/assets/images/common-img/about-us-bg.jpg);
}
.top-banner-opacity {
  background: rgba(0, 0, 10, 0.55);
}
.main-banner p a {
  color: #ffffff;
  text-decoration: underline;
}
.main-banner .circle-img img {
  filter: brightness(2.5);
}
.main-banner.mobile-banner .left-text {
  margin-bottom: 0;
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 0;
}
.main-banner h1 .fs-20 {
  font-size: clamp(16px, 4vw, 22px);
  line-height: clamp(24px, 4vw, 32px);
  margin-bottom: 8px;
  display: inline-block;
}

.main-banner .left-text .fs-20 {
  font-size: clamp(16px, 4vw, 22px);
  line-height: clamp(24px, 4vw, 32px);
  margin-bottom: 8px;
  display: inline-block;
  color: #ffffff;
}
.main-banner.bg_gradient {
  background: linear-gradient(180deg, #ab8736 0%, #8b6b28 100%);
}
.circle-listing li {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.circle-listing li p.com-para {
  font-weight: 600;
}
.directors-section {
  background-color: #ab8736;
}

.directors-section h2,
.directors-section p,
.directors-section h3,
.directors-section a {
  color: white;
}

.directors-section h3 {
  font-size: 40px;
}

.directors-section .divider {
  width: 1px;
  max-width: 1px;
  background-color: #ffffff;
  height: 70px;
  margin: 0px;
  padding: 0px;
}

/* Hero Section Styles */
.hero-title {
  font-size: clamp(28px, 5vw, 48px);
  line-height: clamp(36px, 5.5vw, 56px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: clamp(24px, 3vw, 28px);
  color: #ffffff;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Fade in sections */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Value Cards */
.value-card {
  background: linear-gradient(145deg, #ffffff, #f5efe3);
  border-radius: 16px;
  padding: 32px 24px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #ede4d3;
  animation: fadeInUp 0.6s ease-out backwards;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(171, 135, 54, 0.25);
  border-color: #ab8736;
}

.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ab8736, #8b6b28);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ffffff;
  animation: scaleIn 0.5s ease-out 0.3s backwards;
}

.value-title {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  color: #8b6b28;
  margin-bottom: 16px;
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: DM Sans, sans-serif; */
}

.value-text {
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 1.6;
  color: #495057;
  margin: 0;
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: DM Sans, sans-serif; */
}

/* Service Cards */
.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  animation: fadeInUp 0.5s ease-out backwards;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(171, 135, 54, 0.2);
  border-color: #ab8736;
}

.service-card .circle-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ab8736, #8b6b28);
  border-radius: 50%;
  padding: 8px;
}

.service-card .circle-img img {
  filter: brightness(0) invert(1);
}

.service-name {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
  color: #8b6b28;
  margin: 0;
  line-height: 1.4;
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: DM Sans, sans-serif; */
}

/* Intro and Summary Text */
.intro-text,
.summary-content {
  max-width: 1000px;
  margin: 0 auto;
}

.lead-text {
  font-size: clamp(17px, 2vw, 20px);
  line-height: clamp(28px, 3vw, 32px);
  color: #495057;
  margin-bottom: 24px;
}

.mission-text {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: clamp(28px, 3.2vw, 34px);
  font-weight: 600;
  color: #8b6b28;
}

.summary-text {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: clamp(26px, 2.8vw, 30px);
  color: #495057;
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: DM Sans, sans-serif; */
}

/* Background Sections */
.why-choose-section {
  background: #f5efe3;
}

.services-section {
  background: #ffffff;
}

.summary-section {
  background: linear-gradient(135deg, #f5efe3 0%, #ede4d3 100%);
}

/* CTA Button */
.cta-button {
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: DM Sans, sans-serif; */
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(135deg, #ab8736, #8b6b28);
  color: #ffffff;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(171, 135, 54, 0.4);
  animation: pulse 2s infinite;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(171, 135, 54, 0.5);
  color: #ffffff;
  text-decoration: none;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive Staggered Animations */
.value-card:nth-child(1) {
  animation-delay: 0.1s;
}

.value-card:nth-child(2) {
  animation-delay: 0.2s;
}

.value-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.15s;
}
.service-card:nth-child(3) {
  animation-delay: 0.2s;
}
.service-card:nth-child(4) {
  animation-delay: 0.25s;
}
.service-card:nth-child(5) {
  animation-delay: 0.3s;
}
.service-card:nth-child(6) {
  animation-delay: 0.35s;
}
.service-card:nth-child(7) {
  animation-delay: 0.4s;
}
.service-card:nth-child(8) {
  animation-delay: 0.45s;
}
.service-card:nth-child(9) {
  animation-delay: 0.5s;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .inner-section .main-banner.mobile-banner .left-text {
    height: 300px;
    padding: 20px;
    padding-top: 90px !important; /* Add padding to account for 70px header + spacing */
  }

  .hero-title {
    font-size: 24px;
    line-height: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .value-card {
    padding: 24px 16px;
  }

  .value-icon {
    width: 56px;
    height: 56px;
  }

  .service-card {
    padding: 20px 12px;
  }

  .cta-button {
    padding: 14px 32px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 575px) {
  .inner-section .main-banner.mobile-banner .left-text {
    height: 280px;
    padding: 15px;
    padding-top: 85px !important; /* Add padding to account for smaller header + spacing */
  }

  .hero-title {
    font-size: 22px;
    line-height: 30px;
    padding-top: 40px;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 22px;
  }

  .value-card {
    padding: 20px 12px;
    margin-bottom: 16px;
  }

  .value-icon {
    width: 48px;
    height: 48px;
  }

  .service-card {
    padding: 16px 10px;
  }

  .service-name {
    font-size: 14px;
  }
}

