
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #2c5aa0;
}

.logo i {
    font-size: 28px;
    margin-right: 8px;
    color: #ff6b35;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5aa0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}


.hero-modern {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}


.slide-modern {
    position: absolute;
    width: 100%;
    height: 100%;

    background-size: 100% 100%;; 
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide-modern.active {
    opacity: 1;
}


.slide-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}


.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text-modern h1 {
    color: #fff;
    font-size: 40px;
}

.hero-text-modern p {
    color: #fff;
    font-size: 18px;
}


.slider-nav-modern {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.slider-prev-modern { left: 10px; }
.slider-next-modern { right: 10px; }


.slider-indicators-modern {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.indicator-modern {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #fff;
    margin: 5px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
}

.indicator-modern.active {
    opacity: 1;
    background: #ffcc00;
}


.slider-nav-modern {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-prev-modern {
    left: 30px;
}

.slider-next-modern {
    right: 30px;
}

.slider-nav-modern:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}


section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c5aa0;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ff6b35;
}


.features {
    background: #f8f9fa;
}

.features-grid,
.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card,
.class-level {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover,
.class-level:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feature-card i,
.class-level i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.feature-card h3,
.class-level h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c5aa0;
}

.primary {
    border-top: 5px solid #4CAF50;
}

.secondary {
    border-top: 5px solid #2196F3;
}


.about-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #ff6b35 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c5aa0;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.mission h3,
.vision h3 {
    color: #ff6b35;
    margin-bottom: 15px;
}

.achievements {
    list-style: none;
    margin-top: 30px;
}

.achievements li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}


.facilities {
    background: #f8f9fa;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}

.facility {
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.facility:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.facility i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.facility h4 {
    color: #2c5aa0;
}

.gallery-content {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.video-item video {
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.download-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #ff6b35;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.download-btn:hover {
    background: #e55a2b;
    transform: scale(1.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    border-radius: 10px;
}


.gallery-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.gallery-hero .container {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.gallery-hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
    position: relative;
}

.gallery-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.gallery-hero p {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}


@media (max-width: 768px) {
    .gallery-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .gallery-hero h1 {
        margin-bottom: 15px;
    }
    
    .gallery-hero p {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .gallery-hero {
        height: 55vh;
    }
    
    .gallery-hero .container {
        padding: 0 15px;
    }
}


@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.gallery-hero .container {
    animation: float 6s ease-in-out infinite;
}
.gallery-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), 
                url('images/campus.webp') center/cover no-repeat;
}



.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #3498db;
    background: transparent;
    color: #3498db;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #3498db;
    color: white;
}


.contact-hero {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 2rem;
    color: #ff6b35;
    margin-right: 20px;
    width: 50px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5aa0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-map {
    height: 400px;
    background: #ddd;
    border-radius: 20px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
}


.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 25px 0 12px; 
    margin-top: 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px; 
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 15px; 
    margin-bottom: 10px;
    color: #00d4aa;
}

.footer-section p {
    font-size: 13px; 
    margin-bottom: 6px;
    opacity: 0.85;
    line-height: 1.4;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.logo i {
    font-size: 18px; 
}

.logo span {
    font-size: 22px; 
    font-weight: bold;
    color: #00d4aa;
}

.footer-section ul li {
    margin-bottom: 4px; 
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px; 
    transition: color 0.3s;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 12px;
}

.footer-bottom p {
    font-size: 11px; 
    opacity: 0.7;
    margin: 0;
}

.footer .fas {
    width: 14px; 
    margin-right: 6px;
    color: #00d4aa;
    font-size: 12px;
}


@media (max-width: 768px) {
    .footer {
        padding: 20px 0 10px; 
        margin-top: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .footer-section h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .footer-section p {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .logo {
        margin-bottom: 6px;
    }
    
    .logo i {
        font-size: 16px;
    }
    
    .logo span {
        font-size: 20px;
    }
    
    .footer-section ul li {
        margin-bottom: 3px;
    }
    
    .footer-section ul li a {
        font-size: 12px;
    }
    
    .footer-bottom {
        padding-top: 10px;
    }
    
    .footer-bottom p {
        font-size: 10px;
    }
    
    .footer .fas {
        width: 12px;
        margin-right: 5px;
        font-size: 11px;
    }
}


@media (max-width: 480px) {
    .footer {
        padding: 15px 0 8px;
    }
    
    .footer-content {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .logo span {
        font-size: 18px;
    }
    
    .footer-section p,
    .footer-section ul li a {
        font-size: 11px;
    }
    
    .footer-bottom p {
        font-size: 9px;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid,
    .classes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}


.gallery-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s ease;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
}


.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


.location-hero-section {
    margin-bottom: 80px;
}

.map-hero-container iframe {
    height: 600px !important;
    box-shadow: 0 25px 75px rgba(0,0,0,0.2);
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    display: flex;
    gap: 25px;
    transition: all 0.3s ease;
    border-top: 5px solid #ff6b35;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 75px rgba(0,0,0,0.15);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #ff6b35);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon i {
    font-size: 2.5rem;
    color: white;
}

.contact-card-content h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.directions-btns,
.phone-actions,
.email-actions {
    margin-top: 20px;
}

.call-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.call-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.quick-contact-section {
    background: linear-gradient(135deg, #f8f9fa, white);
    padding: 80px 0;
    border-radius: 25px;
    margin-top: 60px;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.quick-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b35, #2c5aa0);
}

.quick-card i {
    font-size: 3.5rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.quick-card h4 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.quick-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #2c5aa0;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-btn:hover {
    background: #ff6b35;
    transform: translateY(-3px);
}

.social-quick {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-quick a {
    font-size: 1.5rem;
    color: #2c5aa0;
    transition: all 0.3s ease;
}

.social-quick a:hover {
    color: #ff6b35;
    transform: scale(1.2);
}

.hours-note {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-card-icon {
        margin: 0 auto 20px;
    }
    
    .map-hero-container iframe {
        height: 400px !important;
    }
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    box-sizing: border-box;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    color: white;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #ff6b6b;
    color: white;
}

.btn-primary:hover {
    background: #ff5252;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

.hero-stats {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    max-width: 40%;
}

.stat {
    text-align: center;
    color: white;
}

.stat h3 {
    font-size: 2.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.stat p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.8;
}


.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: white;
    transform: scale(1.2);
}


.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255,255,255,0.4);
    transform: translateY(-50%) scale(1.1);
}


@media (max-width: 768px) {
    .slide {
        flex-direction: column;
        text-align: center;
        padding: 0 10%;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        max-width: 100%;
        gap: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}





.hero {
    position: relative;
    height: 70vh; 
    min-height: 500px; 
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
}



.hero-content h1 {
    font-size: 2.8rem; 
    margin-bottom: 0.8rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.stat h3 {
    font-size: 2rem; 
    margin: 0 0 0.3rem 0;
}

.stat p {
    font-size: 0.9rem;
}


.slider-indicators {
    bottom: 20px; 
}


.slider-prev,
.slider-next {
    width: 45px; 
    height: 45px;
    font-size: 1.3rem; 
}


@media (max-width: 768px) {
    .hero {
        height: 65vh; 
        min-height: 450px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .stat h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
}




.school-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.school-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.school-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    height: 500px;
}

.school-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.school-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px 30px 30px;
    text-align: center;
}

.image-overlay i {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.school-details {
    padding-right: 20px;
    text-align: center; 
}

.school-details .section-title {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-align: center; 
}

.info-highlight {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 10px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    margin: 0 auto 30px; 
    font-weight: 600;
    font-size: 1.1rem;
    max-width: fit-content; 
}

.school-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.info-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
}

.info-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.info-item p {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}




@media (max-width: 768px) {
    .school-info-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .school-details {
        padding-right: 0;
        order: -1;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .school-image {
        height: 300px;
    }
}


.gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}


.floating-social {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.float-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.float-btn:hover::before {
    left: 100%;
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.whatsapp {
    background: #25D366;
}

.whatsapp:hover {
    background: #20BA5A;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram:hover {
    background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #ab1495 100%);
}

.float-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}


@media (max-width: 768px) {
    .floating-social {
        right: 15px;
        bottom: 80px;
        gap: 12px;
    }
    
    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .float-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .floating-social {
        bottom: 70px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}


.logo-icon {
    width: 40px;
    height: 40px;
    background-image: url('images/logo.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


