/* top header css  */

.top-header-style-custom {
  background-color: #0062a7 !important; /* same red tone as screenshot */
  padding: 10px 0;
}

.top-header-welcome {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.schedule-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

/* Text */
.schedule-call-btn .label {
  position: relative;
  z-index: 2;
}

/* Icons */
.schedule-call-btn .icon-arrow {
  font-size: 18px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.schedule-call-btn .icon-arrow.before {
  opacity: 0;
  transform: translateX(-6px);
}

.schedule-call-btn .icon-arrow.after {
  opacity: 1;
  transform: translateX(0);
}

/* Hover effect */
.schedule-call-btn:hover {
  color: #fff;
  border-color: #fff;
}

.schedule-call-btn:hover .icon-arrow.before {
  opacity: 1;
  transform: translateX(0);
}

.schedule-call-btn:hover .icon-arrow.after {
  opacity: 0;
  transform: translateX(6px);
}

.NotGeneric-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
}

/* //herosection  */

/* /// about icon background  */
.about-area {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
}

/* Content Styles */
.about-content {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s ease forwards;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.sub-title {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 600;
  color: #6366f1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.2s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.about-content h2 {
  font-size: 2.25rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.4s forwards;
  text-align: justify;
  /*word-break: break-all;*/
  letter-spacing: -0.4px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 15px;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.6s forwards;
  text-align: justify;
}

.about-content strong {
  color: #333;
  font-weight: 600;
}

/* Image Grid Styles */
.about-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 20px;
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 0.8s ease 0.3s forwards;
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.image-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.image-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.image-box.large {
  grid-row: span 2;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.image-box:hover img {
  transform: scale(1.05);
}

/* Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  opacity: 0;
  animation: fadeIn 1s ease 0.8s forwards;
}

.stat-icon {
  font-size: 3rem;
  color: #0062a7;
  margin-bottom: 8px;
  display: block;
}

.stat-title {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.stat-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.stat-box:nth-child(1) {
  animation-delay: 1s;
}

.stat-box:nth-child(2) {
  animation-delay: 1.2s;
}

.stat-box:nth-child(3) {
  animation-delay: 1.4s;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/*.stat-description {*/
/*  font-size: 1rem;*/
/*  line-height: 1.6;*/
/*  color: #666;*/
/*  line-height: 1.6;*/
/*  text-align: justify;*/
/*  word-break: break-all;*/
/*}*/

.stat-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  line-height: 1.6;
  text-align: justify;

  text-justify: revert-layer;
  text-justify: inter-word;

  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;

  letter-spacing: 0;
  word-spacing: normal;

  hyphens: auto;
}

/* Remove auto-play animations - they will trigger on scroll */
.about-content,
.sub-title,
.about-content h2,
.about-content p,
.features-text,
.about-image-grid,
.image-box,
.stats-section,
.stat-box,
.stat-icon {
  opacity: 0;
}

/* Content Animation - Fade in from left */
.about-content.animate {
  animation: fadeInLeft 0.8s ease forwards;
}

/* Sub-title Animation */
.about-content.animate .sub-title {
  animation: fadeIn 0.6s ease 0.2s forwards;
}

/* Heading Animation - Fade up */
.about-content.animate h2 {
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

/* Paragraph Animation */
.about-content.animate p {
  animation: fadeIn 0.8s ease 0.6s forwards;
}

/* Features Animation */
.features-text.animate {
  animation: fadeInUp 0.6s ease forwards;
}

.features-text.animate:nth-child(5) {
  animation-delay: 0.2s;
}

.features-text.animate:nth-child(6) {
  animation-delay: 0.4s;
}

.features-text.animate:nth-child(7) {
  animation-delay: 0.6s;
}

/* Button Animation */
.about-content.animate .default-btn {
  animation: fadeIn 0.8s ease 0.8s forwards;
}

/* Image Grid Animation - Fade in from right */
.about-image-grid.animate {
  animation: fadeInRight 0.8s ease forwards;
}

/* Individual Image Box Animations */
.image-box.animate {
  animation: scaleIn 0.6s ease forwards;
}

.image-box.animate:nth-child(1) {
  animation-delay: 0.2s;
}

.image-box.animate:nth-child(2) {
  animation-delay: 0.4s;
}

.image-box.animate:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Stats Section Animation */
.stats-section.animate {
  animation: fadeIn 0.6s ease forwards;
}

/* Individual Stat Box Animations */
.stat-box.animate {
  animation: fadeInUp 0.6s ease forwards;
}

.stat-box.animate:nth-child(1) {
  animation-delay: 0.2s;
}

.stat-box.animate:nth-child(2) {
  animation-delay: 0.4s;
}

.stat-box.animate:nth-child(3) {
  animation-delay: 0.6s;
}

/* Icon Animation inside stat box */
.stat-box.animate .stat-icon {
  animation: iconPop 0.5s ease forwards;
}

.stat-box.animate:nth-child(1) .stat-icon {
  animation-delay: 0.3s;
}

.stat-box.animate:nth-child(2) .stat-icon {
  animation-delay: 0.5s;
}

.stat-box.animate:nth-child(3) .stat-icon {
  animation-delay: 0.7s;
}

@keyframes iconPop {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Initial transform states */
.about-content {
  transform: translateX(-30px);
}

.about-content h2 {
  transform: translateY(20px);
}

.features-text {
  transform: translateY(20px);
}

.about-image-grid {
  transform: translateX(30px);
}

.image-box {
  transform: scale(0.9);
}

.stat-box {
  transform: translateY(20px);
}

.stat-icon {
  transform: scale(0);
}

/* /// about icon background end  */
.single-instructor-member .member-content span {
  font-weight: 400;
}

/* /// core values box height  */

.single-categories-courses-box {
  height: 330px !important;
}
.single-categories-courses-box p {
  color: white !important;
}

/* ///// funfacts  */
/* Wrapper background */

/* Subtle background pattern */
.funfacts-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Individual stat */
.funfacts-custom .single-funfact {
  position: relative;
  text-align: center;
  padding: 20px 25px;
  z-index: 1;
}

/* Icon - centered and consistent */
.funfacts-custom .icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 46px;
}

.funfacts-custom .icon i {
  font-size: 38px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  transition: transform 0.3s ease;
}

.funfacts-custom .single-funfact:hover .icon i {
  transform: scale(1.1);
}

/* Number - consistent sizing and spacing */
.funfacts-custom .single-funfact h3 {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -1px;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Label - improved readability */
.funfacts-custom .single-funfact p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  letter-spacing: 0.3px;
}

/* Add subtle hover effect */
.funfacts-custom .single-funfact {
  transition: transform 0.3s ease;
}

.funfacts-custom .single-funfact:hover {
  transform: translateY(-5px);
}

/* middle cta section  */

.cta-section {
  position: relative;
  background: #0062a7;
  padding: 60px 40px;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-mid-container {
  max-width: 1400px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  background: linear-gradient(to right, #ffffff, #e0f2fe, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
  background-size: 200% auto;
  letter-spacing: -3px;
}

.cta-description {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  max-width: 900px;
  margin: 0 auto;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

/* our mission  */

/* Offer Area Section */
.offer-area {
  padding: 100px 0;
  position: relative;
}
.single-offer-box {
  margin-top: 0 !important;
}

.offer-area .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.offer-area .section-title .sub-title {
  display: inline-block;
  color: #0062a7;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.offer-area .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.offer-area .section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
  line-height: 1.8;
}

/* Single Offer Box */
.single-offer-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  border-top: 3px solid #0062a7;
}

.single-offer-box::before {
  background-color: #0062a7 !important;
}

.single-offer-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 98, 167, 0.25);
  border-top-color: #004d85;
}

.single-offer-box .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: linear-gradient(135deg, #0062a7 0%, #004d85 100%);
  border-radius: 50%;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 98, 167, 0.3);
}

.single-offer-box:hover .icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #0077cc 0%, #0062a7 100%);
  box-shadow: 0 8px 25px rgba(0, 98, 167, 0.4);
}

.single-offer-box .icon i {
  font-size: 40px;
  color: #fff;
  line-height: 80px;
}

.single-offer-box h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #222;
  transition: color 0.3s ease;
}

.single-offer-box:hover h3 {
  color: #ffff;
}

.single-offer-box p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 0;
  font-size: 15px;
}

/* Optional: Add a subtle background pattern */
.offer-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0 !important;
  background: linear-gradient(
    180deg,
    rgba(0, 98, 167, 0.02) 0%,
    rgba(0, 98, 167, 0.05) 100%
  );
  pointer-events: none;
}

.offer-area .container {
  position: relative;
  z-index: 1;
}

/* solutions  */

.team-area {
  background-color: #f3faff;
}

.team-area .member-content span {
  color: #666 !important;
  font-size: 1rem;
  /*word-break: break-all;*/
  text-align: justify;

  text-justify: revert-layer;
  text-justify: inter-word;

  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;

  letter-spacing: 0;
  word-spacing: normal;

  hyphens: auto;
}

.team-area .section-title h2 {
  font-size: 2.25rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 0;
}

.single-instructor-member .member-content h3 a {
  font-size: 1.375rem;
  line-height: 1.4;
  font-weight: 600;
  color: #000 !important;
  letter-spacing: -0.6px;
}

.explore-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 2.5rem auto 0;
  padding: 0.85rem 2.5rem;

  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;

  color: #ffffff;
  background: #0062a7;

  border-radius: 8px;
  text-decoration: none;

  box-shadow: 0 12px 30px rgba(0, 102, 255, 0.25);
  transition: all 0.3s ease-in-out;
}

/* Center button inside row */
.row > .explore-more-btn {
  display: flex;
}

/* Hover effect */
.explore-more-btn:hover {
  background: #0062a7;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 102, 255, 0.35);
  color: white;
}

/* Active / click */
.explore-more-btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.25);
}

.learn-more-btn {
  display: inline-block;
  /* margin-top: 15px; */
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #0062a7;
  border: 2px solid #0062a7;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #0062a7;
  color: #ffffff;
  text-decoration: none !important;
}

/* ///  new choose animation effect */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Initial hidden state */
.animate-on-scroll {
  opacity: 0;
}

/* Animation classes that get applied */
.animate-on-scroll.animated[data-animation="fade-up"] {
  animation: fadeUp 0.8s ease-out forwards;
}

.animate-on-scroll.animated[data-animation="fade-left"] {
  animation: fadeLeft 0.8s ease-out forwards;
}

.animate-on-scroll.animated[data-animation="fade-right"] {
  animation: fadeRight 0.8s ease-out forwards;
}

.animate-on-scroll.animated[data-animation="scale-up"] {
  animation: scaleUp 0.8s ease-out forwards;
}

/* Delay variations */
.animate-on-scroll.animated[data-delay="100"] {
  animation-delay: 0.1s;
}

.animate-on-scroll.animated[data-delay="200"] {
  animation-delay: 0.2s;
}

.animate-on-scroll.animated[data-delay="300"] {
  animation-delay: 0.3s;
}

.animate-on-scroll.animated[data-delay="400"] {
  animation-delay: 0.4s;
}

.animate-on-scroll.animated[data-delay="500"] {
  animation-delay: 0.5s;
}

/* //// funfact  */

.funfacts-area {
  padding: 5rem 0;
}

.single-funfact {
  padding: 2rem 1rem;
}

/* Icon */
.single-funfact .icon i {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: inline-block;
}

/* Number (counter) */
.single-funfact h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

/* Label text */

/* new choose use section  */
.why-choose-us {
  padding: 3rem 0rem;
}

.why-choose-us {
  position: relative;
  background-image: url("./assets/img/index/why/img2.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; /* makes image fit perfectly */
  overflow: hidden;
  z-index: 1;
}

/* Blur + Color Overlay */
.why-choose-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: inherit;
  background-position: inherit;
  background-repeat: inherit;

  filter: blur(8px); /* blur amount */
  transform: scale(1.1); /* avoids blur edges */
  z-index: -2;
}

/* Color overlay */
.why-choose-us::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(20, 40, 80, 0.65),
    rgba(20, 40, 80, 0.65)
  ); /* change color here */
  z-index: -1;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.25rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.1rem;
}

.mission-section {
  display: flex;
  align-items: center;
  margin-bottom: 55px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 30px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background-color: #ffffff13;
}

/* Animated background on hover */
.mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 98, 167, 0.05) 0%,
    rgba(3, 125, 210, 0.08) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
  z-index: 0;
}

.mission-section:hover::before {
  opacity: 1;
}

/* Mission Image Hover */
.mission-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.mission-image:hover {
  transform: translateX(-10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 98, 167, 0.25);
}

.mission-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.95) contrast(1);
}

.mission-image:hover img {
  transform: scale(1.1);
  filter: brightness(1.05) contrast(1.1);
}

/* Image overlay on hover */
.mission-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 98, 167, 0.2) 0%,
    rgba(3, 125, 210, 0.3) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mission-image:hover::after {
  opacity: 1;
}

/* Shine effect on image */
.mission-image::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.8s ease;
  z-index: 2;
  pointer-events: none;
}

.mission-image:hover::before {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}
.mission-content {
  flex: 1;
  background-color: transparent !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.mission-content:hover {
  transform: translateX(10px);
}

/* Icon Hover Effect */
.mission-content i {
  font-size: 4rem;
  color: #21a2ff;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
  filter: drop-shadow(0 5px 15px rgba(33, 162, 255, 0.3));
}

.mission-content:hover i {
  transform: scale(1.2) rotate(360deg);
  color: #0062a7;
  filter: drop-shadow(0 10px 25px rgba(0, 98, 167, 0.5));
}

/* Pulse animation for icon */
@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.mission-content:hover i {
  animation: iconPulse 1.5s ease-in-out infinite;
}

.mission-content h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.mission-content h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #21a2ff, #0062a7);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.mission-content:hover h3::after {
  width: 100%;
}

.mission-content:hover h3 {
  color: #21a2ff;
  transform: translateX(5px);
}

.mission-content p {
  font-size: 1rem;
  color: #d8d8d8;
  line-height: 1.8;
  transition: all 0.3s ease;
}

.vision-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 30px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background-color: #ffffff13;
}

.vision-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 125, 210, 0.08) 0%,
    rgba(0, 98, 167, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
  z-index: 0;
}

.vision-section:hover::before {
  opacity: 1;
}

.vision-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.vision-image:hover {
  transform: translateX(10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 98, 167, 0.25);
}

.vision-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.95) contrast(1);
}

.vision-image:hover img {
  transform: scale(1.1);
  filter: brightness(1.05) contrast(1.1);
}

.vision-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 125, 210, 0.3) 0%,
    rgba(0, 98, 167, 0.2) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vision-image:hover::after {
  opacity: 1;
}

.vision-image::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    -45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: translateX(100%) translateY(-100%) rotate(-45deg);
  transition: transform 0.8s ease;
  z-index: 2;
  pointer-events: none;
}

.vision-image:hover::before {
  transform: translateX(-100%) translateY(100%) rotate(-45deg);
}

.vision-content {
  flex: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.vision-content:hover {
  transform: translateX(-10px);
}

.vision-content i {
  font-size: 4rem;
  color: #21a2ff;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
  filter: drop-shadow(0 5px 15px rgba(33, 162, 255, 0.3));
}

.vision-content:hover i {
  transform: scale(1.2) rotate(-360deg);
  color: #0062a7;
  filter: drop-shadow(0 10px 25px rgba(0, 98, 167, 0.5));
  animation: iconPulse 1.5s ease-in-out infinite;
}

.vision-content h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 20px !important;
  padding-bottom: 10px;
  font-weight: 700;
  border-bottom: 1px solid #eeeeee;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.vision-content h3::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #0062a7, #21a2ff);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.vision-content:hover h3::after {
  width: 100%;
}

.vision-content:hover h3 {
  color: #21a2ff;
  transform: translateX(-5px);
  border-bottom-color: transparent;
}

.vision-content p {
  font-size: 1rem;
  color: #d8d8d8;
  line-height: 1.8;
  transition: all 0.3s ease;
}

.vision-content:hover p {
  color: #ffffff;
  transform: translateX(-5px);
}

.call-icon i,
.service-icon i,
.vision-content i,
.mission-content i {
  font-size: 2.5rem;
  color: #21a2ff;
}

/* Initial hidden states */
.section-header {
  opacity: 0;
  transform: translateY(30px);
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

/* Mission Section - Image from left, Content from right */
.mission-section {
  display: flex;
  align-items: center;
  gap: 40px;
}

.mission-image {
  opacity: 0;
  transform: translateX(-80px) scale(0.9);
}

.mission-image img {
  transform: scale(1.15) rotate(-3deg);
  filter: blur(4px) grayscale(0.3);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-content {
  opacity: 0;
  transform: translateX(80px);
  padding: 0 !important;
}

.mission-content i {
  opacity: 0;
  transform: scale(0) rotate(-180deg);
}

.mission-content h3 {
  opacity: 0;
  transform: translateY(20px);
}

.mission-content p {
  opacity: 0;
  transform: translateY(20px);
}

/* Vision Section - Content from left, Image from right */
.vision-section {
  display: flex;
  align-items: center;
  gap: 40px;
}

.vision-content {
  opacity: 0;
  transform: translateX(-80px);
  padding: 0 !important;
}

.vision-content i {
  opacity: 0;
  transform: scale(0) rotate(180deg);
}

.vision-content h3 {
  opacity: 0;
  transform: translateY(20px);
}

.vision-content p {
  opacity: 0;
  transform: translateY(20px);
  letter-spacing: -0.4px;
}

.vision-image {
  opacity: 0;
  transform: translateX(80px) scale(0.9);
}

.vision-image img {
  transform: scale(1.15) rotate(3deg);
  filter: blur(4px) grayscale(0.3);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === ANIMATED STATES === */

/* Section Header Animation */
.section-header.animate-header {
  animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated underline for heading */
.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #0062a7, #037dd2);
  transform: translateX(-50%);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.section-header.animate-header h2::after {
  width: 100px;
  animation-delay: 0.3s;
}

/* Mission Image Animation */
.mission-image.animate-mission-img {
  animation: slideInLeft 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.2s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.mission-image.animate-mission-img img {
  transform: scale(1) rotate(0);
  filter: blur(0) grayscale(0);
  height: 420px;
}

/* Mission Content Animation */
.mission-content.animate-mission-content {
  animation: slideInRight 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.4s;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mission-content.animate-mission-content i {
  animation: iconSpinIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.6s;
}

@keyframes iconSpinIn {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  60% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.mission-content.animate-mission-content h3 {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.8s;
}

.mission-content.animate-mission-content p {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 1s;
}

/* Vision Content Animation */
.vision-content.animate-vision-content {
  animation: slideInLeft 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.2s;
}

.vision-content.animate-vision-content i {
  animation: iconSpinInReverse 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.4s;
}

@keyframes iconSpinInReverse {
  0% {
    opacity: 0;
    transform: scale(0) rotate(180deg);
  }
  60% {
    transform: scale(1.2) rotate(-10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.vision-content.animate-vision-content h3 {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.6s;
}

.vision-content.animate-vision-content p {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.8s;
}

/* Vision Image Animation */
.vision-image.animate-vision-img {
  animation: slideInRight 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.4s;
}

.vision-image.animate-vision-img img {
  transform: scale(1) rotate(0);
  filter: blur(0) grayscale(0);
  height: 420px;
}

/* Hover Effects */
.mission-section,
.vision-section {
  position: relative;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-section:hover,
.vision-section:hover {
  background: rgba(0, 98, 167, 0.03);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 98, 167, 0.1);
}

.mission-image img,
.vision-image img {
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-section:hover .mission-image img,
.vision-section:hover .vision-image img {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 98, 167, 0.25);
}

.mission-section:hover .mission-content i {
  transform: rotate(360deg) scale(1.1);
}

.vision-section:hover .vision-content i {
  transform: rotate(-360deg) scale(1.1);
}

/* Glow effect on scroll */
@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 98, 167, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(3, 125, 210, 0.4);
  }
}

.mission-section.animate-mission-img,
.vision-section.animate-vision-img {
  animation: glow 2s ease-in-out;
  animation-delay: 1.2s;
}

/* //// why choose us section  */

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.mission-area .container .section-title h2 {
  color: white !important;
  font-weight: 700;
  position: relative;
  display: inline-block;
  background-color: rgba(1, 70, 119, 0.3) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px !important;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0d6efd 0%, #0a58ca 100%);
}

/* brand partner section  */
/* Dark Background */
.partner-area {
  background-color: #c8e8ff;
  padding: 60px 0px;
}

.partner-area h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.25rem;
  line-height: 1.3;
  font-weight: 700;
  color: #000 !important;
  padding: 0 15px;
  letter-spacing: -0.2px;
}

.partner-logos-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.partner-slide {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  width: fit-content;
  transition: transform 0.5s ease-in-out;
}

/* Navigation Buttons */
.partner-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  padding: 0 15px;
}

.partner-nav button {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  flex-shrink: 0;
}

.partner-nav button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.partner-nav button:active {
  transform: scale(0.95);
}

.single-partner-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 8px;
  min-width: 90px;
  height: 80px;
  transition: transform 0.3s ease;
}

.single-partner-logo:hover {
  transform: translateY(-5px);
}

.single-partner-logo img {
  max-width: 130px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.single-partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Service Cards - Improved Version */

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  text-align: left;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;

  /* Initial state - hidden for animation */
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: none;
}

/* Animated state when visible */
.service-card.animate {
  animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  /* After animation completes, enable hover transitions */
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease,
    background 0.3s ease;
}

/* Smooth hover effect - only works after initial animation */
.service-card.animate:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 98, 167, 0.25);
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

/* Animated gradient border on hover */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0062a7, #037dd2, #0062a7);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.animate:hover::before {
  transform: scaleX(1);
  animation: gradientSlide 2s ease infinite;
}

@keyframes gradientSlide {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Icon Improvements */
.service-icon {
  margin-bottom: 6px;
  display: inline-block;
  position: relative;
  opacity: 0;
  transform: scale(0);
}

/* Icon pop animation */
.service-card.animate .service-icon {
  animation: iconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Icon hover effect with background glow */
.service-icon i {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

.service-card.animate:hover .service-icon i {
  transform: scale(1.2) rotate(8deg);
  filter: drop-shadow(0 5px 15px rgba(0, 98, 167, 0.4));
}

/* Text animations */
.service-card h3,
.service-card p {
  opacity: 0;
  transition: all 0.3s ease;
  text-align: center;
}

.service-card.animate h3,
.service-card.animate p {
  animation: fadeIn 0.5s ease-out forwards;
}

.service-card.animate h3 {
  animation-delay: 0.3s;
}

.service-card.animate p {
  animation-delay: 0.4s;
}

/* Text hover effects */
.service-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  line-height: 1.4;
}

.service-card.animate:hover h3 {
  color: #0062a7;
  transform: translateX(5px);
}

.service-card p {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;

  text-align: justify;

  text-justify: revert-layer;
  text-justify: inter-word;

  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;

  letter-spacing: 0;
  word-spacing: normal;

  hyphens: auto;
}

.service-card.animate:hover p {
  color: #555555;
}

/* Staggered animation delays */
.service-cards-wrapper .row .col-lg-3:nth-child(1) .service-card.animate {
  animation-delay: 0s;
}

.service-cards-wrapper .row .col-lg-3:nth-child(2) .service-card.animate {
  animation-delay: 0.15s;
}

.service-cards-wrapper .row .col-lg-3:nth-child(3) .service-card.animate {
  animation-delay: 0.3s;
}

.service-cards-wrapper .row .col-lg-3:nth-child(4) .service-card.animate {
  animation-delay: 0.45s;
}

/* Icon staggered delays */
.service-cards-wrapper
  .row
  .col-lg-3:nth-child(1)
  .service-card.animate
  .service-icon {
  animation-delay: 0.2s;
}

.service-cards-wrapper
  .row
  .col-lg-3:nth-child(2)
  .service-card.animate
  .service-icon {
  animation-delay: 0.35s;
}

.service-cards-wrapper
  .row
  .col-lg-3:nth-child(3)
  .service-card.animate
  .service-icon {
  animation-delay: 0.5s;
}

.service-cards-wrapper
  .row
  .col-lg-3:nth-child(4)
  .service-card.animate
  .service-icon {
  animation-delay: 0.65s;
}

/* Shine effect on hover */
.service-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card.animate:hover::after {
  opacity: 1;
  animation: shine 1.5s ease-in-out;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Animated Background Shapes Container */
.animated-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

/* Base Shape Styles - Simple Circles and Rounded Squares */
.shape {
  position: absolute;
  background: rgba(14, 139, 249, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Shape 1 - Large Circle Top Left */
.shape-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: -100px;
  left: -100px;
  animation: float1 20s ease-in-out infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(80px, 100px);
  }
}

/* Shape 2 - Medium Rounded Square Top Right */
.shape-2 {
  width: 180px;
  height: 180px;
  border-radius: 30px;
  top: 8%;
  right: 5%;
  animation: float2 18s ease-in-out infinite;
  animation-delay: -4s;
}

@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-60px, 80px) rotate(45deg);
  }
}

/* Shape 3 - Small Circle Middle Left */
.shape-3 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  top: 45%;
  left: 8%;
  animation: float3 15s ease-in-out infinite;
  animation-delay: -7s;
}

@keyframes float3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -50px) scale(1.2);
  }
}

/* Shape 4 - Large Rounded Square Bottom Right */
.shape-4 {
  width: 250px;
  height: 250px;
  border-radius: 40px;
  bottom: -80px;
  right: -80px;
  animation: float4 22s ease-in-out infinite;
  animation-delay: -10s;
}

@keyframes float4 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-70px, -90px) rotate(-30deg);
  }
}

/* Shape 5 - Medium Circle Bottom Center */
.shape-5 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  bottom: 15%;
  left: 45%;
  animation: float5 16s ease-in-out infinite;
  animation-delay: -2s;
}

@keyframes float5 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-60px);
  }
}

/* Shape 6 - Small Rounded Square Middle Right */
.shape-6 {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  top: 35%;
  right: 12%;
  animation: float6 14s ease-in-out infinite;
  animation-delay: -6s;
}

@keyframes float6 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-40px, 60px) rotate(90deg);
  }
}

/* Make sure cards stand out */
.service-card {
  position: relative;
  z-index: 2;
  background: white !important;
}

/* partenership section  */

.partnership-section {
  line-height: 1.6;
  color: #333;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
}

.partnership-section .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.partnership-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 12px;
}

.partnership-section .title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0062a7 0%, #0062a7 100%);
  margin: 0 auto 60px;
  border-radius: 2px;
}

.partnership-section .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.partnership-section .card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.07),
    0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.partnership-section .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0062a7 0%, #0062a7 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.partnership-section .card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.1),
    0 20px 40px rgba(0, 0, 0, 0.08);
}

.partnership-section .card:hover::before {
  transform: scaleX(1);
}

.partnership-section .card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 800;
  color: #f3f4f6;
  line-height: 1;
  transition: color 0.3s ease;
}

.partnership-section .card:hover .card-number {
  color: #005794;
}

.partnership-section .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0062a7 0%, #0062a7 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  transition: transform 0.3s ease;
}

.partnership-section .card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.partnership-section .card-icon svg {
  width: 32px;
  height: 32px;
}

.partnership-section .card-icon i {
  font-size: 32px;
  font-style: normal;
  line-height: 1;
}

.partnership-section .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.4rem;
  text-align: center;
}

.partnership-section .card-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  text-align: center;
}

/* /// faq section  */

.faq-wrapper {
  display: flex;
  flex-direction: column;
}

.tabs-container {
  padding: 30px 0px 10px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 10px;
}

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.tab {
  padding: 10px 24px;
  border: none;
  background: transparent;
  color: #0062a7;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.tab:hover {
  background: #f7fafc;
  color: #0062a7;
}

.tab.active {
  background: #0062a7;
  color: white;
}

.faq-section {
  margin-top: 80px;
}

.faq-header {
  text-align: center;
}

.faq-header h1 {
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 12px;
  font-weight: 700;
}

.faq-header p {
  color: #718096;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-content {
  display: none;
}

.faq-content.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #cbd5e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 10px 24px;
  background: white;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d3748;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f7fafc;
}

.faq-item.active .faq-question {
  background: #f7fafc;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4299e1;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  background: #f7fafc;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  color: #4a5568;
  line-height: 1.7;
  font-size: 0.95rem;
}

.contact-section {
  text-align: left;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.contact-section h3 {
  font-size: 1.25rem;
  color: #2d3748;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-section p {
  color: #718096;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.contact-button {
  background: #4299e1;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.contact-button:hover {
  background: #3182ce;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(66, 153, 225, 0.4);
}

.contact-button:active {
  transform: translateY(0);
}

/* // cta section  */

.cta-container {
  background: #0062a7;
  border-radius: 24px;
  padding: 40px 60px;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: -20px;
  position: relative;
  margin-top: 100px;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta-text {
  flex: 1;
  text-align: left;
}

.cta-text h1 {
  color: white;
}

.cta-text p {
  color: rgb(220, 219, 219);
}

.cta-icon {
  flex-shrink: 0;
  width: 400px;
  max-width: 100%;
  display: flex;
  justify-content: flex-end;
}

.cta-icon img {
  width: 70%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  align-self: flex-end;
}

h1 {
  font-size: 30px;
  color: #0062a7;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.2;
}

p {
  margin-bottom: 32px;
  line-height: 1.6;
}

.button-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 13px 32px !important;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 10px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

.btn-primary {
  background: #044d82;
}
.btn-primary a {
  color: white !important;
}

.btn-primary:hover {
  background: #004a85;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90, 74, 127, 0.3);
}

.btn-secondary {
  background: white !important;
  color: #0062a7 !important;
  border: 2px solid #0062a7;
}

.btn-secondary:hover {
  background: #f8f7fb !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90, 74, 127, 0.2);
}

/* Initial hidden states */
.cta-container {
  opacity: 0;
  transform: scale(0.95);
  position: relative;
  overflow: hidden;
}

.cta-text h1 {
  opacity: 0;
  transform: translateY(30px);
}

.cta-text p {
  opacity: 0;
  transform: translateY(20px);
}

.button-group {
  opacity: 0;
  transform: translateY(20px);
}

.button-group .btn {
  transform: scale(0.8);
  opacity: 0;
}

.cta-icon {
  opacity: 0;
  transform: translateX(100px) scale(0.8) rotate(10deg);
}

.cta-icon img {
  transform: scale(1.2);
  filter: blur(5px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === ANIMATED STATES === */

/* Container entrance with scale */
.cta-container.animate-cta {
  animation: containerZoomIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes containerZoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Heading animation with typing effect */
.cta-text h1.animate-heading {
  animation: slideInFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.3s;
}

@keyframes slideInFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Paragraph animation */
.cta-text p.animate-paragraph {
  animation: slideInFade 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.6s;
}

/* Button group container */
.button-group.animate-buttons {
  animation: slideInFade 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.9s;
}

/* Individual button animations */
.button-group.animate-buttons .btn:nth-child(1) {
  animation: buttonPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 1.1s;
}

.button-group.animate-buttons .btn:nth-child(2) {
  animation: buttonPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 1.3s;
}

@keyframes buttonPop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Icon/Image animation from right */
.cta-icon.animate-icon {
  animation: slideInRotate 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.5s;
}

@keyframes slideInRotate {
  to {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0);
  }
}

.cta-icon.animate-icon img {
  transform: scale(1);
  filter: blur(0);
}

/* Floating animation for icon after load */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}

.cta-icon.animate-icon img {
  animation: float 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

/* Background shimmer effect */
.cta-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  opacity: 0;
}

.cta-container.animate-cta::before {
  animation: shimmerSweep 2s ease-out;
  animation-delay: 0.5s;
}

@keyframes shimmerSweep {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(45deg);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(45deg);
  }
}

/* Pulse glow effect on container */
@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 98, 167, 0.2);
  }
  50% {
    box-shadow:
      0 0 40px rgba(3, 125, 210, 0.4),
      0 0 60px rgba(0, 98, 167, 0.2);
  }
}

.cta-container.animate-cta {
  animation:
    containerZoomIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards,
    pulseGlow 3s ease-in-out infinite;
  animation-delay: 0s, 1.5s;
}

/* === HOVER EFFECTS === */

/* Button hover effects */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  box-shadow: 0 4px 15px rgba(0, 98, 167, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 98, 167, 0.5);
}

.btn-secondary {
  border: 2px solid #0062a7;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.05);
  background: #0062a7;
  box-shadow: 0 8px 25px rgba(0, 98, 167, 0.4);
}

/* Icon hover effect */
.cta-icon {
  transition: transform 0.3s ease;
}

.cta-container:hover .cta-icon {
  transform: scale(1.05);
}

/* Particle effect on CTA (optional decorative) */
@keyframes particle {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) scale(1);
  }
}

.cta-container::after {
  content: "✦";
  position: absolute;
  top: 20%;
  left: 10%;
  font-size: 20px;
  color: #037dd2;
  opacity: 0;
}

.cta-container.animate-cta::after {
  animation: particle 2s ease-out infinite;
  animation-delay: 2s;
}

/* // foooter css  */

.footer-area {
  background: #00365d !important;
  color: #ccc;
  padding: 60px 0 0;
  font-size: 14px;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.single-footer-widget {
  margin-bottom: 40px;
}

.single-footer-widget h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.single-footer-widget p {
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 0;
}

.footer-links,
.contact-us-link {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.contact-us-link li {
  margin-bottom: 12px;
}

.footer-links li:last-child,
.contact-us-link li:last-child {
  margin-bottom: 0;
}

.footer-links li a,
.contact-us-link li a {
  color: #cccccc;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.footer-links li a:hover,
.contact-us-link li a:hover {
  color: #1e90ff;
  transform: translateX(3px);
}

.contact-us-link li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-us-link i {
  color: #1e90ff;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-us-link span,
.contact-us-link a {
  flex: 1;
  line-height: 1.6;
}

/* Map */
.footer-map h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Bottom */
.footer-bottom-area {
  background-color: #002d4d !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  padding: 25px 0;
  text-align: center;
  font-size: 13px;
  color: #777;
}

.footer-bottom-area p {
  margin: 0;
}

/* already declared css manipulate  */

.section-title.text-left h2,
p {
  max-width: 100% !important;
}

/* services style  */

.page-title-area {
  background-image: url("./assets/img/services/img1.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  width: 100%;
  min-height: 380px;
  padding: 80px 0 70px;
  position: relative;
}

.page-title-area #careers {
  background-image: url("./assets/img/careers/img1.webp");
}

.page-title-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.page-title-content {
  position: relative;
  z-index: 1;
  color: white;
}

.page-title-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}

.page-title-content ul li {
  display: inline;
  color: white;
}

.page-title-content ul li a {
  color: white;
  text-decoration: none;
}

.page-title-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.services-detail-section {
  padding: 40px 0;
  background-color: #fff;
}

.row {
  display: flex;
  margin: 0 -15px;
}

.col-lg-4 {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0 15px;
}

.col-lg-8 {
  flex: 0 0 66.667%;
  max-width: 66.667%;
  padding: 0 15px;
}

/* Sidebar */
.services-sidebar {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 10px 30px;
  margin-bottom: 10px;
}

.services-sidebar h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.services-list {
  list-style: none;
  padding: 0;
  gap: 0.3rem !important;
}

.services-list .active i {
  color: white !important;
}

.services-list li a {
  color: #666;
  text-decoration: none;
  display: block;
  padding: 3px 15px;
  border-radius: 5px;
  transition: all 0.3s;
  font-size: 1rem !important;
  letter-spacing: -0.4px;
}
.services-list li a:hover i {
  color: white !important;
}

.services-list li a:hover,
.services-list li a.active {
  background: #0062a7;
  color: white;
}

.contact-box {
  background: #0062a7;
  color: white;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  margin-bottom: 30px;
}

.contact-box i {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
}

.contact-box p {
  margin-bottom: 20px;
  opacity: 0.9;
  color: rgb(233, 233, 233);
}

.contact-box .btn {
  background: white;
  color: #0062a7;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.contact-box .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Main Content */
.service-detail-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
  margin-top: 0px;
}

.service-detail-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Benefits Section */
.benefits-section {
  margin: 40px 0;
}

.benefits-section h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.benefit-item i {
  color: #0062a7;
  font-size: 1.2rem;
  margin-top: 3px;
}

.benefit-item p {
  margin: 0;
  color: #666;
}

/* FAQ Section */
.faq-section {
  margin-top: 40px;
}

.faq-section h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-toggle {
  font-size: 1.2rem;
  color: #0062a7;
  font-weight: 600;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s,
    padding 0.3s;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer p {
  color: #666;
  margin: 0;
}

.support-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: #666;
}

.support-link i {
  font-size: 1.5rem;
  color: #0062a7;
}

.support-link a {
  color: #0062a7;
  text-decoration: none;
  font-weight: 500;
}

#rev_slider_1078_1 .slotholder,
#rev_slider_1078_1 .rev-slidebg,
#rev_slider_1078_1_wrapper .slotholder {
  filter: none !important;
  -webkit-filter: none !important;
}

/* //// toast message  */

/* ========================================
   ALL RESPONSIVE MEDIA QUERIES GROUPED
   ======================================== */

/* Mobile responsive - max-width: 767px / 768px */
@media (max-width: 768px) {
  .partner-area {
    padding: 40px 0px;
  }

  .partner-area h3 {
    margin-bottom: 30px;
    font-size: 35px;
  }

  .partner-slide {
    gap: 25px;
  }

  .partner-nav button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .partner-nav {
    gap: 12px;
    margin-top: 25px;
  }

  .single-partner-logo {
    min-width: 70px;
    height: 60px;
    padding: 12px;
  }

  .single-partner-logo img {
    max-width: 100px;
    max-height: 40px;
  }

  .cta-container {
    padding: 40px 30px;
  }

  .cta-text h1 {
    font-size: 32px;
  }

  .cta-text p {
    font-size: 16px;
    text-align: justify;
  }

  .cta-icon {
    width: 100%;
  }

  .button-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .cta-icon {
    transform: translateY(50px) scale(0.8);
    opacity: 0;
  }

  .cta-icon.animate-icon {
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.8s;
  }

  @keyframes slideInUp {
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .about-content {
    margin-bottom: 2rem;
  }

  .about-content h2 {
    font-size: 35px;
    margin-bottom: 10px;
  }

  .about-content .default-btn {
    margin-top: 4px !important;
  }

  .about-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(1, 250px);
  }

  .image-box.large {
    grid-row: span 1;
  }

  .stats-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-icon {
    font-size: 2rem;
  }

  .about-area {
    padding: 50px 0;
  }

  .team-area {
    padding: 50px 0;
  }

  .team-area .section-title h2 {
    font-size: 35px;
  }

  .cta-title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .cta-section {
    padding: 60px 24px;
  }

  .explore-more-btn {
    font-size: 0.95rem;
    padding: 0.75rem 2rem;
  }

  .section-header h2 {
    font-size: 35px;
  }

  .mission-section,
  .vision-section {
    flex-direction: column;
  }

  .mission-image img,
  .vision-image img {
    height: 300px;
  }

  .service-card:hover {
    transform: translateY(-8px) scale(1.02);
  }

  .partner-area {
    padding: 40px 0px;
  }

  .partner-area h3 {
    margin-bottom: 30px;
  }

  .partner-slide {
    gap: 25px;
  }

  .partner-nav button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .partner-nav {
    gap: 12px;
    margin-top: 25px;
  }

  .single-partner-logo {
    min-width: 70px;
    height: 60px;
    padding: 12px;
  }

  .single-partner-logo img {
    max-width: 100px;
    max-height: 40px;
  }

  .cta-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  .cta-text {
    text-align: center;
  }

  .cta-icon {
    width: 100%;
    max-width: 500px;
    justify-content: center;
  }

  .button-group {
    justify-content: center;
  }

  .mission-section,
  .vision-section {
    flex-direction: column;
  }

  .mission-image,
  .mission-content,
  .vision-content,
  .vision-image {
    transform: translateY(50px);
    opacity: 0;
  }

  .mission-image.animate-mission-img,
  .mission-content.animate-mission-content,
  .vision-content.animate-vision-content,
  .vision-image.animate-vision-img {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .shape-1,
  .shape-4 {
    display: none;
  }

  .shape {
    opacity: 0.7;
  }
}

@media (max-width: 968px) {
  .mission-section,
  .vision-section {
    flex-direction: column;
  }

  .mission-content h3,
  .vision-content h3 {
    font-size: 2rem;
  }

  .mission-image img,
  .vision-image img {
    height: 300px;
  }

  .vision-content,
  .mission-content {
    max-width: 100%;
  }

  .partnership-section .section-title {
    font-size: 2rem;
  }

  .partnership-section .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .partnership-section .card {
    padding: 32px 24px;
  }

  .tabs-container {
    padding: 25px 0px 10px;
    margin-bottom: 10px;
  }

  .faq-section {
    margin-top: 70px;
  }

  .faq-header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .about-content h2 {
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: -1.4px;
  }
  .about-content p {
    font-size: 0.9rem;
    text-align: justify;
  }
  .stat-title {
    font-size: 1.2rem;
  }
  .stat-description {
    font-size: 0.9rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
  .service-card h3 {
    font-size: 1.2rem;
  }

  .team-area h2 {
    font-size: 1.8rem;
  }
  .team-area h3 a {
    font-size: 1.2rem;
  }
  .team-area .member-content span {
    font-size: 0.9rem;
  }
  .stat-title {
    font-size: 1.2rem;
  }
  .stat-description {
    font-size: 0.9rem;
  }

  .section-header h2 {
  }

  .partner-area {
    padding: 35px 0px;
  }

  .partner-area h3 {
    margin-bottom: 25px;
  }

  .partner-slide {
    gap: 20px;
  }

  .partner-nav button {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .partner-nav {
    gap: 10px;
    margin-top: 20px;
  }

  .single-partner-logo {
    min-width: 65px;
    height: 55px;
    padding: 10px;
  }

  .single-partner-logo img {
    max-width: 90px;
    max-height: 35px;
  }

  .why-choose-us {
    padding: 4rem 0rem;
  }

  .section-header {
    margin-bottom: 23px;
  }

  .mission-section {
    margin-bottom: 30px;
  }

  .mission-content h3,
  .vision-content h3 {
    font-size: 1.8rem;
  }

  .mission-content p,
  .vision-content p {
    font-size: 1rem;
  }

  .vision-content i,
  .mission-content i {
    font-size: 3rem;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .funfacts-custom .single-funfact h3 {
    font-size: 34px;
  }

  .partner-area {
    padding: 35px 0px;
  }

  .partner-area h3 {
    margin-bottom: 25px;
  }

  .partner-slide {
    gap: 20px;
  }

  .partner-nav button {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .partner-nav {
    gap: 10px;
    margin-top: 20px;
  }

  .single-partner-logo {
    min-width: 65px;
    height: 55px;
    padding: 10px;
  }

  .single-partner-logo img {
    max-width: 90px;
    max-height: 35px;
  }
}

@media (max-width: 480px) {
  .cta-container {
    padding: 30px 20px;
  }

  .cta-text h1 {
    font-size: 28px;
  }

  .cta-content {
    gap: 30px;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-section {
    padding: 50px 20px;
  }

  .shape {
    opacity: 0.1;
  }

  .cta-container {
    padding: 30px 20px;
  }

  .cta-text h1 {
    font-size: 28px;
  }

  .cta-content {
    gap: 30px;
  }
}

/* Funfacts responsive */
@media (max-width: 991px) {
  .about-content {
    margin-bottom: 2rem;
  }
  .row {
    flex-wrap: wrap;
  }

  .col-lg-4,
  .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .services-sidebar {
    margin-bottom: 20px;
  }

  .service-list-item-icon i {
    margin-left: 0 !important;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .footer-area {
    padding: 50px 0 0;
  }

  .single-footer-widget {
    margin-bottom: 40px;
  }

  .footer-map iframe {
    height: 149px;
  }

  .funfacts-custom {
    padding: 45px 30px;
  }

  .funfacts-custom .col-lg-3:not(:last-child) .single-funfact::after {
    display: none;
  }

  .funfacts-custom .single-funfact:not(:last-child)::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent 0%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 100%
    );
  }

  .funfacts-custom .single-funfact {
    margin-bottom: 35px;
    padding-bottom: 35px;
  }

  .funfacts-custom .single-funfact:last-child {
    margin-bottom: 0;
    padding-bottom: 20px;
  }

  .funfacts-custom .single-funfact h3 {
    font-size: 46px;
  }
}

@media (max-width: 575px) {
  .footer-area {
    padding: 40px 0 0;
    font-size: 13px;
  }

  .footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
  }

  .single-footer-widget {
    margin-bottom: 30px;
  }

  .single-footer-widget h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .single-footer-widget p {
    font-size: 13px;
    line-height: 1.7;
  }

  .footer-links li,
  .contact-us-link li {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .contact-us-link i {
    font-size: 16px;
  }

  .footer-map iframe {
    height: 200px;
    border-radius: 8px;
  }

  .footer-bottom-area {
    padding: 20px 15px;
    font-size: 12px;
  }

  .funfacts-custom {
    padding: 40px 20px;
  }

  .funfacts-custom .single-funfact h3 {
    font-size: 42px;
  }

  .funfacts-custom .single-funfact p {
    font-size: 15px;
  }
}

/* Offer Area responsive */
@media (max-width: 767px) {
  .page-title-content h2 {
    font-size: 2rem;
  }

  .service-detail-content h2 {
    font-size: 1.7rem;
  }

  .service-detail-content h3 {
    font-size: 1.2rem !important;
  }

  .offer-area .row {
    gap: 20px;
  }
}

@media (min-width: 1200px) {
  .footer-map iframe {
    height: 152px;
  }

  .offer-area {
    padding: 120px 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .offer-area {
    padding: 100px 0;
  }

  .offer-area .section-title h2 {
    font-size: 32px;
  }

  .single-offer-box {
    padding: 35px 25px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .offer-area {
    padding: 80px 0;
  }

  .offer-area .section-title h2 {
    font-size: 30px;
  }

  .offer-area .section-title p {
    font-size: 15px;
    max-width: 600px;
  }

  .single-offer-box {
    padding: 30px 20px;
    margin-bottom: 25px;
  }

  .single-offer-box h3 {
    font-size: 22px;
  }

  .single-offer-box .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }

  .single-offer-box .icon i {
    font-size: 35px;
    line-height: 70px;
  }
}

/* Additional smaller breakpoints for offer-area */
@media (min-width: 576px) and (max-width: 767px) {
  .offer-area {
    padding: 60px 0;
  }

  .offer-area .section-title {
    margin-bottom: 40px;
  }

  .offer-area .section-title h2 {
    font-size: 28px;
  }

  .offer-area .section-title p {
    font-size: 14px;
    max-width: 500px;
    padding: 0 20px;
  }

  .single-offer-box {
    padding: 30px 25px;
    margin-bottom: 20px;
  }

  .single-offer-box h3 {
    font-size: 20px;
  }

  .single-offer-box p {
    font-size: 14px;
  }
}

/* ... (all other smaller offer-area media queries remain the same as in your original code) ... */

@media (max-width: 1199px) and (min-width: 992px) {
  .single-footer-widget {
    margin-bottom: 35px;
  }

  .footer-map iframe {
    height: 166px;
  }
}

@media (max-width: 767px) and (min-width: 576px) {
  .footer-area {
    padding: 40px 0 0;
  }

  .single-footer-widget {
    margin-bottom: 35px;
  }

  .footer-map iframe {
    height: 220px;
    border-radius: 8px;
  }
}

@media (max-width: 399px) {
  .footer-area {
    padding: 30px 0 0;
  }

  .single-footer-widget {
    margin-bottom: 25px;
  }

  .footer-map iframe {
    height: 180px;
  }
}

/* Touch devices - disable hover effects */
@media (hover: none) and (pointer: coarse) {
  .single-offer-box:hover {
    transform: none;
  }

  .single-offer-box:active {
    transform: scale(0.98);
  }
}

/* High resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .single-offer-box {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.06);
  }
}

/* Additional utility for better spacing */
.offer-area .row {
  margin-left: -15px;
  margin-right: -15px;
}

.offer-area .row > [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

/* CTA responsive */
@media (max-width: 992px) {
  .cta-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  .cta-text {
    text-align: center;
  }

  .cta-icon {
    width: 100%;
    max-width: 500px;
    justify-content: center;
  }

  .button-group {
    justify-content: center;
  }

  .features-list span {
    text-align: center;
    letter-spacing: 0.2px;
  }
}

/* FAQ responsive */
@media (max-width: 640px) {
  /* Partnership responsive */
  .partnership-section {
    padding: 60px 16px;
  }

  .partnership-section .section-title {
    font-size: 1.75rem;
  }

  .partnership-section .title-underline {
    margin-bottom: 40px;
  }

  .partnership-section .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .partnership-section .card {
    padding: 28px 20px;
  }

  .partnership-section .card-number {
    font-size: 2.5rem;
    top: 16px;
    right: 16px;
  }

  .partnership-section .card-icon {
    width: 52px;
    height: 52px;
  }

  .partnership-section .card-icon svg {
    width: 28px;
    height: 28px;
  }

  .partnership-section .card-icon i {
    font-size: 28px;
  }

  .partnership-section .card-title {
    font-size: 1.25rem;
  }

  .partnership-section .card-description {
    font-size: 0.95rem;
  }

  .tabs-container {
    padding: 20px 0px 10px;
    margin-bottom: 10px;
  }

  .tabs {
    gap: 6px;
  }

  .tab {
    padding: 8px 18px;
    font-size: 0.875rem;
  }

  .faq-section {
    margin-top: 60px;
  }

  .faq-header h1 {
    font-size: 1.75rem;
  }

  .faq-header p {
    font-size: 0.9rem;
  }

  .faq-question {
    padding: 10px 18px;
    font-size: 0.65rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  .contact-button {
    width: 100%;
    padding: 12px 24px;
  }
}

/* Partner area responsive */
@media (max-width: 1024px) {
  .partner-area {
    padding: 50px 0px;
  }

  .partner-area h3 {
    margin-bottom: 35px;
  }

  .partner-slide {
    gap: 30px;
  }

  .single-partner-logo {
    min-width: 80px;
    height: 70px;
    padding: 15px;
  }

  .single-partner-logo img {
    max-width: 110px;
    max-height: 45px;
  }
}

@media (max-width: 400px) {
  .partner-area {
    padding: 30px 0px;
  }

  .partner-area h3 {
    margin-bottom: 20px;
  }

  .partner-slide {
    gap: 15px;
  }

  .partner-nav button {
    width: 36px;
    height: 36px;
    font-size: 14px;
    border-width: 1.5px;
  }

  .single-partner-logo {
    min-width: 60px;
    height: 50px;
    padding: 8px;
  }

  .single-partner-logo img {
    max-width: 80px;
    max-height: 30px;
  }

  .single-partner-logo:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 360px) {
  .partner-area {
    padding: 25px 0px;
  }

  .partner-slide {
    gap: 12px;
  }

  .partner-nav button {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .single-partner-logo {
    min-width: 55px;
    height: 45px;
    padding: 6px;
  }

  .single-partner-logo img {
    max-width: 70px;
    max-height: 28px;
  }
}

p {
  text-align: justify !important;
  font-size: 12px !important;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
  letter-spacing: 0;
  word-spacing: normal;
  hyphens: auto;
  line-height: 1.6 !important;
}


