/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #10b981;
    --primary-dark: #059669;
    --primary-light: #a7f3d0;
    --secondary-color: #f59e0b;
    --dark-color: #1f2937;
    --light-color: #ffffff;
    --gray-color: #6b7280;
    --light-gray: #f3f4f6;
    
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
p { margin-bottom: 1rem; color: var(--gray-color); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.loader-square {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    animation: loaderAnim 1.5s infinite ease-in-out;
}

.loader-square:nth-child(1) { animation-delay: 0s; }
.loader-square:nth-child(2) { animation-delay: 0.1s; }
.loader-square:nth-child(3) { animation-delay: 0.2s; }
.loader-square:nth-child(4) { animation-delay: 0.3s; }
.loader-square:nth-child(5) { animation-delay: 0.4s; }
.loader-square:nth-child(6) { animation-delay: 0.5s; }
.loader-square:nth-child(7) { animation-delay: 0.6s; }

@keyframes loaderAnim {
    0%, 40%, 100% { transform: scaleY(0.4); }
    20% { transform: scaleY(1); }
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark-color);
    
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-img { width: 30px; }

.logo-text {
    font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Times New Roman', Times, serif;
}

.logo-dot { color: var(--primary-color); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link:hover,
.nav-link.active { color: var(--primary-color); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.section-title { margin-bottom: 20px; }
.section-description { font-size: 1.125rem; }

/* Company Section */
.company-content { max-width: 900px; margin: 0 auto; }

.vision-mission {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.vm-card {
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vm-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

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

.whatsapp-badge {
    background: #dc2626;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes whatsappPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Simplified Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
}

.footer-logo-2 { font-family: 'Times New Roman', Times, serif; }
.footer-logo span { color: var(--primary-color); }
.footer-copyright { color: rgba(255, 255, 255, 0.7); font-size: 0.85rem; }

/* About Section */
.about {
    background-color: var(--light-color);
    padding: 60px 0;
}


.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-image { width: 100%; }

.image-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 /1;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 6px 9px;
    border-radius: 8px;
    text-align: center;
    min-width: 90px;
    
}


.experience-badge p {
    font-size: 11px;
    margin: 0;
    color: white;
}

.about-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.disciplines {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.discipline {
    font-size: 14px;
    color: var(--gray-color);
    background: var(--light-gray);
    padding: 6px 14px;
    border-radius: 30px;
    transition: all 0.2s ease;
}

.discipline:hover {
    background: var(--primary-color);
    color: white;
}

/* Destinations Marquee */
.destinations-marquee {
    width: 100%;
    background: transparent;
    padding: 40px 0;
    margin: 20px 0;
    overflow: hidden;
}

.destinations-header {
    text-align: center;
    margin-bottom: 24px;
}

.destinations-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.destinations-header h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #10b981;
    margin: 12px auto 0;
    border-radius: 2px;
    opacity: 0.3;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    position: relative;
    padding: 8px 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f9fdf9, transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f9fdf9, transparent);
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 8px;
    animation: scroll 25s linear infinite;
    white-space: nowrap;
    padding: 0 8px;
}

.capsule {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 14px;
    background: white;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    transition: all 0.2s ease;
}

.capsule:hover {
    background: #10b981;
    border-color: #10b981;
    color: white;
    transform: translateY(-2px);
}

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

.marquee-wrapper:hover .marquee-content { animation-play-state: paused; }

/* Partners Section */
.partners-section { 
    padding: 60px 0; 
    text-align: center; 
    background-color: var(--light-color);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1100px; 
    margin: 0 auto;
}

.partner-card {
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

@media (min-width: 769px) {
    .partner-card {
        width: 150px;
        padding: 25px;
    }
}

.partner-card img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
}

.partner-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.more-institutes {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: white;
}

.more-content .count {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.more-content .label { font-size: 0.65rem; text-transform: uppercase; }

@media (max-width: 1024px) {
    .partners-section .container {
        padding: 0 16px;
    }

    .partners-wrapper {
        overflow: visible;
        padding: 20px 0 10px;
    }

    .partners-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 16px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .partner-card {
        width: 100%;
        padding: 14px;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
        gap: 12px;
    }

    .partner-card {
        padding: 12px;
    }

    .partner-card.more-institutes {
        grid-column: 1 / -1;
        aspect-ratio: auto;
        border-radius: 999px;
        padding: 10px 16px;
    }

    .partner-card.more-institutes .more-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .partner-card.more-institutes .count {
        font-size: 1rem;
    }

    .partner-card.more-institutes .label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}

/* Events Section */
.events-section {
    width: 100%;
    background: #f9fdf9;
    padding: 0;
}

.events-container {
    display: flex;
    width: 100%;
    min-height: 620px;
    background: var(--light-color);
}

.carousel-wrapper {
    width: 40%;
    position: relative;
    overflow: hidden;
    background: var(--dark-color);
}

.events-carousel {
    width: 100%;
    height: 100%;
}

.events-carousel .swiper-slide {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 32px;
    background: linear-gradient(to top, rgba(31, 41, 55, 0.98), transparent);
    color: white;
}



.slide-caption p {
    font-size: 16px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    padding-bottom: 25px;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after { font-size: 18px; }

.swiper-button-next:hover,
.swiper-button-prev:hover { background: var(--primary-color); }

.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    width: 24px;
    background: var(--primary-color);
    border-radius: 12px;
}

.content-wrapper {
    width: 60%;
    padding: 64px 56px;
    background-color: #f9fdf9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.content-title {
    font-size: 44px;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.content-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-bottom: 32px;
}

.content-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 40px;
    max-width: 90%;
}

.event-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--dark-color);
}

.highlight-icon {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

@media (max-width: 1024px) {
    .events-container {
        flex-direction: column;
    }
    
    .carousel-wrapper {
        width: 100%;
        height: 480px;
    }
    
    .events-carousel .swiper-slide { height: 480px; }
    .content-wrapper { width: 100%; }
}






/* Company Section - What We Offer */
.company {
    padding: 80px 0;
    background: #f9fdf9;
    width: 100%;
}

.offers-minimal {
    margin-top: 0;
    background: transparent;
    padding: 0;
    width: 100%;
}

.offers-minimal-header {
    margin-bottom: 40px;
    text-align: left;
}

.offers-minimal-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #10b981;
    margin-bottom: 10px;
}

.offers-minimal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.text-accent {
    color: #10b981;
    position: relative;
    display: inline-block;
}

.text-accent::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(16, 185, 129, 0.1);
    z-index: -1;
    border-radius: 4px;
}

.offers-minimal-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.offer-minimal-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
    width: 100%;
}

.offer-minimal-item:first-child { padding-top: 0; }
.offer-minimal-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.offer-minimal-item.highlight {
    background: transparent;
    padding: 24px 0;
    border-bottom: 2px solid rgba(16, 185, 129, 0.25);
}

.offer-minimal-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.offer-minimal-icon i {
    font-size: 1.5rem;
    color: #10b981;
}

.offer-minimal-content { flex: 1; }

.offer-minimal-title {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.offer-minimal-title h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.offer-minimal-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
}

.offer-minimal-meta {
    font-size: 0.7rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(16, 185, 129, 0.06);
    padding: 3px 10px;
    border-radius: 20px;
}

.offer-minimal-desc {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Breakpoints */
@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
    
    .about-image { width: 45%; }
    .about-text { width: 55%; }
    .image-container img { aspect-ratio: 1/1; }
    .section-title { font-size: 36px; }
}

@media (min-width: 1024px) {
    .section-title { font-size: 42px; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .nav-toggle { display: flex; }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .vision-mission { grid-template-columns: 1fr; }
    .hero-brand { font-size: 1.75rem; font-family: 'Times New Roman', Times, serif;}
    .hero-headline { font-size: 1.75rem; }
    .hero-stats { gap: 1rem; }
    .company { padding: 60px 0; }
    .offers-minimal-title { font-size: 1.8rem; }
}

@media (max-width: 576px) {
    .hero-brand { font-size: 1.5rem;  font-family: 'Times New Roman', Times, serif; }
    .hero-headline { font-size: 1.5rem; }
    .hero-description { font-size: 0.95rem; }
    .stat { min-width: 80px; padding: 0.75rem; }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.75rem; }
    .cta-button { padding: 0.875rem 2rem; }
    .company { padding: 50px 0; }
    .offers-minimal-title { font-size: 1.5rem; }
    .offer-minimal-item { flex-direction: column; gap: 12px; }
}

@media (max-width: 375px) {
    .hero-brand { font-size: 1.25rem;  font-family: 'Times New Roman', Times, serif; }
    .hero-headline { font-size: 1.25rem; }
    .company { padding: 40px 0; }
    .offers-minimal-title { font-size: 1.3rem; }
}


/* Hero Minimal Section - Mobile Optimized */
.hero-minimal {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(247, 254, 251, 0.9) 50%,
        rgba(240, 253, 244, 0.85) 100%
    );
    padding: 0;
}

.hero-minimal .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-minimal-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo & Brand */
.hero-logo {
    margin-top: 0;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
     font-family: 'Times New Roman', Times, serif;
}

.hero-logo-image {
    max-width: 70px;
    height: auto;
    display: block;
}

.hero-brand {
    font-size: 2rem;
    font-weight: 900;
    color: #1f2937;
    letter-spacing: 1px;
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
     font-family: 'Times New Roman', Times, serif;
}

.brand-accent {
    color: #10b981;
}

.hero-tagline {
    margin-bottom: 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #10b981;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50px;
    display: inline-block;
     font-family: 'Times New Roman', Times, serif;
}

/* Main Headline */
.hero-headline {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #1f2937;
    padding: 0 5px;
}

/* Description */
.hero-description {
    max-width: 600px;
    margin: 0 auto 25px;
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    padding: 0 12px;
}

/* Stats Row - Fixed consistent boxes */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    width: 100%;
}

.stat {
    text-align: center;
    flex: 0 1 auto;
    min-width: 100px;
    padding: 8px 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 4px;
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    white-space: nowrap;
}

/* CTA Button */
.hero-cta {
    margin-bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    padding: 14px 35px;
    background: #10b981;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
    border: 2px solid transparent;
    width: auto;
    min-width: 240px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.35);
    background: #0e9f6e;
}

/* Mobile Breakpoint - Large */
@media (max-width: 768px) {
    .hero-brand {
        font-size: 2.2rem;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .stat {
        min-width: 110px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Mobile Breakpoint - Medium */
@media (max-width: 576px) {
    .hero-minimal .container {
        padding: 18px;
    }
    
    .hero-logo {
        margin-bottom: 28px;
        gap: 11px;
    }
    
    .hero-logo-image {
        max-width: 65px;
    }
    
    .hero-brand {
        font-size: 1.9rem;
        gap: 4px;
    }
    
    .hero-tagline {
        font-size: 0.78rem;
        padding: 6px 15px;
    }
    
    .hero-headline {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 0.98rem;
        margin-bottom: 24px;
        padding: 0 10px;
    }
    
    .hero-stats {
        gap: 12px;
        margin-bottom: 28px;
    }
    
    .stat {
        min-width: 95px;
        padding: 7px 4px;
    }
    
    .stat-number {
        font-size: 1.7rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.4px;
    }
    
    .cta-button {
        padding: 13px 32px;
        font-size: 0.98rem;
        min-width: 230px;
    }
}

/* Mobile Breakpoint - Small */
@media (max-width: 480px) {
    .hero-minimal {
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-minimal .container {
        padding: 16px;
    }
    
    .hero-logo {
        margin-bottom: 25px;
        gap: 10px;
    }
    
    .hero-logo-image {
        max-width: 60px;
    }
    
    .hero-brand {
        font-size: 1.8rem;
        gap: 4px;
    }
    
    .hero-tagline {
        font-size: 0.75rem;
        padding: 5px 14px;
        letter-spacing: 1.8px;
    }
    
    .hero-headline {
        font-size: 1.7rem;
        margin-bottom: 15px;
        padding: 0 8px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 22px;
        padding: 0 10px;
        line-height: 1.5;
    }
    
    .hero-stats {
        gap: 10px;
        margin-bottom: 26px;
    }
    
    .stat {
        min-width: 90px;
        padding: 6px 3px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.4px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 0.95rem;
        min-width: 220px;
    }
}

/* Mobile Breakpoint - Extra Small */
@media (max-width: 375px) {
    .hero-minimal .container {
        padding: 14px;
    }
    
    .hero-logo {
        margin-bottom: 22px;
        gap: 9px;
    }
    
    .hero-logo-image {
        max-width: 55px;
    }
    
    .hero-brand {
        font-size: 1.6rem;
        gap: 3px;
    }
    
    .hero-tagline {
        font-size: 0.7rem;
        padding: 4px 12px;
        letter-spacing: 1.6px;
    }
    
    .hero-headline {
        font-size: 1.5rem;
        margin-bottom: 14px;
        padding: 0 6px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
        padding: 0 8px;
        line-height: 1.5;
    }
    
    .hero-stats {
        gap: 8px;
        margin-bottom: 24px;
    }
    
    .stat {
        min-width: 85px;
        padding: 5px 2px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
        letter-spacing: 0.3px;
    }
    
    .cta-button {
        padding: 11px 28px;
        font-size: 0.9rem;
        min-width: 200px;
    }
}

/* Mobile Breakpoint - Ultra Small */
@media (max-width: 320px) {
    .hero-minimal .container {
        padding: 12px;
    }
    
    .hero-logo {
        margin-bottom: 20px;
        gap: 8px;
    }
    
    .hero-logo-image {
        max-width: 50px;
    }
    
    .hero-brand {
        font-size: 1.4rem;
        gap: 2px;
    }
    
    .hero-tagline {
        font-size: 0.65rem;
        padding: 4px 10px;
        letter-spacing: 1.4px;
    }
    
    .hero-headline {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 18px;
        padding: 0 6px;
    }
    
    .hero-stats {
        gap: 5px;
        margin-bottom: 20px;
    }
    
    .stat {
        min-width: 75px;
        padding: 4px 2px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.5rem;
        letter-spacing: 0.2px;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.85rem;
        min-width: 180px;
    }
}

/* Height-based adjustments for short screens */
@media (max-height: 700px) and (max-width: 768px) {
    .hero-minimal {
        height: auto;
        min-height: 100vh;
        padding: 25px 0;
    }
    
    .hero-logo {
        margin-bottom: 18px;
    }
    
    .hero-logo-image {
        max-width: 55px;
    }
    
    .hero-brand {
        font-size: 1.6rem;
    }
    
    .hero-headline {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .hero-description {
        margin-bottom: 16px;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        margin-bottom: 18px;
        gap: 12px;
    }
    
    .stat {
        min-width: 85px;
        padding: 4px 2px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
    }
    
    .cta-button {
        padding: 10px 28px;
        font-size: 0.9rem;
        min-width: 200px;
    }
}

@media (max-height: 600px) and (max-width: 768px) {
    .hero-logo {
        margin-bottom: 15px;
        gap: 6px;
    }
    
    .hero-logo-image {
        max-width: 45px;
    }
    
    .hero-brand {
        font-size: 1.4rem;
    }
    
    .hero-tagline {
        padding: 3px 12px;
        font-size: 0.65rem;
    }
    
    .hero-headline {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .hero-description {
        margin-bottom: 12px;
        font-size: 0.8rem;
    }
    
    .hero-stats {
        margin-bottom: 14px;
        gap: 10px;
    }
    
    .stat {
        min-width: 75px;
        padding: 3px 2px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.5rem;
    }
    
    .cta-button {
        padding: 8px 24px;
        font-size: 0.8rem;
        min-width: 180px;
    }
}

/* iOS Safari 100vh fix */
@supports (-webkit-touch-callout: none) {
    .hero-minimal {
        min-height: -webkit-fill-available;
        height: -webkit-fill-available;
    }
}

/* Landscape mode adjustments */
@media (orientation: landscape) and (max-height: 500px) {
    .hero-minimal {
        height: auto;
        min-height: 100vh;
        padding: 30px 0;
    }
    
    .hero-minimal .container {
        padding: 15px;
    }
    
    .hero-logo {
        margin-bottom: 15px;
        gap: 8px;
    }
    
    .hero-logo-image {
        max-width: 45px;
    }
    
    .hero-brand {
        font-size: 1.5rem;

    }
    
    .hero-headline {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .hero-description {
        margin-bottom: 15px;
        font-size: 0.85rem;
    }
    
    .hero-stats {
        margin-bottom: 15px;
        gap: 15px;
    }
    
    .stat {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.85rem;
        min-width: 190px;
    }
}


@media (max-width: 475px){

    h2
    {
        font-size: 1.2rem;
    }
    h3
    {
         font-size: 1rem;
    }
    .content-title
    {
       font-size: 1.2rem
    } 
    
    .destinations-header h3
    {
        font-size: 1rem
    }
       .contact-title
    {
       font-size: 1.2rem
    } 
    .about-text h3
    {
          font-size: 1rem;
    }
    .contact-description

    {
        font-size: 1rem;
    }

}

section
{
    padding-bottom: 40px;
}

/* Events Section - Movie Shape (16:9) */
.events-section {
    width: 100%;
    background: #f9fdf9;
    padding: 0;
}

.events-container {
    display: flex;
    width: 100%;
    background: var(--light-color);
}

/* Left Side - Carousel (40%) */
.events-carousel-wrapper {
    width: 40%;
    position: relative;
    overflow: hidden;
    background: var(--dark-color);
    aspect-ratio: 16 / 9; /* FIXED MOVIE RATIO - NEVER CHANGES */
    height: auto;
    align-self: center;
}

/* Contact Section - Movie Style (1.85:1) - WITH IMAGE POSITION CONTROL */
.contact-section {
    width: 100%;
    background: var(--light-color);
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.contact-container {
    display: flex;
    flex-direction: column; /* Mobile first: stack */
    width: 100%;
    background: var(--light-color);
}

/* Left Side - Carousel - Mobile First */
.carousel-wrapper {
    width: 100%; /* Full width on mobile */
    position: relative;
    overflow: hidden;
    background: var(--dark-color);
    aspect-ratio: 1.85 / 1; /* 1.85:1 MOVIE RATIO - NEVER CHANGES */
    height: auto;
    margin: 15px 15px 0 15px; /* Spacing on mobile */
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-carousel {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-carousel .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.contact-image-frame {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-slide-caption {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    border-radius: 6px;
    text-transform: uppercase;
    backdrop-filter: blur(2px);
}

.movie-style-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fills the frame completely */
    object-position: center; /* Default center position */
    display: block;
    transition: transform 1.2s ease;
}

/* Control image positioning for different screen sizes */
@media (max-width: 768px) {
    /* On mobile, focus on the main subject */
    .movie-style-image {
        object-position: 50% 30%; /* Adjust vertical focus */
    }
}

@media (min-width: 1024px) {
    /* On desktop, show more of the scene */
    .movie-style-image {
        object-position: 50% 50%; /* Center on desktop */
    }
}

/* Per-slide custom positioning (if needed) */
.swiper-slide:nth-child(1) .movie-style-image {
    /* First slide - Team Meeting */
    object-position: 50% 40%;
}

.swiper-slide:nth-child(2) .movie-style-image {
    /* Second slide - Student Success */
    object-position: 50% 50%;
}

.swiper-slide:nth-child(3) .movie-style-image {
    /* Third slide - Modern Workspace */
    object-position: 50% 30%;
}

.swiper-slide-active .movie-style-image {
    transform: scale(1.08);
}

/* Swiper Navigation - Mobile First */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(16, 185, 129, 0.3);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
}

/* Swiper Pagination - Mobile First */
.swiper-pagination {
    bottom: 10px !important;
}

.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    margin: 0 4px !important;
}

.swiper-pagination-bullet-active {
    width: 20px;
    background: var(--primary-color);
    border-radius: 10px;
}

/* Right Side - Content - Mobile First */
.contact-content-wrapper {
    width: 100%;
    padding: 30px 20px;
    background: var(--light-color);
    display: flex;
    flex-direction: column;
}

.contact-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.title-accent {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(16, 185, 129, 0.15);
    z-index: -1;
    border-radius: 3px;
}

.contact-divider {
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin-bottom: 20px;
    border-radius: 2px;
}

.contact-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--gray-color);
    margin-bottom: 30px;
}

/* Contact Grid - Mobile First (1 column) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: var(--light-gray);
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.1);
    border-color: var(--primary-light);
}

.card-icon {
    font-size: 28px;
    line-height: 1;
    color: var(--primary-color);
    min-width: 40px;
    background: rgba(16, 185, 129, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.card-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-details h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-link {
    font-size: 0.875rem;
    color: var(--dark-color);
    text-decoration: none;
    margin-bottom: 3px;
    display: block;
    transition: color 0.2s ease;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--primary-color);
}

.contact-timing {
    font-size: 0.75rem;
    color: var(--gray-color);
    opacity: 0.8;
    display: block;
    margin-top: 4px;
}

.address-line {
    font-size: 0.875rem;
    color: var(--dark-color);
    line-height: 1.5;
    display: block;
    margin-bottom: 2px;
}

.hours-line {
    font-size: 0.875rem;
    color: var(--dark-color);
    line-height: 1.5;
    display: block;
}

.hours-note {
    font-size: 0.75rem;
    color: var(--primary-color);
    margin-top: 6px;
    font-weight: 600;
    display: block;
    background: rgba(16, 185, 129, 0.1);
    padding: 3px 8px;
    border-radius: 20px;
    width: fit-content;
}

/* Contact Footer */
.contact-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.social-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.social-minimal-label {
    font-size: 0.75rem;
    width: 100%;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.social-minimal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.social-minimal-link {
    color: var(--gray-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--light-gray);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.social-minimal-link:hover {
    color: white;
    background: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.social-minimal-link svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* ===== TABLET (768px and up) ===== */
@media (min-width: 768px) {
    .carousel-wrapper {
        width: calc(100% - 40px);
        margin: 25px 20px 0 20px;
    }
    
    .contact-content-wrapper {
        padding: 40px 30px;
    }
    
    .contact-title {
        font-size: 1.875rem;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .contact-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .social-minimal {
        flex-direction: row;
        align-items: center;
        width: auto;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 36px;
        height: 36px;
    }
}

/* ===== DESKTOP (1024px and up) ===== */
@media (min-width: 1024px) {
    .contact-container {
        flex-direction: row;
        min-height: 500px;
    }
    
    .carousel-wrapper {
        width: 40%;
        margin: 40px 0 40px 30px;
        aspect-ratio: 1.85 / 1; /* STILL 1.85:1 - NEVER CHANGES */
    }
    
    .contact-content-wrapper {
        width: 60%;
        padding: 50px 45px 50px 40px;
    }
    
    .contact-title {
        font-size: 2.25rem;
    }
    
    .contact-description {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .contact-grid {
        gap: 30px 40px;
    }
    
    .contact-card {
        padding: 18px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 18px;
    }
}

/* ===== LARGE DESKTOP (1400px and up) ===== */
@media (min-width: 1400px) {
    .carousel-wrapper {
        margin: 50px 0 50px 40px;
        max-width: 500px;
    }
    
    .contact-content-wrapper {
        padding: 60px 50px 60px 45px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
}

/* ===== SMALL MOBILE (375px and below) ===== */
@media (max-width: 375px) {
    .carousel-wrapper {
        margin: 10px 10px 0 10px;
    }
    
    .contact-content-wrapper {
        padding: 25px 15px;
    }
    
    .contact-title {
        font-size: 1.25rem;
    }
    
    .contact-card {
        padding: 12px;
        gap: 12px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 22px;
        min-width: 40px;
    }
    
    .social-minimal-link {
        width: 40px;
        height: 40px;
    }
}

/* Fix for iOS */
@supports (-webkit-touch-callout: none) {
    .carousel-wrapper {
        height: auto;
    }
}

/* ENSURE RATIO NEVER CHANGES - CRITICAL */
@media (max-width: 1024px),
       (max-width: 768px),
       (max-width: 576px),
       (max-width: 375px) {
    .carousel-wrapper {
        aspect-ratio: 1.85 / 1; /* ABSOLUTELY NEVER CHANGES */
    }
}

/* Contact Section - Movie Style (1.85:1) - FIXED RATIO ON ALL DEVICES */
.contact-section {
    width: 100%;
    background: var(--light-color);
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.contact-container {
    display: flex;
    flex-direction: column; /* Mobile first: stack */
    width: 100%;
    background: var(--light-color);
}

/* Left Side - Carousel - FIXED 1.85:1 RATIO ON ALL DEVICES */
.contact-section .carousel-wrapper {
    width: calc(100% - 30px); /* Full width with margins on mobile */
    position: relative;
    overflow: hidden;
    background: var(--dark-color);
    aspect-ratio: 1.85 / 1 !important; /* 1.85:1 MOVIE RATIO - ABSOLUTELY FIXED */
    height: auto;
    margin: 20px auto 0 auto; /* Centered with margin */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-carousel {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
    overflow: hidden;
}

.contact-carousel .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.contact-image-frame {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.movie-style-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fills the frame completely */
    object-position: center;
    display: block;
    transition: transform 1.5s ease;
}

.contact-carousel .swiper-slide-active .movie-style-image {
    transform: scale(1.1);
}

/* Swiper Navigation - EXACT SAME AS EVENTS SECTION */
.contact-section .swiper-button-next,
.contact-section .swiper-button-prev {
    color: white;
    background: rgba(16, 185, 129, 0.4);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    margin: 0 10px;
}

.contact-section .swiper-button-next:after,
.contact-section .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.contact-section .swiper-button-next:hover,
.contact-section .swiper-button-prev:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Swiper Pagination */
.contact-section .swiper-pagination {
    bottom: 15px !important;
}

.contact-section .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

.contact-section .swiper-pagination-bullet-active {
    width: 24px;
    background: var(--primary-color);
    border-radius: 12px;
}

/* Right Side - Content */
.contact-content-wrapper {
    width: 100%;
    padding: 35px 20px 40px 20px;
    background: var(--light-color);
    display: flex;
    flex-direction: column;
}

.contact-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.title-accent {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(16, 185, 129, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.contact-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-bottom: 20px;
    border-radius: 2px;
}

.contact-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-color);
    margin-bottom: 30px;
}

/* Contact Grid - Mobile: 1 column */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: var(--light-gray);
    padding: 18px 15px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.15);
    border-color: var(--primary-light);
    background: white;
}

.card-icon {
    font-size: 28px;
    line-height: 1;
    color: var(--primary-color);
    min-width: 48px;
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.card-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-details h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-link {
    font-size: 0.9rem;
    color: var(--dark-color);
    text-decoration: none;
    margin-bottom: 4px;
    display: block;
    transition: color 0.2s ease;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--primary-color);
}

.contact-timing {
    font-size: 0.75rem;
    color: var(--gray-color);
    opacity: 0.8;
    display: block;
    margin-top: 5px;
}

.address-line {
    font-size: 0.9rem;
    color: var(--dark-color);
    line-height: 1.5;
    display: block;
    margin-bottom: 3px;
}

.hours-line {
    font-size: 0.9rem;
    color: var(--dark-color);
    line-height: 1.5;
    display: block;
}

.hours-note {
    font-size: 0.75rem;
    color: var(--primary-color);
    margin-top: 8px;
    font-weight: 600;
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 12px;
    border-radius: 30px;
}

/* Contact Footer */
.contact-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
    padding-top: 25px;
    border-top: 1px solid var(--light-gray);
}

.social-minimal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
}

.social-minimal-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(16, 185, 129, 0.1);
    padding: 5px 15px;
    border-radius: 30px;
}

.social-minimal-links {
    display: flex;
    gap: 15px;
    width: 100%;
}

.social-minimal-link {
    color: var(--gray-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--light-gray);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.social-minimal-link:hover {
    color: white;
    background: var(--primary-color);
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.social-minimal-link svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* ===== TABLET (768px and up) ===== */
@media (min-width: 768px) {
    .contact-section .carousel-wrapper {
        width: calc(100% - 60px);
        margin: 30px auto 0 auto;
        aspect-ratio: 1.85 / 1 !important; /* STILL 1.85:1 - NEVER CHANGES */
    }
    
    .contact-content-wrapper {
        padding: 45px 30px 50px 30px;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        gap: 25px;
    }
    
    .contact-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .social-minimal {
        flex-direction: row;
        align-items: center;
        width: auto;
    }
    
    .contact-section .swiper-button-next,
    .contact-section .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

/* ===== DESKTOP (1024px and up) ===== */
@media (min-width: 1024px) {
    .contact-container {
        flex-direction: row; /* Side by side on desktop */
        align-items: center;
        min-height: 550px;
    }
    
    .contact-section .carousel-wrapper {
        width: 40%; /* 40% on desktop */
        margin: 0 0 0 40px;
        aspect-ratio: 1.85 / 1 !important; /* STILL 1.85:1 - NEVER CHANGES */
        max-width: 500px;
    }
    
    .contact-content-wrapper {
        width: 60%; /* 60% on desktop */
        padding: 50px 50px 50px 40px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-description {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .contact-grid {
        gap: 25px 35px;
    }
    
    .contact-card {
        padding: 20px 18px;
    }
    
    .contact-section .swiper-button-next,
    .contact-section .swiper-button-prev {
        width: 44px;
        height: 44px;
        margin: 0 15px;
    }
    
    .contact-section .swiper-button-next:after,
    .contact-section .swiper-button-prev:after {
        font-size: 18px;
    }
}

/* ===== LARGE DESKTOP (1400px and up) ===== */
@media (min-width: 1400px) {
    .contact-section .carousel-wrapper {
        margin: 0 0 0 60px;
        max-width: 550px;
        aspect-ratio: 1.85 / 1 !important; /* STILL 1.85:1 - NEVER CHANGES */
    }
    
    .contact-content-wrapper {
        padding: 60px 60px 60px 50px;
    }
    
    .contact-title {
        font-size: 2.8rem;
    }
}

/* ===== SMALL MOBILE (480px and below) ===== */
@media (max-width: 480px) {
    .contact-section .carousel-wrapper {
        width: calc(100% - 20px);
        margin: 15px auto 0 auto;
        aspect-ratio: 1.85 / 1 !important; /* STILL 1.85:1 - NEVER CHANGES */
        border-radius: 10px;
    }
    
    .contact-content-wrapper {
        padding: 30px 15px 35px 15px;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-card {
        padding: 15px 12px;
        gap: 12px;
    }
    
    .card-icon {
        width: 42px;
        height: 42px;
        font-size: 24px;
        min-width: 42px;
    }
    
    .social-minimal-link {
        width: 42px;
        height: 42px;
    }
    
    .contact-section .swiper-button-next,
    .contact-section .swiper-button-prev {
        width: 32px;
        height: 32px;
        margin: 0 5px;
    }
    
    .contact-section .swiper-button-next:after,
    .contact-section .swiper-button-prev:after {
        font-size: 14px;
    }
}

/* ===== EXTRA SMALL MOBILE (375px and below) ===== */
@media (max-width: 375px) {
    .contact-section .carousel-wrapper {
        width: calc(100% - 16px);
        margin: 12px auto 0 auto;
        aspect-ratio: 1.85 / 1 !important; /* STILL 1.85:1 - NEVER CHANGES */
    }
    
    .contact-title {
        font-size: 1.3rem;
    }
    
    .contact-tag {
        font-size: 0.65rem;
    }
}

/* ENSURE RATIO NEVER CHANGES - CRITICAL FIX */
.contact-section .carousel-wrapper {
    aspect-ratio: 1.85 / 1 !important;
}

/* Fix for iOS */
@supports (-webkit-touch-callout: none) {
    .contact-section .carousel-wrapper {
        height: auto;
    }
}
/* Events Section - Movie Style (1.85:1) - FIXED RATIO ON ALL DEVICES */
.events-section {
    width: 100%;
    background: #f9fdf9; /* Light green background */
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.events-container {
    display: flex;
    flex-direction: column; /* Mobile first: stack */
    width: 100%;
    background: #f9fdf9;
}

/* Left Side - Carousel - FIXED 1.85:1 RATIO ON ALL DEVICES */
.events-section .carousel-wrapper {
    width: calc(100% - 30px); /* Full width with margins on mobile */
    position: relative;
    overflow: hidden;
    background: var(--dark-color);
    aspect-ratio: 1.85 / 1 !important; /* 1.85:1 MOVIE RATIO - ABSOLUTELY FIXED */
    height: auto;
    margin: 20px auto 0 auto; /* Centered with margin */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.events-carousel {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
    overflow: hidden;
}

.events-carousel .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fills the frame completely */
    object-position: center;
    display: block;
    transition: transform 1.5s ease;
}

.events-carousel .swiper-slide-active .slide-image img {
    transform: scale(1.1);
}

/* Slide Caption */
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    z-index: 10;
}



.slide-caption p {
    font-size: 0.85rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

/* Swiper Navigation */
.events-section .swiper-button-next,
.events-section .swiper-button-prev {
    color: white;
    background: rgba(16, 185, 129, 0.4);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    margin: 0 10px;
}

.events-section .swiper-button-next:after,
.events-section .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.events-section .swiper-button-next:hover,
.events-section .swiper-button-prev:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Swiper Pagination */
.events-section .swiper-pagination {
    bottom: 15px !important;
}

.events-section .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

.events-section .swiper-pagination-bullet-active {
    width: 24px;
    background: var(--primary-color);
    border-radius: 12px;
}

/* Right Side - Content */
.content-wrapper {
    width: 100%;
    padding: 35px 20px 40px 20px;
    background: #f9fdf9;
    display: flex;
    flex-direction: column;
}

.content-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.content-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.content-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-bottom: 20px;
    border-radius: 2px;
}

.content-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-color);
    margin-bottom: 25px;
}

/* Event Highlights */
.event-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--dark-color);
    background: white;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.highlight-icon {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    background: rgba(16, 185, 129, 0.1);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* ===== TABLET (768px and up) ===== */
@media (min-width: 768px) {
    .events-section .carousel-wrapper {
        width: calc(100% - 60px);
        margin: 30px auto 0 auto;
        aspect-ratio: 1.85 / 1 !important; /* STILL 1.85:1 - NEVER CHANGES */
    }
    
    .content-wrapper {
        padding: 45px 30px 50px 30px;
    }
    
    .content-title {
        font-size: 2.2rem;
    }
    
    
    .slide-caption p {
        font-size: 0.95rem;
    }
    
    .event-highlights {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .highlight-item {
        flex: 1;
        min-width: 180px;
    }
    
    .events-section .swiper-button-next,
    .events-section .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

/* ===== DESKTOP (1024px and up) ===== */
@media (min-width: 1024px) {
    .events-container {
        flex-direction: row; /* Side by side on desktop */
        align-items: center;
        min-height: 550px;
    }
    
    .events-section .carousel-wrapper {
        width: 40%; /* 40% on desktop */
        margin: 0 0 0 40px;
        aspect-ratio: 1.85 / 1 !important; /* STILL 1.85:1 - NEVER CHANGES */
        max-width: 500px;
    }
    
    .content-wrapper {
        width: 60%; /* 60% on desktop */
        padding: 50px 50px 50px 40px;
    }
    
    .content-title {
        font-size: 2.5rem;
    }
    
    .content-description {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .event-highlights {
        flex-direction: column;
        gap: 15px;
    }
    
    .highlight-item {
        min-width: auto;
        width: fit-content;
        padding: 12px 20px;
    }
    
    .slide-caption {
        padding: 25px 25px;
    }
    
    
    .slide-caption p {
        font-size: 1rem;
    }
    
    .events-section .swiper-button-next,
    .events-section .swiper-button-prev {
        width: 44px;
        height: 44px;
        margin: 0 15px;
    }
    
    .events-section .swiper-button-next:after,
    .events-section .swiper-button-prev:after {
        font-size: 18px;
    }
}

/* ===== LARGE DESKTOP (1400px and up) ===== */
@media (min-width: 1400px) {
    .events-section .carousel-wrapper {
        margin: 0 0 0 60px;
        max-width: 550px;
        aspect-ratio: 1.85 / 1 !important; /* STILL 1.85:1 - NEVER CHANGES */
    }
    
    .content-wrapper {
        padding: 60px 60px 60px 50px;
    }
    
    .content-title {
        font-size: 2.8rem;
    }
}

/* ===== SMALL MOBILE (480px and below) ===== */
@media (max-width: 480px) {
    .events-section .carousel-wrapper {
        width: calc(100% - 20px);
        margin: 15px auto 0 auto;
        aspect-ratio: 1.85 / 1 !important; /* STILL 1.85:1 - NEVER CHANGES */
        border-radius: 10px;
    }
    
    .content-wrapper {
        padding: 30px 15px 35px 15px;
    }
    
    .content-title {
        font-size: 1.5rem;
    }
    
    .slide-caption {
        padding: 15px 15px;
    }
    
    .slide-caption h3 {
        font-size: 1.1rem;
    }
    
    .slide-caption p {
        font-size: 0.8rem;
    }
    
    .highlight-item {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .events-section .swiper-button-next,
    .events-section .swiper-button-prev {
        width: 32px;
        height: 32px;
        margin: 0 5px;
    }
    
    .events-section .swiper-button-next:after,
    .events-section .swiper-button-prev:after {
        font-size: 14px;
    }
}

/* ===== EXTRA SMALL MOBILE (375px and below) ===== */
@media (max-width: 375px) {
    .events-section .carousel-wrapper {
        width: calc(100% - 16px);
        margin: 12px auto 0 auto;
        aspect-ratio: 1.85 / 1 !important; /* STILL 1.85:1 - NEVER CHANGES */
    }
    
    .content-title {
        font-size: 1.3rem;
    }
    
    .content-tag {
        font-size: 0.65rem;
    }
    
    .slide-caption h3 {
        font-size: 1rem;
    }
    
    .slide-caption p {
        font-size: 0.75rem;
    }
}

/* ENSURE RATIO NEVER CHANGES - CRITICAL FIX */
/* This overrides any potential conflicting styles */
.events-section .carousel-wrapper {
    aspect-ratio: 1.85 / 1 !important; /* Force the ratio with !important */
}

/* Fix for iOS */
@supports (-webkit-touch-callout: none) {
    .events-section .carousel-wrapper {
        height: auto;
    }
}