/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: min(1280px, 92%);
    margin: auto;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.anim-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== STAGGERED GRID DELAYS ===== */
.stagger-grid > *:nth-child(1) { transition-delay: 0.08s; }
.stagger-grid > *:nth-child(2) { transition-delay: 0.16s; }
.stagger-grid > *:nth-child(3) { transition-delay: 0.24s; }
.stagger-grid > *:nth-child(4) { transition-delay: 0.32s; }
.stagger-grid > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-grid > *:nth-child(6) { transition-delay: 0.48s; }
.stagger-grid > *:nth-child(7) { transition-delay: 0.56s; }
.stagger-grid > *:nth-child(8) { transition-delay: 0.64s; }
.stagger-grid > *:nth-child(9) { transition-delay: 0.72s; }
.stagger-grid > *:nth-child(10) { transition-delay: 0.8s; }
.stagger-grid > *:nth-child(11) { transition-delay: 0.88s; }
.stagger-grid > *:nth-child(12) { transition-delay: 0.96s; }

/* ===== HERO LOADING ANIMATIONS ===== */
@keyframes heroLoadIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Home Hero load animations */
.hero-content h1,
.hero-content p,
.hero-form,
.hero-badge-wrap {
    opacity: 0;
    transform: translateY(15px);
    animation: heroLoadIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content h1 {
    animation-delay: 0.1s;
}

.hero-content p {
    animation-delay: 0.22s;
}

.hero-form {
    animation-delay: 0.34s;
}

.hero-badge-wrap {
    animation-delay: 0.46s;
}

/* Subpage Hero load animations */
.page-hero h1,
.page-hero p,
.page-hero .breadcrumb {
    opacity: 0;
    transform: translateY(15px);
    animation: heroLoadIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.page-hero h1 {
    animation-delay: 0.12s;
}

.page-hero p {
    animation-delay: 0.24s;
}

.page-hero .breadcrumb {
    animation-delay: 0s;
}

/* ==========================================
   HEADER
========================================== */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    transition: transform 0.35s ease, top 0.35s ease;
}

.header-inner {
    width: 1320px;
    max-width: 95%;
    height: 72px;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 35px;
    gap: 20px;

    /* border-radius:0 0 28px 28px; */

    /* box-shadow: 0 10px 30px rgba(0,0,0,.20); */
    transition:
        width 0.35s ease,
        max-width 0.35s ease,
        border-radius 0.35s ease,
        box-shadow 0.35s ease,
        padding 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}

.nav-shape-left,
.nav-shape-right {
    width: 68px;
    height: 72px;
    display: block;
    filter: drop-shadow(0 8px 22px rgba(0,0,0,0.10));
    
    position: relative;
    z-index: 2;
}

.nav-shape-right {
    transform: scaleX(-1);
}

.site-header.is-sticky {
    position: fixed;
    top: 0;
    transform: translateY(0);
    animation: headerSlideDown 0.35s ease;
}

.site-header.is-sticky .header-inner {
    width: 100%;
    max-width: 100%;
    /* border-radius: 0 0 18px 18px; */
    box-shadow: 0 14px 40px rgba(0,0,0,.14);
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-18px);
        opacity: 0.92;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:nowrap;
    flex-shrink: 0;
    overflow: visible;
}

.nav-menu a{
    font-size:15px;
    font-weight:600;
    color:#111827;
    transition:.3s;
    text-decoration:none;
    white-space:nowrap;
    flex-shrink: 0;
}

.nav-menu a.active{
    color:#6257f5;
}

.nav-menu a:hover{
    color:#6257f5;
}

.contact-btn{
    background:#6257f5;
    color:#fff !important;

    padding:12px 24px;

    border-radius:50px;

    font-size:14px;
    font-weight:700;
    text-decoration:none;
    flex-shrink: 0;
    white-space: nowrap;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:28px;
    cursor:pointer;
}

.mobile-menu{
    position:absolute;
    top:72px;
    left:50%;
    transform:translateX(-50%);
    width:1320px;
    max-width:95%;
    flex-direction:column;
    background:#fff;
    padding:20px 24px;
    gap:12px;
    border-top:1px solid rgba(0,0,0,0.08);
    display:none;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    z-index:1001;
}

.mobile-menu.open{
    display:flex;
}

.mobile-menu a{
    color:#111;
    font-size:16px;
    font-weight:500;
    padding:8px 0;
    border-bottom:1px solid rgba(0,0,0,0.06);
    text-decoration:none;
}

.mobile-menu a:hover,
.mobile-menu a.active{
    color:#6257f5;
}

.mobile-menu .contact-btn-mobile{
    background:#6257f5;
    color:#fff;
    padding:12px 20px;
    border-radius:30px;
    font-weight:600;
    text-align:center;
    margin-top:6px;
    display:inline-block;
    text-decoration:none;
}


/* ==========================================
   HERO
========================================== */

.page-banner,
.hero,
.inner-hero,
.service-hero,
.about-hero,
.contact-hero,
.case-study-hero,
.page-hero {
    margin: 18px 8px 8px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.hero{
    min-height:100vh;

    background:
    linear-gradient(
        rgba(6,20,50,.45),
        rgba(6,20,50,.45)
    ),
    url("../assets/images/hero-home.png");

    background-size:cover;
    background-position:center;
}

.hero .container{
    width:100%;
    max-width:1400px;
    height:100%;
}

.hero-inner{
    height:100vh;
    display:flex;
    align-items:center;
}

.hero-content{
    position:absolute;

    left:240px;

    top:50%;

    transform:translateY(-45%);

    width:700px;
    z-index:10;
}

.hero-content h1{
    color:#fff;

    font-size:88px;
    font-weight:800;

    line-height:.92;

    letter-spacing:-3px;

    margin-bottom:20px;
}

.hero-content p{
    width:620px;

    color:#fff;

    font-size:18px;
    line-height:1.5;

    margin-bottom:25px;
}

.hero-form{
    width:650px;

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:10px;
}

.hero-form input{
    height:52px;

    border:none;

    border-radius:10px;

    padding:0 16px;

    background:#fff;

    font-size:12px;
}

.submit-btn{
    grid-column:1/-1;

    height:56px;

    border:none;

    border-radius:12px;

    background:#6257f5;

    color:#fff;

    font-size:17px;

    font-weight:700;

    cursor:pointer;
}


/* ==========================================
   BOTTOM YELLOW CARD
========================================== */

.hero-badge-wrap{
    position:absolute;

    right:120px;

    bottom:0;

    display:flex;

    z-index:20;
}

.badge-gold{
    width:340px;
    height:92px;

    background:#efc24f;

    display:flex;
    align-items:center;

    padding:0 24px;

    font-size:18px;
    font-weight:700;
    line-height:1.3;
    border-radius: 20px 0 0 0;
}

.badge-white{
    width:80px;
    background:#fff;

    border-radius:0 20px 0 0;
}

/* ===== SECTION: Core Values ===== */
.section-values {
    padding: 80px 0;
    background: #f8f9fc;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.values-left .section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #f0c040;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.values-left h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.values-left p {
    font-size: 16px;
    color: #555;
    margin-bottom: 28px;
    max-width: 520px;
}

.value-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-card {
    background: #fff;
    padding: 24px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.value-card .icon {
    font-size: 28px;
    color: #f0c040;
    margin-bottom: 10px;
}

.value-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 4px;
}

.value-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.values-right img {
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
}

/* ===== SECTION: Trusted By ===== */
.section-trusted {
    padding: 60px 0;
    background: #fff;
}

.section-trusted .section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 30px;
}

.trusted-logos {
    overflow: hidden;
    padding: 10px 0;
}

.trusted-logos .swiper-wrapper {
    transition-timing-function: linear !important;
}

.trusted-logos .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.trusted-logos .swiper-slide img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s;
}

.trusted-logos .swiper-slide img:hover {
    filter: grayscale(0%) opacity(1);
}

/* ===== SECTION: Stats ===== */
.section-stats {
    padding: 50px 0 30px;
    background: #f8f9fc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item .number {
    font-size: 36px;
    font-weight: 800;
    color: #0d1b2a;
}

.stat-item .number span {
    color: #f0c040;
}

.stat-item .label {
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

/* ===== SECTION: Consultation ===== */
.section-consultation {
    position: relative;
    padding: 70px 0 0;
    margin-bottom: 150px;
    background:
        linear-gradient(rgba(15, 18, 35, 0.58), rgba(15, 18, 35, 0.58)),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    overflow: visible;
    min-height: 620px;
}

.consultation-wrap {
    display: grid;
    grid-template-columns: 540px 1fr;
    gap: 40px;
    align-items: center;
    transform: translateY(58px);
}

.consultation-form-card {
    background: #fff;
    border-radius: 26px;
    padding: 28px 28px 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
    width: 100%;
    max-width: 540px;
}

.section-consultation .consultation-form-card.anim-fade-up {
    transform: translateY(90px);
}

.section-consultation .consultation-form-card.anim-fade-up.visible {
    transform: translateY(150px) !important;
}

.consultation-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 14px;
}

.consultation-form label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.consultation-form input,
.consultation-form select {
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 10px;
    background: #f4f5f8;
    padding: 0 16px;
    font-size: 15px;
    color: #444;
    font-family: 'Manrope', sans-serif;
}

.consultation-form .full-width {
    grid-column: 1 / -1;
}

.consultation-btn {
    margin-top: 18px;
    border: none;
    background: linear-gradient(135deg, #6257f5, #6e61ff);
    color: #fff;
    padding: 14px 30px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(98, 87, 245, 0.22);
    transition: all 0.3s ease;
}

.consultation-btn:hover {
    transform: translateY(-2px);
}

.consultation-content {
    color: #fff;
    max-width: 480px;
    padding-top: 12px;
    padding-bottom: 32px;
}

.consultation-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #86e16a;
    margin-bottom: 10px;
}

.consultation-content h2 {
    font-size: 52px;
    line-height: 1.05;
    margin-bottom: 14px;
}

.consultation-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.consultation-contact-row {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap !important;
}

.consultation-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    width: calc(50% - 6px);
    flex: 0 0 calc(50% - 6px);
    min-width: 0;
    background: #fff;
    border-radius: 18px;
    padding: 12px 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.consultation-contact-primary {
    background: linear-gradient(135deg, #6257f5, #7b69ff);
}

.consultation-contact .contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(98, 87, 245, 0.08);
    color: #6257f5;
    font-size: 16px;
    flex-shrink: 0;
}

.consultation-contact-primary .contact-icon {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.consultation-contact span {
    display: block;
    font-size: 12px;
    margin-bottom: 3px;
    color: #8b8fa3;
}

.consultation-contact strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    color: #0d1b2a;
}

.consultation-contact-primary span,
.consultation-contact-primary strong {
    color: #fff;
}

/* ===== SECTION: Founder ===== */
.section-founder {
    padding: 100px 0;
    background: #fff;
}

.founder-grid {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.10);
}

.founder-info {
    max-width: 760px;
}

.founder-info .section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #f0c040;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.founder-info h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.12;
    margin-bottom: 10px;
}

.founder-info .designation {
    font-size: 16px;
    font-weight: 600;
    color: #6257f5;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(13, 27, 42, 0.08);
}

.founder-info p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 68ch;
}

.founder-info p:last-child {
    margin-bottom: 0;
}

/* ===== SECTION: Services Carousel ===== */
.section-services {
    padding: 80px 0;
    background: #f8f9fc;
}

.section-services .section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #f0c040;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.section-services .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 40px;
}

.services-static-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 0;
}

.service-slide {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.service-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-slide .service-img {
    height: 180px;
    overflow: hidden;
}

.service-slide .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-slide:hover .service-img img {
    transform: scale(1.05);
}

.service-slide .service-body {
    padding: 20px 22px 24px;
}

.service-slide .service-body .icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(240, 192, 64, 0.12);
    border-radius: 12px;
    color: #f0c040;
    font-size: 22px;
    margin-bottom: 10px;
}

.service-slide .service-body h5 {
    font-size: 18px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 8px;
}

.service-slide .service-body ul li {
    font-size: 14px;
    color: #555;
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-slide .service-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #f0c040;
    font-size: 12px;
}

.services-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}

.services-nav button {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    color: #555;
}

.services-nav button:hover {
    background: #f0c040;
    border-color: #f0c040;
    color: #fff;
}

#servicesSwiper .swiper-slide {
    height: auto;
}

.service-slide {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-slide .service-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.service-head h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0d1b2a;
    line-height: 1.3;
    min-height: 48px;
    flex: 1;
}

.service-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #f8f9fc;
    color: #0d1b2a;
    font-size: 15px;
    transition: all 0.3s ease;
}

.service-slide:hover .service-arrow {
    background: #f0c040;
    color: #fff;
    transform: translateX(3px);
}

.service-slide .service-body ul {
    margin-top: 6px;
}

/* ===== SECTION: Why Choose ===== */
.section-why {
    padding: 100px 0;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23ececf4'/%3E%3C/svg%3E") repeat;
}

.section-why .section-tag {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #6b63ff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-why .section-title {
    font-size: 52px;
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.12;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.why-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(13, 27, 42, 0.10);
}

.why-item {
    display: grid;
    grid-template-columns: 300px 320px 1fr 70px;
    align-items: center;
    gap: 28px;
    padding: 20px 0;
    background: transparent;
    border-radius: 0;
    border-bottom: 1px solid rgba(13, 27, 42, 0.10);
    transition: all 0.3s ease;
    box-shadow: none;
}

.why-item:hover {
    transform: none;
    box-shadow: none;
}

.why-item .why-icon {
    width: 100%;
    height: 180px;
    border-radius: 22px;
    overflow: hidden;
}

.why-item .why-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-title h4 {
    font-size: 30px;
    font-weight: 500;
    color: #0d1b2a;
    line-height: 1.1;
    margin: 0;
}

.why-item .why-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.65;
    margin: 0;
    max-width: 520px;
}

.why-item .arrow {
    margin-left: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f3f1ff;
    color: #6b63ff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: center;
    transition: all 0.3s ease;
}

.why-item:hover .arrow {
    background: #6b63ff;
    color: #fff;
    transform: translateX(4px);
}

/* ===== SECTION: Achievements ===== */
.section-achievements {
    padding: 80px 0;
    background: #f8f9fc;
}

.achievements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.achievements-left h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 12px;
}

.achievements-left p {
    font-size: 15px;
    color: #555;
    margin-bottom: 0;
}

.achievements-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.achievement-stat .number {
    font-size: 32px;
    font-weight: 800;
    color: #0d1b2a;
}

.achievement-stat .number .suffix {
    color: #f0c040;
}

.achievement-stat .label {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* ===== CTA Section ===== */
.section-cta {
    position: relative;
    padding: 110px 0;
    min-height: 580px;
    background:
        linear-gradient(rgba(10, 18, 34, 0.58), rgba(10, 18, 34, 0.58)),
        url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center 90%;
    overflow: hidden;
}

.cta-split {
    display: grid;
    grid-template-columns: 1fr 520px;
    align-items: center;
    gap: 30px;
    min-height: 420px;
}

.cta-left-space {
    min-height: 1px;
}

.cta-card {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    padding: 42px 36px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.cta-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b9ffd0;
    margin-bottom: 12px;
}

.cta-card h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 24px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #6257f5;
    color: #fff;
    padding: 15px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.cta-btn:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.site-footer {
    position: relative;
    background: linear-gradient(
        90deg,
        #121c37 0%,
        #162245 50%,
        #121c37 100%
    );
    color: rgba(255, 255, 255, 0.78);
    padding: 60px 0 20px;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -150px;
    width: 1200px;
    height: 900px;
    background: url("/assets/images/1019996_OJO4YQ1.svg") no-repeat right center;
    background-size: contain;
    opacity: 0.12;
    filter: invert(1);
    pointer-events: none;
    z-index: 1;
}

.footer-overlay {
    position: relative;
    z-index: 2;
}

.footer-top-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 30px;
    padding-bottom: 32px;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-text {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    max-width: 520px;
}

.footer-newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.footer-newsletter input {
    width: 100%;
    height: 40px;
    border-radius: 25px;
    border: none;
    background: #fff;
    color: #333;
    padding: 0 18px;
    font-size: 14px;
    font-family: 'Figtree', sans-serif;
    outline: none;
}

.footer-newsletter input::placeholder {
    color: rgba(0, 0, 0, 0.45);
}

.footer-newsletter button {
    grid-column: 1 / -1;
    background: #635BFF;
    color: #fff;
    border: none;
    border-radius: 30px;
    height: 48px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-family: 'Figtree', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-newsletter button:hover {
    background: #726cff;
    transform: translateY(-2px);
}

.footer-main-row {
    display: grid;
    grid-template-columns: 1.8fr 1fr 0.9fr 1.2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand img {
    width: 320px;
    height: auto;
}

.footer-col h5 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col ul li {
    padding: 5px 0;
}

.footer-col ul li a,
.footer-col .contact-line,
.footer-col .contact-line a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover,
.footer-col .contact-line a:hover {
    color: #f0c040;
}

.footer-col .contact-line b {
    color: rgba(255, 255, 255, 0.92);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom .copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom .copy a {
    color: rgba(255, 255, 255, 0.58);
    transition: color 0.3s;
}

.footer-bottom .copy a:hover {
    color: #f0c040;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
    transition: background 0.3s, color 0.3s, transform 0.2s;
    font-size: 16px;
}

.footer-social a:hover {
    background: #f0c040;
    color: #0d1b2a;
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 14px;
    }

    .nav-menu a {
        font-size: 13.5px;
    }

    .header-inner {
        padding: 0 24px;
        border-radius: 0 0 22px 22px;
    }
}

@media (max-width: 1100px) {
    .nav-menu {
        gap: 10px;
    }

    .nav-menu a {
        font-size: 13px;
    }

    .section-consultation {
        padding: 80px 0;
        margin-bottom: 80px;
        min-height: auto;
    }

    .consultation-wrap {
        grid-template-columns: 1fr;
        transform: none;
        gap: 30px;
    }

    .consultation-form-card {
        max-width: 100%;
    }

    .consultation-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .founder-info {
        max-width: 100%;
        margin: 0 auto;
    }

    .founder-info p {
        max-width: 100%;
    }

    .founder-image {
        max-width: 340px;
        margin: 0 auto;
    }

    .founder-image img {
        min-height: auto;
    }
    .section-why .section-title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .why-item {
        grid-template-columns: 220px 1fr;
        gap: 20px;
    }

    .why-title,
    .why-content,
    .why-item .arrow {
        grid-column: 2;
    }

    .why-item .arrow {
        margin-top: 10px;
    }

    .why-item .why-icon {
        height: 150px;
    }

    .why-title h4 {
        font-size: 26px;
    }
    .achievements-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-top-row {
        grid-template-columns: 1fr;
    }

    .footer-main-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-newsletter {
        grid-template-columns: 1fr 1fr;
    }

    .footer-newsletter button {
        grid-column: 1 / -1;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 1384px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
        color: #111;
    }

    .nav-shape-left,
    .nav-shape-right {
        display: none;
    }

    .site-header {
        overflow: visible;
    }

    .header-inner {
        width: 100%;
        max-width: 95%;
        height: 60px;
        padding: 0 20px;
        border-radius: 0 0 22px 22px;
    }

    .mobile-menu {
        top: 60px;
        width: 100%;
        max-width: 95%;
        border-radius: 22px;
    }
}

@media (max-width: 991px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
        color: #111;
        z-index: 1003;
    }

    .nav-shape-left,
    .nav-shape-right {
        display: none;
    }

    .site-header {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .header-inner {
        width: 100%;
        max-width: 95%;
        height: 60px;
        padding: 0 20px;
        border-radius: 0 0 22px 22px;
        position: relative;
        z-index: 1002;
        transition: border-radius 0.25s ease, box-shadow 0.25s ease;
    }

    .site-header.is-sticky .header-inner {
        border-radius: 0 0 20px 20px;
        max-width: 95%;
        width: 100%;
    }

    .site-header.menu-open .header-inner {
        box-shadow: none;
    }

    .mobile-menu {
        position: absolute;
        top: 62px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 95%;
        display: flex;
        flex-direction: column;
        gap: 0;
        background: #fff;
        padding: 0 18px 18px;
        border-top: none;
        border-radius: 22px;
        box-shadow: 0 10px 30px rgba(0,0,0,.08);
        z-index: 1001;

        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
        margin-top: 0;
    }

    .mobile-menu.open {
        opacity: 1;
        visibility: visible;
        max-height: 550px;
    }

    .mobile-menu a {
        color: #111;
        font-size: 16px;
        font-weight: 500;
        padding: 14px 0;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        text-decoration: none;
    }

    .mobile-menu .contact-btn-mobile {
        background: #6257f5;
        color: #fff;
        padding: 14px 20px;
        border-radius: 999px;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        display: block;
        width: 100%;
        max-width: 92%;
        margin: 16px auto 0;
        border-bottom: none;
    }

    .services-static-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-inner {
        height: auto;
        min-height: auto;
    }

    .hero-content {
        position: static;
        transform: none;
        width: 100%;
        margin: 0;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content p {
        width: 100%;
    }

    .hero-form {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .hero {
        overflow: visible;
    }

    .hero {
        overflow: visible;
    }

    .hero-badge-wrap {
        display: flex;
        position: absolute;
        left: -8px;
        right: -8px;
        bottom: -36px;
        width: calc(100% + 16px);
        z-index: 30;
    }

    .badge-gold {
        width: calc(100% - 80px);
        height: 70px;
        padding: 0 16px;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.35;
        border-radius: 20px 0 0 0;
    }

    .badge-white {
        width: 80px;
        border-radius: 0 20px 0 0;
    }

    /* .section-values {
        padding-top: 120px;
    } */

    .section-cta {
        padding: 75px 0;
    }

    .cta-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .cta-card {
        max-width: 100%;
        margin-left: 0;
    }

    .cta-card h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .value-cards {
        grid-template-columns: 1fr;
    }
    .services-static-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .section-services .section-title {
        font-size: 28px;
    }
    .section-why {
        padding: 80px 0;
    }

    .section-why .section-title {
        font-size: 30px;
    }

    .why-item {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px 0;
    }

    .why-title,
    .why-content,
    .why-item .arrow {
        grid-column: auto;
    }

    .why-item .why-icon {
        height: 220px;
    }

    .why-title h4 {
        font-size: 24px;
    }

    .why-item .arrow {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
    .site-footer {
        padding: 55px 0 20px;
    }

    .footer-top-text {
        font-size: 22px;
    }

    .footer-main-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-newsletter {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .stat-item .number {
        font-size: 28px;
    }
    .achievements-stats {
        grid-template-columns: 1fr 1fr;
    }
    .cta-card {
        padding: 30px 22px;
        border-radius: 22px;
    }

    .cta-card h2 {
        font-size: 30px;
    }

    .cta-card p {
        font-size: 15px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    .values-left h2 {
        font-size: 28px;
    }
    .founder-info h2 {
        font-size: 28px;
    }

    .consultation-form .form-grid {
        grid-template-columns: 1fr;
    }

    .consultation-form .full-width {
        grid-column: auto;
    }

    .consultation-content h2 {
        font-size: 32px;
    }

    .consultation-contact-row {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }

    .consultation-contact {
        width: calc(50% - 6px) !important;
        flex: 0 0 calc(50% - 6px) !important;
    }

     .logo img {
        height: 34px;
        width: auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .hero-form input {
        height: 48px;
    }
    .submit-btn {
        height: 48px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .achievements-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .consultation-contact-row {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        align-items: stretch !important;
        gap: 12px !important;
    }
    .consultation-contact {
        width: 100% !important;
        flex: 0 0 100% !important;
    }
    .stat-item .number {
        font-size: 24px;
    }
    .stat-item .label {
        font-size: 13px;
    }
    .section-services .section-title {
        font-size: 24px;
    }
    .cta-card h2 {
        font-size: 24px;
    }
    .cta-card .cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
     .logo img {
        height: 30px;
        width: auto;
    }
}

/* ===== PAGE HERO (Subpages Banner) ===== */
.page-hero {
    padding: 120px 0 280px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
   background-position: center 20%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(240, 192, 64, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #f0c040;
}

.breadcrumb span {
    color: #f0c040;
}

/* Page-specific hero backgrounds with readable dark overlays */
.about-bg {
    background-image: linear-gradient(rgba(10, 25, 60, 0.65), rgba(10, 25, 60, 0.65)), url('../assets/images/ABOUT-US.jpg');
}

.services-bg {
    background-image: linear-gradient(rgba(10, 25, 60, 0.65), rgba(10, 25, 60, 0.65)), url('../assets/images/Services.jpg');
}

.service-gallery-bg {
    background-image: linear-gradient(rgba(10, 25, 60, 0.65), rgba(10, 25, 60, 0.65)), url('../assets/images/Services.jpg');
}

.industries-bg {
    background-image: linear-gradient(rgba(10, 25, 60, 0.65), rgba(10, 25, 60, 0.65)), url('../assets/images/Industries.jpg');
}

.case-studies-bg {
    background-image: linear-gradient(rgba(10, 25, 60, 0.65), rgba(10, 25, 60, 0.65)), url('../assets/images/case-study.jpg');
}

.csr-bg {
    background-image: linear-gradient(rgba(10, 25, 60, 0.65), rgba(10, 25, 60, 0.65)), url('../assets/images/CSR.jpg');
}

.resources-bg {
    background-image: linear-gradient(rgba(10, 25, 60, 0.65), rgba(10, 25, 60, 0.65)), url('../assets/images/Resources%20.jpg');
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    .page-hero h1 {
        font-size: 32px;
    }
    .page-hero p {
        font-size: 16px;
    }
}

/* ===== BEAUTIFUL TOAST NOTIFICATIONS ===== */
#toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    min-width: 320px;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.hide {
    transform: translateX(120%);
    opacity: 0;
}

.toast-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    color: #10b981;
}

.toast-error .toast-icon {
    color: #ef4444;
}

.toast-info .toast-icon {
    color: #3b82f6;
}

.toast-content {
    flex-grow: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 14px;
    color: #0f172a;
    margin: 0 0 2px 0;
    font-family: 'Manrope', sans-serif;
}

.toast-desc {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
    font-family: 'Manrope', sans-serif;
}

.toast-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
    margin-left: auto;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #475569;
}

@media (max-width: 480px) {
    #toast-container {
        bottom: 16px;
        right: 16px;
        left: 16px;
        width: calc(100% - 32px);
    }
    .toast {
        min-width: 0;
        width: 100%;
        max-width: none;
    }
}