.breadcrumb-area{
        padding: 30px 0;
}

.header-top-area {
    overflow: hidden;
    background-color: #20356a;
}
/* Base Styles for CTA Buttons */

.banner-bg {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(32, 53, 106, 0.7), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.swiper-nav {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  gap: 20px;
  z-index: 10;
}

.swiper-button-prev,
.swiper-button-next {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: all 0.3s ease;
  position: static;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #20356a;
  border-color: #20356a;
}
.banner__cta {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.banner__cta .btn {
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #20356a;
}

.btn {
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #20356a;
    color: #fff;
}

.btn-primary:hover {
    background: #7a4a26;
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-secondary:hover {
    background: #20356a;
    border-color: #20356a;
}

/* Banner Area and Content */
.banner-area {
    position: relative;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    max-width: 700px;
}

.slide-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: white;
}

.slide-content p {
    font-size: 18px;
    color: white;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #fff;
    opacity: .7;
}

.swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}

/* =========== Responsive Styles =========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .slide-content {
    left: 5%;
    max-width: 80%;
  }

  .slide-content h1 {
    font-size: 36px;
  }

  .slide-content p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .slide-content {
    left: 50%;
    top: 45%;
    transform: translate(-50%, -45%);
    text-align: center;
  }

  .banner__cta {
    flex-direction: column;
    align-items: center;
  }

  .swiper-nav {
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 575px) {
    .banner__wrp {
        padding: 15px;
        padding-bottom: 300px;
        padding-top: 300px;
    }
}

@media (max-width: 991px) {
    .slide-content h1 {
        font-size: 20px;
    }
}

:root {
  --navy: #20356a;
  --navy-light: #2a4a8c;
  --accent: #00c2a8;
  --purple: #7b5cff;
  --text-dark: #1c1c1c;
  --text-dim: #555;
  --border-color: #e5e8f0;
  --card-bg: #ffffff;
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.impact-metrics {
  background: #ffffff;
  color: var(--text-dark);
  padding: clamp(80px, 8vw, 140px) 20px;
  position: relative;
  overflow: hidden;
}

/* Header */
.metrics-header {
  text-align: center;
  margin-bottom: clamp(50px, 6vw, 80px);
}
.metrics-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.metrics-subtitle {
  color: var(--text-dim);
  font-size: clamp(16px, 2vw, 18px);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid */
.metrics-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards */
.metric-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.metric-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-light), var(--accent));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.metric-card:hover::before {
  opacity: 0.1;
}
.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(32, 53, 106, 0.15);
  border-color: var(--navy-light);
}

/* Inner content */
.metric-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 50px 25px;
      background: linear-gradient(45deg, #a5aab5, transparent);
}

.metric-number {
  font-size: clamp(40px, 5vw, 53px);
  font-weight: 800;
  background: #2a4a8c;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 16px;
  transition: all 0.4s ease;
}

.metric-card:hover .metric-number {
  transform: scale(1.08);
}

.metric-text {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
}
.metric-text small {
  font-size: 13px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 600px) {
  .metric-inner { padding: 40px 20px; }
  .metric-number { font-size: 36px; }
}

/* ===== Insights Section ===== */
.insights-area {
  background: linear-gradient(135deg, #f9fbfd 0%, #edf2fa 100%);
  position: relative;
  overflow: hidden;
}

.section-header h6 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #20356a;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #20356a;
  margin-bottom: 15px;
}

.section-subtext {
  color: #516283;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Insight Cards ===== */
.insight-card {
  perspective: 1000px;
  height: 320px;
  border-radius: 15px;
  cursor: pointer;
}

.insight-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

.insight-card:hover .insight-card-inner {
  transform: rotateY(180deg);
}

.insight-card-front,
.insight-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  transition: all 0.4s ease;
}

.insight-card-front {
  background-size: cover;
  background-position: center;
  box-shadow: 0 15px 35px rgba(32, 53, 106, 0.15);
}

.insight-card-front::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25));
  border-radius: 15px;
  z-index: 1;
}

.insight-card-front .badge,
.insight-card-front h5 {
  position: relative;
  z-index: 2;
  color: white;
}

.insight-card-front .badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: auto;
  backdrop-filter: blur(4px);
}

.insight-card-front h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

/* ===== Card Back ===== */
.insight-card-back {
  background: linear-gradient(135deg, #20356a, #0e1b39);
  transform: rotateY(180deg);
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(32, 53, 106, 0.25);
}

.insight-card-back p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #f5f8ff;
  padding: 0 15px;
}

.insight-link {
  color: #ffae00;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.insight-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Hover Glow */
.insight-card:hover .insight-card-front {
  transform: scale(1.03);
  box-shadow: 0 20px 45px rgba(32, 53, 106, 0.25);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .insight-card {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .insight-card {
    height: 260px;
  }
  .section-header h2 {
    font-size: 24px;
  }
}


.image img {
    width: 100%;
    height: 300px;
    width: 300px;
    object-fit: contain;
}


@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}


.choose-twelve-area {
  background: #f8fafc;
}

.choose-twelve__image {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.choose-twelve__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 20px 20px 0;
  transition: opacity 0.6s ease, transform 0.8s ease;
}

.fade-in {
  opacity: 1;
  transform: scale(1);
}

.fade-out {
  opacity: 0;
  transform: scale(1.05);
}

.choose-twelve__wrp {
  background: #ffffff;
  padding: 70px 60px;
  border-radius: 0 0 0 20px;
  box-shadow: 0 15px 40px rgba(32, 53, 106, 0.1);
}

.section-header h6 {
  color: #20356a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 13px;
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1c2e60;
  margin-bottom: 18px;
  line-height: 1.3;
}

.section-header p {
  color: #506185;
  font-size: 16px;
  line-height: 1.75;
  max-width: 90%;
}

.nav-tabs {
  border: none;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-tabs .nav-link {
  background: #edf2fa;
  border: none;
  border-radius: 40px;
  padding: 10px 22px;
  color: #1c2e60;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  background: #20356a;
  color: #fff;
  transform: translateY(-1px);
}

.tab-content {
  margin-top: 35px;
}

.choose-twelve__content h3 {
  color: #20356a;
  font-size: 22px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.choose-twelve__content p {
  color: #4a5878;
  font-size: 16.5px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.highlighted-points {
  padding-left: 0;
  margin-bottom: 18px;
}

.highlighted-points li {
  font-size: 16.5px;
  color: #1c2e60;
  font-weight: 500;
  list-style: none;
  margin-bottom: 10px;
  position: relative;
  padding-left: 26px;
  line-height: 1.6;
}

.highlighted-points li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffae00;
  font-size: 18px;
}

/* Subtle hover accent on list */
.highlighted-points li:hover {
  color: #20356a;
  transform: translateX(3px);
  transition: all 0.3s ease;
}
.choose__tab .nav .nav-item .nav-link{
      padding: 16px;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-link:hover {
    background: #a5aab5 !important;
    color: #fff;
}

.footer__right {
    width: 40%;
}

/* Responsive */
@media (max-width: 991px) {
  .choose-twelve__wrp {
    padding: 40px 25px;
    border-radius: 0;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .choose-twelve__image img {
    border-radius: 0;
  }

  .section-header p {
    max-width: 100%;
  }

  .footer__right {
    width: 100%;
}
}




.leadership-area {
  background: #f7f9fc;
  color: #20356a;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #20356a;
}

.section-header p {
  color: #4a5b82;
  max-width: 100%;

}

/* Tabs */
.nav-tabs {
  border-bottom: none;
  gap: 15px;
}

.nav-tabs .nav-link {
  background: #e6ecf6;
  border: none;
  color: #20356a;
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  background: #20356a;
  color: #fff;
}

/* Leader Cards */
.leader-card {
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.leader-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.leader-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.4s ease;
}

.leader-card:hover .leader-image img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.linkedin-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #fff;
  background: #20356a;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.4s ease;
}

.leader-card:hover .linkedin-icon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.leader-info {
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.leader-card:hover .leader-info {
  opacity: 1;
  transform: translateY(0);
}

.leader-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #20356a;
}

.leader-info span {
  font-size: 14px;
  color: #5d6b8a;
}

/* Hover glow effect */
.leader-card:hover {
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 991px) {
  .leader-image img {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .nav-tabs {
    flex-direction: column;
    align-items: center;
  }

  .leader-image img {
    height: 240px;
  }
}

.blog-details__img img {
    width: 100%;
    border-radius: 10px;
    height: 500px;
    width: 100%;
    object-fit: contain;
}

.accordion .accordion-item .accordion-body,
.capability-accordion .accordion-button:not(.collapsed),
.accordion .accordion-button.collapsed{
    padding: 20px 20px;

}

/* Mobile-First Base Styles */
.brand-area {
  padding-top: 3rem;
  overflow: hidden;
}

.section-header h2 {
  font-size: 1.75rem;
  font-weight: 600;
}

.brand-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 0 1rem;
}

.brand__item {
  flex: 0 0 calc(50% - 0.5rem); /* 2 items per row on mobile */
  max-width: calc(50% - 0.5rem);
  text-align: center;
  padding: 0.75rem;
  box-sizing: border-box;
}

.brand__item img {
  width: 100%;
  height: auto;
  max-width: 150px;
  object-fit: contain;

  opacity: 0.7;
  transition: all 0.3s ease;
}

.brand__item img:hover {

  opacity: 1;
  transform: scale(1.05);
}

/* Tablet (≥768px) */
@media (min-width: 768px) {
  .brand__item {
    flex: 0 0 calc(25% - 0.75rem); /* 4 items per row */
    max-width: calc(25% - 0.75rem);
  }

  .brand-grid {
    gap: 1.5rem;
  }
}

/* Desktop (≥992px) - Matches your original lg-2 (6 columns) */
@media (min-width: 992px) {
  .brand__item {
    flex: 0 0 calc(16.666% - 1rem); /* 6 items per row */
    max-width: calc(16.666% - 1rem);
  }

  .brand-grid {
    gap: 2rem;
  }

  .brand__item img {
    max-width: 185px;
  }
}

/* Extra small phones - prevent overflow */
@media (max-width: 480px) {
  .brand__item {
    flex: 0 0 calc(50% - 0.5rem);
    padding: 0.5rem;
  }

  .brand__item img {
    max-width: 120px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }
}


/* ---- GPU acceleration & smooth images ---- */
.banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);          /* forces layer */
}

/* hide lazy preloader until needed */
.swiper-lazy-preloader {
  border-color: #fff;
  border-top-color: transparent;
}

/* smooth parallax (optional) */
.banner__slider .swiper-slide {
  transform: translate3d(0,0,0);
}

/* prevent FOUC */
.banner-area * { visibility: inherit; }


.footer__wrp{

flex-wrap: nowrap;
}
        
    .footer-area {
    background-color: #0b0c10;
    color: #fff;
    position: relative;
    font-family: "Inter", sans-serif;
}

.footer-area .title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.footer-area p {
    color: #ccc;
    line-height: 1.6;
}

.mailUs input::placeholder {
    color: #ccc;
}

.mailUs button {
    border: none;
    background: none;
    font-size: 16px;
    cursor: pointer;
}

.footer__shape-left img {
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.1;
}

.footer__rectangle .item,
.footer__rectangle .item-dark {
    display: none; /* Keep decorative if needed */
}

.footer__wrp {
    margin-bottom: 40px;
}

.footer__social a i {
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer__social a:hover i {
    color: #f9b233;
}

.footer-links li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
}

.footer-links li::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 0;
    color: #f9b233;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: #f9b233;
    padding-left: 4px;
}

.footer-links li:hover::before {
    transform: translateX(3px);
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.project__image .tab-img{
    filter: brightness(0.5);
}


        .clientele-section {
            background: #fff;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .clientele-section h2 {
            color: #20356a;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
        }

        .clientele-wrapper {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            gap: 50px;
            padding: 20px 60px;
            scrollbar-width: none; /* Firefox */
        }

        .clientele-wrapper::-webkit-scrollbar {
            display: none; /* Chrome/Safari */
        }

        .client-logo {
            flex: 0 0 auto;
            background: #ffffff;
            border: 2px solid #e6e9f2;
            border-radius: 12px;
            padding: 25px;
            min-width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .client-logo:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 20px rgba(32, 53, 106, 0.15);
        }

        .client-logo img {
            max-height: 60px;
            max-width: 140px;
            object-fit: contain;
        
            transition: filter 0.3s ease;
        }

        .client-logo:hover img {
            filter: grayscale(0%);
        }

        /* Navigation Arrows */
        .scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: #20356a;
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .scroll-btn:hover {
            background-color: #1a2b59;
        }

        .scroll-btn.left {
            left: 20px;
        }

        .scroll-btn.right {
            right: 20px;
        }

        @media (max-width: 768px) {
            .clientele-section h2 {
                font-size: 28px;
            }

            .client-logo {
                min-width: 120px;
                height: 80px;
            }

            .scroll-btn {
                display: none;
            }
        }

        .quick-contact {
  position: fixed;
  bottom: 100px;
  right: 15px;
  width: 60px;
  z-index: 9999;
}

.quick-contact img {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  z-index: 9;
}
