/* ===============================
   GLOBAL RESET & VARIABLES
================================ */
:root {
    --brand: #ffc107;
    --primary: #2563eb;
    --dark: #0f172a;
    --muted: #6b7280;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    font-family: "Poppins", system-ui, sans-serif;
    background: #f5f8ff;
    color: var(--dark);
}

/* ===============================
   CONTAINER
================================ */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
}

/* ===============================
   RESPONSIVE – MOBILE
================================ */
@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-row {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ===============================
   RESPONSIVE – LAPTOP
================================ */
@media (min-width: 769px) and (max-width: 1200px) {

    .services-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===============================
   RESPONSIVE – DESKTOP
================================ */
@media (min-width: 1201px) {

    .services-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}



:root {
    --brand: #ffc107;
    --brand-dark: #ff9f00;
    --pink: #ff40c6;
    --bg: #f5f8ff;
    --dark: #111111;
    --muted: #6c757d;
    --white: #ffffff;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #ddf3ff, #f4f7ff);
    color: #132998;
}

.logo img,
.logo-img {
    height: 60px; /* adjust size */
    width: auto;
    display: block;
    object-fit: contain;
}


/* Container */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.02);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}


/* Desktop nav links */
.nav-links {
    display: flex;
    gap: 22px;
    font-weight: 700;
    font-size: 13px;
    align-items: center;
}


    .nav-links a,
    .nav-links .dropdown > a {
        text-decoration: none;
        color: #061438;
        position: relative;
        padding-bottom: 3px;
    }

        .nav-links a:hover,
        .nav-links .dropdown > a:hover,
        .nav-links a.active {
            color: #5422ec;
        }

            /* Pink underline for active */
            .nav-links a.active::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -3px;
                width: 20px;
                height: 3px;
                background: var(--pink);
                border-radius: 999px;
            }

/* Dropdown base */
.dropdown {
    position: relative;
}

    /* Dropdown arrow icon */
    .dropdown i {
        font-size: 10px;
        margin-left: 4px;
    }

/* Dropdown menu box */
.dropdown-menu {
    position: absolute;
    top: 26px;
    left: 0;
    width: 180px;
    background: #fff;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 6px 22px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    z-index: 999;
}

    /* Dropdown menu links */
    .dropdown-menu a {
        display: block;
        padding: 8px 16px;
        font-size: 13px;
        color: #222;
        text-decoration: none;
        transition: 0.2s ease;
    }

        .dropdown-menu a:hover {
            background: #f5f5f5;
        }

/* hover to open dropdown */
.dropdown:hover > .dropdown-menu {
    display: flex;
}

/* Right side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}


/* --- Get Quote Button --- */
.btn-quote {
    /* background: #49d649;*/
    background: linear-gradient(90deg, #4000ff, #70a4fb, #4000ff);
    padding: 8px 25px;
    border-radius: 12px;
    color: #f8f1f1;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #fff;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

    .btn-quote:hover {
        background: linear-gradient(90deg, #1537f3, #c0ff72);
        transform: translateY(-2px);
    }



/* Modal background stays same */
.quote-modal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(5px);
    z-index: 9999;
}

/* Box like your second screenshot */
.quote-box {
    width: 95%;
    max-width: 950px;
    background: white; /* light grey */
    border-radius: 10px;
    padding: 25px 30px 30px;
    position: relative;
    animation: fadeIn 0.3s ease;
}

/* Title centered */
.quote-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
}

/* Stack fields vertically */
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    /* Inputs & select full width, tall like screenshot */
    .quote-form input,
    .quote-form select {
        width: 100%;
        padding: 14px 16px;
        border-radius: 6px;
        border: 0;
        background: #f2f1f6;
        font-size: 14px;
        outline: none;
    }

/* Button centered with same style you had */
.quote-submit {
    margin-top: 18px;
    align-self: center;
    padding: 12px 40px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(90deg, #fff600, #b3ff00);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.form-select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    background-color: #fff;
    border: 1.8px solid #dcdcdc;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    /* remove default browser arrow */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* custom arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgb(255 255 255);
}

/* Close button (top-right X) */
.close-quote {
    position: absolute;
    top: 10px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}


.nav-links-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #fff;
    color: blue;
    padding: 20px;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    transition: 0.3s ease;
    z-index: 9999;
}

    .nav-links-mobile.open {
        right: 0;
    }

.mobile-close {
    background: none;
    border: none;
    font-size: 22px;
    float: right;
    cursor: pointer;
}


.mobile-logo {
    width: 150px;
    margin-bottom: 20px;
}

.mobile-contact-info p {
    margin: 6px 0;
    font-size: 14px;
}


/* Container */
.mobile-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

    /* Base icon circle */
    .mobile-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: 0.3s ease;
        box-shadow: 0 6px 18px rgba(0,0,0,0.22);
    }

        /* Icon glyph */
        .mobile-social a i {
            color: #fff;
            font-size: 20px;
        }

        /* BRAND COLORS AUTO-DETECT */

        /* Facebook */
        .mobile-social a:has(.fa-facebook-f) {
            background: #1877F2;
        }

        /* Telegram */
        .mobile-social a:has(.fa-telegram) {
            background: #0088cc;
        }

        /* Twitter / X */
        .mobile-social a:has(.fa-twitter) {
            background: #000000; /* X brand black */
        }
        /* X (Twitter) */
        .mobile-social a:has(.fa-x-twitter) {
            background: #000000;
        }

        /* YouTube */
        .mobile-social a:has(.fa-youtube) {
            background: #FF0000;
        }

        /* Instagram Gradient */
        .mobile-social a:has(.fa-instagram) {
            background: linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5);
        }

        /* LinkedIn */
        .mobile-social a:has(.fa-linkedin) {
            background: #0A66C2;
        }

        /* WhatsApp */
        .mobile-social a:has(.fa-whatsapp) {
            background: #25D366;
        }

        /* Hover effect */
        .mobile-social a:hover {
            transform: translateY(-4px) scale(1.08);
            box-shadow: 0 10px 26px rgba(0,0,0,0.35);
        }

.mobile-form input,
.mobile-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.mobile-submit {
    width: 100%;
    padding: 12px;
    color: #e2ebeb;
    background: #2735df;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}


.hero {
    /*background-image: url('../images/blue .png');*/
    background-color: navy;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.hero-badge {
    overflow: hidden;
    display: inline-block;
    font-size: 10px;
    width: 250px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 16px;
}

.hero-title {
    font-size: 30px;
    color: white;
    line-height: 1.1;
    margin-bottom: 12px;
}

    .hero-title span {
        color: var(--brand-dark);
    }

.hero-text {
    font-size: 14px;
    color: var(--muted);
    max-width: 420px;
    margin-bottom: 22px;
}


.hero-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    pointer-events: none;
}

/* PNG icons */
.fall-item {
    position: absolute;
    width: 20px;
    animation: fall 6s linear infinite;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Emoji icons */
.hero-bubbles .fall-emoji {
    position: absolute;
    font-size: 24px;
    animation: fall 6s linear infinite;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

    /* Positions (adjust as you like) */
    .hero-bubbles .fall-emoji:nth-child(1) {
        left: 10%;
        animation-duration: 5s;
    }

    .hero-bubbles .fall-emoji:nth-child(2) {
        left: 25%;
        animation-duration: 6s;
    }

    .hero-bubbles .fall-emoji:nth-child(3) {
        left: 40%;
        animation-duration: 7s;
    }

    .hero-bubbles .fall-emoji:nth-child(4) {
        left: 60%;
        animation-duration: 5.5s;
    }

    .hero-bubbles .fall-emoji:nth-child(5) {
        left: 75%;
        animation-duration: 4.5s;
    }

    .hero-bubbles .fall-emoji:nth-child(6) {
        left: 90%;
        animation-duration: 6.5s;
    }

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateY(800px) rotate(360deg);
        opacity: 0;
    }
}



.navbar-dark .navbar-nav .nav-link {
    /* color: #fff; */
    position: relative;
    padding-bottom: 6px;
}

/* underline */
.navbar-dark .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

/* hover */
.navbar-dark .navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* active page */
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 100%;
}



.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 12px;
    background: #49d649;
    color: #fafbfb;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

    /* Hover: ORANGE ? DARK ORANGE */
    .btn-primary:hover {
        background: linear-gradient(90deg, #1537f3, #c0ff72);
        transform: translateY(-3px);
    }


/* Right hero container */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}



/* Circle wrapper */
.hero-circle {
    position: relative;
    width: 380px; /* tweak size */
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background circle image */
.hero-circle-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Spider + S image on top */
.hero-logo-img {
    position: relative;
    width: 72%; /* tweak if needed */
    height: auto;
    object-fit: contain;
}


/* SERVICES STRIP */
.services {
    padding: 10px 0 0px;
    margin-top: -22px;
}

.services-row {
    display: flex;
    gap: 24px;
    height: 133px;
}

/* default card: WHITE */
.service-item {
    flex: 1 1 0;
    display: flex;
    align-items: flex-start;
    gap: 1px;
    background: #c0ff72;
    border-radius: 26px;
    padding: 2px 2px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

/* icon */
.service-icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #fffdf3;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .service-icon i {
        font-size: 26px;
        color: #111;
    }

/* text */
.service-text h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.service-sub {
    font-size: 13px;
    color: #7a808c;
}

.service-desc {
    font-size: 13px;
    color: #444;
}

/* View More: hidden until hover */
.service-view-more {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* HOVER STATE: ORANGE CARD */
.service-item:hover {
    background: #001eff; /* blue */
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
}

    .service-item:hover .service-icon {
        background: rgba(255, 255, 255, 0.15);
    }

    .service-item:hover h3,
    .service-item:hover .service-sub,
    .service-item:hover .service-desc,
    .service-item:hover i {
        color: #ffffff;
    }

    /* show "View More" only on hover */
    .service-item:hover .service-view-more {
        opacity: 1;
    }

/* responsive */
@media (max-width: 992px) {
    .services-row {
        flex-direction: column;
    }
}


/* FOOTER */
.footer {
    padding: 18px 0 26px;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-right {
        order: -1;
    }

    .services-inner {
        grid-template-columns: 1fr 1fr;
        margin-top: 12px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* hide desktop nav */
    }

    .services-inner {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 32px;
    }
}

/* =========================
   PRODUCT HERO SECTION
========================= */

.product-hero {
    position: relative;
    min-height: 55vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* DARK OVERLAY */
.product-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.65) );
}

/* CONTENT */
.product-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

/* TITLE */
.product-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* SUBTITLE */
.product-hero-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 18px;
}

/* BREADCRUMBS */
.product-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

    .product-breadcrumbs a {
        color: #ffd700;
        text-decoration: none;
        font-weight: 500;
    }

        .product-breadcrumbs a:hover {
            text-decoration: underline;
        }

    .product-breadcrumbs .current {
        color: #ffffff;
        font-weight: 600;
    }

/* =========================
   📱 MOBILE
========================= */
@media (max-width: 600px) {

    .product-hero {
        min-height: 40vh;
    }

    .product-hero-title {
        font-size: 26px;
    }

    .product-hero-subtitle {
        font-size: 14px;
    }

    .product-breadcrumbs {
        font-size: 13px;
    }
}

/* =========================
   💻 LAPTOP / TABLET
========================= */
@media (min-width: 601px) and (max-width: 1024px) {

    .product-hero {
        min-height: 48vh;
    }

    .product-hero-title {
        font-size: 36px;
    }
}

/* =========================
   🖥️ DESKTOP
========================= */
@media (min-width: 1025px) {

    .product-hero {
        min-height: 55vh;
    }

    .product-hero-title {
        font-size: 48px;
    }
}







/* =========================
   ABOUT PAGE HERO
========================= */

.about-page-hero {
    position: relative;
    min-height: 55vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

/* OVERLAY */
.about-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.7) );
}

/* CONTENT */
.about-page-hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

/* TITLE */
.about-page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
}

/* BREADCRUMBS */
.about-page-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

    .about-page-breadcrumbs a {
        color: #ffd700;
        text-decoration: none;
        font-weight: 500;
    }

        .about-page-breadcrumbs a:hover {
            text-decoration: underline;
        }

    .about-page-breadcrumbs .current {
        color: #ffffff;
        font-weight: 600;
    }

/* =========================
   📱 MOBILE
========================= */
@media (max-width: 600px) {

    .about-page-hero {
        min-height: 40vh;
    }

    .about-page-title {
        font-size: 26px;
    }

    .about-page-breadcrumbs {
        font-size: 13px;
    }
}

/* =========================
   💻 LAPTOP / TABLET
========================= */
@media (min-width: 601px) and (max-width: 1024px) {

    .about-page-hero {
        min-height: 48vh;
    }

    .about-page-title {
        font-size: 36px;
    }
}

/* =========================
   🖥️ DESKTOP
========================= */
@media (min-width: 1025px) {

    .about-page-hero {
        min-height: 55vh;
    }

    .about-page-title {
        font-size: 48px;
    }
}


/* =========================
   CONTACT PAGE HERO
========================= */

.contact-page-hero {
    position: relative;
    min-height: 55vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

/* OVERLAY */
.contact-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.7) );
}

/* CONTENT */
.contact-page-hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

/* TITLE */
.contact-page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
}

/* BREADCRUMBS */
.contact-page-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

    .contact-page-breadcrumbs a {
        color: #ffd700;
        text-decoration: none;
        font-weight: 500;
    }

        .contact-page-breadcrumbs a:hover {
            text-decoration: underline;
        }

    .contact-page-breadcrumbs .current {
        color: #ffffff;
        font-weight: 600;
    }

/* =========================
   📱 MOBILE
========================= */
@media (max-width: 600px) {

    .contact-page-hero {
        min-height: 40vh;
    }

    .contact-page-title {
        font-size: 26px;
    }

    .contact-page-breadcrumbs {
        font-size: 13px;
    }
}

/* =========================
   💻 LAPTOP / TABLET
========================= */
@media (min-width: 601px) and (max-width: 1024px) {

    .contact-page-hero {
        min-height: 48vh;
    }

    .contact-page-title {
        font-size: 36px;
    }
}

/* =========================
   🖥️ DESKTOP
========================= */
@media (min-width: 1025px) {

    .contact-page-hero {
        min-height: 55vh;
    }

    .contact-page-title {
        font-size: 48px;
    }
}

/* =========================
   PRODUCT / SERVICES SECTION
========================= */

.product-section {
    background: #f6f8ff;
    padding: 90px 20px;
}

.product-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.product-header {
    text-align: center;
    margin-bottom: 50px;
}

.product-badge {
    display: inline-block;
    padding: 6px 18px;
    background: #e0e7ff;
    color: #4338ca;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 14px;
}

.product-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.product-subtitle {
    font-size: 15px;
    color: #475569;
}

/* =========================
   PRODUCT LIST
========================= */

.product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* PRODUCT CARD */
.product-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(0,0,0,0.18);
    }

  /*  .product-card img {
        width: 70px;
        height: 70px;
        object-fit: contain;
        margin-bottom: 16px;
    }*/
    .product-card img {
        width: 100%;
        height: 180px; /* adjust height as you like */
        object-fit: cover; /* fills the area */
        border-radius: 12px;
        margin-bottom: 12px;
    }



    .product-card h3 {
        font-size: 15px;
        font-weight: 600;
        color: #1e293b;
    }

/* =========================
   FOOTER BUTTON
========================= */

.product-footer {
    text-align: center;
    margin-top: 50px;
}

.product-btn {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(90deg, #4f46e5, #6366f1);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

    .product-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    }

/* =========================
   📱 MOBILE
========================= */
@media (max-width: 600px) {

    .product-title {
        font-size: 24px;
    }

    .product-list {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .product-card {
        min-width: 220px;
        flex: 0 0 auto;
    }
}

/* =========================
   💻 LAPTOP / TABLET
========================= */
@media (min-width: 601px) and (max-width: 1024px) {

    .product-title {
        font-size: 30px;
    }

    .product-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   🖥️ DESKTOP
========================= */
@media (min-width: 1025px) {

    .product-title {
        font-size: 36px;
    }

    .product-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================
   ABOUT MODERN SECTION
========================= */

.about-modern {
    background: linear-gradient(90deg, #e9f8ce, #ffffff, #e9f8ce);
    padding: 90px 20px;
    text-align: center;
}

/* CONTAINER */
.about-container {
    max-width: 1200px;
    margin: auto;
}

/* BADGE */
.about-badge {
    display: inline-block;
    padding: 6px 18px;
    background: #d8d7e6;
    color: #544be5;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 14px;
}

/* HEADING */
.about-heading {
    font-size: 34px;
    font-weight: 800;
    color: #000;
    line-height: 1.3;
    margin-bottom: 10px;
}

/* SUBHEADING */
.about-subheading {
    font-size: 15px;
    color: #333;
    margin-bottom: 40px;
}

/* IMAGE CARD */
.about-image-card {
    max-width: 900px;
    margin: 0 auto 50px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, #6f2da8, #f5c32c);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

    .about-image-card img {
        width: 100%;
        display: block;
        border-radius: 22px;
    }

/* INFO GRID */
.about-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 40px;
}

/* INFO CARD */
.about-info-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

    .about-info-card h3 {
        font-size: 18px;
        color: #000;
        margin-bottom: 10px;
    }

    .about-info-card p {
        font-size: 14px;
        color: #444;
        line-height: 1.7;
    }

/* BUTTON */
.about-action {
    text-align: center;
}

.about-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, #4000ff, #70a4fb);
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s ease;
}

    .about-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    }

/* =========================
   📱 MOBILE
========================= */
@media (max-width: 600px) {

    .about-modern {
        padding: 60px 16px;
    }

    .about-heading {
        font-size: 24px;
    }

    .about-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-image-card {
        margin-bottom: 30px;
    }
}

/* =========================
   💻 LAPTOP / TABLET
========================= */
@media (min-width: 601px) and (max-width: 1024px) {

    .about-heading {
        font-size: 28px;
    }

    .about-image-card {
        max-width: 750px;
    }
}

/* =========================
   🖥️ DESKTOP
========================= */
@media (min-width: 1025px) {

    .about-heading {
        font-size: 34px;
    }
}

/* ===================== DARK SERVICES SECTION ===================== */

.services-dark {
    /* background: #8181e1;*/
    background: linear-gradient(90deg, #6d73e6, #7b80e7, #8a8df0);
    padding: 90px 0;
    color: #fff;
}

/* main layout */
.services-dark-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* -------- LEFT SIDE -------- */

.services-dark-left {
    flex: 0 0 40%;
}

/* yellow pill "SERVICES" */
.services-dark-label {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    background: #ffdd00;
    color: #111;
    padding: 6px 20px;
    border-radius: 999px;
    margin-bottom: 16px;
}

/* main heading */
.services-dark-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 14px;
    font-weight: 700;
}

    .services-dark-title span {
        color: #ff40c6; /* pink word "Services" */
    }

/* description */
.services-dark-desc {
    font-size: 14px;
    color: #b6b9c7;
    max-width: 360px;
    margin-bottom: 26px;
}

/* yellow button */
.services-dark-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 999px;
    background: linear-gradient(90deg, #4000ff, #70a4fb, #4000ff);
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

    .services-dark-btn:hover {
        background: linear-gradient(90deg, #1537f3, #c0ff72);
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
    }

/* -------- RIGHT SIDE (cards / slider) -------- */

/*.services-dark-right {
    flex: 0 0 60%;
    overflow-x: auto;
    padding-bottom: 0;*/ /* remove extra space */
/*background: transparent;*/ /* ensure no background */
/*box-shadow: none;*/ /* prevent any container shadow */
/*}*/

/* horizontal track */
/*.services-dark-track {
    display: flex;
    gap: 22px;
    min-width: max-content;
}*/

/* card */
/*.services-dark-card {
    background: #25163a;*/ /* dark purple */
/*border-radius: 24px;
    width: 340px;
    flex: 0 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85);
}*/

/*.services-dark-card {
    display: flex;
    flex-direction: column-reverse;*/ /* reverses image & content */
/*width: 340px;
    flex: 0 0 auto;
    overflow: hidden;
    display: flex;*/
/*flex-direction: column;*/
/*box-shadow: 20px 45px rgb(122 111 208);
    background: #e6d87a;
}*/


/* top image */
/*.services-dark-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}*/

/*.services-dark-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}*/

/*-------------------------------
scoll datalist
----------------------*/
/* =========================
   SERVICES TOP SECTION
========================= */

.svc-top {
    padding: 80px 20px;
    background: #0f0f3d;
    color: #fff;
}

.svc-top-inner {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.svc-top-header {
    text-align: center;
    margin-bottom: 40px;
}

.svc-top-label {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #ffe600;
}

.svc-top-title {
    font-size: 36px;
    margin: 12px 0;
}

.svc-top-desc {
    color: #c7c7e6;
    font-size: 15px;
}

/* =========================
   SLIDER
========================= */

.services-dark-right {
    overflow-x: auto;
    padding-bottom: 14px;
}

.services-dark-track {
    display: flex;
    gap: 22px;
    min-width: max-content;
}

/* CARD */
.services-dark-card {
    width: 320px;
    background: #f5e67a;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(122, 111, 208, 0.6);
    transition: transform 0.3s ease;
    flex: 0 0 auto;
}

    .services-dark-card:hover {
        transform: translateY(-6px);
    }

/* IMAGE */
.services-dark-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

/* TEXT */
.services-dark-card-body {
    padding: 16px;
    text-align: center;
}

    .services-dark-card-body h3 {
        font-size: 15px;
        font-weight: 600;
        color: #1a1477;
    }

/* =========================
   BUTTON
========================= */

.svc-top-footer {
    text-align: center;
    margin-top: 40px;
}

.svc-top-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, #4000ff, #70a4fb);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

/* =========================
   SCROLLBAR
========================= */

.services-dark-right::-webkit-scrollbar {
    height: 6px;
}

.services-dark-right::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 999px;
}

/* =========================
   📱 MOBILE
========================= */
@media (max-width: 600px) {

    .svc-top-title {
        font-size: 26px;
    }

    .services-dark-card {
        width: 260px;
    }

    .services-dark-image img {
        height: 160px;
    }
}

/* =========================
   💻 LAPTOP
========================= */
@media (min-width: 601px) and (max-width: 1024px) {

    .svc-top-title {
        font-size: 30px;
    }

    .services-dark-card {
        width: 280px;
    }
}

/* =========================
   🖥️ DESKTOP
========================= */
@media (min-width: 1025px) {

    .svc-top-title {
        font-size: 36px;
    }
}

/* text inside card */
/*.services-dark-card-body {
    padding: 16px 18px 18px;
}

    .services-dark-card-body h3 {
        font-size: 15px;
        font-weight: 600;
        color: #1a1477;
        margin-bottom: 8px;
    }

.services-dark-link {
    font-size: 12px;
    font-weight: 700;
    color: #2d00ff;
    text-decoration: none;
}

    .services-dark-link:hover {
        text-decoration: underline;
    }*/

/* -------- DOTS UNDER SLIDER -------- */

/*.services-dark-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.services-dark-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background: #555;
    opacity: 0.5;
    cursor: pointer;
    padding: 0;
    transition: width 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}*/

/* active = long yellow dot (?) */
/*.services-dark-dot.active {
        width: 18px;
        background: #ffe600;
        opacity: 1;
    }*/

/* scrollbar styling (optional) */
/*.services-dark-right::-webkit-scrollbar {
    height: 6px;
}

.services-dark-right::-webkit-scrollbar-track {
    background: transparent;
}

.services-dark-right::-webkit-scrollbar-thumb {
    background:white;
    border-radius: 999px;
}*/

/* -------- RESPONSIVE -------- */

/*@media (max-width: 992px) {
    .services-dark-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .services-dark-right {
        width: 100%;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
    }
}

@media (max-width: 768px) {
    .services-dark-title {
        font-size: 28px;
    }
}*/
/* RIGHT SIDE */
/*.services-dark-right {
    flex: 0 0 100%;
    overflow-x: auto;
    padding-bottom: 10px;
}

.services-dark-track {
    display: flex;
    gap: 22px;
    min-width: max-content;
}*/

/* CARD */
/*.services-dark-card {
    width: 320px;
    flex: 0 0 auto;
    background: #e6d87a;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(122, 111, 208, 0.6);
    transition: transform 0.3s ease;
}

    .services-dark-card:hover {
        transform: translateY(-6px);
    }*/

/* IMAGE */
/*.services-dark-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}*/

/* TEXT */
/*.services-dark-card-body {
    padding: 16px 18px 18px;
    text-align: center;
}

    .services-dark-card-body h3 {
        font-size: 15px;
        font-weight: 600;
        color: #1a1477;
    }*/

/* SCROLLBAR */
/*.services-dark-right::-webkit-scrollbar {
    height: 6px;
}

.services-dark-right::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 999px;
}*/

/* RESPONSIVE */
/*@media (max-width: 768px) {
    .services-dark-card {
        width: 260px;
    }
}*/

/* ================= WORK PROCESS SECTION ================= */

.work-process {
    padding: 80px 0 60px;
    background: linear-gradient(90deg, #b7ed62, #e9f8ce, #ffffff, #e9f8ce, #b7ed62);
    text-align: center;
}


/* =========================
   WORK PROCESS SECTION
========================= */

.work-process {
    padding: 80px 20px 60px;
    background: linear-gradient( 90deg, #b7ed62, #e9f8ce, #ffffff, #e9f8ce, #b7ed62 );
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* BACKGROUND WORD */
.work-process-bg-text {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    font-weight: 800;
    color: rgba(0,0,0,0.04);
    letter-spacing: 0.12em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

/* HEADER */
.work-process-header {
    position: relative;
    z-index: 2;
}

/* LABEL */
.work-process-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: #544be5;
    background: #d8d7e6;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 14px;
}

/* TITLE */
.work-process-title {
    font-size: 38px;
    font-weight: 800;
    color: #000;
    line-height: 1.3;
    margin-bottom: 14px;
}

/* SUBTITLE */
.work-process-subtitle {
    font-size: 16px;
    color: #444;
    max-width: 680px;
    margin: 0 auto 30px;
}

/* IMAGE CARD */
.about-main-card {
    max-width: 900px;
    margin: 0 auto;
}

    .about-main-card img {
        width: 100%;
        height: auto;
        border-radius: 18px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

/* =========================
   📱 MOBILE VIEW
========================= */
@media (max-width: 600px) {

    .work-process {
        padding: 60px 16px 40px;
    }

    .work-process-bg-text {
        font-size: 60px;
        top: 20px;
    }

    .work-process-title {
        font-size: 24px;
    }

    .work-process-subtitle {
        font-size: 14px;
        margin-bottom: 22px;
    }
}

/* =========================
   💻 LAPTOP / TABLET
========================= */
@media (min-width: 601px) and (max-width: 1024px) {

    .work-process-bg-text {
        font-size: 90px;
    }

    .work-process-title {
        font-size: 30px;
    }

    .about-main-card {
        max-width: 720px;
    }
}

/* =========================
   🖥️ DESKTOP
========================= */
@media (min-width: 1025px) {

    .work-process-title {
        font-size: 38px;
    }

    .about-main-card {
        max-width: 900px;
    }
}

/* ===================== TESTIMONIALS ===================== */

.testimonials {
    position: relative;
    padding: 80px 0 70px;
    /*  background: #ffffff;*/
    background: linear-gradient(90deg, #2539e5, #96a4d9, #2539e5);
}

.testimonials-inner {
    position: relative;
    z-index: 1;
}

/* big faint FEEDBACK text */
.testimonials-bg-text {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 110px;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: rgba(0, 0, 0, 0.03);
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* header */
.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-label {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #eaeaee;
    margin-bottom: 8px;
    font-weight: 700;
}

.testimonials-title {
    font-size: 30px;
    font-weight: 800;
    color: #000;
}

/* cards row */
.testimonials-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 10px;
}

/* single card */
.testimonial-card {
    background: #f8f7fb;
    border-radius: 18px;
    padding: 20px 22px 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
}

.testimonial-text {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* footer: avatar + name + stars */
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-size: 13px;
    font-weight: 600;
    color: #4b2bb4; /* purple like original */
}

.testimonial-role {
    font-size: 11px;
    color: #777;
}

.testimonial-stars {
    font-size: 11px;
    margin-top: 2px;
    color: #ffc107;
}





/* ===========================
   CONTACT SECTION
   =========================== */

.contact-section {
    padding: 25px 10px; /* reduced from 80px */
    background: #f3f6fc;
}

.contact-wrapper {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

/* LEFT IMAGE AREA */
.contact-image-block {
    flex: 0 0 45%;
    position: relative;
}

.contact-main-image {
    width: 100%;
    border-radius: 40px;
}

/* RIGHT FORM AREA */
.contact-form-block {
    flex: 0 0 50%;
}

.contact-eyebrow {
    font-size: 12px;
    font-weight: 600;
    color: #a18cd1; /* soft purple accent */
    letter-spacing: 0.2em;
    margin-bottom: 5px;
}

.contact-title {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.contact-sub {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

/* FORM STYLING */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    background: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
        border-color: #8f41ff;
        box-shadow: 0 0 0 2px rgba(143, 65, 255, 0.2);
    }

.form-two {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

/* TEXTAREA */
.contact-form textarea {
    resize: none;
    height: 160px;
    margin-bottom: 25px;
}

/* BUTTON */
.contact-btn {
    /*   background: #2e40ec;*/
    background: linear-gradient(90deg, #4000ff, #70a4fb, #4000ff);
    padding: 9px 25px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #f6f1f1;
    cursor: pointer;
    transition: 0.2s ease;
}

    .contact-btn:hover {
        background: linear-gradient(90deg, #befb70, #2110a4);
        color: #2e40ec;
    }

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .form-two {
        flex-direction: column;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {

    .contact-section {
        padding: 40px 15px;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }

    /* Image */
    .contact-image-block {
        flex: 100%;
    }

    .contact-main-image {
        border-radius: 20px;
    }

    /* Text */
    .contact-title {
        font-size: 24px;
    }

    .contact-sub {
        font-size: 13px;
        margin-bottom: 20px;
    }

    /* Form */
    .form-two {
        flex-direction: column;
        gap: 15px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 14px;
    }

    .contact-btn {
        width: 100%;
        padding: 12px;
    }
}
/* ================= LAPTOP / TABLET ================= */
@media (min-width: 577px) and (max-width: 991px) {

    .contact-section {
        padding: 60px 20px;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .contact-title {
        font-size: 30px;
    }

    .form-two {
        gap: 20px;
    }

    .contact-btn {
        padding: 12px 30px;
    }
}

/* ===========================
   CONTACT INFO STRIP (COMPACT + CLEAN)
   =========================== */

/*.contact-info-strip {
    width: 100%;
    padding: 20px 0;*/
/* background: linear-gradient(120deg, #878cae, #b3fd6f, #878cae);*/
/*background: #ea7dc4;
}


.info-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6dd5ff, #c77dff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

    .info-icon svg,
    .info-icon i {
        width: 22px;
        height: 22px;
        display: block;
    }

.contact-info-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}*/

/* Each Item */
/*.contact-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}*/

/* Colored Icon */
/*.info-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: radial-gradient(circle at top left, #4dfbff, #ff4be7);
    box-shadow: 0px 3px 8px rgba(0,0,0,0.15);
}*/

/* Text Block */
/*.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.info-label {
    color: #6e3aff;
    font-size: 15px;
    font-weight: 600;
}

.info-value {
    color: #000;
    font-size: 15px;
    font-weight: 600;
}*/

/* Divider Line Between Items */
/*.info-divider {
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
}*/

/* Responsive Adjustments */
/*@media (max-width: 900px) {
    .contact-info-container {
        flex-wrap: wrap;
        gap: 25px;
    }

    .info-divider {
        display: none;
    }
}*/


/* ======================
   FOOTER SECTION
   ====================== */

/*.footer-section {
    width: 100%;
    background: #1300b3;
    padding: 10px 50px;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 350px 180px 180px 250px;*/
    /*justify-content: space-between;*/
    /*gap: 40px;
}*/

/* Column 1 */
/*.footer-logo {
    width: 140px;
    margin-bottom: 15px;
}

.footer-desc {
    color: white;
    font-size: 15px;
    width: 350px;
    line-height: 1.8;
    margin-bottom: 14px;
}



.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}*/

    /* Base Circle */
    /*.footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: 0.3s ease;
        box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    }*/

        /* Icon */
        /*.footer-social a i {
            color: #fff;
            font-size: 20px;
        }*/

        /* BRAND COLORS — auto apply based on icon inside */

        /* Facebook */
        /*.footer-social a:has(.fa-facebook-f) {
            background: #1877F2;
        }*/

        /* YouTube */
        /*.footer-social a:has(.fa-youtube) {
            background: #ff0000;
        }*/

        /* Telegram */
        /*.footer-social a:has(.fa-telegram) {
            background: #0088cc;
        }*/

        /* X / Twitter */
        /*.footer-social a:has(.fa-twitter) {
            background: #000000;
        }*/

        /* Instagram Gradient */
        /*.footer-social a:has(.fa-instagram) {
            background: linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5);
        }*/

        /* LinkedIn */
        /*.footer-social a:has(.fa-linkedin) {
            background: #0A66C2;
        }*/

        /* WhatsApp */
        /*.footer-social a:has(.fa-whatsapp) {
            background: #25D366;
        }*/

        /* Hover effect */
        /*.footer-social a:hover {
            transform: translateY(-4px) scale(1.08);
            box-shadow: 0 10px 25px rgba(0,0,0,0.35);
        }*/


/* Column titles */
/*.footer-title {
    color: #befe73;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
}*/

/* Links */
/*.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: white;
        font-size: 14px;
        text-decoration: none;
        transition: 0.3s;
    }

        .footer-links a:hover {
            color: #dfcd31;
        }*/

/* Google Play Button */
/*.footer-play-btn {
    width: 150px;
    margin-bottom: 20px;
}

.footer-select {
    width: 100%;
    padding: 10px 14px;
    background: #111;
    color: #fff;
    border: 1px solid #222;
    border-radius: 6px;
    outline: none;
}

.mt-20 {
    margin-top: 20px;
}*/

/* Responsive */
/*@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}*/
/* ======================
   FOOTER SECTION
====================== */

.footer-section {
    background: #1300b3;
    padding: 60px 20px;
    color: #fff;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* COLUMN */
.footer-col {
    min-width: 0;
}

/* LOGO */
.footer-logo {
    width: 140px;
    margin-bottom: 15px;
}

/* DESCRIPTION */
.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* TITLES */
.footer-title {
    color: #befe73;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: #fff;
        font-size: 13px;
        text-decoration: none;
        transition: 0.3s;
    }

        .footer-links a:hover {
            color: #dfcd31;
        }

/* SOCIAL ICONS */
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .footer-social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000;
        color: #fff;
        text-decoration: none;
        transition: 0.3s;
    }

        .footer-social a:hover {
            transform: translateY(-4px);
        }

/* SPACING */
.mt-20 {
    margin-top: 20px;
}

/* ======================
   📱 MOBILE
====================== */
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-section {
        padding: 40px 16px;
    }

    .footer-desc {
        font-size: 13px;
        text-align: justify;
    }

    .footer-logo {
        width: 120px;
    }
}

/* ======================
   💻 LAPTOP
====================== */
@media (min-width: 601px) and (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* Section */
.careers-glass {
    padding: 60px 20px;
    background: #fafafa;
    text-align: center;
}

.careers-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

/* Grid */
.glass-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

/* Card */
.glass-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px;
    text-align: left;
    border: 1px solid #eef0f6;
    box-shadow: 0 8px 26px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.25s ease;
}

    .glass-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 36px rgba(0,0,0,0.08);
    }

/* Icon */
.icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #f4f5ff;
    color: #6b4eff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}



.location {
    font-size: 13px;
    font-weight: 600;
    color: #9aa1b3;
}







.apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px; /* Pill shape */
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

    .apply-btn:hover {
        background: linear-gradient(135deg, #218838, #17a2b8);
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
        color: #ffffff;
    }

/* Mobile */
@media (max-width: 600px) {
    .glass-card {
        padding: 18px;
    }
}



/*ABOUT PAGE HERO SECTION */
/*.about-hero {
    width: 100%;
    height: 320px;
    background-image: url('../images/about-web-page.png');
    background: url('/images/about-bg.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 50px 80px;
    color: #fff;
}*/

.Careers-hero {
    background-image: url('../images/images/career background.jpeg');
    filter: brightness(100%);
}

.contact-hero {
    background-image: url('../images/images/contact us logo.jpeg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.Portfolio-hero {
    background-image: url("/images/images/project 2.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


.about-overlay1 {
    background: rgba(0, 0, 0, 3.6); /* TOO DARK */
}

.services-hero {
    width: 100%;
    height: auto; /* OR a fixed height if you want */
    /* background-image: url('../images/services background.jpeg');*/
    background-image: url('../images/images/about page.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0; /* Adjust spacing as needed */
    display: block;
    filter: brightness(100%);
}

.NonIT-hero {
    width: 100%;
    height: auto; /* OR a fixed height if you want */
    background-image: url('../images/images/non-it-course.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0; /* Adjust spacing as needed */
    display: block;
    filter: brightness(100%);
}

.IT-hero {
    width: 100%;
    height: auto; /* OR a fixed height if you want */
    background-image: url('../images/images/it-course.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0; /* Adjust spacing as needed */
    display: block;
    filter: brightness(100%);
}

.IAS-hero {
    width: 100%;
    height: auto; /* OR a fixed height if you want */
    background-image: url('../images/images/ias-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0; /* Adjust spacing as needed */
    display: block;
    filter: brightness(100%);
}



/* ================= ABOUT PROFILE ================= */

.abt-profile {
    padding: 90px 0;
    background: #ffffff;
}

.abt-profile-layout {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.abt-profile-media {
    display: flex;
    justify-content: center;
}

.abt-profile-image {
    width: 360px;
    height: 360px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #eef2ff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* CONTENT */
.abt-profile-content {
    max-width: 650px;
}

.abt-profile-title {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.abt-profile-text {
    font-size: 15.5px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 16px;
}

/* SUBHEADINGS */
.abt-profile-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 26px 0 12px;
}

/* LIST */
.abt-profile-list {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

    .abt-profile-list li {
        position: relative;
        padding-left: 22px;
        margin-bottom: 10px;
        font-size: 14.5px;
        color: #374151;
    }

        .abt-profile-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #2563eb;
            font-size: 14px;
        }

/* BUTTON */
.abt-profile-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 30px;
    background: #2563eb;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease;
}

    .abt-profile-btn:hover {
        background: #1e40af;
    }

/* RESPONSIVE */
@media (max-width: 992px) {
    .abt-profile-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .abt-profile-image {
        width: 280px;
        height: 280px;
    }

    .abt-profile-content {
        max-width: 100%;
    }

    .abt-profile-list li {
        text-align: left;
        max-width: 480px;
        margin: auto;
    }
}



/* ================= EDUCATION PROFILE ================= */

.edu-profile {
    padding: 90px 0;
    background: #f9fafb;
}

.edu-profile-layout {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* CONTENT */
.edu-profile-content {
    max-width: 650px;
}

.edu-profile-title {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 22px;
}

.edu-profile-text {
    font-size: 15.5px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 16px;
}

/* SUBHEADINGS */
.edu-profile-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 26px 0 14px;
}

/* LIST */
.edu-profile-list {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

    .edu-profile-list li {
        position: relative;
        padding-left: 22px;
        margin-bottom: 10px;
        font-size: 14.5px;
        color: #374151;
    }

        .edu-profile-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #2563eb;
            font-size: 14px;
        }

/* BUTTON */
.edu-profile-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 32px;
    background: #2563eb;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease;
}

    .edu-profile-btn:hover {
        background: #1e40af;
    }

/* IMAGE */
.edu-profile-media {
    display: flex;
    justify-content: center;
}

    .edu-profile-media img {
        max-width: 100%;
        height: auto;
        border-radius: 18px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    }

/* RESPONSIVE */
@media (max-width: 992px) {
    .edu-profile-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .edu-profile-content {
        max-width: 100%;
    }

    .edu-profile-list li {
        text-align: left;
        max-width: 520px;
        margin: auto;
    }
}

/* ================= FOUNDER CARD ================= */

/*.founder-card {
    position: relative;
    padding: 10px 0 120px;
    background: #0a1e76;
    color: #ffffff;
}

.founder-card-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}*/

/* LEFT */
/*.founder-info {
    font-size: 14.5px;
}

.founder-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

.founder-role {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #38bdf8;
}

.founder-contact {
    list-style: none;
    padding: 0;
}

    .founder-contact li {
        margin-bottom: 10px;
        line-height: 1.6;
        color: #e5e7eb;
    }

.founder-mail-icon {
    color: #38bdf8;
    margin-right: 6px;
}*/

/* CENTER */
/*.founder-photo {
    display: flex;
    justify-content: center;
}

.founder-photo-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 6px solid #38bdf8;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
}

    .founder-photo-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }*/

/* RIGHT */
/*.founder-message {
    text-align: left;
}

.founder-logo-img {
    width: 120px;
    margin-bottom: 20px;
}

.founder-quote {
    font-size: 14.5px;
    line-height: 1.7;
    color: #e5e7eb;
}

    .founder-quote small {
        font-size: 13.5px;
        color: #cbd5f5;
    }

.founder-sign {
    margin-top: 14px;
    font-weight: 600;
    color: #38bdf8;
}*/

/* DOTS */
/*.founder-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

    .founder-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #38bdf8;
        opacity: 0.6;
    }*/

/* WAVE */
/*.founder-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #1e40af, #2563eb);
    clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0% 100%);
}*/

/* RESPONSIVE */
/*@media (max-width: 992px) {
    .founder-card-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-message {
        text-align: center;
    }

    .founder-dots {
        justify-content: center;
    }
}*/

/* ==============================
   FOUNDER CARD – BASE
================================ */
.founder-card {
    position: relative;
    padding: 60px 0 120px;
    background: #0a1e76;
    color: #ffffff;
    overflow: hidden;
}

/* ==============================
   INNER LAYOUT
================================ */
.founder-card-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

/* ==============================
   LEFT : DETAILS
================================ */
.founder-info {
    font-size: 14.5px;
}

.founder-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

.founder-role {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #38bdf8;
}

.founder-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .founder-contact li {
        margin-bottom: 10px;
        line-height: 1.6;
        color: #e5e7eb;
    }

.founder-mail-icon {
    color: #38bdf8;
    margin-right: 6px;
}

/* ==============================
   CENTER : PHOTO
================================ */
.founder-photo {
    display: flex;
    justify-content: center;
}

.founder-photo-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 6px solid #38bdf8;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
}

    .founder-photo-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* ==============================
   RIGHT : MESSAGE
================================ */
.founder-message {
    text-align: left;
}

.founder-logo-img {
    width: 120px;
    margin-bottom: 20px;
}

.founder-quote {
    font-size: 14.5px;
    line-height: 1.7;
    color: #e5e7eb;
}

    .founder-quote small {
        font-size: 13.5px;
        color: #cbd5f5;
    }

.founder-sign {
    margin-top: 14px;
    font-weight: 600;
    color: #38bdf8;
}

/* ==============================
   DECORATIVE DOTS
================================ */
.founder-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

    .founder-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #38bdf8;
        opacity: 0.6;
    }

/* ==============================
   WAVE DESIGN
================================ */
.founder-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #1e40af, #2563eb);
    clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0% 100%);
}

/* ==============================
   LAPTOP (≤1200px)
================================ */
@media (max-width: 1200px) {
    .founder-card-inner {
        grid-template-columns: 1fr 0.9fr 1fr;
        gap: 40px;
    }

    .founder-photo-circle {
        width: 200px;
        height: 200px;
    }

    .founder-logo-img {
        width: 100px;
    }
}

/* ==============================
   TABLET (≤992px)
================================ */
@media (max-width: 992px) {
    .founder-card-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }

    .founder-info,
    .founder-message {
        text-align: center;
    }

    .founder-photo-circle {
        width: 180px;
        height: 180px;
        margin: auto;
    }

    .founder-dots {
        justify-content: center;
    }

    .founder-logo-img {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==============================
   MOBILE (≤576px)
================================ */
@media (max-width: 576px) {
    .founder-card {
        padding: 40px 0 90px;
    }

    .founder-name {
        font-size: 22px;
    }

    .founder-role {
        font-size: 13px;
    }

    .founder-info {
        font-size: 13px;
    }

    .founder-contact li {
        font-size: 13px;
        line-height: 1.5;
    }

    .founder-photo-circle {
        width: 150px;
        height: 150px;
        border-width: 4px;
    }

    .founder-logo-img {
        width: 80px;
    }

    .founder-quote {
        font-size: 13px;
    }

        .founder-quote small {
            font-size: 12.5px;
        }

    .founder-sign {
        font-size: 13px;
    }

    .founder-wave {
        height: 60px;
    }
}

/* ================= ABOUT PROFILE ================= */

.abt-profile {
    padding: 90px 0;
    background: #ffffff;
}

.abt-profile-layout {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.abt-profile-media {
    display: flex;
    justify-content: center;
}

.abt-profile-image {
    width: 360px;
    height: 360px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #eef2ff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* CONTENT */
.abt-profile-content {
    max-width: 650px;
}

.abt-profile-title {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.abt-profile-text {
    font-size: 15.5px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 16px;
}

/* SUBHEADINGS */
.abt-profile-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 26px 0 12px;
}

/* LIST */
.abt-profile-list {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

    .abt-profile-list li {
        position: relative;
        padding-left: 22px;
        margin-bottom: 10px;
        font-size: 14.5px;
        color: #374151;
    }

        .abt-profile-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #2563eb;
            font-size: 14px;
        }

/* BUTTON */
.abt-profile-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 30px;
    background: #2563eb;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease;
}

    .abt-profile-btn:hover {
        background: #1e40af;
    }

/* RESPONSIVE */
@media (max-width: 992px) {
    .abt-profile-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .abt-profile-image {
        width: 280px;
        height: 280px;
    }

    .abt-profile-content {
        max-width: 100%;
    }

    .abt-profile-list li {
        text-align: left;
        max-width: 480px;
        margin: auto;
    }
}



/* ==============================
   EDUCATION ABOUT SECTION
============================== */
.about-edu-section {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #1f2937, #111827);*/
}

.about-edu-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* CONTENT */
.about-edu-content {
    flex: 1;
}

.about-edu-title {
    font-size: 38px;
    font-weight: 700;
    color: #22184b;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-edu-text {
    font-size: 15px;
    line-height: 1.7;
    color: #5f7cda;
    margin-bottom: 14px;
}

.about-edu-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #98e7a6;
    margin: 22px 0 10px;
}

/* LIST */
.about-edu-list {
    padding-left: 18px;
    margin-bottom: 20px;
}

    .about-edu-list li {
        margin-bottom: 8px;
        font-size: 15px;
        color: #222020;
        line-height: 1.6;
    }

/* BUTTON */
.about-edu-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(90deg, #554afd, #554afd);
    color: white;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

    .about-edu-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.6);
    }

/* IMAGE (RIGHT) */
.about-edu-image {
    flex: 0 0 42%;
    display: flex;
    justify-content: center;
}

    .about-edu-image img {
        width: 100%;
        max-width: 420px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-edu-container {
        flex-direction: column;
        text-align: center;
    }

    .about-edu-image img {
        max-width: 320px;
    }
}

/* ===========================
   SERVICES SECTION (SMALL SIZE)
   =========================== */

.services-section {
    text-align: center;
    padding: 40px 20px; /* smaller section height */
}

.services-label {
    font-size: 12px;
    color: #b785ff;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 8px;
}

.services-title {
    font-size: 26px; /* small title */
    font-weight: 700;
    line-height: 1.3;
    color: #000;
    margin-bottom: 35px;
}

    .services-title span {
        color: #ffcc00;
    }

/* Services Grid */
.services-grid {
    max-width: 900px; /* smaller width */
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px; /* small gaps */
}

/* Service Cards */
/*.service-card {
    background: #482eb3;
    border-radius: 12px;
    padding: 12px;
    text-align: left;
    transition: 0.25s ease;
    flex-direction: column-reverse;*/ /* content on top, image below */
/*}*/

/* Service Cards */
.service-card {
    background: #482eb3;
    border-radius: 12px;
    padding: 12px;
    text-align: left;
    transition: 0.25s ease;
    display: flex;
    flex-direction: column-reverse; /* IMAGE DOWN — CONTENT UP */
}



    .service-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 8px;
        margin-top: 10px;
    }


    .service-card h4 {
        font-size: 14px; /* small title */
        color: #fff;
        margin: 10px 0 4px;
        line-height: 1.3;
    }

.service-link {
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    color: #f5d302;
}

/* Hover */
.service-card:hover {
    transform: translateY(-6px);
}

.services-section .item {
    position: static !important;
    animation: none !important;
}


/* Responsive */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* ===========================
   CAREERS SECTION (UNIFORM SMALL CARDS)
   =========================== */

/* ======= Careers modern style ======= */
/*:root {
    --accent: #5b4cff;*/ /* left accent bar and highlights */
/*--card-bg: #ffffff;
    --page-bg: #f6fbff;*/ /* section bg (if you want) */
/*--muted: #64748b;
    --btn-bg: #ffe800;*/ /* CTA color */
/*--btn-color: #111;
    --radius: 10px;
    --max-width: 1100px;
}*/

/* Section layout */
/*.careers-section {
    padding: 36px 16px;
    background: var(--page-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
}*/

/* Label & title */
/*.careers-label {
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 0.18em;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.careers-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f1724;
    margin: 0 0 22px 0;
    text-align: center;
}*/

/* Jobs list container */
/*.jobs-list.modern {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 8px;
}*/

/* Job card */
/*.job-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15,23,42,0.04);
    position: relative;
    overflow: hidden;
}*/

/* Accent bar on the left */
/*.job-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 8px;
        background: linear-gradient(180deg, var(--accent), #7c6bff);
        border-top-left-radius: var(--radius);
        border-bottom-left-radius: var(--radius);
    }*/

/* Job info */
/*.job-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 12px;*/ /* visual spacing from accent */
/*flex: 1 1 auto;
}

    .job-info h4 {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: #0b1220;
    }

    .job-info .desc {
        margin: 0;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.4;
    }

.job-location {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    color: #8b98a8;
    background: transparent;
}*/

/* CTA button */
/*.job-btn {
    flex: 0 0 auto;
    margin-left: 18px;
    padding: 10px 14px;
    background: var(--btn-bg);
    color: var(--btn-color);
    font-weight: 800;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform .18s ease, box-shadow .18s ease;
    white-space: nowrap;
}*/

/* hover */
/*.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.09);
}

.job-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}*/

/* Responsive - mobile stack */
/*@media (max-width: 780px) {
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 14px;
    }

        .job-card::before {
            width: 6px;
            border-top-right-radius: 0;
        }

    .job-btn {
        align-self: stretch;
        text-align: center;
        width: 100%;
        margin-left: 0;
        padding: 12px 14px;
    }
}*/

/* optional: reduce spacing if many jobs */
/*.jobs-list.compact .job-card {
    padding: 12px;
    gap: 10px;
}*/


/*.careers-section {
    padding: 25px 10px;
    text-align: center;
}

.careers-label {
    font-size: 11px;
    color: #b785ff;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 4px;
}

.careers-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}*/

/* JOB LIST */
/*.jobs-list {
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;*/ /* small gap */
/*}*/

/* ===========================
   UNIFORM SMALL JOB CARD
   =========================== */

.job-card {
    background: #fff;
    border-radius: 8px;
    padding: 12px 16px; /* small padding */
    height: 100px; /* ?? FORCE SAME HEIGHT */
    display: flex;
    justify-content: space-between;
    align-items: center; /* vertical center */
    border: 1px solid #e6e6e6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden; /* keep inside */
}

/* LEFT SECTION: SAME SIZE TEXT */
.job-info {
    width: 80%; /* equal width for all */
}

    .job-info h4 {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 3px;
    }

    .job-info p {
        font-size: 12px;
        color: #555;
        margin-bottom: 2px;
        line-height: 1.2;
    }

.job-location {
    font-size: 11px;
    color: #777;
}

/* RIGHT: SMALL BUTTON */
.job-btn {
    background: #e8ff1a;
    padding: 6px 14px; /* small button */
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.2s ease;
}

    .job-btn:hover {
        background: #d7ef0c;
    }

/* MOBILE */
@media (max-width: 700px) {
    .job-card {
        height: auto; /* for mobile allow expansion */
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 12px;
    }

    .job-btn {
        align-self: flex-end;
    }

    .job-info {
        width: 100%;
    }
}


/* ===========================
   LOCATIONS SECTION (SMALL)
   =========================== */

.locations-section {
    padding: 40px 0;
    background: #1c1ce8; /* dark background like screenshot */
    text-align: center;
}

.locations-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

    .locations-title span {
        color: #c67eff; /* purple accent */
    }

/* WRAPPER */
.locations-wrapper {
    max-width: 900px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 20px; /* small gap */
    flex-wrap: wrap; /* mobile friendly */
}

/* LOCATION CARD */
.location-card {
    width: 400px; /* small width */
    background: #fff;
    padding: 15px 18px; /* small padding */
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    font-size: 13px;
    line-height: 1.4;
}

    /* HEADING */
    .location-card h4 {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    /* DETAILS */
    .location-card p {
        font-size: 12px;
        color: #444;
        margin: 0;
    }

/* MOBILE */
@media (max-width: 768px) {
    .location-card {
        width: 100%;
    }
}


/* MAP SECTION (SMALL & CENTERED) */
.map-section {
    /*padding: 20px 0 40px;*/
    background: #ffffff; /* or keep #000 if under dark section */
}

.map-wrapper {
    max-width: 900px; /* width of the map area */
    margin: 0 auto; /* center horizontally */
}

    .map-wrapper iframe {
        width: 100%;
        height: 220px; /* small height like your image */
        border: 0;
        border-radius: 8px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }


/* ===========================
   E-COMMERCE USE SECTION
   =========================== */

.ecom-use-section {
    padding: 50px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.ecom-use-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

/* LEFT IMAGE CARD */
.ecom-use-image img {
    width: 380px; /* small size */
    border-radius: 30px;
    clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0 100%);
    /*box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);*/
}

/* RIGHT TEXT */
.ecom-use-content {
    max-width: 440px;
}

.ecom-use-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #f6b800; /* soft yellow */
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ecom-use-title {
    font-size: 26px; /* smaller heading */
    font-weight: 800;
    line-height: 1.3;
    color: #000;
    margin-bottom: 16px;
}

/* BULLET LIST */
.ecom-use-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

    .ecom-use-list li {
        position: relative;
        padding-left: 18px;
        font-size: 13px;
        color: #444;
        margin-bottom: 6px;
    }

        .ecom-use-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            top: 0;
            color: #ff4be7; /* pink bullet */
        }

/* BUTTON */
.ecom-use-btn {
    display: inline-block;
    background: #1c34ee;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: 0.2s ease;
}

    .ecom-use-btn:hover {
        background: #d7ef0c;
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .ecom-use-container {
        flex-direction: column;
        text-align: center;
    }

    .ecom-use-content {
        max-width: 100%;
    }

    .ecom-use-list {
        text-align: left;
        display: inline-block;
    }
}
/* ===========================
   E-COMMERCE USER FEATURES (SMALL SIZE)
   =========================== */

.ecom-features-section {
    padding: 30px 0; /* smaller height */
    background: #fafafa;
}

.ecom-features-container {
    max-width: 900px; /* smaller total width */
    margin: 0 auto;
    padding: 0 25px; /* small side gap */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px; /* smaller gap between image & text */
}

/* LEFT TEXT SMALLER */
.ecom-features-text {
    flex: 1;
    max-width: 420px;
}

.ecom-label {
    font-size: 10px; /* smaller */
}

.ecom-title {
    font-size: 18px; /* smaller heading */
    line-height: 1.3;
    margin-bottom: 12px;
}

.ecom-features-list li {
    font-size: 12px; /* smaller text */
    margin-bottom: 4px;
    padding-left: 14px; /* smaller bullet gap */
}

    .ecom-features-list li::before {
        font-size: 10px; /* smaller tick icon */
    }

/* RIGHT IMAGE SMALLER */
.ecom-features-image img {
    width: 260px; /* small image like screenshot */
    display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .ecom-features-container {
        flex-direction: column-reverse;
        text-align: center;
        padding: 0 20px;
    }

    .ecom-features-image img {
        width: 200px; /* mobile small */
    }

    .ecom-features-list {
        text-align: left;
        display: inline-block;
    }
}





/* ===========================
   E-COMMERCE ADMIN FEATURES (SMALL)
   =========================== */

.ecom-admin-section {
    padding: 30px 0; /* small height */
    background: #4b42db;
}

.ecom-admin-container {
    max-width: 900px; /* smaller layout */
    margin: 0 auto;
    padding: 0 25px; /* side gap */
    display: flex;
    color: white;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px; /* small gap between image/text */
}

/* IMAGE SMALL */
.ecom-admin-image img {
    width: 260px; /* small image */
    display: block;
}

/* TEXT SMALL */
.ecom-admin-text {
    flex: 1;
    max-width: 450px;
}

.ecom-admin-label {
    font-size: 10px;
    font-weight: 600;
    color: #b888ff;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.ecom-admin-title {
    font-size: 18px; /* smaller heading */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 14px;
}

/* LIST SMALL */
.ecom-admin-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ecom-admin-list li {
        font-size: 12px; /* small text */
        margin-bottom: 5px;
        color: #e7e0eb;
        padding-left: 16px;
        position: relative;
    }

        .ecom-admin-list li::before {
            content: "?";
            position: absolute;
            left: 0;
            top: 0px;
            font-size: 10px;
            color: #6e3aff;
        }

/* RESPONSIVE */
@media (max-width: 900px) {
    .ecom-admin-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .ecom-admin-image img {
        width: 200px; /* mobile small */
    }

    .ecom-admin-list {
        text-align: left;
        display: inline-block;
    }
}


/* ===========================
   SMALL PROJECTS SECTION
   =========================== */

.projects-small-section {
    padding: 50px 0;
    background: #ffffff;
    text-align: center;
}

.projects-small-container {
    max-width: 1000px; /* small clean width */
    margin: 0 auto;
    padding: 0 25px; /* side gap */
}

.projects-label {
    font-size: 11px;
    color: #b989ff;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Title */
.projects-title {
    font-size: 26px; /* small heading */
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

    .projects-title span {
        color: #ff4be7;
    }

/* FILTER BUTTONS */
.project-filters {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.filter-btn {
    background: #fff;
    border: 1px solid #eee;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
}

    .filter-btn.active {
        background: #ff4be7;
        color: #fff;
        border-color: #ff4be7;
    }

.projects-grid-small {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.project-item-small {
    width: 280px;
}

    .project-item-small img {
        width: 100%;
        display: block;
    }


.terms-section {
    padding: 40px 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.terms-box {
    width: 70%; /* SMALLER WIDTH */
    max-width: 900px; /* Limits maximum width */
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    line-height: 1.6;
    font-size: 14px; /* SMALL TEXT SIZE */
    color: #333;
}

    .terms-box h2 {
        text-align: center;
        margin-bottom: 25px;
        font-size: 24px;
        font-weight: 700;
    }

    .terms-box h3 {
        margin-top: 20px;
        margin-bottom: 8px;
        font-size: 16px;
        color: #222;
        font-weight: 600;
    }

    .terms-box p {
        margin-bottom: 10px;
    }


.info-box {
    max-width: 900px;
    margin: 20px auto;
    /*background: #fff;*/
    padding: 25px 30px;
    border-radius: 10px;
    line-height: 1.6;
    font-size: 14px;
    color: #333;
    /* box-shadow: 0 3px 12px rgba(0,0,0,0.08);*/
}


    .info-box h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .info-box ul {
        padding-left: 20px;
        margin-bottom: 15px;
    }

    .info-box li {
        margin-bottom: 6px;
    }

.policy-section {
    background: #ffffff; /* light blue full-page background */
    padding: 60px 20px;
}

.policy-box {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}


/* Popup Background */
.search-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Search Box */
.search-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

    .search-box input {
        padding: 10px;
        width: 220px;
        border: 1px solid #ccc;
        border-radius: 6px;
    }

    .search-box button {
        padding: 10px 18px;
        border-radius: 6px;
        border: none;
        cursor: pointer;
        background: #ffea00;
        font-weight: 600;
    }

/* Close Button */
.search-close {
    background: #ff4d4d !important;
    color: white;
}



/*.courses-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 0;*/
    /*background: linear-gradient(135deg, #3f2e9e, #d1cce2, #6d11bc);*/
    /*background: linear-gradient(90deg, #3b0bbb, #7b3dd1, #a761e8, #b459ff);
}

.course-card {
    width: 90px;
    height: 120px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;*/
    /*box-shadow: 0 4px 20px rgba(0,0,0,0.15);*/
    /*box-shadow: 0 0 0 3px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

    .course-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.22);
    }

    .course-card img {
        width: 80%;
        object-fit: contain;
    }*/
/* =========================
   COURSES SECTION
========================= */

.courses-container {
    display: grid;
    grid-template-columns: repeat(10, 1fr); /* desktop default */
    gap: 20px;
    padding: 40px 20px;
    background: linear-gradient(90deg, #3b0bbb, #7b3dd1, #a761e8, #b459ff);
    justify-items: center;
}

/* CARD */
.course-card {
    width: 90px;
    height: 120px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

    .course-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.22);
    }

    /* IMAGE */
    .course-card img {
        width: 80%;
        height: auto;
        object-fit: contain;
    }

/* =========================
   📱 MOBILE
========================= */
@media (max-width: 600px) {

    .courses-container {
        grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
        gap: 16px;
    }

    .course-card {
        width: 80px;
        height: 105px;
    }
}

/* =========================
   💻 LAPTOP / TABLET
========================= */
@media (min-width: 601px) and (max-width: 1024px) {

    .courses-container {
        grid-template-columns: repeat(5, 1fr); /* 5 cards per row */
    }

    .course-card {
        width: 85px;
        height: 115px;
    }
}

/* =========================
   🖥️ DESKTOP
========================= */
@media (min-width: 1025px) {

    .courses-container {
        grid-template-columns: repeat(10, 1fr); /* all visible */
    }
}


/* --- UPPER SECTION DESIGN --- */

.services-section {
    position: relative;
    padding: 8px 2px 7px;
    /*background: radial-gradient(circle at top left, #ffe5f4, #f0e5ff, #e0f3ff);*/
    background: linear-gradient(90deg, #f8e6f0, #f3effe, #eef7fe, #e9f9f9);
    overflow: hidden;
}

/* big soft shape in background */
.services-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ff7eb3, #7b5cff);
    opacity: 0.18;
    top: -220px;
    right: -150px;
    border-radius: 50%;
    filter: blur(2px);
}

.services-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.services-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgb(168 239 166 / 70%);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-title {
    font-size: 32px;
    margin-bottom: 8px;
    color: #222;
    font-weight: 700;
}

.services-subtitle {
    font-size: 15px;
    color: #555;
    max-width: 560px;
    margin: 0 auto 40px;
}

/* --- EXISTING THREE COLUMN LAYOUT --- */

.three-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px;
}

.left-side, .right-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.item {
    background: #1521b2;
    padding: 15px 25px;
    font-size: 18px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    font-weight: 600;
    color: #e7dddd;
    transition: 0.3s ease;
}

    /* All items turn blue on hover */
    .item:hover {
        background: #3F51B5; /* blue color */
        color: #ffffff; /* white text */
    }


.blue:hover {
    background: #3fb56c;
    color: #fff;
}

.center-logo img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    /*border-radius: 50%;*/
    /*box-shadow: 0 8px 20px rgba(0,0,0,0.25);*/
}

.logo-band {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* EXACT 5 IMAGES */
    gap: 20px;
    padding: 20px 40px;
    align-items: center;
    justify-items: center;
    padding: 10px;
    background: #1c1b38;
}

.logo-item img {
    width: 100%;
    max-width: 100px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

    .logo-item img:hover {
        transform: scale(1.08);
    }



/* =========================
   MAIN SLIDER SECTION
========================= */
.slider-section {
    width: 100%;
    min-height: 80vh; /* desktop default */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-image 0.8s ease-in-out;
}

    /* DARK OVERLAY (optional) */
    .slider-section::before {
        content: "";
        position: absolute;
        inset: 0;
        
    }

/* =========================
   CENTER CONTENT
========================= */
.slider-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

/* TITLE */
.slider-title {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

/* BUTTON */
.slider-button {
    background: linear-gradient(90deg, #4000ff, #70a4fb, #4000ff);
    color: white;
    font-size: 16px;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

/* =========================
   SLIDER ARROWS
========================= */
.slider-arrow-left,
.slider-arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.75);
    font-size: 22px;
    cursor: pointer;
}

.slider-arrow-left {
    left: 30px;
}

.slider-arrow-right {
    right: 30px;
}

    .slider-arrow-left:hover,
    .slider-arrow-right:hover {
        background: #fff;
    }

/* =========================
   📱 MOBILE (phones)
========================= */
@media (max-width: 600px) {

    .slider-section {
        min-height: 45vh; /* smaller height */
        background-size: contain; /* 🔥 FULL IMAGE VISIBLE */
        background-position: center;
        background-size: contain;   /* keeps full image */
        background-position: center;
        background-repeat: no-repeat;

        background-color: #000;     /* fills left & right sides */
    
    }

    .slider-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .slider-button {
        font-size: 14px;
        padding: 8px 14px;
    }

    .slider-arrow-left,
    .slider-arrow-right {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .slider-arrow-left {
        left: 10px;
    }

    .slider-arrow-right {
        right: 10px;
    }
}

/* =========================
   💻 LAPTOP / TABLET
========================= */
@media (min-width: 601px) and (max-width: 1024px) {

    .slider-section {
        min-height: 65vh;
    }

    .slider-title {
        font-size: 34px;
    }

    .slider-arrow-left,
    .slider-arrow-right {
        width: 44px;
        height: 44px;
    }
}

/* =========================
   🖥️ DESKTOP
========================= */
@media (min-width: 1025px) {

    .slider-section {
        min-height: 80vh;
    }

    .slider-title {
        font-size: 48px;
    }
}


/* HERO WRAPPER */
.page-hero {
    position: relative;
    width: 100%;
    min-height: 260px; /* adjust height as you like */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
}

/* SPECIFIC HERO BACKGROUND FOR MODULES PAGE */
.modules-hero {
    background-image: url('/images/save.jpg'); /* or ~/images/save.jpg via CSS bundle */
}

/* DARK OVERLAY */
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75) );
    z-index: 1;
}

/* TEXT CONTENT */
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 16px;
}

    .page-hero-content h1 {
        font-size: 40px;
        font-weight: 700;
        letter-spacing: 0.05em;
        margin-bottom: 12px;
        text-transform: uppercase;
    }

/* BREADCRUMBS */
.breadcrumbs {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    /*font-size: 14px;*/
    opacity: 0.9;
}

    .breadcrumbs a {
        color: #60A5FA;
        text-decoration: none;
        font-weight: 500;
    }

        .breadcrumbs a:hover {
            text-decoration: underline;
        }

    .breadcrumbs .current {
        color: #22C55E; /* highlight current page text */
        font-weight: 600;
    }



/* ==============================
   SMALL SERVICES SECTION
   ============================== */

.mini-services {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* ---------- TITLE ---------- */
.mini-services-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #111827;
}

    .mini-services-title span {
        color: #8b5cf6;
    }



/* GRID – 4 CARDS PER ROW */
.mini-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 per row */
    gap: 24px;
    max-width: 1200px;
    margin: auto;
}
/* ---------- CARD ---------- */
.mini-card {
    background: #2a1f44;
    border-radius: 18px;
    padding: 14px;
    text-align: left;
    color: #ffffff;
    transition: all 0.35s ease;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

    .mini-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
    }


/* IMAGE WRAPPER (important) */
.mini-card {
    position: relative;
}

    /* IMAGE */
    .mini-card img {
        width: 100%;
        height: 150px;
        border-radius: 14px;
        background: #ffffff;
        padding: 8px;
        margin-bottom: 10px;
        transition: filter 0.35s ease, transform 0.35s ease;
    }

    /* BLUR ON HOVER (Desktop) */
    .mini-card:hover img {
        filter: blur(1px);
        transform: scale(1.05);
    }

    /* BLUR ON TOUCH (Mobile) */
    .mini-card img:active {
        filter: blur(3px);
    }


    /* ---------- CARD TITLE ---------- */
    .mini-card h4 {
        font-size: 13px;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 8px;
        color: #ffffff;
    }

    /* ---------- VIEW LINK ---------- */
    .mini-card a {
        font-size: 11px;
        font-weight: 600;
        color: #181728;
        text-decoration: none;
        display: inline-block;
        transition: 0.25s ease;
    }

        .mini-card a:hover {
            text-decoration: underline;
            letter-spacing: 0.3px;
        }





.module-btn {
    padding: 9px 18px;
    background: #38bdf8;
    color: #020617;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

    .module-btn:hover {
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 10px 25px rgba(99,102,241,0.6);
    }

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 768px) {
    .mini-services-title {
        font-size: 22px;
    }

    .mini-services-grid {
        gap: 18px;
    }

    .mini-card img {
        height: 110px;
    }
}

@media (max-width: 480px) {
    .mini-services {
        padding: 40px 14px;
    }

    .mini-services-grid {
        grid-template-columns: 1fr;
    }

    .mini-card {
        padding: 12px;
    }
}


.language-select-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hand-icon {
    font-size: 26px;
    animation: handMove 1s infinite alternate;
}

@keyframes handMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(6px);
    }
}




.card-banner {
    position: relative;
    width: 100%; /* full width only */
    height: 260px; /* 🔥 small / controlled height */
    margin: 0; /* small top & bottom spacing */
    background: #e7dbcd;
    overflow: hidden;
    border-radius: 6px; /* keep smooth corners */
    font-family: Arial, sans-serif;
}

.quote-content {
    max-width: 720px;
    margin: 0 auto;
    color: #150f42;
    padding-left: 0px; /* move left → increase value if needed */
    text-align: left; /* cleaner reading */
}


/* DARK LEFT CURVE */
.card-banner::before {
    content: "";
    position: absolute;
    left: -28%;
    top: 0;
    width: 75%;
    height: 100%;
    background: #0b1220;
    border-radius: 0 65% 65% 0;
    z-index: 1;
}

/* INNER CONTENT */
.card-inner {
    position: relative;
    z-index: 3;
    height: 100%;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    align-items: center;
    padding: 0 40px;
}

/* LEFT CONTENT */
.card-left h2 {
    color: #ffffff;
    margin: 0;
    font-size: 26px;
}

.role {
    color: #6ea8ff;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
}

.text {
    color: white;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
}

.mail-icon {
    color: #EA4335; /* Gmail brand red */
    font-weight: 700;
}

.location-icon {
    color: #EF4444;
    text-shadow: 0 0 6px rgba(239,68,68,0.8);
}



.card-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #d1d5db;
    font-size: 13px;
}

.card-left li {
    margin-bottom: 7px;
}


.card-center {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5; /* keeps image above wave */
}

.profile-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 6px solid #ffffff;
    overflow: hidden; /* REQUIRED */
    background: #d1d5db; /* shows only if image fails */
}

    .profile-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* fills circle */
        display: block;
    }


.profile-circle {
    width: 135px;
    height: 135px;
    background: #cfcfcf;
    border-radius: 50%;
    border: 6px solid #ffffff;
}

/* RIGHT CONTENT */
.card-right {
    text-align: right;
}

.logo-box {
    width: 34px;
    height: 34px;
    /*background: #2563eb;*/
    margin-left: auto;
    margin-bottom: 6px;
}

.logo strong {
    display: block;
    font-size: 18px;
    color: #111827;
}

.logo small {
    font-size: 12px;
    color: #475569;
}

/* SOCIAL DOTS */
.dots {
    margin-top: 14px;
}

    .dots span {
        display: inline-block;
        width: 8px;
        height: 8px;
        background: #ffffff;
        border-radius: 50%;
        margin-left: 6px;
    }

/* BLUE WAVE */
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to right, #1e88e5, #64b5f6);
    border-radius: 100% 100% 0 0;
    z-index: 2;
}

/*DropDown*/
.navbar {
    display: flex;
    gap: 20px;
    background: #ffffff;
    padding: 12px 30px;
}

    .navbar a {
        text-decoration: none;
        color: #000;
        font-weight: 500;
    }

/* dropdown container */
.dropdown {
    position: relative;
}

/* dropdown menu */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-radius: 6px;
    z-index: 999;
}

    .dropdown-content a {
        display: block;
        padding: 10px 15px;
        color: #333;
    }

        .dropdown-content a:hover {
            background: #f2f2f2;
        }

/* SHOW dropdown */
.dropdown:hover .dropdown-content {
    display: block;
}


/* ADMISSIONS HERO */
.admissions-hero {
    background: #f8fafc;
    background-image: url('images/Admission-img.png'); /* your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 0;
    position: relative;
}



.admissions-hero-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.admissions-left {
    flex: 1;
}

    .admissions-left h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #0f172a;
    }

    .admissions-left p {
        font-size: 16px;
        line-height: 1.7;
        color: #475569;
        margin-bottom: 30px;
    }

.admissions-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #2563eb;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* RIGHT IMAGE */
.admissions-right {
    flex: 1;
    text-align: right;
}

    .admissions-right img {
        max-width: 100%;
        height: auto;
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .admissions-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .admissions-right {
        text-align: center;
    }
}


/* ================================
   ADMISSIONS OVERVIEW SECTION
================================ */

.admissions-overview {
    background: #ffffff;
    padding: 80px 0;
}

/* HEADER */
.overview-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

    .overview-header h2 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #0f172a;
    }

    .overview-header p {
        font-size: 16px;
        color: #475569;
        line-height: 1.7;
    }

/* GRID */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.overview-card {
    background: #f8fafc;
    padding: 35px 30px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s ease;
}

    .overview-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 45px rgba(0,0,0,0.12);
    }

    /* CARD TITLE */
    .overview-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
        color: #2563eb;
        font-weight: 600;
    }

    /* CARD TEXT */
    .overview-card p {
        font-size: 14px;
        color: #475569;
        line-height: 1.6;
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
}

/* WHY CHOOSE US */
.admissions-why {
    background: #ffffff;
    padding: 90px 0;
}

.admissions-why-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT */
.why-left {
    flex: 1;
}

.why-label {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.why-left h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #0f172a;
}

.why-left p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 25px;
}

/* LIST */
.why-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

    .why-list li {
        font-size: 15px;
        margin-bottom: 10px;
        color: #334155;
    }

/* BUTTON */
.why-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #2563eb;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* RIGHT IMAGE */
.why-right {
    flex: 1;
    text-align: right;
}

    .why-right img {
        max-width: 100%;
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .admissions-why-inner {
        flex-direction: column;
        text-align: center;
    }

    .why-right {
        text-align: center;
    }
}


/* ADMISSION PROCESS */
.admission-process {
    background: #edecf7;
    padding: 90px 0;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

    .process-header h2 {
        font-size: 36px;
        color: #0f172a;
        margin-bottom: 10px;
    }

    .process-header p {
        color: #475569;
        font-size: 16px;
    }

/* STEPS */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.process-step {
    padding: 10px 10px;
    border-radius: 18px;
    background: #ffffff;
    transition: 0.3s;
  
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .process-step:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .process-step img {
        width: 80px;
        margin-bottom: 15px;
    }

    .process-step h4 {
        color: #2563eb;
        margin-bottom: 8px;
    }

    .process-step p {
        color: #475569;
        font-size: 14px;
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}



/* ================================
   COMPETITIVE EXAMS SECTION
================================ */
.competitive-exams {
    background: #f8fafc;
    padding: 90px 0;
}

/* HEADER */
.competitive-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
}

    .competitive-header h2 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #0f172a;
    }

    .competitive-header p {
        font-size: 16px;
        color: #475569;
        line-height: 1.7;
    }

/* GRID */
.competitive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.competitive-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

    .competitive-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 45px rgba(0,0,0,0.12);
    }

    /* TITLE */
    .competitive-card h3 {
        font-size: 20px;
        font-weight: 600;
        color: #2563eb;
        margin-bottom: 12px;
    }

    /* TEXT */
    .competitive-card p {
        font-size: 14px;
        color: #475569;
        line-height: 1.6;
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .competitive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .competitive-grid {
        grid-template-columns: 1fr;
    }
}


/* ================================
   COMPETITIVE EXAMS – WHY STYLE
================================ */

.competitive-why {
    background: #ffffff;
    padding: 100px 0;
}

.competitive-why-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 70px;
}

/* LEFT */
.competitive-left {
    flex: 1;
}

.competitive-label {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.competitive-left h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
}

.competitive-left p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 25px;
}

/* LIST */
.competitive-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

    .competitive-list li {
        font-size: 15px;
        color: #334155;
        margin-bottom: 10px;
    }

/* BUTTON */
.competitive-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* RIGHT IMAGE */
.competitive-right {
    flex: 1;
    text-align: right;
}

    .competitive-right img {
        max-width: 100%;
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .competitive-why-inner {
        flex-direction: column;
        text-align: center;
    }

    .competitive-right {
        text-align: center;
    }
}




/* ================================
   FINAL CTA
================================ */
.about-cta {
    background: #2563eb;
    padding: 30px 0;
    color: #ffffff;
    text-align: center;
}

.about-cta-inner {
    max-width: 800px;
    margin: auto;
    padding: 0 20px;
}

.about-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #ffffff;
    color: #2563eb;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}



/* CONTACT BAR */
.contact-bar {
    background: linear-gradient(90deg, #f08acb, #f59ad4);
    padding: 30px 0;
}

.contact-bar-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

/* BUTTON */
.contact-item-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: #f395d1;
    border-radius: 40px;
    text-decoration: none;
    color: #000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    min-width: 220px;
    padding: 10px 18px; /* reduced */
}

    .contact-item-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    }

/* ICON */
.contact-icon {
    width: 38px;
    height: 38px;
    background: #60a5fa;
    /*background: linear-gradient(135deg, #7dd3fc, #a78bfa);*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}


/* TEXT */
.contact-text small {
    display: block;
    font-size: 11px;
    color: #2563eb;
    font-weight: 600;
}

.contact-text strong {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-bar-inner {
        flex-direction: column;
        align-items: center;
    }

    .contact-item-btn {
        width: 100%;
        justify-content: center;
    }
}




.services-list {
    background: #0f172a;
    padding: 90px 0;
    color: #fff;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-tag {
    background: #22c55e;
    color: #022c22;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
}

.services-header h2 {
    font-size: 36px;
    margin: 15px 0;
}

.services-list-wrap {
    max-width: 900px;
    margin: auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #bdf06c;
    /*padding: 20px;*/
    border-radius: 14px;
    margin-bottom: 18px;
}

    .service-item img {
        width: 70px;
        height: 70px;
        object-fit: contain;
        background: #fff;
        border-radius: 12px;
        padding: 10px;
    }

    .service-item h3 {
        font-size: 18px;
        margin: 0;
    }




/* ================= ABOUT OVERVIEW ================= */

.abt-overview {
    padding: 80px 0;
    background: #ffffff;
}

.abt-overview-wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

/* Section title */
.abt-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

/* Description text */
.abt-overview-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    max-width: 720px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .abt-section-title {
        font-size: 26px;
    }

    .abt-overview-text {
        font-size: 15px;
    }
}
/* ================= VISION & MISSION ================= */

.abt-vision-mission {
    padding: 80px 0;
    background: #f9fafb;
}

.abt-vm-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Vision & Mission boxes */
.abt-vision-box,
.abt-mission-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 35px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .abt-vision-box:hover,
    .abt-mission-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
    }

    /* Titles */
    .abt-vision-box h3,
    .abt-mission-box h3 {
        font-size: 22px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 14px;
    }

    /* Text */
    .abt-vision-box p,
    .abt-mission-box p {
        font-size: 15px;
        line-height: 1.7;
        color: #4b5563;
    }

/* Responsive */
@media (max-width: 768px) {
    .abt-vm-grid {
        grid-template-columns: 1fr;
    }

    .abt-vision-box,
    .abt-mission-box {
        padding: 30px 25px;
    }
}
/* ================= SERVICES TOP CENTER ================= */

/*.svc-top {
    padding: 100px 0;
    background: linear-gradient(120deg, #020617, #0f172a);
    color: #ffffff;
}

.svc-top-inner {
    text-align: center;
}*/

/* HEADER */
/*.svc-top-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    background: #38bdf8;
    color: #020617;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.svc-top-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
}

.svc-top-desc {
    max-width: 640px;
    margin: 0 auto 28px;
    font-size: 15.5px;
    line-height: 1.7;
    color: #cbd5f5;
}

.svc-top-btn {
    display: inline-block;
    padding: 13px 36px;
    background: #2563eb;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
}*/

/* GRID */
/*.svc-top-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}*/

/* CARD */
/*.svc-top-card {
    background: #020617;
    border-radius: 18px;
    padding: 30px 24px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .svc-top-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    }

    .svc-top-card img {
        width: 70px;
        margin-bottom: 16px;
    }

    .svc-top-card h3 {
        font-size: 15px;
        font-weight: 600;
        color: #ffffff;
    }*/

/* RESPONSIVE */
/*@media (max-width: 768px) {
    .svc-top-title {
        font-size: 30px;
    }
}*/
/* ================= SERVICES TOP SECTION ================= */

.svc-top {
    padding: 30px 0;
    background: linear-gradient(120deg, #020617, #0f172a);
    color: #ffffff;
}

.svc-top-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ---------- HEADER ---------- */

.svc-top-header {
    max-width: 720px;
    text-align: center;
    margin-bottom: 70px;
}

.svc-top-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    padding: 6px 18px;
    background: #38bdf8;
    color: #020617;
    border-radius: 999px;
    margin-bottom: 18px;
}

.svc-top-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
}

.svc-top-desc {
    font-size: 15.5px;
    line-height: 1.7;
    color: #cbd5f5;
    margin-bottom: 28px;
}

.svc-top-btn {
    display: inline-block;
    padding: 13px 36px;
    background: #2563eb;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease;
}

    .svc-top-btn:hover {
        background: #1e40af;
    }

/* ---------- SLIDER CONTAINER ---------- */

.services-dark-right {
    width: 100%;
    /*overflow-x: auto;*/
    padding-bottom: 12px;
}

.services-dark-track {
    display: flex;
    gap: 24px;
    min-width: max-content;
    padding: 0 12px;
}

/* ---------- CARD ---------- */

.services-dark-card {
    width: 300px;
    flex: 0 0 auto;
    background: #e6d87a;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(122, 111, 208, 0.55);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .services-dark-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 65px rgba(122, 111, 208, 0.7);
    }

/* ---------- IMAGE ---------- */

.services-dark-image img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    display: block;
}

/* ---------- CARD TEXT ---------- */

.services-dark-card-body {
    padding: 16px 18px 18px;
    text-align: center;
}

    .services-dark-card-body h3 {
        font-size: 15px;
        font-weight: 600;
        color: #1a1477;
    }

/* ---------- SCROLLBAR ---------- */

.services-dark-right::-webkit-scrollbar {
    height: 6px;
}

.services-dark-right::-webkit-scrollbar-track {
    background: transparent;
}

.services-dark-right::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 999px;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 992px) {
    .svc-top-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .services-dark-card {
        width: 260px;
    }

    .svc-top-title {
        font-size: 28px;
    }
}




.ias-modules {
    padding: 80px 20px;
    background: #f8f9fc;
    text-align: center;
}

.section-label {
    display: inline-block;
    background: #ffcc00;
    color: #000;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 12px;
}

.section-desc {
    max-width: 650px;
    margin: 0 auto 50px;
    color: #555;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.module-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

    .module-card:hover {
        transform: translateY(-8px);
    }

    .module-card img {
        width: 100%;
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .module-card h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .module-card p {
        font-size: 14px;
        color: #666;
    }





/* SECTION BACKGROUND */

.tc-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #dbe7ff, #f3f0ff);
}




/* MAIN CARD */
.tc-card {
    max-width: 1200px;
    margin: auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* LEFT CONTENT */
.tc-content {
    flex: 1;
}

.tc-title {
    font-size: 26px;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 8px;
}

/* BLUE LINE */
.tc-line {
    display: block;
    width: 60px;
    height: 3px;
    background: #4f6df5;
    margin-bottom: 20px;
    border-radius: 3px;
}

.tc-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 6px;
    color: #2b2b2b;
}

.tc-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* RIGHT IMAGE */
.tc-image {
    flex: 1;
    text-align: center;
}

    .tc-image img {
        max-width: 100%;
        height: auto;
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .tc-card {
        flex-direction: column;
        text-align: center;
    }

    .tc-line {
        margin: 0 auto 20px;
    }
}


/* ================= SECTION BACKGROUND ================= */
.sp-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #eef4ff, #ffffff);
    display: flex;
    justify-content: center;
}

/* ================= MAIN CARD ================= */
.sp-card {
    width: 100%;
    max-width: 1200px;
    background: #ffffff;
    border-radius: 22px;
    padding: 45px 50px;
    display: flex;
    align-items: center; /* keeps image + content aligned */
    gap: 40px; /* balanced spacing */
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* ================= LEFT IMAGE ================= */
.sp-image {
    flex: 1;
    display: flex; /* FIX: center image vertically */
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .sp-image img {
        width: 100%;
        max-width: 480px; /* better proportion */
        height: auto;
    }

/* ================= RIGHT CONTENT ================= */
.sp-content {
    flex: 1;
    max-height: 520px; /* FIX: prevents tall card */
    overflow-y: auto; /* scroll for long content */
    padding-right: 10px; /* space for scrollbar */
}

    /* Optional scrollbar styling */
    .sp-content::-webkit-scrollbar {
        width: 6px;
    }

    .sp-content::-webkit-scrollbar-thumb {
        background: #cbd6ff;
        border-radius: 6px;
    }

/* ================= TEXT STYLES ================= */
.sp-title {
    font-size: 26px;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 14px;
}

.sp-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

/* ================= SERVICES ================= */
.sp-services {
    margin-bottom: 25px;
}

.sp-service {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.sp-icon {
    font-size: 20px;
    margin-top: 3px;
}

.sp-service h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #2b3cff;
}

.sp-service p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

/* ================= FOOTER ================= */
.sp-footer {
    font-size: 13px;
    color: #444;
    margin-top: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .sp-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    .sp-content {
        max-height: none; /* disable scroll on mobile */
        overflow: visible;
        padding-right: 0;
    }

    .sp-image img {
        max-width: 360px;
    }
}



/* ================= PRIVACY POLICY SECTION ================= */
.pp-section {
    padding: 60px 20px; /* reduced empty space */
    background: linear-gradient(135deg, #eef4ff, #ffffff);
    display: flex;
    justify-content: center;
}

/* ================= MAIN CARD ================= */
.pp-card {
    width: 100%;
    max-width: 1350px; /* wider card */
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center; /* vertical alignment fix */
    gap: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* ================= LEFT CONTENT ================= */
.pp-content {
    flex: 1;
    font-size: 16px; /* better readability */
    line-height: 1.9;
    color: #444;
}

/* TITLE */
.pp-title {
    font-size: 30px;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 16px;
}

/* DESCRIPTION */
.pp-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ================= GRID BLOCKS ================= */
.pp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.pp-block h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2b3cff;
    margin-bottom: 8px;
}

.pp-block ul {
    padding-left: 20px;
    font-size: 14px;
    color: #555;
}

.pp-block li {
    margin-bottom: 8px;
}

/* ================= FOOTER ================= */
.pp-footer {
    margin-top: 28px;
    font-size: 14px;
    color: #444;
}

/* ================= RIGHT IMAGE ================= */
.pp-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .pp-image img {
        width: 100%;
        max-width: 550px; /* image prominence */
        height: auto;
    }


/* ================= SCROLLABLE CONTENT ================= */
.pp-content {
    flex: 1;
    max-height: 520px; /* keeps card height fixed */
    overflow-y: auto; /* enable vertical scroll */
    padding-right: 12px; /* space for scrollbar */
}

    /* Optional scrollbar styling */
    .pp-content::-webkit-scrollbar {
        width: 6px;
    }

    .pp-content::-webkit-scrollbar-thumb {
        background: #cbd6ff;
        border-radius: 6px;
    }



/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .pp-content {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }
}


.location-card {
    padding: 12px 14px; /* smaller padding */
    width: 260px; /* fixed small width */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

    .location-card h4 {
        font-size: 13px; /* smaller heading */
        margin-bottom: 6px;
    }

    .location-card p {
        font-size: 11px; /* smaller text */
        line-height: 1.4;
        margin: 0;
    }

.locations-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}


.contribution-section {
    padding: 60px 20px;
    text-align: center;
}

    .contribution-section h1 {
        font-size: 34px;
        color: #1f2a44;
    }

.subtitle {
    color: #555;
    margin: 12px 0 40px;
}

.contribution-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.card {
    width: 280px;
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


.impact-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #f5f8ff, #ffffff);
    text-align: center;
}

    .impact-section h2 {
        font-size: 32px;
        color: #1f2a44;
        margin-bottom: 10px;
    }

.impact-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 45px;
}

.impact-boxes {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.impact-box {
    width: 220px;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

    .impact-box:hover {
        transform: translateY(-8px);
    }

    .impact-box h3 {
        font-size: 36px;
        color: #4b00ff;
        margin-bottom: 8px;
    }

    .impact-box p {
        font-size: 15px;
        color: #444;
    }

.why-choose-section {
    padding: 70px 20px;
    background: #ffffff;
    text-align: center;
}

    .why-choose-section h2 {
        font-size: 32px;
        color: #1f2a44;
    }

.why-subtitle {
    color: #555;
    margin: 12px 0 45px;
    font-size: 16px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.why-card {
    background: #f9fbff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

    .why-card:hover {
        transform: translateY(-8px);
    }

    .why-card span {
        font-size: 32px;
    }

    .why-card h3 {
        margin: 12px 0 8px;
        color: #0b4bd6;
    }

    .why-card p {
        font-size: 15px;
        color: #444;
    }

.mission-vision-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f6f9ff, #ffffff);
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.mv-box {
    max-width: 480px;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

    .mv-box h3 {
        color: #0b4bd6;
        margin-bottom: 10px;
        font-size: 22px;
    }

    .mv-box p {
        font-size: 15px;
        color: #444;
        line-height: 1.6;
    }

.cta-section {
    padding: 70px 20px;
    text-align: center;
    background: linear-gradient(135deg, #4b00ff, #00c6ff);
    color: #ffffff;
}

    .cta-section h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .cta-section p {
        font-size: 16px;
        margin-bottom: 30px;
    }

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

    .cta-btn.primary {
        background: #ffffff;
        color: #4b00ff;
    }

    .cta-btn.secondary {
        border: 2px solid #ffffff;
        color: #ffffff;
    }

/*.testimonials-section {
    padding: 70px 20px;
    background: #f7f9fc;
    text-align: center;
}

    .testimonials-section h2 {
        font-size: 32px;
        color: #1f2a44;
    }

.testimonials-subtitle {
    font-size: 16px;
    color: #555;
    margin: 12px 0 45px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.testimonial-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

    .testimonial-card p {
        font-size: 15px;
        color: #444;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .testimonial-card h4 {
        font-size: 14px;
        color: #0b4bd6;
        font-weight: 600;
    }*/
/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials-section {
    padding: 80px 20px;
    background: #f7f9fc;
    text-align: center;
}

    /* Heading */
    .testimonials-section h2 {
        font-size: 36px;
        color: #1f2a44;
        margin-bottom: 10px;
    }

.testimonials-subtitle {
    font-size: 16px;
    color: #555;
    margin: 12px 0 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================
   GRID
========================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* desktop default */
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.testimonial-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-6px);
    }

    .testimonial-card p {
        font-size: 15px;
        color: #444;
        line-height: 1.7;
        margin-bottom: 14px;
    }

    .testimonial-card h4 {
        font-size: 14px;
        color: #0b4bd6;
        font-weight: 600;
    }

/* =========================
   📱 MOBILE VIEW
========================= */
@media (max-width: 600px) {

    .testimonials-section {
        padding: 60px 16px;
    }

        .testimonials-section h2 {
            font-size: 26px;
        }

    .testimonials-subtitle {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr; /* 1 card */
        gap: 20px;
    }

    .testimonial-card {
        padding: 22px;
    }

        .testimonial-card p {
            font-size: 14px;
        }
}

/* =========================
   💻 LAPTOP / TABLET
========================= */
@media (min-width: 601px) and (max-width: 1024px) {

    .testimonials-section h2 {
        font-size: 30px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards */
        gap: 24px;
    }
}

/* =========================
   🖥️ DESKTOP
========================= */
@media (min-width: 1025px) {

    .testimonials-section h2 {
        font-size: 36px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 cards */
    }
}

.faq-section {
    padding: 70px 20px;
    background: #ffffff;
    text-align: center;
}

    .faq-section h2 {
        font-size: 32px;
        color: #1f2a44;
    }

.faq-subtitle {
    font-size: 16px;
    color: #555;
    margin: 12px 0 40px;
}

.faq-container {
    max-width: 900px;
    margin: auto;
    text-align: left;
}

.faq-item {
    background: #f9fbff;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

    .faq-item summary {
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        color: #0b4bd6;
    }

    .faq-item p {
        margin-top: 10px;
        font-size: 15px;
        color: #444;
        line-height: 1.6;
    }



.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 420px;
    padding: 30px;
    border-radius: 18px;
    position: relative;
    text-align: center;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 26px;
    cursor: pointer;
}

.modal-content h2 {
    margin-bottom: 5px;
    color: #1f2a44;
}

.modal-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.enroll-form input,
.enroll-form select,
.enroll-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.enroll-form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #4b00ff, #00c6ff);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
}




.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    width: 100%;
    max-width: 450px;
}

/* X Button */
.close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 26px;
    font-weight: bold;
    color: #444;
    cursor: pointer;
}

    .close-btn:hover {
        color: red;
    }



/*


.hero-pro {
    background: linear-gradient(135deg, #0f172a, #020617);
    padding: 100px 20px;
    color: #fff;
}

.hero-pro-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.hero-tag {
    display: inline-block;
    background: #38bdf8;
    color: #020617;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-pro-content h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-pro-content p {
    font-size: 17px;
    color: #cbd5f5;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 14px 34px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

.btn-outline {
    border: 1px solid #94a3b8;
    color: #fff;
    padding: 14px 34px;
    border-radius: 10px;
    text-decoration: none;
}*/
.hero-pro {
    background: linear-gradient(135deg, #1155ee, #c2ccf8);
    padding: 100px 20px;
    color: #fff;
}

.hero-pro-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

/* TEXT */
.hero-tag {
    display: inline-block;
    background: #38bdf8;
    color: #020617;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-pro-content h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-pro-content p {
    font-size: 17px;
    color: #cbd5f5;
    margin-bottom: 32px;
}

/* BUTTONS */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 14px 34px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

.btn-outline {
    border: 1px solid #f0f1f2;
    color: #fff;
    padding: 14px 34px;
    border-radius: 10px;
    text-decoration: none;
}

/* IMAGE */
.hero-pro-image {
    text-align: center;
}

    .hero-pro-image img {
        max-width: 420px;
        width: 100%;
    }

/* ===================== */
/* 📱 MOBILE VIEW */
/* ===================== */
@media (max-width: 767px) {

    .hero-pro {
        padding: 70px 16px;
        text-align: center;
    }

    .hero-pro-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-pro-content h1 {
        font-size: 28px;
    }

    .hero-pro-content p {
        font-size: 15px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-pro-image {
        order: -1; /* image on top */
    }

        .hero-pro-image img {
            max-width: 260px;
        }
}

/* ===================== */
/* 💻 LAPTOP VIEW */
/* ===================== */
@media (min-width: 768px) and (max-width: 1024px) {

    .hero-pro-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-pro-content h1 {
        font-size: 36px;
    }

    .hero-pro-image img {
        max-width: 340px;
    }
}

/* ===================== */
/* 🖥️ DESKTOP VIEW */
/* ===================== */
@media (min-width: 1025px) {

    .hero-pro-content h1 {
        font-size: 44px;
    }

    .hero-pro-image img {
        max-width: 420px;
    }
}


.services-pro {
    padding: 90px 20px;
    background: #020617;
    color: #fff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: auto 0 60px;
}

    .section-header span {
        color: #38bdf8;
        font-weight: 600;
        letter-spacing: 2px;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: #0f172a;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    transition: 0.3s;
}

    .service-card:hover {
        transform: translateY(-6px);
        background: #020617;
    }


/* ---------- SLIDER SECTION ---------- */
.slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.6s ease-in-out;
}

/* ---------- CENTER CONTENT ---------- */
.slider-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /*background: rgba(0, 0, 0, 0.45);*/
    padding: 20px;
}

.slider-title {
    font-size: 48px;
    color: #fff;
    margin-bottom: 18px;
}

.slider-button {
    padding: 14px 34px;
    background: #38bdf8;
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
}

/* ---------- ARROWS ---------- */
.slider-arrow-left,
.slider-arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    font-size: 28px;
   /* padding: 12px 16px;*/
    cursor: pointer;
    border-radius: 50%;
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
    .slider-section {
        height: 80vh;
    }

    .slider-title {
        font-size: 28px;
    }

    .slider-button {
        padding: 12px 26px;
        font-size: 14px;
    }
}



/* ☰ Button */

/* LEFT SIDEBAR */
.left-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: 2px 0 15px rgba(0,0,0,0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 3000;
    /* IMPORTANT */
    display: flex;
    flex-direction: column;
}

    .left-sidebar.open {
        transform: translateX(0);
    }

/* CLOSE BUTTON (FIXED) */
.left-sidebar-close {
    padding: 12px;
    text-align: right;
    border-bottom: 1px solid #eee;
}

/* 🔥 SCROLLABLE AREA */
.left-sidebar-content {
    padding: 16px;
    overflow-y: auto; /* ENABLE SCROLL */
    flex: 1; /* TAKE REMAINING HEIGHT */
}

    /* OPTIONAL: MENU STYLE */
    .left-sidebar-content a {
        display: block;
        padding: 10px 0;
        text-decoration: none;
        color: #333;
        font-weight: 500;
    }

        .left-sidebar-content a:hover {
            color: #0d6efd;
        }
    /* Chrome / Edge scrollbar */
    .left-sidebar-content::-webkit-scrollbar {
        width: 6px;
    }

    .left-sidebar-content::-webkit-scrollbar-thumb {
        background-color: #cbd5e1;
        border-radius: 10px;
    }

    .left-sidebar-content::-webkit-scrollbar-track {
        background: transparent;
    }
.sidebar-toggle {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

Close Button */
.left-sidebar-close {
    text-align: right;
    padding: 12px;
}

    .left-sidebar-close button {
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
    }




/*.services-section {
    padding: 80px 20px;
    background: #f9fafc;
    position: relative;
}

.services-inner {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.services-badge {
    color: #1e90ff;
    font-weight: 600;
    margin-bottom: 10px;
}

.services-title {
    font-size: 36px;
    margin-bottom: 15px;
}

.services-subtitle {
    color: #666;
    margin-bottom: 50px;
}*/

/* MAIN LAYOUT */
/*.three-section {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}*/

/* LEFT & RIGHT */
/*.left-side,
.right-side {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.item {
    background: #1e90ff;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
}*/

/* CENTER LOGO */
/*.center-logo img {
    max-width: 120px;
    width: 100%;
}*/

/* -------------------- */
/* 📱 MOBILE VIEW */
/* -------------------- */
/*@media (max-width: 767px) {

    .services-title {
        font-size: 26px;
    }

    .three-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .center-logo {
        order: -1;
    }

    .item {
        text-align: center;
    }
}*/

/* -------------------- */
/* 💻 LAPTOP VIEW */
/* -------------------- */
/*@media (min-width: 768px) and (max-width: 1024px) {

    .services-title {
        font-size: 30px;
    }

    .three-section {
        grid-template-columns: 1fr 200px 1fr;
    }

    .center-logo img {
        max-width: 150px;
    }
}*/

/* -------------------- */
/* 🖥️ DESKTOP VIEW */
/* -------------------- */
/*@media (min-width: 1025px) {

    .services-title {
        font-size: 38px;
    }

    .center-logo img {
        max-width: 200px;
    }
}*/

.services-section {
    padding: 60px 16px;
    background: #f9fafc;
}

.services-inner {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.services-badge {
    color: #1e90ff;
    font-weight: 600;
    margin-bottom: 8px;
}

.services-title {
    font-size: 34px;
    margin-bottom: 12px;
}

.services-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 15px;
}

/* =====================
   MAIN LAYOUT
===================== */
.three-section {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
}

/* LEFT & RIGHT */
.left-side,
.right-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* BUTTON ITEMS */
.item {
    background: #1e90ff;
    color: #fff;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

/* CENTER LOGO */
.center-logo img {
    max-width: 110px;
    width: 100%;
}

/* =====================
   📱 SMALL WIDTH / MOBILE
===================== */
@media (max-width: 600px) {

    .services-section {
        padding: 40px 12px;
    }

    .services-inner {
        max-width: 420px; /* ✅ important */
    }

    .services-title {
        font-size: 22px;
    }

    .services-subtitle {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .three-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .center-logo {
        order: -1;
    }

        .center-logo img {
            max-width: 90px;
            margin: 0 auto;
        }

    .item {
        font-size: 13px;
        padding: 9px 12px;
        text-align: center;
        white-space: normal;
    }
}

/* =====================
   💻 LAPTOP
===================== */
@media (min-width: 601px) and (max-width: 1024px) {

    .services-inner {
        max-width: 900px;
    }

    .services-title {
        font-size: 28px;
    }

    .three-section {
        grid-template-columns: 1fr 160px 1fr;
        gap: 28px;
    }

    .center-logo img {
        max-width: 130px;
    }
}

/* =====================
   🖥️ DESKTOP
===================== */
@media (min-width: 1025px) {

    .services-inner {
        max-width: 1200px;
    }

    .services-title {
        font-size: 38px;
    }

    .center-logo img {
        max-width: 180px;
    }
}


.footer-social-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #1f2937;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 18px;
        text-decoration: none;
        transition: 0.3s ease;
    }

        .footer-social a:hover {
            transform: translateY(-4px);
            background: #2563eb;
        }


/* =========================
   TERMS PAGE HERO
========================= */

.terms-page-hero {
    position: relative;
    background-image: project 2;
    background-image: url('/images/Project\ 2.png'); /* your background image */
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

/* OVERLAY */
.terms-page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.7) );
}

/* CONTENT */
.terms-page-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

/* TITLE */
.terms-page-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* BREADCRUMBS */
.terms-page-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

    .terms-page-breadcrumbs a {
        color: #ffd700;
        text-decoration: none;
    }

    .terms-page-breadcrumbs .current {
        color: #ffffff;
        font-weight: 600;
    }

/* MOBILE */
@media (max-width: 600px) {
    .terms-page-hero {
        min-height: 38vh;
    }

    .terms-page-title {
        font-size: 24px;
    }
}
/* =========================
   PRIVACY POLICY PAGE HERO
========================= */

.privacy-page-hero {
    position: relative;
    min-height: 50vh;
    background-image: url('images/Project\ logo.jpeg'); /* your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

/* OVERLAY */
.privacy-page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.7) );
}

/* CONTENT */
.privacy-page-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

/* TITLE */
.privacy-page-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* BREADCRUMBS */
.privacy-page-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

    .privacy-page-breadcrumbs a {
        color: #ffd700;
        text-decoration: none;
    }

    .privacy-page-breadcrumbs .current {
        color: #ffffff;
        font-weight: 600;
    }

/* MOBILE */
@media (max-width: 600px) {
    .privacy-page-hero {
        min-height: 38vh;
    }

    .privacy-page-title {
        font-size: 24px;
    }
}
/* =========================
   SERVICE POLICY PAGE HERO
========================= */

.policy-page-hero {
    position: relative;
    min-height: 50vh;
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

/* OVERLAY */
.policy-page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.7) );
}

/* CONTENT */
.policy-page-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

/* TITLE */
.policy-page-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* BREADCRUMBS */
.policy-page-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

    .policy-page-breadcrumbs a {
        color: #ffd700;
        text-decoration: none;
    }

    .policy-page-breadcrumbs .current {
        color: #ffffff;
        font-weight: 600;
    }

/* MOBILE */
@media (max-width: 600px) {
    .policy-page-hero {
        min-height: 38vh;
    }

    .policy-page-title {
        font-size: 24px;
    }
}
/* =========================
   TESTIMONIALS / REVIEWS
========================= */

.reviews-section {
    padding: 80px 20px;
    background: #f7f9fc;
}

.reviews-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-badge {
    display: inline-block;
    padding: 6px 18px;
    background: #e0e7ff;
    color: #4338ca;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.reviews-title {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
}

/* =========================
   REVIEWS LIST
========================= */

.reviews-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */
.review-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .review-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 50px rgba(0,0,0,0.18);
    }

/* TEXT */
.review-text {
    font-size: 14.5px;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 22px;
}

/* FOOTER */
.review-footer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #4f46e5;
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* META */
.review-name {
    font-weight: 600;
    color: #0f172a;
}

.review-role {
    font-size: 12.5px;
    color: #64748b;
}

.review-stars {
    color: #facc15;
    font-size: 14px;
}

/* =========================
   📱 MOBILE
========================= */
@media (max-width: 600px) {

    .reviews-section {
        padding: 50px 16px;
    }

    .reviews-title {
        font-size: 22px;
    }

    .reviews-list {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .review-card {
        min-width: 260px;
        flex: 0 0 auto;
    }
}

/* =========================
   💻 LAPTOP / TABLET
========================= */
@media (min-width: 601px) and (max-width: 1024px) {

    .reviews-title {
        font-size: 28px;
    }

    .reviews-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   🖥️ DESKTOP
========================= */
@media (min-width: 1025px) {

    .reviews-title {
        font-size: 34px;
    }

    .reviews-list {
        grid-template-columns: repeat(3, 1fr);
    }
}



.work-flow {
    padding: 70px 20px;
    background: #e2e8f5;
    text-align: center;
}

.wf-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

.wf-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.wf-step {
    background: #1e90ff;
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}
.why-us {
    padding: 70px 20px;
    background: #ffffff;
    text-align: center;
}

.wu-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

.wu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: auto;
}

.wu-card {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 12px;
    font-weight: 600;
}

.achievements {
    padding: 60px 20px;
    background: #1e90ff;
    color: #fff;
}

.ach-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.ach-item h3 {
    font-size: 36px;
    font-weight: 800;
}
.cta-section {
    padding: 70px 20px;
    background: linear-gradient(90deg, #4000ff, #70a4fb);
    text-align: center;
    color: #fff;
}

    .cta-section h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

.cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #fff;
    color: #000;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}





/* Default – Desktop */
.navbar-logo {
    height: 26px;
    width: auto;
}

/* Laptop */
@media (max-width: 1200px) {
    .navbar-logo {
        height: 24px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .navbar-logo {
        height: 22px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .navbar-logo {
        height: 18px;
    }
}





.about-section {
    padding: 70px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* TITLES */
.section-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
}

/* ================= MISSION & VISION ================= */
.mission-vision {
    background: #f8fafc;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ================= FOUNDER ================= */
.founder-section {
    background: #0a1e76;
    color: #fff;
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.founder-img img {
    width: 220px;
    border-radius: 50%;
}

.founder-text span {
    color: #38bdf8;
    font-weight: 600;
}

/* ================= OFFERS ================= */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.offer-card {
    background: #1e40af;
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

/* ================= WHY US ================= */
.why-us {
    background: #f1f5f9;
}

.why-list {
    max-width: 500px;
    margin: auto;
    list-style: none;
    font-size: 16px;
}

    .why-list li {
        margin-bottom: 12px;
    }



/* ================= TESTIMONIALS ================= */
.test-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.test-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

    .test-card span {
        display: block;
        margin-top: 10px;
        font-weight: 600;
    }

/* ================= RESPONSIVE ================= */

/* Laptop */
@media (max-width: 1200px) {
    .offer-grid,
    .ach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .mv-grid,
    .founder-grid,
    .test-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-img img {
        margin: auto;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
    }

    .offer-grid,
    .ach-grid {
        grid-template-columns: 1fr;
    }

    .founder-img img {
        width: 160px;
    }
}




/* =============================
   WHY CHOOSE US
============================= */
.why-us {
    padding: 80px 20px;
    background: #f8fafc;
}

.wu-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* TITLE */
.wu-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #0f172a;
}

/* GRID */
.wu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.wu-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    /* HOVER EFFECT */
    .wu-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    }

/* =============================
   RESPONSIVE
============================= */

/* Laptop */
@media (max-width: 1200px) {
    .wu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (max-width: 768px) {
    .wu-title {
        font-size: 26px;
    }

    .wu-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .why-us {
        padding: 60px 15px;
    }

    .wu-title {
        font-size: 22px;
    }

    .wu-card {
        font-size: 15px;
        padding: 24px 16px;
    }
}



.sidebar-dropdown {
    margin: 10px 0;
}

.dropdown-title {
    display: block;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 5px;
}

.dropdown-menu {
    padding-left: 15px;
}

    .dropdown-menu a {
        display: block;
        font-size: 14px;
        padding: 6px 0;
        color: #333;
        text-decoration: none;
    }

        .dropdown-menu a:hover {
            color: #2563eb;
        }


.footer-social {
    display: flex;
    gap: 12px;
}

    .footer-social a {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #ffffff;
        font-size: 18px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        /* Facebook */
        .footer-social a:nth-child(1) {
            background: #1877F2;
        }

        /* YouTube */
        .footer-social a:nth-child(2) {
            background: #FF0000;
        }

        /* Telegram */
        .footer-social a:nth-child(3) {
            background: #229ED9;
        }

        /* Twitter (X) */
        .footer-social a:nth-child(4) {
            background: #000000;
        }

        /* Instagram */
        .footer-social a:nth-child(5) {
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        }

        /* LinkedIn */
        .footer-social a:nth-child(6) {
            background: #0A66C2;
        }

        /* WhatsApp */
        .footer-social a:nth-child(7) {
            background: #25D366;
        }

        /* Hover effect */
        .footer-social a:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 8px 18px rgba(0,0,0,0.3);
        }


/* Normal links */
.navbar .nav-link {
    color: rgba(255,255,255,0.85);
    transition: all 0.2s ease;
}

    /* Hover only */
    .navbar .nav-link:hover {
        color: #ffffff;
    }

    /* REMOVE touch / focus color */
    .navbar .nav-link:focus,
    .navbar .nav-link:active {
        color: rgba(255,255,255,0.85);
        background: none;
        box-shadow: none;
        outline: none;
    }

    /* ACTIVE PAGE */
    .navbar .nav-link.active {
        color: #ffd700 !important;
        font-weight: 600;
        border-bottom: 2px solid #ffd700;
    }

/* Dropdown item active */
.dropdown-item.active {
    background-color: #2563eb;
    color: #fff;
}




/* ================= CONTACT CARDS ================= */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
}

.contact-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .contact-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    }

    .contact-card i {
        font-size: 36px;
        margin-bottom: 15px;
    }

    /* Icon brand colors */
    .contact-card .fa-whatsapp {
        color: #25D366;
    }

    .contact-card .fa-phone {
        color: #2563eb;
    }

    .contact-card .fa-envelope {
        color: #dc2626;
    }

    .contact-card h6 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .contact-card p {
        font-size: 14px;
        color: #6b7280;
        margin-bottom: 14px;
    }

    .contact-card a {
        display: inline-block;
        padding: 10px 20px;
        background: #2563eb;
        color: #ffffff;
        font-size: 14px;
        font-weight: 600;
        border-radius: 30px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .contact-card a:hover {
            background: #1e40af;
        }

/* ================= FAQ SECTION ================= */
.contact-faq {
    max-width: 900px;
    margin: 70px auto;
    padding: 0 20px;
}

    .contact-faq h3 {
        font-size: 26px;
        font-weight: 800;
        text-align: center;
        margin-bottom: 30px;
    }

    .contact-faq details {
        background: #ffffff;
        border-radius: 10px;
        margin-bottom: 14px;
        padding: 14px 18px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    }

    .contact-faq summary {
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        list-style: none;
    }

        .contact-faq summary::-webkit-details-marker {
            display: none;
        }

    .contact-faq details p {
        margin-top: 10px;
        font-size: 14px;
        color: #4b5563;
        line-height: 1.6;
    }

/* ================= ADDRESS SECTION ================= */
.contact-address {
    background: #0f172a;
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

    .contact-address h5 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .contact-address p {
        font-size: 15px;
        line-height: 1.7;
        color: #e5e7eb;
    }

/* ================= RESPONSIVE BREAKPOINTS ================= */

/* TABLETS & SMALL LAPTOPS */
@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE DEVICES */
@media (max-width: 600px) {
    .contact-cards {
        grid-template-columns: 1fr;
        margin: 40px auto;
    }

    .contact-card {
        padding: 25px 18px;
    }

        .contact-card i {
            font-size: 32px;
        }

    .contact-faq h3 {
        font-size: 22px;
    }

    .contact-address h5 {
        font-size: 20px;
    }

    .contact-address p {
        font-size: 14px;
    }
}


/* ===== COLLABORATIONS PAGE ===== */

/*.collab-hero {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
    padding: 90px 0;
    text-align: center;
}

    .collab-hero h1 {
        font-size: 44px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .collab-hero p {
        font-size: 18px;
        max-width: 750px;
        margin: auto;
        opacity: 0.95;
    }

.collab-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.collab-block {
    margin-bottom: 70px;
}

    .collab-block h2 {
        font-size: 28px;
        color: #0d6efd;
        margin-bottom: 10px;
    }

    .collab-block p {
        font-size: 16px;
        color: #555;
        max-width: 900px;
        margin-bottom: 30px;
    }*/

/* LOGO GRID */
/*.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
}

    .logo-grid img {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        max-height: 90px;
        object-fit: contain;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .logo-grid img:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }*/



/* HERO */
.collaboration-hero {
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    color: #fff;
    text-align: center;
}

    .hero-content h1 {
        font-size: 42px;
        margin-bottom: 10px;
    }

/* ABOUT */
.collaboration-about {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text li {
    margin-bottom: 10px;
}

/* TYPES */
.collaboration-types {
    background: #f8f9fb;
    padding: 80px 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.type-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* WHY COLLABORATE */
.why-collaborate {
    padding: 80px 0;
    background: #fdfeff;
}

.collaborate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.collaborate-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

    .collaborate-card:hover {
        transform: translateY(-8px);
    }

.collab-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.collaborate-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.collaborate-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 1199px) {
    .collaborate-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collaborate-card {
        padding: 30px 22px;
    }
}

@media (max-width: 991px) {
    .why-collaborate {
        padding: 60px 0;
    }

    .collaborate-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .collab-icon {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .why-collaborate {
        padding: 50px 0;
    }

    .collaborate-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .collaborate-card {
        padding: 28px 20px;
        border-radius: 14px;
    }

        .collaborate-card h3 {
            font-size: 18px;
        }

        .collaborate-card p {
            font-size: 14px;
        }
}


















/* PORTFOLIO SECTION */
.portfolio-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .section-header h2 {
        font-size: 36px;
        font-weight: 700;
        color: #222;
    }

    .section-header p {
        color: #666;
        font-size: 16px;
        margin-top: 10px;
    }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

    .portfolio-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .portfolio-card:hover img {
        transform: scale(1.1);
    }

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.portfolio-overlay p {
    font-size: 14px;
    opacity: 0.9;
}
/* WHY CHOOSE US SECTION */
.why-choose-section {
    padding: 80px 0;
    background: #ffffff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: #f9f9f9;
    border-radius: 14px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

    .why-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

.why-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.why-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}
/* COURSES SECTION */
.courses-new {
    padding: 80px 0;
    background: #f8f9fb;
}

.courses-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 35px 60px;
}

.course-row {
    display: flex;
    align-items: center;
    gap: 25px;
}

.course-icon {
    font-size: 40px;
    width: 50px;
    text-align: center;
}

.course-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 20px;
    min-width: 210px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

    .course-box h3 {
        font-size: 20px;
        font-weight: 600;
        color: #111;
        margin: 0;
    }

.course-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* ================= MOBILE ================= */

.portfolio-section,
.why-choose-section,
.courses-new {
    padding: 40px 0;
}

/* Section header */
.section-header h2 {
    font-size: 24px;
}

.section-header p {
    font-size: 14px;
}

/* Portfolio */
.portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.portfolio-overlay h3 {
    font-size: 18px;
}

.portfolio-overlay p {
    font-size: 13px;
}

/* Why choose us */
.why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.why-card {
    padding: 25px 20px;
}

.why-icon {
    font-size: 32px;
}

/* Courses */
.courses-list {
    grid-template-columns: 1fr;
    gap: 25px;
}

.course-row {
    flex-direction: column;
    text-align: center;
    gap: 15px;
}

.course-icon {
    font-size: 32px;
}

.course-box {
    width: 100%;
    padding: 20px;
}
/* ================= LAPTOP / TABLET ================= */

@media (min-width: 577px) and (max-width: 991px) {

    .portfolio-section,
    .why-choose-section,
    .courses-new {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 30px;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Why choose us */
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Courses */
    .courses-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .course-row {
        gap: 20px;
    }
}
/* ================= DESKTOP ================= */

@media (min-width: 992px) {

    .section-header h2 {
        font-size: 36px;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    /* Why choose us */
    .why-choose-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    /* Courses */
    .courses-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 60px;
    }
}





/* ... existing styles ... */

.location-container {
    display: grid;
    /* Force exactly two columns on desktop/tablets */
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px; /* Constrains width for a better corporate feel */
    margin: 0 auto;
}

/* Professional Card adjustment for 2-column layout */
.location-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px; /* Slightly smoother corners */
    display: flex;
    align-items: center; /* Centers icon with text vertically */
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

/* Maintain responsiveness for mobile phones */
@media (max-width: 600px) {
    .location-container {
        grid-template-columns: 1fr; /* Single column on small screens */
    }
}




/* HERO SECTION */
.contact-page-hero {
    position: relative;
    height: 320px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.contact-page-hero-content {
    position: relative;
    text-align: center;
    color: #fff;
}

.contact-page-title {
    font-size: 42px;
    margin-bottom: 10px;
}

.contact-page-breadcrumbs a {
    color: #fff;
    text-decoration: none;
}

.contact-page-breadcrumbs span {
    margin: 0 5px;
}

/* COMMON */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* INTRO */
.career-intro {
    padding: 60px 0;
    text-align: center;
}

    .career-intro h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

/* JOBS */
.career-jobs {
    background: #f9f9f9;
    padding: 60px 0;
}

.job-card {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

    .job-card h3 {
        margin-bottom: 10px;
    }

.apply-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

/* FORM */
.career-form {
    padding: 60px 0;
}

/*.form-group {
    margin-bottom: 15px;
}*/
.form-group {
    width: 100%;
    overflow: hidden;
}

.contact-form select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

.submit-btn {
    background: #28a745;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

@media (min-width: 577px) and (max-width: 991px) {

    .contact-page-hero {
        height: 280px;
    }

    .contact-page-title {
        font-size: 34px;
    }

    .career-intro h2 {
        font-size: 28px;
    }

    .career-jobs {
        padding: 50px 0;
    }

    .job-card {
        padding: 22px;
    }

        .job-card h3 {
            font-size: 20px;
        }

    .apply-btn {
        padding: 10px 18px;
    }

    .career-form {
        padding: 50px 0;
    }
}


/* ================= MOBILE (default) ================= */

.contact-page-hero {
    height: 220px;
}

.contact-page-title {
    font-size: 26px;
}

.career-intro {
    padding: 40px 0;
}

    .career-intro h2 {
        font-size: 22px;
    }

.career-jobs,
.career-form {
    padding: 40px 0;
}

.job-card {
    padding: 18px;
}

    .job-card h3 {
        font-size: 18px;
    }

.apply-btn,
.submit-btn {
    width: 100%;
}
/* ================= DESKTOP ================= */

@media (min-width: 992px) {

    .contact-page-hero {
        height: 320px;
    }

    .contact-page-title {
        font-size: 42px;
    }

    .career-intro {
        padding: 60px 0;
    }

        .career-intro h2 {
            font-size: 32px;
        }

    .career-jobs,
    .career-form {
        padding: 60px 0;
    }

    .job-card {
        padding: 25px;
    }

        .job-card h3 {
            font-size: 22px;
        }
}


/* Section */
.careers-glass {
    padding: 60px 20px;
    background: #fafafa;
    text-align: center;
}

.careers-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

/* Grid */
.glass-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

/* Card */
.glass-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px;
    text-align: left;
    border: 1px solid #eef0f6;
    box-shadow: 0 8px 26px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.25s ease;
}

    .glass-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 36px rgba(0,0,0,0.08);
    }

/* Icon */
.icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #f4f5ff;
    color: #6b4eff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}



.location {
    font-size: 13px;
    font-weight: 600;
    color: #9aa1b3;
}



.students-exam-section {
    padding: 70px 0;
    background: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .section-header h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .section-header p {
        max-width: 750px;
        margin: auto;
        color: #666;
        line-height: 1.6;
    }

/* GRID */

.students-exam-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px; /* ⬅ smaller gap */
}

/* CARD */

.exam-card {
    background: #ffffff;
    padding: 22px; /* ⬅ reduced padding */
    border-radius: 10px; /* ⬅ smaller curve */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* ⬅ lighter shadow */
    transition: transform 0.3s ease;
}

    .exam-card:hover {
        transform: translateY(-6px);
    }

    /*.exam-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }*/
    .exam-card h3 {
        font-size: 15px;
        margin: 0;
    }

    .exam-card p {
        font-size: 15px;
        color: #555;
        line-height: 1.6;
    }

/* 📱 MOBILE */
@media (max-width: 576px) {

    .students-exam-section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .students-exam-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* 💻 LAPTOP */
@media (min-width: 577px) and (max-width: 991px) {

    .students-exam-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 28px;
    }
}

/* 🖥 DESKTOP */
@media (min-width: 992px) {

    .students-exam-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}




@media (max-width: 576px) {

    .franchise-section {
        padding: 50px 15px;
    }

    .franchise-header h2 {
        font-size: 24px;
    }

    .franchise-header p {
        font-size: 14px;
    }

    .franchise-card {
        padding: 22px;
    }

    .franchise-card h3 {
        font-size: 20px;
    }

    .franchise-card p,
    .franchise-card ul li {
        font-size: 13px;
    }

    .franchise-cta {
        padding: 30px 16px;
    }

    .franchise-cta h4 {
        font-size: 20px;
    }

    .franchise-cta p {
        font-size: 14px;
    }

    .franchise-btn {
        padding: 11px 24px;
        font-size: 14px;
    }
}
@media (min-width: 577px) and (max-width: 992px) {

    .franchise-section {
        padding: 60px 20px;
    }

    .franchise-header h2 {
        font-size: 28px;
    }

    .franchise-header p {
        font-size: 15px;
    }

    .franchise-card {
        padding: 26px;
    }

    .franchise-card h3 {
        font-size: 21px;
    }

    .franchise-cta h4 {
        font-size: 22px;
    }
}





.franchise-new {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0a1a44, #2735df);
    color: #fff;
}

.franchise-wrap {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT */
.franchise-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.franchise-left h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.franchise-left h2 span {
    color: #ffdd57;
}

.franchise-left p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 520px;
    margin-bottom: 28px;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(37,211,102,0.35);
    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 18px 40px rgba(37,211,102,0.5);
}

/* RIGHT */
.franchise-right {
    display: grid;
    gap: 24px;
}

.franchise-box {
    background: #ffffff;
    color: #0a1a44;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.15);
}

.franchise-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2735df;
}

.franchise-box ul {
    list-style: none;
    padding: 0;
}

.franchise-box ul li {
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
}

.franchise-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #25D366;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .franchise-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .franchise-left h2 {
        font-size: 28px;
    }

    .franchise-left p {
        margin: auto auto 24px;
    }

    .franchise-right {
        margin-top: 30px;
    }
}




/* BLUE HIGHLIGHT WHEN TEXT IS SELECTED */
::selection {
    background-color: #1e90ff; /* Blue */
    color: #ffffff;
}

::-moz-selection {
    background-color: #1e90ff;
    color: #ffffff;
}

/* BLUE TOUCH HIGHLIGHT (MOBILE TAP) */
* {
    -webkit-tap-highlight-color: rgba(30, 144, 255, 0.5);
}

/* OPTIONAL: STRONGER BLUE FOR LINKS */
a {
    -webkit-tap-highlight-color: rgba(30, 144, 255, 0.7);
}




/* Investors Invitation Section CSS */

/* Investor Section */
.investor-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.investor-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* Content */
.investor-content {
  flex: 1;
}

.investor-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.investor-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #e0e0e0;
}

/* Bullet Points */
.investor-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.investor-points li {
  font-size: 16px;
  margin-bottom: 10px;
}

/* Buttons */
.investor-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #f4c430;
  color: #000;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #ffdb4d;
}

.btn-outline {
  border: 2px solid #f4c430;
  color: #f4c430;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: #f4c430;
  color: #000;
}

/* Image */
.investor-image {
  flex: 1;
  text-align: center;
}

.investor-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .investor-container {
    flex-direction: column;
    text-align: center;
  }

  .investor-buttons {
    justify-content: center;
  }
}

