    /* =====================================================
           RESET & BASE
        ===================================================== */
        *, *::before, *::after { box-sizing: border-box; }

        body {
            margin: 0;
            font-family: "Open Sans", sans-serif;
            font-size: 1rem;
            line-height: 1.5;
            color: #6B6A75;
            background: #fff;
            overflow-x: hidden;
        }

        img { max-width: 100%; height: auto; }

        /* =====================================================
           CSS VARIABLES
        ===================================================== */
        :root {
            --blue: #226cdc;
            --blue-dark: #1b58b8;
            --radius-pill: 30px;
            --transition: 0.3s ease;
        }

        /* =====================================================
           SOCIAL HANG
        ===================================================== */
        .social-hang {
            position: fixed;
            bottom: 25px;
            right: 0;
            z-index: 9999;
            display: flex;
            flex-direction: column-reverse;
        }

        .social-hang a {
            width: 44px;
            height: 44px;
            margin: 5px 0;
            color: #fff;
            background: var(--blue);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            border-radius: 10px 0 0 10px;
            font-size: 18px;
            transform: translateX(8px);
            transition: transform var(--transition), background var(--transition);
            box-shadow: -2px 4px 12px rgba(0,0,0,0.25);
        }

        .social-hang a:hover { transform: translateX(0); background: var(--blue-dark); }

        @media (max-width: 480px) {
            .social-hang a { width: 36px; height: 36px; font-size: 15px; }
        }

        /* =====================================================
           NAVBAR
        ===================================================== */
        .navbar {
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        }

        .navbar-light .navbar-nav .nav-link {
            font-family: 'Jost', sans-serif;
            padding: 28px 14px;
            font-size: 17px;
            font-weight: 500;
            color: #120F2D;
            outline: none;
            transition: color var(--transition);
        }

        .navbar-light .navbar-nav .nav-link:hover,
        .navbar-light .navbar-nav .nav-link.active { color: var(--blue); }

        @media (max-width: 991px) {
            .navbar-light .navbar-nav .nav-link { padding: 10px 14px; }
        }

        .Ap {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1rem;
            color: #fff;
            background: linear-gradient(135deg, #2878EB, #1b5fcc);
            padding: 0.65rem 1.4rem;
            border-radius: var(--radius-pill);
            border: none;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 6px 18px rgba(40,120,235,0.3);
            transition: all 0.25s ease;
            white-space: nowrap;
        }

        .Ap:hover {
            background: linear-gradient(135deg, #1b5fcc, #124aa3);
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(40,120,235,0.4);
            color: #fff;
        }

        @media (max-width: 575px) {
            .Ap { font-size: 0.9rem; padding: 0.55rem 1.1rem; }
        }

        /* =====================================================
           GLOBAL BUTTONS
        ===================================================== */
        .btn-main {
            background: var(--blue);
            color: #fff;
            padding: 11px 26px;
            border-radius: var(--radius-pill);
            font-weight: 600;
            border: none;
            font-size: 15px;
            display: inline-block;
            text-align: center;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .btn-main:hover { background: var(--blue-dark); color: #fff; text-decoration: none; }

        .btn-outline-main {
            border: 2px solid var(--blue);
            color: var(--blue);
            padding: 11px 26px;
            border-radius: var(--radius-pill);
            font-weight: 600;
            font-size: 15px;
            display: inline-block;
            text-align: center;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .btn-outline-main:hover { background: var(--blue); color: #fff; text-decoration: none; }

        @media (max-width: 575px) {
            .btn-main, .btn-outline-main { padding: 10px 20px; font-size: 14px; }
        }

        @media (max-width: 360px) {
            .btn-main, .btn-outline-main { width: 100%; font-size: 14px; }
        }

        /* =====================================================
           HERO SECTION (Top)
        ===================================================== */
        .hero-section {
            background: #f7f9fc;
            padding: 80px 0 60px;
        }

        .hero-small {
            color: #000;
            font-weight: 500;
            margin-bottom: 10px;
            font-size: 16px;
        }

        .hero-title {
            font-size: 52px;
            font-weight: 700;
            color: var(--blue);
            line-height: 1.15;
            margin-bottom: 0;
        }

        .hero-sub {
            color: #333;
            opacity: 0.85;
            margin: 18px 0 28px;
            font-size: 17px;
        }

        .hero-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .hero-img-wrap { text-align: center; }
        .hero-img { max-width: 420px; width: 100%; }

        /* Tablet */
        @media (max-width: 991px) {
            .hero-section { padding: 60px 0 40px; }
            .hero-title { font-size: 40px; }
            .hero-small { font-size: 15px; }
            .hero-sub { font-size: 15px; }
            .hero-img { max-width: 320px; margin-top: 30px; }
        }

        /* Mobile */
        @media (max-width: 767px) {
            .hero-section { padding: 50px 0 36px; }
            .hero-title { font-size: 32px; }
            .hero-buttons { justify-content: center; }
            .hero-img { max-width: 280px; }
            .hero-section .col-lg-6:first-child { text-align: center; }
        }

        /* Small mobile */
        @media (max-width: 480px) {
            .hero-title { font-size: 26px; }
            .hero-small { font-size: 13px; }
            .hero-sub { font-size: 14px; margin: 14px 0 22px; }
            .hero-img { max-width: 230px; }
        }

        /* =====================================================
           VISUAL HERO SECTION
        ===================================================== */
        .hero {
            background: linear-gradient(135deg, #f6f8ff, #eef2ff);
            padding: 60px 20px 30px;
            position: relative;
        }

        .hero-container {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            align-items: center;
            gap: 40px;
        }

        .hero-content h1 {
            font-size: 40px;
            line-height: 1.25;
            font-weight: 700;
            color: #120F2D;
        }

        .hero-content span { color: var(--blue); }

        .hero-content p {
            margin: 18px 0 28px;
            font-size: 17px;
            color: #555;
        }

        .hero-btn {
            display: inline-block;
            background: var(--blue);
            color: #fff;
            padding: 13px 34px;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            font-size: 16px;
            transition: all var(--transition);
            box-shadow: 0 6px 18px rgba(40,120,235,0.3);
        }

        .hero-btn:hover { background: var(--blue-dark); color: #fff; transform: translateY(-3px); text-decoration: none; }

        /* Graphics */
        .hero-graphics {
            position: relative;
            height: 300px;
        }

        .hero-orbit {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hero-orbit img {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            border: 5px dashed #d6dcff;
            padding: 5px;
            background: #fff;
            object-fit: cover;
        }

        .chat {
            padding: 10px 13px;
            font-size: 13px;
            border-radius: 10px;
            max-width: 200px;
            line-height: 1.5;
        }

        .chat.light { background: #fff; color: #333; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
        .chat.dark { background: var(--blue); color: #fff; }

        .hero-orbit.mentor { left: 0; top: 80px; }
        .hero-orbit.student { right: 0; top: 10px; }

        /* Stats */
        .hero-stats {
            max-width: 1100px;
            margin: 30px auto 0;
            background: #fff;
            padding: 40px 30px;
            border-radius: 18px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
        }

        .stat { text-align: center; }
        .stat h4 { margin: 6px 0 4px; font-size: 17px; color: #120F2D; font-weight: 600; }
        .stat p { font-size: 13px; color: #666; margin: 0; }

        /* Responsive visual hero */
        @media (max-width: 900px) {
            .hero { padding: 50px 16px 20px; }
            .hero-container { grid-template-columns: 1fr; gap: 28px; }
            .hero-content h1 { font-size: 30px; }
            .hero-content p { font-size: 15px; }
            .hero-graphics { height: 240px; }
            .hero-orbit img { width: 85px; height: 85px; border-width: 4px; }
            .hero-orbit.mentor { left: 0; top: 70px; }
            .hero-orbit.student { right: 0; top: 0; }
            .hero-stats { grid-template-columns: repeat(2, 1fr); padding: 30px 20px; margin-top: 24px; gap: 18px; }
        }

        @media (max-width: 600px) {
            .hero-graphics { display: none; }
            .hero-content h1 { font-size: 26px; }
            .hero-content p { font-size: 14px; }
            .hero-btn { padding: 11px 26px; font-size: 14px; }
            .hero-stats { grid-template-columns: repeat(2, 1fr); padding: 24px 16px; gap: 14px; }
            .stat h4 { font-size: 15px; }
            .stat p { font-size: 12px; }
        }

        @media (max-width: 400px) {
            .hero-stats { grid-template-columns: 1fr 1fr; }
        }

        /* =====================================================
           ABOUT SECTION
        ===================================================== */
        .about-section { background: #f8f9fc; }

        .about-img-wrap {
            overflow: hidden;
            border-radius: 18px;
            box-shadow: 0 10px 28px rgba(0,0,0,0.1);
        }

        .about-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        .about-img-wrap:hover .about-img { transform: scale(1.06); }

        .main-title {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.2;
            color: #120F2D;
        }

        .about-text { font-size: 16px; color: #555; line-height: 1.8; }

        .stat-card {
            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(6px);
            padding: 20px 10px;
            border-radius: 14px;
            text-align: center;
            transition: transform var(--transition);
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        }

        .stat-card:hover { transform: translateY(-6px); }
        .stat-card h2 { font-weight: 700; color: var(--blue); font-size: 28px; margin-bottom: 4px; }
        .stat-card p { font-size: 13px; color: #444; margin: 0; font-weight: 600; }

        @media (max-width: 991px) {
            .main-title { font-size: 28px; }
        }

        @media (max-width: 575px) {
            .main-title { font-size: 24px; }
            .about-text { font-size: 14px; }
            .stat-card h2 { font-size: 24px; }
        }

        /* =====================================================
           COURSES CAROUSEL
        ===================================================== */
        .courses-item {
            transition: all var(--transition);
            cursor: pointer;
        }

        .courses-item:hover { transform: translateY(-8px); box-shadow: 0 12px 28px rgba(0,0,0,0.08); }

        .courses-item .icon {
            display: flex;
            justify-content: center;
            margin-bottom: 14px;
        }

        .courses-item .icon img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
        }

        .courses-item h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .courses-item p { font-size: 14px; color: #555; }

        @media (max-width: 575px) {
            .courses-item .icon img { width: 65px; height: 65px; }
            .courses-item h4 { font-size: 16px; }
        }

        /* =====================================================
           ACHARYA SCHOOL SECTION
        ===================================================== */
        .acharya-school-section {
            background: linear-gradient(135deg, #f4f8ff, #ffffff);
        }

        .school-badge {
            display: inline-block;
            background: var(--blue);
            color: #fff;
            padding: 5px 18px;
            border-radius: var(--radius-pill);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 14px;
        }

        .school-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 14px;
            line-height: 1.25;
            color: #120F2D;
        }

        .school-title span { color: var(--blue); }
        .school-text { color: #555; font-size: 15px; margin-bottom: 18px; }

        .school-points { list-style: none; padding: 0; }
        .school-points li { margin-bottom: 9px; font-size: 15px; color: #333; }
        .school-points i { color: var(--blue); margin-right: 8px; }

        .school-img-wrapper {
            background: #fff;
            padding: 14px;
            border-radius: 16px;
            box-shadow: 0 12px 36px rgba(0,0,0,0.08);
        }

        .school-img { width: 100%; border-radius: 12px; display: block; }

        @media (max-width: 767px) {
            .school-title { font-size: 24px; }
            .school-text { font-size: 14px; }
            .school-points li { font-size: 14px; }
        }

        /* =====================================================
           TEAM / INSTRUCTORS SECTION
        ===================================================== */
        .team-section {
            padding: 70px 20px;
            background: #fff;
        }

        .team-container {
            max-width: 1100px;
            margin: auto;
            text-align: center;
        }

        .team-header h2 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #120F2D;
        }

        .team-header p {
            font-size: 15px;
            color: #555;
            margin-bottom: 40px;
        }

        .team-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            align-items: start;
        }

        .team-card {
            background: #fafafa;
            border: 1px solid #e3e3e3;
            border-radius: 14px;
            padding: 24px 16px 28px;
            opacity: 0;
            transform: translateY(36px);
            transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease;
        }

        .team-card.show { opacity: 1; transform: translateY(0); }
        .team-card:hover { border-color: #999; transform: translateY(-4px); }
        .team-card.show:hover { transform: translateY(-4px); }

        .avatar {
            width: 88px;
            height: 88px;
            margin: 0 auto 12px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--blue);
        }

        .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .team-info h3 { font-size: 18px; margin: 5px 0 3px; font-weight: 600; color: #120F2D; }
        .role { font-size: 13px; color: var(--blue); margin-bottom: 8px; font-weight: 500; }
        .bio { font-size: 13px; color: #555; line-height: 1.6; margin: 0; }

        @media (max-width: 1024px) {
            .team-cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }
        }

        @media (max-width: 575px) {
            .team-section { padding: 50px 16px; }
            .team-header h2 { font-size: 24px; }
            .team-header p { font-size: 14px; margin-bottom: 28px; }
            .team-cards { grid-template-columns: 1fr 1fr; gap: 14px; }
            .team-card { padding: 18px 12px 22px; }
            .avatar { width: 70px; height: 70px; }
            .team-info h3 { font-size: 15px; }
            .role { font-size: 12px; }
            .bio { font-size: 12px; }
        }

        @media (max-width: 380px) {
            .team-cards { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
        }

        /* =====================================================
           MD SECTION
        ===================================================== */
        .md-section {
            padding: 60px 0;
            background: #f6f8ff;
        }

        .md-container {
            max-width: 1100px;
            margin: auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 380px 1fr;
            gap: 50px;
            align-items: center;
        }

        .md-image img {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
            object-fit: cover;
            display: block;
        }

        .md-content .md-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--blue);
            text-transform: uppercase;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }

        .md-content h2 {
            font-size: 30px;
            font-weight: 700;
            color: #111;
            margin-bottom: 18px;
            line-height: 1.3;
        }

        .md-content p { font-size: 15px; color: #555; line-height: 1.85; margin-bottom: 16px; }

        .md-signature { margin-top: 26px; }
        .md-signature strong { display: block; font-size: 17px; color: #111; }
        .md-signature span { font-size: 13px; color: #777; }

        @media (max-width: 991px) {
            .md-container { grid-template-columns: 1fr; gap: 36px; }
            .md-image { max-width: 380px; margin: 0 auto; }
            .md-content h2 { font-size: 26px; }
        }

        @media (max-width: 575px) {
            .md-section { padding: 44px 0; }
            .md-content h2 { font-size: 22px; }
            .md-content p { font-size: 14px; }
            .md-image { max-width: 100%; }
        }

        /* =====================================================
           TESTIMONIALS
        ===================================================== */
        .testimonial-modern { background: #f8f9fc; }

        .section-badge {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: 10px;
        }

        .section-heading {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 18px;
            color: #120F2D;
        }

        .section-text { color: #555; font-size: 15px; line-height: 1.8; }

        .testimonial-card {
            background: #fff;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 12px 32px rgba(0,0,0,0.06);
            transition: transform var(--transition);
        }

        .testimonial-card:hover { transform: translateY(-5px); }
        .testimonial-text { font-size: 15px; color: #333; line-height: 1.85; margin-bottom: 22px; }

        .testimonial-user { display: flex; align-items: center; gap: 13px; }

        .testimonial-user img {
            width: 56px !important;
            height: 56px !important;
            min-width: 56px;
            border-radius: 50% !important;
            object-fit: cover;
        }

        .testimonial-user h6 { margin: 0; font-weight: 600; font-size: 15px; color: #120F2D; }
        .testimonial-user span { font-size: 13px; color: #777; }

        @media (max-width: 575px) {
            .section-heading { font-size: 24px; }
            .section-text { font-size: 14px; }
            .testimonial-card { padding: 22px 18px; }
            .testimonial-text { font-size: 14px; }
        }

        /* =====================================================
           CONTACT SECTION
        ===================================================== */
        .contact-info-modern {
            background: #007bff;
            color: #fff;
            padding: 44px 36px;
            border-radius: 20px;
            box-shadow: 0 24px 50px rgba(0,0,0,0.2);
            height: 100%;
        }

        .info-title { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
        .info-subtitle { font-size: 14px; opacity: 0.92; margin-bottom: 30px; line-height: 1.7; }

        .info-item-modern {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 16px;
            border-radius: 12px;
            margin-bottom: 16px;
            background: rgba(255,255,255,0.15);
            transition: transform 0.25s ease;
        }

        .info-item-modern:hover { transform: translateY(-3px); }

        .icon-box {
            width: 48px;
            height: 48px;
            min-width: 48px;
            border-radius: 12px;
            background: #fff;
            color: #007bff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }

        .info-item-modern h5 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
        .info-item-modern p { margin: 0; font-size: 13px; opacity: 0.95; line-height: 1.5; }
        .info-footer { margin-top: 28px; padding-top: 16px; font-size: 13px; opacity: 0.88; border-top: 1px solid rgba(255,255,255,0.25); }

        .booking-card {
            background: #fff;
            padding: 34px;
            border-radius: 18px;
            box-shadow: 0 18px 48px rgba(0,0,0,0.08);
        }

        .booking-header { margin-bottom: 24px; }
        .booking-header h2 { font-weight: 700; font-size: 24px; margin-bottom: 5px; color: #120F2D; }
        .booking-header p { color: #666; font-size: 14px; }

        .booking-card label { font-weight: 600; font-size: 13px; margin-bottom: 5px; display: block; }

        .modern-input {
            border-radius: 10px;
            border: 1px solid #ddd;
            padding: 11px 13px;
            font-size: 14px;
            transition: all var(--transition);
            width: 100%;
        }

        .modern-input:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(40,120,235,0.1);
            outline: none;
        }

        .booking-btn {
            border-radius: var(--radius-pill);
            font-size: 15px;
            font-weight: 600;
            padding: 13px;
        }

        @media (max-width: 991px) {
            .contact-info-modern { height: auto; margin-bottom: 24px; }
        }

        @media (max-width: 575px) {
            .contact-info-modern { padding: 30px 22px; border-radius: 16px; }
            .info-title { font-size: 20px; }
            .booking-card { padding: 24px 18px; }
            .booking-header h2 { font-size: 20px; }
        }

        /* =====================================================
           FOOTER
        ===================================================== */
        .footer-section {
            margin-top: 60px;
        }

        @media (max-width: 767px) {
            .footer-section .col-md-6,
            .footer-section .col-md-4 {
                margin-bottom: 28px;
            }
        }

        /* =====================================================
           COUNSELLOR WIDGET
        ===================================================== */
        .pw-counsellor {
            position: fixed;
            left: 16px;
            bottom: 16px;
            z-index: 9999;
        }

        .pw-c-icon {
            width: 52px;
            height: 52px;
            background: var(--blue);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 8px 22px rgba(0,0,0,0.22);
            transition: transform var(--transition);
        }

        .pw-c-icon:hover { transform: scale(1.08); }

        .pw-c-card {
            position: absolute;
            bottom: 68px;
            left: 0;
            width: 290px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 12px 38px rgba(0,0,0,0.16);
            overflow: hidden;
            opacity: 0;
            transform: translateY(10px);
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .pw-counsellor.active .pw-c-card { opacity: 1; transform: translateY(0); pointer-events: auto; }

        .pw-c-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 11px 14px;
            font-weight: 600;
            font-size: 13px;
            border-bottom: 1px solid #eee;
        }

        .pw-c-header button { border: none; background: none; font-size: 18px; cursor: pointer; color: #888; line-height: 1; }
        .pw-c-body { padding: 14px; }
        .pw-c-body p { font-size: 13px; color: #555; margin-bottom: 11px; }

        .pw-c-call {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            border: 1.5px solid var(--blue);
            color: var(--blue);
            padding: 10px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.25s ease;
        }

        .pw-c-call:hover { background: var(--blue); color: #fff; text-decoration: none; }

        @media (max-width: 400px) {
            .pw-c-card { width: calc(100vw - 32px); }
        }

        /* =====================================================
           POPUP
        ===================================================== */
        .ag-popup-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.55);
            backdrop-filter: blur(6px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            padding: 16px;
        }

        .ag-popup-overlay.active { opacity: 1; visibility: visible; }

        .ag-popup {
            background: linear-gradient(135deg, #1f3c88, #2878EB);
            color: #fff;
            width: 100%;
            max-width: 760px;
            border-radius: 18px;
            padding: 36px;
            position: relative;
            transform: translateY(40px);
            transition: transform 0.4s ease;
        }

        .ag-popup-overlay.active .ag-popup { transform: translateY(0); }

        .ag-popup-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
        }

        .ag-left h2 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
        .ag-left p { opacity: 0.9; margin-bottom: 18px; font-size: 15px; }
        .ag-left ul { list-style: none; padding: 0; margin-bottom: 18px; }
        .ag-left ul li { margin-bottom: 7px; font-size: 14px; }
        .ag-left i { margin-right: 8px; }

        .ag-btn {
            background: #fff;
            color: #1f3c88;
            padding: 11px 24px;
            border-radius: var(--radius-pill);
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            display: inline-block;
            transition: all var(--transition);
        }

        .ag-btn:hover { transform: translateY(-2px); background: #f1f1f1; color: #1f3c88; text-decoration: none; }

        .ag-right i { font-size: 80px; opacity: 0.15; }

        .ag-close {
            position: absolute;
            top: 14px;
            right: 18px;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 26px;
            cursor: pointer;
            line-height: 1;
        }

        @media (max-width: 600px) {
            .ag-popup { padding: 26px 20px; border-radius: 14px; }
            .ag-popup-content { flex-direction: column; text-align: center; }
            .ag-right { display: none; }
            .ag-left h2 { font-size: 20px; }
            .ag-left p { font-size: 14px; }
        }

        @media (max-width: 380px) {
            .ag-popup { padding: 22px 16px; }
            .ag-left h2 { font-size: 18px; }
        }

        /* =====================================================
           MODERN HERO HEADER (page headers)
        ===================================================== */
        .modern-hero {
            min-height: 38vh;
            width: 100%;
            background: linear-gradient(135deg, #0d83d9, #1b1b1b);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-inner {
            background: rgba(255,255,255,0.06);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.18);
            padding: 22px 44px;
            border-radius: 16px;
            text-align: center;
            opacity: 0;
            animation: fadeUp 1s ease forwards;
        }

        @keyframes fadeUp {
            0% { opacity: 0; transform: translateY(22px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .hero-inner h1 {
            color: #fff;
            font-size: 2.6rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        @media (max-width: 767px) {
            .hero-inner { padding: 18px 28px; }
            .hero-inner h1 { font-size: 1.9rem; }
            .modern-hero { min-height: 30vh; }
        }

        @media (max-width: 480px) {
            .hero-inner h1 { font-size: 1.5rem; }
            .hero-inner { padding: 16px 20px; }
        }

        /* =====================================================
           BACK TO TOP
        ===================================================== */
        .back-to-top {
            position: fixed;
            display: none;
            right: 26px;
            bottom: 26px;
            z-index: 11;
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }

        /* =====================================================
           UTILITY — PREVENT HORIZONTAL SCROLL
        ===================================================== */
        .container-fluid { overflow-x: clip; }

        section, .hero, .about-section, .team-section, .md-section, .testimonial-modern {
            overflow-x: hidden;
        }

        /* =====================================================
           OWL CAROUSEL DOTS
        ===================================================== */
        .owl-dots { margin-top: 18px; }
        .owl-dot span {
            width: 10px !important;
            height: 10px !important;
            background: #ccc !important;
            border-radius: 50% !important;
        }
        .owl-dot.active span { background: var(--blue) !important; }

        /* =====================================================
           TESTIMONIAL CAROUSEL SPACING
        ===================================================== */
        .testimonial-carousel-modern .owl-stage-outer { padding: 16px 0; }

        /* =====================================================
           NAVBAR TOGGLE FIX
        ===================================================== */
        @media (max-width: 991px) {
            #navbarCollapse {
                background: #fff;
                border-top: 1px solid #eee;
                padding: 10px 0;
            }
        }

        /* =====================================================
           SMALL SCREEN PADDING HELPERS
        ===================================================== */
        @media (max-width: 575px) {
            .py-5 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
            .container { padding-left: 16px; padding-right: 16px; }
        }
