/* --- CSS VARIABLES --- */
:root {
    --primary-purple: #593086;
    --action-orange: #FC5B3F;
    --accent-blue: #1EB0FC;
    --highlight-yellow: #FFD500;
    --bg-base: #FFFFFF;
    --bg-light: #F9F9F9;
    --text-dark: #333333;
    --text-light: #6E6E80;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
} /* <--- THIS WAS MISSING */

/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--bg-base);
    color: var(--text-dark);
    overflow-x: hidden;
    margin-left: 50px;
    margin-right: 50px;
}

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

.section-padding {
    padding-bottom: 40px;
}

.mb-40 {
    margin-bottom: 20px;
}

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

.text-white {
    color: white;
}

/* --- HEADER & MOBILE NAV --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.2s ease;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    img{
        width: 200px;
        height: auto;
    }
    
}

.logo span {
    color: var(--action-orange);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.2s;
    font-size: 15px;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-purple);
}

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

/* --- MOBILE RESPONSIVE MENU --- */
@media (max-width: 992px) {
    .mobile-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: var(--text-dark);
    }

    .desktop-only {
        display: none !important;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 30px;
        transition: right 0.25s ease-in-out;
        display: flex;
        flex-direction: column;
        gap: 30px;
        z-index: 1001;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    nav ul li a {
        font-size: 18px;
        color: var(--text-dark);
    }

    .close-btn {
        display: block;
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 24px;
        cursor: pointer;
        color: var(--text-light);
    }

    .mobile-nav-btn {
        display: block;
    }
}

/* --- BUTTONS & ANIMATIONS --- */
.btn {
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -10px rgba(252, 91, 63, 0.5);
}

.btn-block {
    width: 100%;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse-btn {
    animation: pulse 1.5s infinite;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease-out;
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- HERO SECTION --- */
.hero {
    padding: 0 0 80px 0;
    margin-top: 80px;
    background: linear-gradient(135deg, #f5f0fa 0%, #fff5f3 50%, #f0f7ff 100%);
    overflow: hidden;
}

.hero-grid {
    margin-top: 100px !important;
    padding-top: 0 !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-image-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

/* Purple Circle Background */
.hero-circle-bg {
    position: absolute;
    width: 480px;
    height: 480px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #7a4aab 100%);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(89, 48, 134, 0.3);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hero-single-img {
    position: relative;
    bottom: 5px;
    z-index: 2;
    width: 420px;
    height: 500px;
    border-radius: 45%;
    transition: transform 0.2s;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-bottom-left-radius: 40%;
    border-bottom-right-radius: 40%;
    
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 3;
    animation: float 2s ease-in-out infinite;
}

.floating-icon i {
    font-size: 24px;
}

.floating-icon.icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-icon.icon-1 i {
    color: var(--primary-purple);
}

.floating-icon.icon-2 {
    top: 5%;
    right: 10%;
    animation-delay: 0.5s;
}

.floating-icon.icon-2 i {
    color: var(--action-orange);
}

.floating-icon.icon-3 {
    bottom: 20%;
    left: 0%;
    animation-delay: 1s;
}

.floating-icon.icon-3 i {
    color: var(--accent-blue);
}

.floating-icon.icon-4 {
    bottom: 10%;
    right: 5%;
    animation-delay: 1.5s;
}

.floating-icon.icon-4 i {
    color: #43a047;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-single-img:hover {
    transform: translateY(-5px);
}

.badge {
    color: var(--action-orange);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.highlight-circle {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.highlight-circle::after {
    content: '';
    position: absolute;
    left: -10px;
    bottom: 5px;
    width: 100%;
    height: 10px;
    z-index: -1;
    background: rgba(255, 213, 0, 0.5);
    border-radius: 5px;
}

.offer-box {
    background: #FFF9F0;
    padding: 15px;
    border-left: 4px solid var(--action-orange);
    margin-bottom: 30px;
    border-radius: 5px;
    font-size: 15px;
}

/* --- COURSES --- */
.features-section {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
    align-items: start;
}

.features-intro h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.features-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    transition: 0.2s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    height: 100%;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--accent-blue);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--white);
}

.icon-orange { background: var(--action-orange); box-shadow: 0 10px 20px -8px var(--action-orange); }
.icon-pink { background: var(--primary-purple); box-shadow: 0 10px 20px -8px var(--primary-purple); }
.icon-purple { background: var(--accent-blue); box-shadow: 0 10px 20px -8px var(--accent-blue); }
.icon-green { background: #28a745; box-shadow: 0 10px 20px -8px #28a745; }
.icon-blue { background: #17a2b8; box-shadow: 0 10px 20px -8px #17a2b8; }
.icon-yellow { background: #ffc107; box-shadow: 0 10px 20px -8px #ffc107; }

/* --- WHY US --- */
#why-us {
    background: var(--primary-purple);
    border-radius: 30px;
    margin-top: 50px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    text-align: center;
    color: white;
    padding: 20px;
}

.why-card i {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--highlight-yellow);
    transition: transform 0.15s;
}

.why-card:hover i {
    transform: scale(1.2);
}

.why-card p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

/* --- TESTIMONIALS (AUTO SCROLL) --- */
.testimonials-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid #eee;
    width: 350px;
    flex-shrink: 0;
}

.stars {
    color: var(--highlight-yellow);
    margin-bottom: 15px;
}

.testimonial-card h4 {
    margin-top: 15px;
    color: var(--primary-purple);
    font-size: 16px;
}

/* --- LOCATIONS (With Map Styles) --- */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.location-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-purple);
    transition: 0.2s;
    overflow: hidden;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card h3 {
    color: var(--primary-purple);
    margin-bottom: 10px;
    font-size: 18px;
}

.location-card i {
    color: var(--action-orange);
    margin-right: 8px;
}

.location-card p {
    font-size: 14px;
    margin-bottom: 8px;
}

.directions-link {
    display: inline-block;
    color: var(--primary-purple);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 15px;
    transition: color 0.2s;
}

.directions-link:hover {
    color: var(--action-orange);
}

.directions-link i {
    margin-right: 5px;
}

.view-map-link {
    display: block;
    color: #1a73e8;
    font-size: 13px;
    text-decoration: none;
    margin-top: 10px;
}

.view-map-link:hover {
    text-decoration: underline;
}

.map-frame {
    width: 100%;
    height: 180px;
    border: 0;
    margin-top: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- CONTACT --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    border: 1px solid #eee;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #F0F0F0;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    background: #FAFAFA;
    transition: 0.2s;
    margin-bottom: 15px;
}

.form-control:focus {
    border-color: var(--action-orange);
    background: #fff;
}

#success-msg {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background: #d4edda;
    color: #155724;
    border-radius: 10px;
    text-align: center;
}

/* --- WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 1.5s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

/* --- RESPONSIVE UPDATES --- */
/* --- PREMIUM FEATURES SECTION --- */
.premium-features {
    padding: 40px 0;
    background: var(--bg-light);
}

.premium-grid {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.premium-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    overflow: hidden;
}

.premium-card.reverse {
    direction: rtl;
}

.premium-card.reverse > * {
    direction: ltr;
}

.premium-image {
    position: relative;
    overflow: hidden;
}

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

.premium-card:hover .premium-image img {
    transform: scale(1.05);
}

.premium-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.premium-card:nth-child(2) .premium-content {
    background: linear-gradient(135deg, #593086 0%, #7a4aab 100%);
    color: white;
}

.premium-content h2 {
    font-size: 36px;
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-weight: 700;
}

.premium-card:nth-child(2) .premium-content h2 {
    color: white;
}

.premium-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.premium-card:nth-child(2) .premium-content p {
    color: rgba(255,255,255,0.9);
}

/* --- HIGHLIGHTS SECTION --- */
.highlights-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f0fa 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 25px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.highlight-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(89, 48, 134, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(89, 48, 134, 0.15);
}

.highlight-card .card-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.exam-logo {
    display: inline-block;
    font-size: 32px;
    font-weight: 800;
    padding: 10px 25px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.exam-logo.neet {
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
    color: white;
}

.exam-logo.jee {
    background: linear-gradient(135deg, #f9a825 0%, #f57c00 100%);
    color: white;
}

.exam-logo.kcet {
    background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
    color: white;
}

.exam-logo.ca {
    background: linear-gradient(135deg, #8e24aa 0%, #6a1b9a 100%);
    color: white;
}

.exam-subtitle {
    display: block;
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.batch-info {
    text-align: center;
}

.batch-info h4 {
    font-size: 14px;
    color: var(--primary-purple);
    margin-bottom: 8px;
    font-weight: 700;
}

.batch-info .batch {
    margin-bottom: 20px;
}

.batch-info p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.batch-info .duration {
    display: inline-block;
    background: #f5f0fa;
    color: var(--primary-purple);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* --- SAP SECTION --- */
.sap-section {
    padding: 35px 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #7a4aab 100%);
}

.sap-section .section-header {
    margin-bottom: 20px;
}

.sap-section .section-header h2,
.sap-section .section-header p {
    color: white;
}

.sap-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    padding: 20px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--highlight-yellow);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 24px;
    color: white;
    font-weight: 600;
    margin-top: 5px;
}

.stat-desc {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-top: 10px;
}

/* --- FACILITIES SECTION --- */
.facilities-section {
    padding: 40px 0;
    background: #ffffff;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.facility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.facility-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.facility-item i {
    font-size: 36px;
    margin-bottom: 15px;
    color: white;
}

.facility-item span {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.facility-item.color-1 { background: linear-gradient(135deg, #ff6b6b, #ee5a5a); }
.facility-item.color-2 { background: linear-gradient(135deg, #4ecdc4, #44b3ab); }
.facility-item.color-3 { background: linear-gradient(135deg, #45b7d1, #3da7bf); }
.facility-item.color-4 { background: linear-gradient(135deg, #96ceb4, #7fb89d); }
.facility-item.color-5 { background: linear-gradient(135deg, #a29bfe, #8c85e0); }
.facility-item.color-6 { background: linear-gradient(135deg, #fd79a8, #e56b96); }
.facility-item.color-7 { background: linear-gradient(135deg, #fdcb6e, #e5b85f); }
.facility-item.color-8 { background: linear-gradient(135deg, #e17055, #c9624b); }
.facility-item.color-9 { background: linear-gradient(135deg, #00b894, #009d7d); }
.facility-item.color-10 { background: linear-gradient(135deg, #6c5ce7, #5a4cc7); }
.facility-item.color-11 { background: linear-gradient(135deg, #0984e3, #0874c9); }
.facility-item.color-12 { background: linear-gradient(135deg, #00cec9, #00b5b0); }

/* --- RESPONSIVE FOR NEW SECTIONS --- */
@media (max-width: 1200px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .premium-card {
        grid-template-columns: 1fr;
    }
    
    .premium-card.reverse {
        direction: ltr;
    }
    
    .premium-image {
        height: 300px;
    }
    
    .premium-content {
        padding: 40px;
    }
    
    .premium-content h2 {
        font-size: 28px;
    }
    
    .sap-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-grid,
    .features-section,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        text-align: center;
    }

    .hero-image-container {
        grid-row: 1;
        margin-bottom: 40px;
        justify-content: center;
        min-height: 400px;
    }

    .hero-circle-bg {
        width: 300px;
        height: 300px;
    }

    .hero-single-img {
        width: 250px;
        height: 320px;
    }

    .floating-icon {
        width: 45px;
        height: 45px;
    }

    .floating-icon i {
        font-size: 18px;
    }

    .features-cards-container {
        grid-template-columns: 1fr 1fr;
    }

    #locations .locations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero {
        margin-top: 60px;
        padding-bottom: 40px;
    }
    
    .hero-grid {
        margin-top: 60px !important;
        gap: 20px;
    }
    
    .hero-image-container {
        min-height: 300px;
    }
    
    .hero-circle-bg {
        width: 250px;
        height: 250px;
    }
    
    .hero-single-img {
        width: 200px;
        height: 260px;
    }
    
    .floating-icon {
        width: 35px;
        height: 35px;
    }
    
    .floating-icon i {
        font-size: 14px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .facility-item {
        padding: 20px 10px;
    }
    
    .facility-item i {
        font-size: 28px;
    }
    
    .facility-item span {
        font-size: 12px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .hero-content h1 {
        font-size: 26px;
    }
    
    .hero-content p {
        font-size: 14px;
    }

    .features-cards-container {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 20px;
    }

    .contact-form-card {
        padding: 20px;
    }
    
    .premium-content {
        padding: 25px;
    }
    
    .premium-content h2 {
        font-size: 22px;
    }
    
    .premium-content p {
        font-size: 14px;
    }
    
    .premium-image {
        height: 250px;
    }
    
    .sap-section {
        padding: 40px 15px;
    }
    
    .sap-stats {
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .course-card {
        padding: 20px;
    }
    
    .location-card {
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    header {
        padding: 10px 15px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    body {
        margin-left: 5px;
        margin-right: 5px;
    }
    
    .container {
        padding: 0 5px;
    }
    
    .hero-content h1 {
        font-size: 22px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .facility-item {
        padding: 15px 8px;
    }
    
    .facility-item i {
        font-size: 24px;
    }
    
    .facility-item span {
        font-size: 11px;
    }
    
    .hero-circle-bg {
        width: 200px;
        height: 200px;
    }
    
    .hero-single-img {
        width: 160px;
        height: 210px;
    }
    
    .floating-icon {
        width: 30px;
        height: 30px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .premium-content h2 {
        font-size: 20px;
    }
}