/* ===== ROOT VARIABLES ===== */
:root {
    --accent-yellow: #FFC107;
    --deep-blue: #1E3A8A;
    --primary-red: #E63946;
    /* Logo Red */
    --primary-yellow: #F9C74F;
    /* Logo Yellow */
    --primary-blue: #0054A6;
    /* Adjusted Blue to match Logo Text */
    --dark-blue: #1D3557;
    /* Deep Navy for Backgrounds */
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #2B2D42;
    --text-muted: #6C757D;

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;

    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #444444;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #222222;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #3498db;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-red-yellow: linear-gradient(135deg, #E63946 0%, #FFC107 100%);
    --primary-navy: #1a2a44;

    /* Primary Colors */
    --brand-red: #E63946;
    --brand-yellow: #FFC107;
    --brand-blue: #1E3A8A;

    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light-gray: #F8F9FA;
    --bg-dark-blue: #1E3A8A;

    /* Text Colors */
    --text-dark: #2D3748;
    --text-charcoal: #2D3748;
    --text-light: #E5E7EB;
    --text-muted: #6B7280;

    /* Gradients */
    --brand-gradient: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-yellow) 100%);
    --gradient-primary: linear-gradient(135deg, #E63946 0%, #FFC107 100%);
    --gradient-reverse: linear-gradient(135deg, #FFC107 0%, #E63946 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(230, 57, 70, 0.9) 0%, rgba(255, 193, 7, 0.9) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-hover: 0 12px 40px rgba(230, 57, 70, 0.25);

    /* Spacing (8px grid system) */
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1rem;
    /* 16px */
    --spacing-md: 1.5rem;
    /* 24px */
    --spacing-lg: 2rem;
    /* 32px */
    --spacing-xl: 3rem;
    /* 48px */
    --spacing-2xl: 4rem;
    /* 64px */

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* === 2. GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}



/* ===== GLOBAL STYLES ===== */
body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: bold;
    color: var(--dark-blue);
}

.font-playfair {
    font-family: var(--font-accent);
}

.section-padding {
    padding: 30px 0;
}

.text-red {
    color: var(--primary-red) !important;
}

.text-blue {
    color: var(--primary-blue) !important;
}

.bg-dark-blue {
    background-color: var(--dark-blue) !important;
}



.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: var(--gradient-reverse);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--bg-white);
}

/* .btn-outline-primary {
    background: transparent;
    color: var(--brand-red);
    border: 2px solid var(--brand-red);
}

.btn-outline-primary:hover {
    background: var(--brand-red);
    color: var(--bg-white);
    transform: translateY(-2px);
} */

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}




/* Premium Buttons */
.btn-premium {
    background: linear-gradient(135deg, var(--primary-red), #d62839);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-primary);
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
    color: var(--white);
}

.btn-premium:hover::before {
    width: 100%;
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--dark-blue);
}

/* Section Titles */
/* .section-title-wrapper {
            margin-bottom: 3rem;
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
        }

        .section-subtitle {
            font-family: var(--font-accent);
            color: var(--primary-red);
            font-size: 1.2rem;
            font-style: italic;
        } */



section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

/* @media (max-width: 1199px) {

                section,
                .section {
                    scroll-margin-top: 66px;
                }
            } */

/*--------------------------------------------------------------
         # Global Section Titles
         --------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 10px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
}

.section-title h2:before,
.section-title h2:after {
    content: "";
    width: 50px;
    height: 3px;
    background: var(--primary-red);
    display: inline-block;
}

.section-title h2:before {
    margin: 0 15px 10px 0;
}

.section-title h2:after {
    margin: 0 0 10px 15px;
}

.section-title p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px !important;
    }

    .section-title h2:before,
    .section-title h2:after {
        content: "";
        width: 35px;
        height: 3px;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar-brand img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

/* .navbar-brand:hover img {
    transform: scale(1.05);
} */

.nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--dark-blue) !important;
    margin: 0 10px;
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-red);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-red) !important;
}

/* ===== HERO SECTION ===== */

.hero-section {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;

    background:
        linear-gradient(130deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(250, 245, 232, 0.92) 35%,
            rgba(240, 226, 198, 0.88) 70%,
            rgba(230, 210, 176, 0.85) 100%),
        url('assets/img/home3.jpg');

    background-size: cover;
    background-position: center;
    /* background-blend-mode: soft-light; */

    /* background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 245, 235, 0.93) 45%,
    rgba(255, 230, 210, 0.90) 100%
),
url('assets/img/home3.jpg'); */


    /* Premium Overlay + Background Image */
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 245, 250, 0.9) 100%), 
                        url('assets/img/home3.jpg'); */

    /* background: linear-gradient(135deg, #fffefc 0%, #fff3e6 35%, #f3f0ff 70%, #eef6ff 100%); */
    /* background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 18px; */

    /* background-attachment: fixed; */
    /* padding-top: 110px; */
    /* Offset for fixed nav */
    position: relative;
    overflow: hidden;
}

/* .hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
    filter: blur(50px);
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-blue);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--primary-red);
     background: #ffd89c;
    bottom: 5%;
    left: -50px;
    animation-delay: 1s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--primary-yellow);
    top: 20%;
    left: 40%;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}


@keyframes float-img {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
} */

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--dark-blue);
    /* margin-bottom: 1.5rem; */
    font-weight: 800;
}

/* Typing Effect Cursor */
.typing-text {
    color: var(--primary-red);
    position: relative;
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    background-color: var(--primary-red);
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Premium Badges */
.premium-badge {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--dark-blue);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.premium-badge i {
    color: var(--primary-red);
}

.premium-badge:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


@media (max-width: 1200px) {
    .hero-section {
         padding: 150px 0 50px;
        /* min-height: 100vh; */
        /* background-attachment: scroll; */
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 150px 0 80px;
    }

}

@media (max-width: 576px) {
    .hero-section {
        padding: 130px 0 50px;
    }

}




/* ================= TABLET ================= */
/* @media (min-width: 576px) {

    .partner-hero-title {
        font-size: 3.5rem;
    }

    .partner-hero-subtitle {
        font-size: 2rem;
    }

} */

/* ================= LAPTOP ================= */
/* @media (min-width: 992px) {

    .partner-hero-title {
        font-size: 3.3rem;
    }
} */

/* ================= LARGE SCREEN ================= */

@media (min-width: 1200px) {

     .hero-section {
        /* min-height: 100vh !important;  */
        padding:  160px 0 80px;
        /* background-attachment: fixed; */
    }


    /* .partner-hero-title {
        font-size: 3.8rem;
    }

    .partner-subtitle {
        font-size: 1.7rem;
    }

    .partner-desc {
        font-size: 1.1rem;
    } */

}

/* .hero-img-wrapper {
    position: relative;
    z-index: 1;
    animation: float-img 6s ease-in-out infinite;
}

.hero-img {
    border-radius: 24px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}


.hero-img-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-red));
    border-radius: 24px;
    z-index: -1;
    opacity: 0.2;
} */

/* ===== ABOUT SECTION PREMIUM UPGRADE ===== */
.about-img-wrapper {
    position: relative;
}

.about-img-bg-shape {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 80%;
    height: 80%;
    background: var(--primary-yellow);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.vision-box {
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--primary-yellow);
}

.about-feature-item {
    transition: all 0.4s ease;
    background-color: var(--brand-red);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.stat-card {
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

/* ===== SERVICES SECTION ===== */
.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border-top: 5px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-top: 5px solid var(--primary-red);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
}

.service-title {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/* ===== VIDEO CTA SECTION ===== */
.video-cta-section {
    background: var(--dark-blue);
    color: var(--white);
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 400px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    }

    70% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 20px rgba(230, 57, 70, 0);
    }

    100% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
    }
}

.cta-form-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    color: var(--text-dark);
}

/* ===== PROCESS SECTION ===== */
.process-steps {
    position: relative;
}

/* Connect line for desktop */
@media (min-width: 992px) {
    .process-steps::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 50px;
        right: 50px;
        height: 3px;
        background-image: linear-gradient(to right, var(--primary-yellow) 50%, transparent 50%);
        background-size: 20px 100%;
        z-index: 0;
    }
}

.process-step {
    position: relative;
    z-index: 1;
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.process-step:hover {
    background: var(--white);
    /* box-shadow: var(--box-shadow); */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--white);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

/* ===== USP SECTION ===== */
.usp-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    /* padding: 1.5rem; */
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.usp-box:hover {
    background: var(--white);
    box-shadow: var(--box-shadow);
}

.usp-icon {
    min-width: 60px;
    height: 60px;
    background: rgba(0, 84, 166, 0.1);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 1.5rem;
}

.usp-box:hover .usp-icon {
    background: var(--primary-blue);
    color: var(--white);
}

/* ===== PARTNER & CAREER CTA ===== */
.dual-cta-section {
    padding: 0;
}

.dual-card {
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem;
    position: relative;
    color: var(--white);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: var(--transition);
}

.dual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 53, 87, 0.85);
    /* Dark Blue overlay */
    z-index: 1;
    transition: var(--transition);
}

.dual-card:hover::before {
    background: rgba(29, 53, 87, 0.7);
}

.dual-card:hover .dual-bg {
    transform: scale(1.1);
}

.dual-content {
    position: relative;
    z-index: 2;
}

.dual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: transform 0.5s ease;
}

/* ===== TESTIMONIALS ===== */
/* .testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    margin: 1rem;
    position: relative;
}

.quote-icon {
    color: rgba(249, 199, 79, 0.3);
    font-size: 4rem;
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-family: serif;
}

.stars {
    color: var(--primary-yellow);
    margin: 1rem 0;
}

.testimonial-name {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1rem;
} */

a {
    text-decoration: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark-blue);
    /* background: var(--dark-blue); */
    color: rgba(255, 255, 255, 0.8);
    padding-top: 65px;
}

.footer h4 {
    /* color: var(--white); */
    color: var(--brand-yellow);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    /* background: rgba(255, 255, 255, 0.1); */
    border-radius: 50%;
    background: var(--primary-red);
    color: var(--white);
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: var(--transition);
    font-weight: bold;
}

.social-links a:hover {
    background: var(--brand-yellow);
    color: var(--bg-dark-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 30px;
}


/* Mobile Adjustments */
@media (max-width: 991px) {

    .hero-img {
        margin-top: 3rem;
    }

    .process-steps::before {
        display: none;
    }

    .dual-card {
        min-height: 350px;
    }

    /* .navbar-brand img {
        height: 40px;
    } */
}


/* Header */
.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0F172A;
}

.gradient-text {
    background: linear-gradient(135deg, hsl(14, 96%, 46%), #1E5F8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-sub {
    color: #64748B;
    max-width: 650px;
    margin: auto;
}

/* Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

/* Card Base */
.premium-card {
    background: #fff;
    border-radius: 22px;
    padding: 25px 10px;
    position: relative;
    transition: 0.4s ease;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.premium-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

/* Gradient Border Effect */
.premium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 1.5px;
    background: linear-gradient(135deg, #2F80ED, #FF3C1F);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s ease;
}

.premium-card:hover::before {
    opacity: 1;
}

/* Icon */
.icon-container {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #fff;
    transition: 0.4s ease;
    margin: auto;
    margin-bottom: 20px;
}

/* Logo Color Gradients */
.icon-blue {
    background: linear-gradient(135deg, #2F80ED, #1E5F8A);
    box-shadow: 0 10px 30px rgba(47, 128, 237, 0.35);
}

.icon-orange {
    background: linear-gradient(135deg, #FF3C1F, #FFA500);
    box-shadow: 0 10px 30px rgba(255, 60, 31, 0.35);
}

.premium-card:hover .icon-container {
    transform: scale(1.1) rotate(8deg);
}

/* Text */
.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0F172A;
}

.card-text {
    font-size: 0.95rem;
    color: #64748B;
    margin-top: 15px;
    line-height: 1.7;
}

/* Responsive */
@media(max-width:1200px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium screens (tablets) */
@media (max-width: 991px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small screens (mobile) */
@media (max-width: 576px) {
    .cards-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* ================= HERO SECTION ================= */

.partner-hero-section {
    /* padding: 100px 0 60px; */
    /* min-height: auto; */
    display: flex;
    align-items: center;

    background:
        linear-gradient(130deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(250, 245, 232, 0.94) 40%,
            rgba(240, 226, 198, 0.90) 75%,
            rgba(230, 210, 176, 0.88) 100%),
        url('assets/img/Partner2.jpg');

    background-size: cover;
    background-position: center;
    background-blend-mode: soft-light;
}

/* Remove laggy parallax on mobile */
@media (max-width: 1200px) {
    .partner-hero-section {
         padding: 150px 0 50px;
        /* min-height: 100vh; */
        /* background-attachment: scroll; */
    }
}

@media (max-width: 992px) {
    .partner-hero-section {
        padding: 150px 0 80px;
    }

}

@media (max-width: 576px) {
    .partner-hero-section {
        padding: 130px 0 60px;
    }

}





/* ================= CONTENT ================= */

.partner-hero-content {
    position: relative;
    z-index: 2;
}

/* Title */
.partner-hero-title {
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.2;
    /* margin-bottom: 5px; */
}

/* Subtitle */
.partner-subtitle {
    font-weight: 600;
    color: #444;
    /* margin-bottom: 18px; */
}

/* Description */
.partner-desc {
    color: #555;
    font-weight: 500;
    line-height: 1.7;
    max-width: 560px;
}

/* ================= IMAGE ================= */

.partner-hero-image {
    position: relative;
    display: inline-block;
}

.partner-hero-image img {
    border-radius: 24px;
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* ================= MOBILE (DEFAULT) ================= */

.partner-hero-title {
    font-size: 3rem;
}

.partner-hero-subtitle {
    font-size: 1.8rem;
}


/* ================= TABLET ================= */
@media (min-width: 576px) {

    .partner-hero-title {
        font-size: 3.5rem;
    }

    .partner-hero-subtitle {
        font-size: 2rem;
    }

}

/* ================= LAPTOP ================= */
@media (min-width: 992px) {

    /* .partner-hero-section {
        padding: 180px 0;
    } */

    .partner-hero-title {
        font-size: 3.3rem;
        /* text-align: left; */
    }
}

/* ================= LARGE SCREEN ================= */

@media (min-width: 1200px) {

     .partner-hero-section {
        /* min-height: 100vh !important;  */
        padding:  180px 0 80px;
        /* background-attachment: fixed; */
    }


    .partner-hero-title {
        font-size: 3.8rem;
    }

    .partner-subtitle {
        font-size: 1.7rem;
    }

    .partner-desc {
        font-size: 1.1rem;
    }

}






/* .partner-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(130deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(250, 245, 232, 0.92) 35%,
            rgba(240, 226, 198, 0.88) 70%,
            rgba(230, 210, 176, 0.85) 100%),
        url('assets/img/Partner2.jpg');

    background-size: cover;
    background-position: center;
    background-blend-mode: soft-light;
    background-attachment: fixed;
    padding-top: 110px;
    position: relative;
    overflow: hidden;
}

.partner-hero-content {
    z-index: 2;
    position: relative;
}

.partner-hero-content p {
    font-weight: 500;
}

.partner-hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--dark-blue);
    font-weight: 800;
} */




/* .partner-img-wrapper {
    position: relative;
    z-index: 1;
    animation: float-img 6s ease-in-out infinite;
}

.partner-img {
    border-radius: 24px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--white);
}

.partner-img-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-red));
    border-radius: 24px;
    z-index: -1;
    opacity: 0.2;
} */


/* === 7. HERO SECTION === */
/* .partner-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 3rem;
    overflow: hidden;
} */

/* --- Global Components --- */
.btn-brand {
    background-color: var(--primary-red);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-brand:hover {
    background-color: var(--accent-yellow);
    color: var(--deep-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* .partner-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: -1;
} */

.partner-title {
    font-size: 3.5rem;
    font-weight: 800;
    /* margin-bottom: 1rem; */
    animation: fadeInUp 0.8s ease;
    color: var(--brand-red);
}

.partner-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-charcoal);
    /* margin-bottom: 1.5rem; */
    animation: fadeInUp 0.8s ease 0.2s both;
}

.partner-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    /* margin-bottom: 2rem; */
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}


.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    /* font-size: 1.5rem;
    color: var(--brand-red);
    min-width: 24px; */
    width: 35px;
    height: 35px;
    background: var(--gradient-red-yellow);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 0.9rem;

}

.feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-image-wrapper {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.floating-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    z-index: -1;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === 8. INDUSTRY SECTION === */
.industry-section {
    /* padding: var(--spacing-2xl) 0; */
    background-color: var(--bg-light-gray);
}

.industry-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-charcoal);
}

.industry-text strong {
    color: var(--brand-red);
    font-weight: 600;
}

.industry-image-wrapper img {
    border-radius: 16px;
    transition: transform var(--transition-normal);
}

.industry-image-wrapper img:hover {
    transform: scale(1.02);
}

.counter-card {
    background: var(--bg-white);
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), var(--gradient-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.counter-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.counter-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--bg-white);
    font-size: 1.5rem;
}

.counter-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
}

.counter-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 0.5rem;
}

.counter-description {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* === 9. STATS BANNER === */
.stats-banner-section {
    padding: var(--spacing-2xl) 0;
    background: var(--gradient-primary);
    position: relative;
}

.stats-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.stats-banner-section .container {
    position: relative;
    z-index: 1;
}

.banner-stat {
    text-align: center;
    color: var(--bg-white);
}

.banner-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.banner-number {
    font-size: 3rem;
    font-weight: 800;
    display: inline-block;
}

.banner-suffix {
    font-size: 2rem;
    font-weight: 700;
    display: inline-block;
    margin-left: 0.25rem;
}

.banner-label {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.5rem;
    opacity: 0.95;
}

/* === 10. PARTNERSHIP TIERS === */
.partnership-tiers-section {
    padding: var(--spacing-2xl) 0;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-red);
}

.pricing-card.featured {
    border: 2px solid var(--brand-red);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 0.75rem;
}

.pricing-description {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brand-red);
}

.pricing-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-red);
}

.pricing-price .gst {
    font-size: 1rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.25rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pricing-features i {
    color: #10B981;
    margin-top: 0.25rem;
    font-size: 1.125rem;
}

/* === 11. BENEFITS SECTION === */
/* .benefits-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-white);
} */

.benefit-card {
    /* background: var(--bg-light-gray); */
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-normal);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
    background: var(--bg-white);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--bg-white);
}

.benefit-icon.red {
    background: var(--brand-red);
}

.benefit-icon.yellow {
    background: var(--brand-yellow);
}

.benefit-icon.blue {
    background: var(--brand-blue);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 1rem;
}

.benefit-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* === 12. ONBOARDING SECTION === */
/* .onboarding-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light-gray);
} */

.timeline-wrapper {
    position: relative;
    padding: 0rem 0;
}

.timeline-line {
    position: absolute;
    top: 20px;
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 0;
}

.timeline-item {
    position: relative;
    text-align: center;
    z-index: 1;
}

.timeline-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    border: 4px solid var(--bg-white);
    box-shadow: var(--shadow-md);
}

.timeline-icon {
    width: 50px;
    height: 50px;
    margin: 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: 50%;
    color: var(--brand-red);
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 0.75rem;
}

.timeline-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* === 13. TESTIMONIALS === */
.testimonials-section {
    padding: var(--spacing-2xl) 0;
}

.testimonialSwiper {
    padding: 2rem 0 4rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 3rem;
    color: var(--brand-yellow);
    opacity: 0.3;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
    color: var(--brand-yellow);
    font-size: 1.125rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-charcoal);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--bg-light-gray);
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--brand-red);
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--brand-red);
}

.swiper-pagination-bullet-active {
    background: var(--brand-red);
}

/* === 14. CONTACT FORM === */
.contact-form-section {
    /* padding: var(--spacing-2xl) 0; */
    /* background: linear-gradient(135deg, #EBF8FF 0%, var(--bg-light-gray) 100%); */
    /* color: #ffffff; */


}




.partner-form {
    /* background: var(--bg-white); */
    /* background: linear-gradient(90deg, #E63946, #FF6B00, #FFC107); */
    background: linear-gradient(90deg,
            #FF6B6B 0%,
            #FFA94D 50%,
            #FFD43B 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* .form-group {
    margin-bottom: 1.5rem;
} */

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-charcoal);
    margin-bottom: 0.5rem;
}

.required {
    color: var(--brand-red);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    transition: all var(--transition-fast);
    font-family: 'Roboto', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-control.is-valid {
    border-color: #10B981;
}

.form-control.is-invalid {
    border-color: #EF4444;
}

.invalid-feedback {
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-control.is-invalid~.invalid-feedback {
    display: block;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--bg-white);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
}

.social-icon.linkedin {
    background: #0A66C2;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg);
}


/* === 17. SUCCESS MODAL === */
.success-icon {
    font-size: 4rem;
    color: #10B981;
}


/* Tablet (768px - 992px) */
@media (max-width: 992px) {
    .partner-title {
        font-size: 2.5rem;
    }

    .partner-subtitle {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline-line {
        display: none;
    }

    /* .timeline-item {
        margin-bottom: 2rem;
    } */

    .pricing-card.featured {
        transform: scale(1);
    }
}

/* Mobile Landscape / Tablet Portrait (577px - 768px) */
@media (max-width: 768px) {
    /* .partner-section {
        min-height: auto;
        padding: 5rem 0 3rem;
    } */

    .partner-title {
        font-size: 2.4rem;
    }

    .partner-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        margin-bottom: 1rem;
    }

    .banner-number {
        font-size: 2.5rem;
    }

    .partner-form {
        padding: 2rem;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Mobile Portrait (320px - 576px) */
@media (max-width: 576px) {
    /* h1 {
        font-size: 2rem;
    } */

    /* h2 {
        font-size: 1.75rem;
    } */

    h3 {
        font-size: 1.5rem;
    }

    /* .partner-title {
        font-size: 1.75rem;
    } */

    .partner-subtitle {
        font-size: 1.25rem;
    }

    .partner-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .partner-form {
        padding: 1.5rem;
    }

    .banner-number {
        font-size: 2rem;
    }

    .banner-suffix {
        font-size: 1.5rem;
    }

    .footer-widget {
        margin-bottom: 2rem;
    }
}

/* === 19. UTILITY CLASSES === */
/* .mt-1 {
    margin-top: var(--spacing-xs);
}

.mt-2 {
    margin-top: var(--spacing-sm);
}

.mt-3 {
    margin-top: var(--spacing-md);
}

.mt-4 {
    margin-top: var(--spacing-lg);
}

.mt-5 {
    margin-top: var(--spacing-xl);
}

.mb-1 {
    margin-bottom: var(--spacing-xs);
}

.mb-2 {
    margin-bottom: var(--spacing-sm);
}

.mb-3 {
    margin-bottom: var(--spacing-md);
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

.mb-5 {
    margin-bottom: var(--spacing-xl);
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
} */

/* === 20. ANIMATIONS === */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Smooth scroll for all browsers */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--brand-red);
    color: var(--bg-white);
}

::-moz-selection {
    background: var(--brand-red);
    color: var(--bg-white);
}



/* --- Contact & Location Grid --- */
.contact-section {
    background: #fff;
    /* padding: 100px 0; */
}

.contact-info-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    height: 100%;
    border-left: 5px solid var(--brand-red);
}

.form-control-custom {
    padding: 15px;
    border-radius: 10px;
    background: #f1f3f5;
    border: 2px solid transparent;
    margin-bottom: 15px;
}

.form-control-custom:focus {
    background: #fff;
    border-color: var(--brand-yellow);
    box-shadow: none;
}

/* --- Partners --- */
.partner-cta-grid {
    background: var(--primary-navy);
    border-radius: 40px;
    padding: 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.partner-cta-grid::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--brand-gradient);
    opacity: 0.1;
}

/* footer {
    background: #0c1421;
    color: #a1b0cb;
    padding: 80px 0 30px;
}

.footer-logo {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
} */

@media (max-width: 991px) {
    .partner-cta-grid {
        padding: 40px 20px;
    }
}




/* Partnership Table */
.table-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.custom-table thead th {
    /* background: var(--brand-blue); */
    /* background: linear-gradient(135deg, #FF6B00, #FFC107); */
    background: linear-gradient(90deg,
            #D8433A 0%,
            #E65C2E 30%,
            #F08A1A 60%,
            #F4B000 100%);
    color: white;
    padding: 20px 30px;
    border: none;
    font-size: 1.1rem;
    text-align: center;
    vertical-align: middle;
}

.custom-table tbody td {
    padding: 25px 20px;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.check-icon {
    /* color: #10b981 !important; */
    color: var(--brand-red);
    font-size: 1.4rem;
}

.price-tag {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--brand-red);
}


.lead {
    line-height: 1.5;
    font-weight: 400;
    max-width: 500px;
}

.global-para {
    max-width: 800px;
    font-weight: 600;
    color: #0F172A;
    /* font-size: 1rem; */
}


.testimonial-section {
    /* padding: 100px 0; */
    background: linear-gradient(135deg, #fff7f0, #fff1e6);
}

.testimonial-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(90deg, #e60000, #ffae00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* margin-bottom: 60px; */
}

/* Swiper wrapper fix */
/* .swiper {
    padding: 40px 60px;
} */

.mySwiper {
    padding: 40px 60px;
}

/* Card */
.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 230, 200, 0.5));
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(255, 94, 0, 0.15);
    transition: 0.4s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.quote-icon {
    font-size: 35px;
    background: linear-gradient(90deg, #e60000, #ffae00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.stars i {
    color: #ffae00;
}

.testimonial-name {
    color: #e60000;
    font-weight: 600;
    margin-top: 15px;
}

/* === FIXED NAVIGATION BUTTONS === */

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, #e60000, #ffae00);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Keep buttons inside container */
.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    color: #fff;
}

/* Pagination */
.swiper-pagination {
    margin-top: 20px;
}

.swiper-pagination-bullet {
    background: #ffae00;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #e60000;
    opacity: 1;
}

.disabled-link {
    pointer-events: none;
    cursor: not-allowed;
}

.industry-heading {
    font-size: 2.5rem;
    font-weight: bold;
}


.global-heading {
    font-weight: bold;
    font-size: 2.5rem;
}


/* Responsive */
@media(max-width:768px) {
    .testimonial-title {
        font-size: 28px;
    }

    .mySwiper {
        padding: 30px 20px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}


@media (max-width:768px) {

    .cards-grid {
        gap: 20px;
    }

    .section-padding {
        padding: 25px 0;
    }

    .footer {
        padding-top: 40px;
    }

    .footer-bottom {
        margin-top: 5px;
    }

    .footer h4 {
        margin-bottom: 0.50rem;
    }

    .lead {
        max-width: 700px;
    }

    .industry-heading {
        font-size: 2rem;
    }

    .industry-text {
        font-size: 1rem;
    }

    .custom-table thead th {
        padding: 10px 8px;
        font-size: 0.90rem;
    }

    .custom-table tbody td {
        padding: 10px 10px;
    }

    .price-tag {
        font-size: 1rem;
    }

    .global-heading {
        font-size: 2rem;
    }

    .timeline-icon {
        font-size: 2.8rem;
        height: 35px;
    }



}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .partner-hero-title {
        font-size: 3rem;
    }
}


@media(min-width: 992px) and (max-width: 1199.98px) {
    .nav-link {
        margin: 0 4px !important;
    }

}





/* ===================SECTION BACKGROUND====================== */

.ck-testimonial-section {
    /* padding: 100px 0; */
    background: linear-gradient(135deg, #fff5f5, #fff9e6, #fff2f2);
}

/* TITLE */

.ck-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #e60000, #ffb300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ck-subtitle {
    color: #777;
}

/* SWIPER FIX */

.ck-swiper .ck-swiper {
    padding-top: 0px;
    position: relative;
    padding-bottom: 70px;
    /* space for pagination */
}

/* CARD */

.ck-card {
    background: linear-gradient(145deg, #ffffff, #fff5f5, #fff8e6);
    border-radius: 25px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(230, 0, 0, 0.08);
    transition: 0.4s ease;
    height: 100%;
    position: relative;
}

.ck-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(230, 0, 0, 0.2);
}

/* Top gradient line */

.ck-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    border-radius: 25px 25px 0 0;
    background: linear-gradient(90deg, #e60000, #ffb300);
}

/* Quote */

.ck-quote {
    font-size: 3rem;
    color: rgba(230, 0, 0, 0.08);
    position: absolute;
    top: 20px;
    left: 25px;
}

/* TEXT */

.ck-text {
    font-style: italic;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

/* USER */

.ck-user img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #e60000, #ffb300) border-box;
}

.ck-stars i {
    background: linear-gradient(90deg, #e60000, #ffb300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===========================
   NAVIGATION BUTTONS
=========================== */

.ck-next,
.ck-prev {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(90deg, #e60000, #ffb300);
    box-shadow: 0 10px 25px rgba(230, 0, 0, 0.3);
    z-index: 10;
}

.ck-next {
    right: -25px;
}

.ck-prev {
    left: -25px;
}

.ck-next::after,
.ck-prev::after {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

/* ===========================
   PAGINATION
=========================== */

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    background: #e60000;
    opacity: 0.4;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: linear-gradient(90deg, #e60000, #ffb300);
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px) {
    .ck-next {
        right: 0;
    }

    .ck-prev {
        left: 0;
    }
}

@media(max-width:768px) {
    .ck-title {
        font-size: 1.8rem;
    }

    .ck-card {
        padding: 35px 20px;
    }

    .ck-swiper {
        padding-bottom: 40px;
    }

}