:root {
    --primary: #0f172a;
    /* Sophisticated Deep Navy */
    --secondary: #f97316;
    /* Energetic Orange */
    --accent: #3b82f6;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

.mobile-toggle,
.mobile-bottom-nav {
    display: none;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-pattern {
    background-image:
        radial-gradient(var(--border) 1px, transparent 1px);
    background-size: 30px 30px;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Top Bar */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 20px;
}

.top-info i {
    margin-right: 8px;
    color: var(--secondary);
}

.container-full {
    width: 100%;
    padding: 0 40px;
}

header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 9px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    padding: 10px 15px;
    position: relative;
    transition: var(--transition);
    text-transform: capitalize;
    /* More modern than full uppercase */
    letter-spacing: 0.2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    transform: scaleX(0);
    transform-origin: right;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    padding-left: 20px;
}

.header-cta .btn {
    padding: 12px 35px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
}

.header-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {

    .container,
    .container-full {
        padding: 0 20px;
    }


    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 50px 0;
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1001;
        gap: 25px;
        display: flex !important;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 22px;
        padding: 10px 40px;
    }

    .nav-links a::after {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
        /* Hide top bar on mobile for cleaner look */
    }

    .section-title h2 {
        font-size: 28px;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .internal-header h1 {
        font-size: 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 60px 0;
    }
}

/* Hero Slider Styles */
.hero-slider-wrapper {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.main-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    z-index: 2;
    position: relative;
    width: 100%;
}

.hero-text {
    max-width: 60%;
    color: white;
}

.hero-text h1 {
    font-size: 64px;
    /* Larger for more impact */
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
    animation: fadeInUpSlider 1s cubic-bezier(0.165, 0.84, 0.44, 1) backwards;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUpSlider 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s backwards;
}

.hero-form-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    height: 100%;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 45px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    width: 440px;
    pointer-events: auto;
    animation: fadeInRightSlider 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s backwards,
        floatForm 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-right: 40px;
}

@keyframes floatForm {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-form h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.form-group-custom {
    position: relative;
    margin-bottom: 15px;
}

.form-group-custom i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.form-group-custom input,
.form-group-custom select {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

@keyframes fadeInUpSlider {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRightSlider {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 16px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-title .underline {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 20px auto 0;
    border-radius: 50px;
}

/* Partner Logos Premium */
.partner-logos img {
    filter: grayscale(1);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.partner-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

/* Tables (Batches) Premium */
.batch-section {
    padding: 100px 0;
}

.batch-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.batch-table th {
    background: var(--primary);
    color: white;
    padding: 20px;
    text-align: left;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.batch-table th:first-child {
    border-radius: 12px 0 0 12px;
}

.batch-table th:last-child {
    border-radius: 0 12px 12px 0;
}

.batch-table tr td {
    background: white;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.batch-table tr td:first-child {
    border-left: 1px solid #f1f5f9;
    border-radius: 12px 0 0 12px;
    font-weight: 700;
    color: var(--primary);
}

.batch-table tr td:last-child {
    border-right: 1px solid #f1f5f9;
    border-radius: 0 12px 12px 0;
}

.batch-table tr:hover td {
    background: #fdfdfd;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    gap: 10px;
}

.btn-primary {
    background: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: white;
}

/* Premium Service Cards */
.service-card-premium {
    background: var(--white);
    padding: 50px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.service-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--secondary);
    border-radius: 16px;
    /* Squircle style */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    transition: var(--transition);
}

.service-card-premium:hover .service-icon {
    background: var(--secondary);
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
}

.service-card-premium h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 700;
}

.service-card-premium p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Course Cards Premium */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 40px;
    padding: 20px 0;
}

.course-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f2f5;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.course-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.course-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.course-card:hover img {
    transform: scale(1.1);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f97316;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 10;
}

.course-info {
    padding: 30px;
}

.course-info h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.course-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    margin-top: auto;
    /* Push to bottom */
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}

.meta-item i {
    color: var(--secondary);
}

.card-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

@media (max-width: 480px) {
    .card-actions {
        flex-direction: column;
    }
}

.card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-sizing: border-box;
    flex: 1;
    min-width: 0;
}

.card-btn-outline {
    background: transparent !important;
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    box-shadow: none !important;
}

.card-btn-outline:hover {
    background: var(--primary) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2) !important;
}

.card-btn-primary {
    background: var(--secondary) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.3) !important;
}

.card-btn-primary:hover {
    background: #ea580c !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.4) !important;
}

.card-btn-whatsapp {
    background: #25d366 !important;
    color: white !important;
    border: none !important;
}

.card-btn-whatsapp:hover {
    background: #128c7e !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3) !important;
}



.card-btn i {
    font-size: 12px;
}

/* Stats Section */
.stats {
    background: var(--bg-light);
    padding: 80px 0;
}

.stat-item {
    text-align: center;
}

.stat-item h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 5px;
}

/* Testimonials */
.test-section {
    padding: 80px 0;
}

/* Footer */
footer {
    background: #111;
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-col p,
.footer-col ul li {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li a {
    color: #bbb;
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

/* Page Headers */
.internal-header {
    background: linear-gradient(rgba(0, 33, 71, 0.9), rgba(0, 33, 71, 0.9)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=1600') center/cover;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.internal-header h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--secondary);
    font-weight: 600;
}

/* Card Action Buttons */
.card-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.card-btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.card-btn-outline:hover {
    background: var(--primary);
    color: white;
}

.card-btn-primary {
    background: var(--secondary);
    color: white;
    border: none;
}

.card-btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

/* Enquiry Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 32px;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--secondary);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--secondary);
    font-weight: 600;
}

/* Course Details Page */
.course-details-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.course-hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.course-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.course-description {
    margin-top: 40px;
}

.course-description h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
}

.course-description p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.course-description h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
    font-size: 15px;
}

.highlights-list li i {
    color: #22c55e;
    margin-right: 12px;
}

/* Course Action Card */
.course-action-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: sticky;
    top: 120px;
}

.action-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px dashed var(--border);
}

.price-tag {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.duration-tag {
    background: rgba(249, 115, 22, 0.1);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.call-btn {
    background: var(--primary);
    color: white;
}

.call-btn:hover {
    background: #1e293b;
}

.join-btn {
    background: var(--secondary);
    color: white;
}

.join-btn:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

.course-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--secondary);
}

.share-section {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.share-section p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.share-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-dark);
    transition: var(--transition);
}

.share-icons a:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .course-details-grid {
        grid-template-columns: 1fr;
    }

    .course-action-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .card-actions {
        flex-direction: column;
    }

    .modal-content {
        margin: 20px;
        padding: 30px;
    }
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content-box h2 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content-box p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.quote-box {
    background: var(--bg-light);
    padding: 30px;
    border-left: 4px solid var(--secondary);
    border-radius: 0 12px 12px 0;
    margin: 30px 0;
    position: relative;
}

.quote-box i {
    color: var(--secondary);
    opacity: 0.3;
    font-size: 24px;
    margin-bottom: 10px;
}

.quote-box p {
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.about-feature-item i {
    color: #22c55e;
    font-size: 18px;
}

.about-image-box {
    position: relative;
}

.about-image-box img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--secondary);
    color: white;
    padding: 25px 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .exp-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
}

.experience-badge .exp-text {
    font-size: 14px;
    opacity: 0.9;
}

/* Team Cards */
.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 5px;
}

.team-info p {
    color: var(--text-muted);
    font-size: 14px;
}

.team-social {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--secondary);
    color: white;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.contact-info-box h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-info-box>p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    background: #25d366;
    color: white;
}

.contact-details h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-muted);
    font-size: 14px;
}

.social-connect {
    margin-top: 40px;
}

.social-connect h4 {
    margin-bottom: 15px;
    color: var(--primary);
}

.social-icons-large {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    transition: var(--transition);
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.instagram {
    background: #e4405f;
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.contact-form-box {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Map Section */
.map-section {
    position: relative;
    height: 450px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px;
    z-index: 10;
}

.map-info-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    pointer-events: auto;
}

.map-info-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.map-info-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-info h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 5px;
}

.filter-info p {
    color: var(--text-muted);
}

.filter-actions {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Service Detail Grid */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse>* {
    direction: ltr;
}

.service-detail-content h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-detail-content p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.feature-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.check-item i {
    color: #22c55e;
}

/* Destination Cards */
.destination-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.destination-card h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.destination-card p {
    font-size: 14px;
    color: var(--text-muted);
}

.destination-card-premium {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.destination-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.destination-flag {
    font-size: 48px;
    margin-bottom: 15px;
}

.destination-card-premium h3 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 5px;
}

.destination-card-premium>p {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.destination-card-premium ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.destination-card-premium ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-muted);
}

.destination-card-premium ul li:last-child {
    border-bottom: none;
}

/* Admission Stats */
.admission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.admission-stat {
    text-align: center;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 12px;
}

.admission-stat h3 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 5px;
}

.admission-stat p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-content h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {

    .about-grid,
    .contact-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-grid.reverse {
        direction: ltr;
    }

    .experience-badge {
        bottom: -20px;
        left: 20px;
    }

    .filter-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .about-features,
    .feature-checklist,
    .form-row {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .destination-card-premium {
        grid-template-columns: 1fr !important;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }
}

/* ========================================
   MOBILE APP STYLE - Bottom Navigation
   ======================================== */

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.08);
    z-index: 9998;
    padding: 6px 0;
    padding-bottom: calc(6px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    justify-content: space-around;
    align-items: center;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 15px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.bottom-nav-item i {
    font-size: 18px;
    margin-bottom: 2px;
}

.bottom-nav-item span {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bottom-nav-item.active {
    color: var(--primary);
    background: rgba(15, 23, 42, 0.05);
}

.bottom-nav-fab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary) 0%, #ea580c 100%);
    color: white;
    border-radius: 50%;
    margin-top: -25px;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: 3px solid white;
}

.bottom-nav-fab i {
    font-size: 20px;
}

.bottom-nav-fab:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(249, 115, 22, 0.4);
}

/* More Menu Overlay */
.more-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.more-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Drawer Menu */
.more-menu-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 24px 24px 0 0;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 80vh;
    overflow-y: auto;
}

.more-menu-drawer.active {
    transform: translateY(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 10001;
}

.drawer-header h3 {
    font-size: 18px;
    color: var(--primary);
    margin: 0;
}

.drawer-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drawer-close:hover {
    background: var(--secondary);
    color: white;
}

.drawer-content {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 24px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
}

.drawer-link i:first-child {
    font-size: 20px;
    color: var(--primary);
    width: 24px;
    text-align: center;
}

.drawer-link span {
    font-size: 15px;
    font-weight: 600;
    flex: 1;
}

.drawer-link i:last-child {
    font-size: 12px;
    color: #cbd5e1;
}

.drawer-link:hover {
    background: rgba(15, 23, 42, 0.03);
    padding-left: 30px;
    color: var(--secondary);
}

.drawer-link:hover i:first-child {
    color: var(--secondary);
    transform: scale(1.1);
}

.drawer-link:hover i:last-child {
    color: var(--secondary);
    transform: translateX(3px);
}

.drawer-footer {
    padding: 16px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border-top: 1px solid var(--border);
    background: var(--bg-light);
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
}

.drawer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    background: var(--primary);
    color: white;
    transition: all 0.3s ease;
}

.drawer-cta.whatsapp {
    background: #25d366;
}

.drawer-cta:hover {
    transform: translateY(-2px);
}

/* Floating WhatsApp - Desktop */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse-whatsapp 2s infinite;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ========================================
   MOBILE APP RESPONSIVE STYLES
   ======================================== */

@media (max-width: 768px) {

    /* Show Mobile Bottom Nav */
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: flex-end;
    }

    /* Hide Desktop WhatsApp */
    .floating-whatsapp {
        display: none;
    }

    /* Hide Top Bar on Mobile */
    .top-bar {
        display: none;
    }

    /* App-style Header */
    header {
        padding: 12px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    header nav {
        padding: 0 16px;
    }

    .logo-link svg {
        width: 32px !important;
        height: 32px !important;
    }

    .logo-text span:first-child {
        font-size: 24px !important;
    }

    .logo-text span:last-child {
        font-size: 9px !important;
        letter-spacing: 4px !important;
    }

    /* Hide Desktop Nav */
    .nav-links {
        display: none !important;
    }

    .header-cta {
        display: none !important;
    }


    /* App-style Page Headers */
    .internal-header {
        padding: 60px 0 40px;
        border-radius: 0 0 30px 30px;
    }

    .internal-header h1 {
        font-size: 28px;
    }

    /* App-style Cards */
    .course-card {
        border-radius: 20px;
        margin: 0 4px;
    }

    .course-img-wrapper {
        height: 180px;
    }

    .course-info {
        padding: 16px;
    }

    .course-info h3 {
        font-size: 16px;
    }

    .course-info p {
        font-size: 13px;
    }

    .course-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 8px;
    }

    /* App-style Service Cards */
    .service-card-premium {
        padding: 24px;
        border-radius: 20px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .service-card-premium h3 {
        font-size: 16px;
    }

    /* App-style Sections */
    section {
        padding: 60px 0 !important;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title span {
        font-size: 11px;
    }

    /* App-style Buttons */
    .btn {
        padding: 14px 24px;
        border-radius: 14px;
        font-size: 14px;
    }

    .card-btn {
        padding: 10px 16px;
        font-size: 12px;
        border-radius: 10px;
    }

    /* App-style Stats */
    .stat-counter h2 {
        font-size: 36px !important;
    }

    .stat-counter p {
        font-size: 12px !important;
    }

    /* Footer spacing for bottom nav */
    footer {
        padding-bottom: 100px !important;
    }

    /* Grid adjustments for mobile */
    .services-grid,
    .about-features,
    .feature-checklist,
    .form-row,
    .admission-stats,
    .overseas-stats>div {
        grid-template-columns: 1fr !important;
    }

    .destination-card-premium {
        grid-column: span 1 !important;
    }

    .about-grid,
    .contact-grid,
    .service-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .about-image-box {
        order: -1;
    }

    .experience-badge {
        bottom: auto;
        top: 20px;
        left: auto;
        right: 20px;
        padding: 15px 20px;
    }

    .experience-badge .exp-number {
        font-size: 24px;
    }

    .experience-badge .exp-text {
        font-size: 11px;
    }

    /* App-style Team Cards */
    .team-card {
        border-radius: 16px;
    }

    .team-image {
        height: 200px;
    }

    /* App-style Contact Cards */
    .contact-form-box {
        padding: 24px;
        border-radius: 20px;
    }

    .contact-card {
        padding: 16px;
        border-radius: 14px;
    }

    /* App-style Process Timeline */
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 20px;
        margin: 0 auto 15px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    /* Smooth scrolling for app feel */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* App-style Modal */
    .modal-content {
        margin: 16px;
        padding: 24px;
        border-radius: 24px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-header h3 {
        font-size: 20px;
    }

    /* Course Details Mobile */
    .course-details-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .course-action-card {
        padding: 24px;
        border-radius: 20px;
        position: static;
    }

    .action-card-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .price-tag {
        font-size: 28px;
    }

    .course-hero-image img {
        height: 220px;
        border-radius: 16px;
    }

    .highlights-list li {
        padding: 10px 0;
        font-size: 14px;
    }

    /* Map Mobile */
    .map-section {
        height: 300px;
    }

    .map-overlay {
        padding: 20px;
    }

    .map-info-card {
        padding: 20px;
    }

    /* Filter Bar Mobile */
    .filter-bar {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
    }

    .filter-actions {
        overflow-x: auto;
        width: 100%;
        justify-content: flex-start;
        padding-bottom: 8px;
    }

    .filter-btn {
        flex-shrink: 0;
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .drawer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .bottom-nav-item span {
        font-size: 9px;
    }

    .bottom-nav-fab {
        width: 50px;
        height: 50px;
        margin-top: -25px;
    }

    .bottom-nav-fab i {
        font-size: 18px;
    }
}

/* ============================================================
   ELITE ARCHITECTURE MOBILE REFINEMENTS
   ============================================================ */

@media (max-width: 1024px) {
    .container-full {
        padding: 0 30px;
    }

    .nav-links {
        display: none !important;
    }

    .hero-slider-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .main-slider {
        position: relative;
        height: 450px;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
        padding: 0 20px;
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: 38px;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 15px !important;
        margin-bottom: 20px;
    }

    .hero-text div {
        justify-content: center;
    }

    .hero-form-container {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        justify-content: center !important;
        padding: 30px 20px !important;
        background: var(--bg-light) !important;
        pointer-events: auto !important;
        display: flex !important;
    }

    .hero-form {
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 500px !important;
        animation: fadeInUpSlider 1s ease;
    }

    .services-grid,
    .services-grid-premium,
    .overseas-stats,
    .admission-stats,
    .destination-grid,
    .contact-grid,
    .about-hero-grid,
    .mission-vision-grid,
    .features-grid,
    .team-grid,
    .admission-feature-grid,
    .admission-icon-grid,
    .job-grid,
    .highlights-grid,
    .sidebar-actions {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .service-detail-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    .service-detail-grid.reverse {
        flex-direction: column !important;
    }

    .service-detail-image,
    .service-detail-content {
        width: 100% !important;
        flex: none !important;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none !important;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .services-grid,
    .services-grid-premium,
    .overseas-stats,
    .admission-stats,
    .destination-grid,
    .contact-grid,
    .stat-grid,
    .about-hero-grid,
    .mission-vision-grid,
    .features-grid,
    .team-grid,
    .admission-feature-grid,
    .admission-icon-grid,
    .job-grid,
    .highlights-grid,
    .sidebar-actions {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .batch-table {
        display: block !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .marquee-text {
        font-size: 14px;
    }

    .logo-text span:first-child {
        font-size: 24px !important;
    }

    .logo-text span:last-child {
        font-size: 9px !important;
        letter-spacing: 4px !important;
    }

    header {
        padding: 10px 0 !important;
    }

    .mobile-toggle {
        display: block !important;
        position: relative;
        z-index: 1002;
    }

    .mobile-bottom-nav {
        display: flex !important;
    }

    .header-cta {
        display: none !important;
    }

    .hero-form-container {
        padding: 15px !important;
    }

    .slide-content {
        padding: 0 !important;
    }

    .main-slider {
        height: 340px;
    }
}

@media (max-width: 480px) {
    .main-slider {
        height: 280px !important;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .container-full {
        padding: 0 20px;
    }

    .hero-text div {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }

    .hero-text .btn {
        width: 100% !important;
    }

    .batch-section {
        padding: 60px 0;
    }

    .service-card-premium {
        padding: 30px 20px !important;
    }

    footer .container {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .footer-col {
        align-items: center !important;
    }

    .footer-col .logo-link {
        justify-content: center !important;
    }

    .top-social {
        justify-content: center !important;
        display: flex !important;
    }

    .footer-col h4,
    .footer-col ul {
        text-align: center !important;
    }

    .footer-col h4::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .footer-col ul {
        padding: 0 !important;
        list-style: none !important;
    }
}

/* Global Grid Fix for Mobile Overlay */
.services-grid[style*="grid-template-columns"],
.stat-grid[style*="grid-template-columns"] {
    @media (max-width: 1024px) {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    @media (max-width: 768px) {
        grid-template-columns: 1fr !important;
    }
}

/* Modal Responsiveness */
@media (max-width: 640px) {

    #enquiryModal .modal-content,
    .custom-modal-box {
        width: 95% !important;
        padding: 30px 20px !important;
        border-radius: 20px !important;
    }

    #enquiryModal .modal-header h3,
    .custom-modal-box h2 {
        font-size: 20px !important;
    }
}