 :root {
            --primary: #0756b5;
            --primary-dark: #063b7c;
            --secondary: #0d7be8;
            --accent: #ff9f1c;
            --dark: #10233f;
            --text: #5c6b7d;
            --light-bg: #f6f9fd;
            --border: #e5ebf3;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Inter", sans-serif;
            color: var(--dark);
            background: #fff;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: "Poppins", sans-serif;
        }

        a {
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* ==========================================
           TOP BAR
        ========================================== */

        .top-bar {
            background: var(--dark);
            color: #fff;
            padding: 9px 0;
            font-size: 13px;
        }

        .top-bar a {
            color: #fff;
            margin-right: 20px;
            opacity: .9;
        }

        .top-bar a:hover {
            opacity: 1;
        }

        /* ==========================================
           NAVBAR
        ========================================== */

        .main-navbar {
            background: #fff;
            padding: 17px 0;
            transition: all .35s ease;
            z-index: 9999;
        }

        .main-navbar.scrolled {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 10px 0;
            box-shadow: 0 8px 30px rgba(16, 35, 63, .10);
            animation: navSlide .35s ease;
        }

        @keyframes navSlide {
            from {
                transform: translateY(-100%);
            }

            to {
                transform: translateY(0);
            }
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 21px;
            box-shadow: 0 7px 20px rgba(7, 86, 181, .2);
        }

        .brand-text strong {
            display: block;
            color: var(--dark);
            font-size: 17px;
            line-height: 1.1;
        }

        .brand-text small {
            color: var(--primary);
            font-size: 10px;
            letter-spacing: 1.2px;
            font-weight: 700;
        }

        .navbar-nav .nav-link {
            color: #34465d;
            font-size: 14px;
            font-weight: 600;
            padding: 10px 13px !important;
            transition: .3s;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }

        .apply-btn {
            background: var(--primary);
            color: #fff !important;
            padding: 11px 22px !important;
            border-radius: 7px;
            margin-left: 8px;
            box-shadow: 0 7px 18px rgba(7, 86, 181, .18);
        }

        .apply-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        /* ==========================================
           HERO
        ========================================== */

        .hero {
            position: relative;
            min-height: 690px;
            padding: 70px 0 80px;
            background:
                linear-gradient(90deg, rgba(5, 46, 98, .94) 0%, rgba(6, 67, 135, .88) 48%, rgba(7, 86, 181, .55) 100%),
                url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=2000&q=85")
                center/cover no-repeat;
            display: flex;
            align-items: center;
            color: #fff;
        }

        .hero::after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 90px;
            background: #fff;
            clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 50px;
            background: rgba(255,255,255,.13);
            border: 1px solid rgba(255,255,255,.25);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .hero h1 {
            font-size: clamp(36px, 5vw, 62px);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .hero h1 span {
            color: #ffd27a;
        }

        .hero-subtitle {
            font-size: 20px;
            line-height: 1.6;
            max-width: 650px;
            color: rgba(255,255,255,.88);
            margin-bottom: 25px;
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-bottom: 30px;
            max-width: 600px;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
        }

        .hero-feature i {
            color: #ffd27a;
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: #fff;
            color: var(--primary);
            padding: 14px 24px;
            border-radius: 7px;
            font-weight: 700;
            transition: .3s;
        }

        .hero-btn:hover {
            background: #ffd27a;
            color: var(--dark);
            transform: translateY(-3px);
        }

        /* ==========================================
           FORM CARD
        ========================================== */

        .admission-card {
            background: #fff;
            color: var(--dark);
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 25px 70px rgba(0,0,0,.22);
            position: relative;
            z-index: 5;
        }

        .admission-card::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 5px;
            background: var(--accent);
            border-radius: 16px 16px 0 0;
        }

        .admission-card h3 {
            font-size: 23px;
            font-weight: 700;
            margin-bottom: 7px;
        }

        .admission-card > p {
            color: var(--text);
            font-size: 13px;
            margin-bottom: 22px;
        }

        .form-control,
        .form-select {
            height: 48px;
            border: 1px solid var(--border);
            border-radius: 7px;
            font-size: 13px;
            padding: 10px 14px;
            box-shadow: none !important;
        }

        textarea.form-control {
            height: 82px;
            resize: none;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--primary);
        }

        .submit-btn {
            width: 100%;
            height: 49px;
            border: 0;
            border-radius: 7px;
            background: var(--primary);
            color: #fff;
            font-weight: 700;
            transition: .3s;
        }

        .submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        /* ==========================================
           COMMON SECTION
        ========================================== */

        section {
            padding: 90px 0;
        }

        .section-heading {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-tag {
            display: inline-block;
            color: var(--primary);
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
        }

        .section-heading h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 800;
            margin-bottom: 12px;
        }

        .section-heading p {
            color: var(--text);
            max-width: 650px;
            margin: auto;
            line-height: 1.7;
        }

        /* ==========================================
           COURSES
        ========================================== */

        .courses-section {
            background: #fff;
        }

        .course-card {
            height: 100%;
            border: 1px solid var(--border);
            border-radius: 13px;
            padding: 25px;
            background: #fff;
            transition: .35s ease;
            position: relative;
            overflow: hidden;
        }

        .course-card::after {
            content: "";
            position: absolute;
            width: 70px;
            height: 70px;
            background: rgba(7,86,181,.045);
            border-radius: 50%;
            right: -25px;
            top: -25px;
            transition: .35s;
        }

        .course-card:hover {
            transform: translateY(-8px);
            border-color: rgba(7,86,181,.2);
            box-shadow: 0 18px 45px rgba(16,35,63,.10);
        }

        .course-card:hover::after {
            transform: scale(2);
        }

        .course-icon {
            width: 55px;
            height: 55px;
            border-radius: 12px;
            background: #edf5ff;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 18px;
            transition: .3s;
        }

        .course-card:hover .course-icon {
            background: var(--primary);
            color: #fff;
            transform: rotate(-5deg);
        }

        .course-card h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .course-card p {
            color: var(--text);
            font-size: 13px;
            line-height: 1.65;
            min-height: 43px;
        }

        .course-link {
            color: var(--primary);
            font-size: 13px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            margin-top: 10px;
        }

        .course-link i {
            transition: .3s;
        }

        .course-link:hover i {
            transform: translateX(5px);
        }

        /* ==========================================
           STATS
        ========================================== */

        .stats-section {
            padding: 70px 0;
            background:
                linear-gradient(rgba(5, 52, 107, .96), rgba(5, 52, 107, .96)),
                url("https://images.unsplash.com/photo-1564981797816-1043664bf78d?auto=format&fit=crop&w=1800&q=80")
                center/cover;
            color: #fff;
        }

        .stats-heading {
            text-align: center;
            margin-bottom: 45px;
        }

        .stats-heading h2 {
            font-size: 30px;
            font-weight: 800;
        }

        .stats-heading p {
            color: rgba(255,255,255,.75);
        }

        .stat-box {
            text-align: center;
            padding: 20px;
            border-right: 1px solid rgba(255,255,255,.15);
        }

        .stat-box:last-child {
            border-right: 0;
        }

        .stat-icon {
            font-size: 22px;
            color: #ffd27a;
            margin-bottom: 12px;
        }

        .counter {
            font-size: 36px;
            font-weight: 800;
            font-family: "Poppins", sans-serif;
        }

        .stat-box h5 {
            font-size: 13px;
            color: rgba(255,255,255,.78);
            margin: 5px 0 0;
        }

        /* ==========================================
           CTA EXPERT
        ========================================== */

        .expert-section {
            padding: 0;
        }

        .expert-box {
            background: var(--light-bg);
            border-radius: 20px;
            overflow: hidden;
        }

        .expert-left {
            padding: 55px;
            background: var(--primary);
            color: #fff;
            height: 100%;
        }

        .expert-left h3 {
            font-size: 25px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 13px 0;
        }

        .contact-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255,255,255,.13);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-item small {
            display: block;
            opacity: .75;
            font-size: 11px;
        }

        .contact-item strong {
            font-size: 17px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 7px;
            padding: 12px 20px;
            font-size: 13px;
            font-weight: 700;
            transition: .3s;
            margin: 4px;
        }

        .call-btn {
            background: #fff;
            color: var(--primary);
        }

        .whatsapp-btn {
            background: #25d366;
            color: #fff;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
        }

        .expert-right {
            padding: 55px;
        }

        .expert-right h2 {
            font-size: 33px;
            font-weight: 800;
            margin-bottom: 17px;
        }

        .expert-right p {
            color: var(--text);
            line-height: 1.8;
            font-size: 15px;
            margin-bottom: 25px;
        }

        .primary-btn {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 13px 22px;
            border-radius: 7px;
            background: var(--primary);
            color: #fff;
            font-weight: 700;
            font-size: 13px;
            transition: .3s;
        }

        .primary-btn:hover {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-3px);
        }

        /* ==========================================
           COLLEGES
        ========================================== */

        .colleges-section {
            background: var(--light-bg);
        }

        .college-card {
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            height: 100%;
            border: 1px solid var(--border);
            transition: .35s;
        }

        .college-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 40px rgba(16,35,63,.11);
        }

        .college-image {
            height: 205px;
            overflow: hidden;
            position: relative;
        }

        .college-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .5s;
        }

        .college-card:hover .college-image img {
            transform: scale(1.08);
        }

        .college-content {
            padding: 22px;
        }

        .college-content h4 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 9px;
        }

        .location {
            font-size: 12px;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .college-content p {
            color: var(--text);
            font-size: 13px;
            line-height: 1.65;
            min-height: 43px;
        }

        .admission-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-size: 12px;
            font-weight: 800;
            margin-top: 8px;
        }

        /* ==========================================
           FOREIGN
        ========================================== */

        .foreign-section {
            background: #fff;
        }

        .foreign-card {
            border: 1px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
            height: 100%;
            transition: .35s;
            background: #fff;
        }

        .foreign-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 45px rgba(16,35,63,.11);
        }

        .foreign-image {
            height: 190px;
            overflow: hidden;
            position: relative;
        }

        .foreign-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .5s;
        }

        .foreign-card:hover img {
            transform: scale(1.08);
        }

        .international-badge {
            position: absolute;
            left: 12px;
            top: 12px;
            padding: 6px 10px;
            background: #fff;
            color: var(--primary);
            border-radius: 5px;
            font-size: 10px;
            font-weight: 800;
            box-shadow: 0 4px 12px rgba(0,0,0,.12);
        }

        .foreign-content {
            padding: 20px;
        }

        .foreign-content h4 {
            font-size: 17px;
            font-weight: 700;
        }

        .foreign-content p {
            color: var(--text);
            font-size: 13px;
            line-height: 1.65;
        }

        /* ==========================================
           FINAL CTA
        ========================================== */

        .final-cta {
            padding: 75px 0;
            background:
                linear-gradient(100deg, rgba(5, 59, 124, .97), rgba(7, 86, 181, .92)),
                url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1800&q=80")
                center/cover;
            color: #fff;
            text-align: center;
        }

        .final-cta h2 {
            font-size: clamp(30px, 4vw, 44px);
            font-weight: 800;
            margin-bottom: 15px;
        }

        .final-cta p {
            max-width: 680px;
            margin: 0 auto 28px;
            color: rgba(255,255,255,.82);
            line-height: 1.7;
        }

        .white-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            color: var(--primary);
            padding: 13px 24px;
            border-radius: 7px;
            font-size: 13px;
            font-weight: 800;
            margin: 5px;
            transition: .3s;
        }

        .outline-white-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255,255,255,.6);
            color: #fff;
            padding: 12px 24px;
            border-radius: 7px;
            font-size: 13px;
            font-weight: 800;
            margin: 5px;
            transition: .3s;
        }

        .white-btn:hover,
        .outline-white-btn:hover {
            transform: translateY(-3px);
        }

        .outline-white-btn:hover {
            background: #fff;
            color: var(--primary);
        }

        /* ==========================================
           FOOTER
        ========================================== */

        footer {
            background: #091a2f;
            color: #fff;
            padding-top: 70px;
        }

        .footer-about {
            color: rgba(255,255,255,.62);
            font-size: 13px;
            line-height: 1.8;
            margin-top: 17px;
            max-width: 310px;
        }

        .footer-title {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 11px;
        }

        .footer-links a {
            color: rgba(255,255,255,.62);
            font-size: 13px;
            transition: .3s;
        }

        .footer-links a:hover {
            color: #fff;
            padding-left: 4px;
        }

        .footer-contact {
            display: flex;
            gap: 10px;
            margin-bottom: 14px;
            color: rgba(255,255,255,.65);
            font-size: 13px;
            line-height: 1.5;
        }

        .footer-contact i {
            color: #7db9ff;
            margin-top: 3px;
        }

        .social-links {
            display: flex;
            gap: 8px;
            margin-top: 20px;
        }

        .social-links a {
            width: 36px;
            height: 36px;
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 6px;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            transition: .3s;
        }

        .social-links a:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            margin-top: 50px;
            border-top: 1px solid rgba(255,255,255,.09);
            padding: 20px 0;
            text-align: center;
            color: rgba(255,255,255,.45);
            font-size: 12px;
        }

        /* ==========================================
           FLOATING BUTTONS
        ========================================== */

        .floating-whatsapp,
        .floating-call {
            position: fixed;
            right: 20px;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
            z-index: 999;
            box-shadow: 0 7px 20px rgba(0,0,0,.2);
            transition: .3s;
        }

        .floating-whatsapp {
            bottom: 85px;
            background: #25d366;
        }

        .floating-call {
            bottom: 20px;
            background: var(--primary);
        }

        .floating-whatsapp:hover,
        .floating-call:hover {
            transform: scale(1.1);
            color: #fff;
        }

        /* ==========================================
           BACK TO TOP
        ========================================== */

        #backToTop {
            position: fixed;
            right: 20px;
            bottom: 150px;
            width: 43px;
            height: 43px;
            border: 0;
            border-radius: 7px;
            background: var(--dark);
            color: #fff;
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 998;
            cursor: pointer;
        }

        #backToTop.show {
            display: flex;
        }

        /* ==========================================
           SCROLL REVEAL
        ========================================== */

        .reveal {
            opacity: 0;
            transform: translateY(35px);
            transition: opacity .8s ease, transform .8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ==========================================
           TOAST
        ========================================== */

        .success-message {
            display: none;
            background: #eafaf0;
            color: #168044;
            border: 1px solid #bce9ce;
            padding: 10px 12px;
            border-radius: 6px;
            font-size: 12px;
            margin-bottom: 15px;
        }

        /* ==========================================
           RESPONSIVE
        ========================================== */

        @media (max-width: 1199px) {

            .navbar-nav .nav-link {
                padding-left: 8px !important;
                padding-right: 8px !important;
            }

            .hero {
                min-height: auto;
            }

        }

        @media (max-width: 991px) {

            .top-bar {
                display: none;
            }

            .main-navbar {
                padding: 12px 0;
            }

            .navbar-collapse {
                padding-top: 15px;
            }

            .apply-btn {
                margin: 8px 0 0;
                display: inline-block;
                text-align: center;
            }

            .hero {
                padding: 55px 0 80px;
            }

            .hero-content {
                margin-bottom: 45px;
            }

            .hero h1 {
                font-size: 43px;
            }

            .stat-box {
                border-right: 0;
                border-bottom: 1px solid rgba(255,255,255,.12);
                margin-bottom: 10px;
            }

            .stat-box:last-child {
                border-bottom: 0;
            }

            .expert-left,
            .expert-right {
                padding: 40px 30px;
            }

        }

        @media (max-width: 767px) {

            section {
                padding: 65px 0;
            }

            .hero {
                padding: 45px 0 70px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .hero-features {
                grid-template-columns: 1fr;
            }

            .admission-card {
                padding: 22px;
            }

            .section-heading {
                margin-bottom: 35px;
            }

            .counter {
                font-size: 31px;
            }

            .expert-right h2 {
                font-size: 27px;
            }

            .floating-whatsapp {
                bottom: 78px;
                right: 15px;
            }

            .floating-call {
                bottom: 15px;
                right: 15px;
            }

            #backToTop {
                right: 15px;
                bottom: 140px;
            }

        }

        @media (max-width: 480px) {

            .brand-text strong {
                font-size: 14px;
            }

            .brand-text small {
                font-size: 8px;
            }

            .logo-icon {
                width: 39px;
                height: 39px;
            }

            .hero h1 {
                font-size: 31px;
            }

            .hero-badge {
                font-size: 11px;
            }

            .hero-btn {
                width: 100%;
                justify-content: center;
            }

            .admission-card h3 {
                font-size: 20px;
            }

            .expert-left,
            .expert-right {
                padding: 30px 22px;
            }

        }