/* --- Google Fonts & Variables --- */
:root {
    --primary-color: #1ea2d7; 
    --primary-dark: #1668b4;  
    --accent-yellow: #ffef02; /* New Premium Brand Yellow */
    --accent-dark: #000000;   
    --accent-light: #F8F9FA; 
    --text-color: #334155;
    --heading-color: #000000;
    --light-bg: #F8F9FA;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { color: var(--text-color); line-height: 1.6; overflow-x: hidden; background-color: var(--white); }
html { scroll-behavior: smooth; }

/* --- Top Bar --- */
.top-bar {
    background-color: var(--accent-dark); color: var(--white); padding: 8px 5%;
    display: flex; justify-content: space-between; align-items: center;
    position: fixed; top: 0; width: 100%; z-index: 1100; font-size: 0.9rem; height: 50px;
}
.top-bar-left { display: flex; align-items: center; gap: 15px; flex-wrap: wrap;}

/* Original Red Admission Button Preserved */
.btn-admission {
    background-color: #D52B1E; color: var(--white); padding: 4px 18px;
    border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 0.85rem;
    animation: pulseHeader 2s infinite; box-shadow: 0 4px 10px rgba(213, 43, 30, 0.3);
}
.btn-admission:hover { background-color: #A32117; color: var(--white); }
@keyframes pulseHeader { 
    0% { box-shadow: 0 0 0 0 rgba(213, 43, 30, 0.7); } 
    70% { box-shadow: 0 0 0 6px rgba(213, 43, 30, 0); } 
    100% { box-shadow: 0 0 0 0 rgba(213, 43, 30, 0); } 
}

/* --- Universal Social Icons Styling (Top Bar & Footer) --- */
.socials { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.socials a { 
    display: inline-flex; align-items: center; justify-content: center; 
    border-radius: 50%; color: var(--white); 
    transition: var(--transition); text-decoration: none; 
}
.top-bar-right.socials a { width: 32px; height: 32px; background: rgba(255,255,255,0.15); font-size: 0.9rem; }
.footer-col .socials a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); font-size: 1.1rem; margin-top: 10px; }

/* Branded Hover Colors */
.socials a.social-fb:hover { background: #1877F2; transform: translateY(-3px); box-shadow: 0 4px 10px rgba(24, 119, 242, 0.3); }
.socials a.social-ig:hover { background: #E1306C; transform: translateY(-3px); box-shadow: 0 4px 10px rgba(225, 48, 108, 0.3); }
.socials a.social-tw:hover { background: #1DA1F2; transform: translateY(-3px); box-shadow: 0 4px 10px rgba(29, 161, 242, 0.3); }
.socials a.social-yt:hover { background: #FF0000; transform: translateY(-3px); box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3); }

/* Globals */
.section-title { font-size: 2.5rem; color: var(--heading-color); margin-bottom: 20px; font-weight: 800; }
.section-title span { 
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    color: transparent;
}
.center { text-align: center; }
.mt-10 { margin-top: 10px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 32px; border-radius: 50px; text-decoration: none; font-weight: 600; 
    transition: var(--transition); cursor: pointer; border: none; font-size: 1.05rem; letter-spacing: 0.5px;
}
.btn-primary { 
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); 
    color: var(--white); 
    box-shadow: 0 4px 15px rgba(22, 104, 180, 0.3); 
}
.btn-primary:hover { 
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); 
    transform: translateY(-3px); 
    box-shadow: 0 8px 25px rgba(22, 104, 180, 0.4); 
}

/* Premium Yellow Accent Button */
.btn-accent { 
    background: var(--accent-yellow); 
    color: var(--heading-color); 
    box-shadow: 0 4px 15px rgba(255, 239, 2, 0.3); 
}
.btn-accent:hover { 
    background: var(--heading-color); 
    color: var(--accent-yellow); 
    transform: translateY(-3px); 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); 
}

.btn-outline { background: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); }
.btn-outline:hover { background: var(--primary-color); color: var(--white); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(30, 162, 215, 0.2); }
.btn-google { background: #ffffff; color: var(--heading-color); border: 2px solid #E2E8F0; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.btn-google i { color: #db4437; }
.btn-google:hover { border-color: #db4437; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(219, 68, 55, 0.15); }

/* --- Navbar & Downloads Dropdown --- */
.navbar {
    position: fixed; top: 50px; width: 100%; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05); z-index: 1000; transition: var(--transition); 
    border-bottom: 4px solid var(--accent-yellow); /* Updated to Brand Yellow */
}
.nav-container { max-width: 1200px; margin: 0 auto; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 55px; }
.nav-links { display: flex; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-color); margin-left: 30px; font-weight: 600; position: relative; transition: var(--transition); padding-bottom: 5px; }

/* Premium Active Menu Option with Yellow Underline */
.nav-links > a::after { content: ''; position: absolute; width: 0; height: 3px; background: var(--accent-yellow); bottom: 0; left: 0; transition: var(--transition); }
.nav-links > a:hover::after, .nav-links > a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--heading-color); }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--primary-dark); }

/* Dropdown Menu */
.dropdown { position: relative; display: inline-block; }
.dropdown-menu {
    position: absolute; top: 100%; left: 30px; background: var(--white); min-width: 240px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); border-radius: 8px; border: 1px solid #E2E8F0;
    opacity: 0; visibility: hidden; transform: translateY(15px); transition: all 0.3s ease;
    display: flex; flex-direction: column; padding: 10px 0; z-index: 1001;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { margin: 0; padding: 12px 20px; color: var(--text-color); font-weight: 500; font-size: 0.95rem; border-bottom: none !important; display: flex; align-items: center; gap: 10px; }
.dropdown-menu a::after { display: none !important; }
.dropdown-menu a:hover { background: var(--light-bg); color: var(--heading-color); padding-left: 25px; border-left: 3px solid var(--accent-yellow); }
.dropdown-menu a i { color: var(--primary-color); font-size: 1.1rem; }

/* --- Hero Section --- */
.hero-section { position: relative; height: 90vh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; margin-top: 50px; background: #000; }
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0; transform: scale(1.05); transition: opacity 1.5s ease-in-out, transform 8s linear; }
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay-gradient { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(22,104,180,0.4) 50%, rgba(0,0,0,0.8) 100%); z-index: 2; pointer-events: none; }
.hero-content { position: relative; z-index: 10; text-align: center; color: var(--white); max-width: 900px; padding: 0 20px; }
.hero-content h1 { font-size: 4.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; text-shadow: 0 10px 30px rgba(0,0,0,0.8); }

/* Updated White Hero Text */
.highlight-glow { 
    color: var(--white); 
    -webkit-text-fill-color: var(--white);
    background: none;
    -webkit-text-stroke: 0; 
    text-shadow: 0 4px 15px rgba(0,0,0,0.5); 
}
.custom-shape-divider-bottom { position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; z-index: 10; }
.custom-shape-divider-bottom svg { position: relative; display: block; width: calc(100% + 1.3px); height: 70px; }
.custom-shape-divider-bottom .shape-fill { fill: #ffffff; }

/* --- About & General Sections --- */
.about { padding: 100px 5%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 60px; }
.about-text { flex: 1; }
.about-text p { margin-bottom: 15px; font-size: 1.1rem; }
.about-list { list-style: none; margin-top: 25px; }
.about-list li { margin-bottom: 12px; font-weight: 600; color: var(--heading-color); display: flex; align-items: center; }
.about-list i { color: var(--primary-color); margin-right: 15px; font-size: 1.2rem; }
.about-video { flex: 1; position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); cursor: pointer; border: 1px solid #E2E8F0; }
.about-video img { width: 100%; display: block; transition: transform 0.5s ease; }
.about-video:hover img { transform: scale(1.05); }

/* Premium Yellow Play Button */
.play-btn { 
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); 
    width: 80px; height: 80px; background: var(--accent-yellow); border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; color: var(--heading-color); 
    font-size: 1.8rem; padding-left: 5px; box-shadow: 0 0 30px rgba(255, 239, 2, 0.4); transition: var(--transition); 
}
.about-video:hover .play-btn { 
    transform: translate(-50%, -50%) scale(1.1); background: var(--heading-color); color: var(--accent-yellow); 
}

/* Carousels */
.carousel-container { width: 100%; overflow: hidden; white-space: nowrap; position: relative; padding: 20px 0; }
.carousel-track { display: inline-flex; gap: 30px; width: max-content; padding-right: 30px; animation: scrollCarousel 25s linear infinite; will-change: transform; }
.carousel-track.reverse { animation: scrollCarouselReverse 25s linear infinite; }
.carousel-track:hover { animation-play-state: paused; }
@keyframes scrollCarousel { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }
@keyframes scrollCarouselReverse { 0% { transform: translate3d(-50%, 0, 0); } 100% { transform: translate3d(0, 0, 0); } }

/* Section Specifics */
.facilities { padding: 90px 0; background: var(--light-bg); border-top: 1px solid #E2E8F0; }
.facility-card { min-width: 400px; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.03); transition: var(--transition); border: 1px solid #E2E8F0; border-bottom: 4px solid transparent; }
.facility-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(22, 104, 180, 0.08); border-bottom: 4px solid var(--primary-color); }
.facility-card img { width: 100%; height: 260px; object-fit: cover; display: block; }
.facility-card h3 { text-align: center; padding: 20px; font-size: 1.25rem; color: var(--heading-color); }

.toppers { padding: 90px 0; background: var(--white); overflow: hidden; }
.topper-card { min-width: 260px; background: var(--light-bg); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.03); transition: var(--transition); border: 1px solid #E2E8F0; border-top: 4px solid var(--primary-color); }
.topper-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(22, 104, 180, 0.1); }
.topper-card img { width: 100%; height: 240px; object-fit: cover; display: block; border-bottom: 1px solid #E2E8F0; }
.topper-info { padding: 20px; text-align: center; white-space: normal; }
.topper-info h3 { font-size: 1.2rem; color: var(--heading-color); margin-bottom: 8px; font-weight: 700; }
.topper-info p { font-size: 0.9rem; color: var(--text-color); margin-bottom: 4px; }
.topper-info p strong { color: var(--primary-dark); }

.activities { padding: 80px 0 100px; background: var(--light-bg); overflow: hidden; border-top: 1px solid #E2E8F0;}
.activity-card { min-width: 350px; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.03); transition: var(--transition); border: 1px solid #E2E8F0; }
.activity-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(22, 104, 180, 0.1); border-color: var(--primary-color); }
.activity-card img { width: 100%; height: 240px; object-fit: cover; display: block; }

.vision-mission { padding: 100px 5%; background: var(--accent-dark); position: relative; overflow: hidden; }
.vision-mission::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: rgba(30, 162, 215, 0.15); border-radius: 50%; filter: blur(100px); }
.vision-mission::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: rgba(255, 239, 2, 0.08); border-radius: 50%; filter: blur(80px); }
.vm-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); gap: 40px; position: relative; z-index: 2; }
.vm-card { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); padding: 50px; border-radius: 12px; color: var(--white); transition: var(--transition); }
.vm-card:hover { transform: translateY(-8px); background: rgba(255, 255, 255, 0.06); border-color: var(--primary-color); }
.vm-icon { font-size: 3.5rem; color: var(--primary-color); margin-bottom: 25px; }
.vm-card h2 { font-size: 2.2rem; margin-bottom: 20px; color: var(--white); }
.vm-card p { font-size: 1.05rem; color: #CBD5E1; line-height: 1.8; }
.vm-list { list-style: none; margin-top: 20px;}
.vm-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; font-size: 1.05rem; line-height: 1.6; color: #CBD5E1; }
.vm-list li i { color: var(--primary-color); margin-top: 6px; font-size: 1rem; }

.gallery { padding: 90px 5%; background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; padding-top: 20px; }
.gallery-item { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); cursor: pointer; aspect-ratio: 4 / 3; position: relative;}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.gallery-item:hover img { transform: scale(1.1); }

.testimonials { padding: 90px 0; background: var(--light-bg); overflow: hidden; border-top: 1px solid #E2E8F0;}
.testimonial-card { background: var(--white); padding: 40px 30px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); position: relative; border: 1px solid #E2E8F0; transition: var(--transition); width: 380px; white-space: normal; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(22, 104, 180, 0.08); border-color: var(--primary-color); }
.quote-icon { font-size: 3rem; color: rgba(22, 104, 180, 0.1); position: absolute; top: 20px; right: 25px; }
.testimonial-card p { font-style: italic; color: var(--text-color); margin-bottom: 25px; position: relative; z-index: 1; font-size: 1.05rem; }
.testimonial-card h4 { color: var(--heading-color); font-weight: 700;}
.stars { color: var(--accent-yellow); margin-top: 5px; font-size: 0.9rem;}

/* --- Contact & Standard Forms --- */
.contact-section { display: flex; max-width: 1200px; margin: 90px auto 100px; padding: 0 5%; gap: 50px; align-items: stretch; }
.contact-map { flex: 1; min-height: 450px; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: 1px solid #E2E8F0; }
.contact-form-container { flex: 1; background: var(--white); padding: 50px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #E2E8F0; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 16px; border: 1px solid #CBD5E1; border-radius: 8px; font-size: 1rem; transition: var(--transition); background: var(--light-bg); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--primary-color); outline: none; background: var(--white); box-shadow: 0 0 0 4px rgba(30, 162, 215, 0.1); }

/* --- ADMISSION FORM UI STYLES --- */
.form-section-card { background: var(--white); padding: 40px; border-radius: 16px; border: 1px solid #E2E8F0; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.form-section-title { font-size: 1.3rem; color: var(--heading-color); margin-bottom: 25px; display: flex; align-items: center; gap: 15px; border-bottom: 2px dashed #E2E8F0; padding-bottom: 15px; font-weight: 700; }
.form-section-title i { color: var(--primary-color); font-size: 1.5rem; background: rgba(30, 162, 215, 0.1); width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 25px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-weight: 600; color: var(--heading-color); font-size: 0.95rem; }

/* Pill-Shaped Modern Radio Buttons */
.pill-group { display: flex; gap: 12px; flex-wrap: wrap; }
.pill-group input[type="radio"] { display: none; }
.pill-label { padding: 12px 25px; background: var(--white); border: 2px solid #CBD5E1; border-radius: 50px; cursor: pointer; transition: var(--transition); font-size: 0.95rem; font-weight: 600; color: var(--text-color); display: flex; align-items: center; gap: 8px;}
.pill-group input[type="radio"]:checked + .pill-label { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: var(--white); border-color: transparent; box-shadow: 0 6px 15px rgba(22, 104, 180, 0.25); transform: translateY(-2px); }
.pill-group input[type="radio"]:checked + .pill-label i { color: var(--white); }

/* Drag & Drop File Upload Box */
.file-upload-box { position: relative; border: 2px dashed #CBD5E1; border-radius: 12px; padding: 40px 20px; text-align: center; background: var(--light-bg); transition: var(--transition); cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.file-upload-box:hover { border-color: var(--primary-color); background: rgba(30, 162, 215, 0.03); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.03); }
.file-upload-box i { font-size: 3rem; color: var(--primary-color); margin-bottom: 15px; }
.file-upload-box h4 { color: var(--heading-color); font-size: 1.1rem; margin-bottom: 5px; }
.file-upload-box p { color: #64748B; font-size: 0.9rem; }
.file-upload-box input[type="file"] { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }

/* --- Footer --- */
footer { background: var(--accent-dark); color: #E2E8F0; padding: 70px 5% 20px; border-top: 4px solid var(--accent-yellow); }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; max-width: 1200px; margin: 0 auto; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; }
.footer-logo { height: 60px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-col h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--white); font-weight: 700; display: inline-block; position: relative; padding-bottom: 8px;}
.footer-col h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--accent-yellow); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul li a { color: #CBD5E1; text-decoration: none; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary-color); padding-left: 5px; }
.footer-col ul li i { margin-right: 12px; color: var(--primary-color); width: 15px; text-align: center;}
.footer-bottom { text-align: center; padding-top: 25px; color: #94A3B8; font-size: 0.95rem; }

/* =========================================================
   POPUPS & MODALS
   ========================================================= */
.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 40px; right: 40px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); z-index: 1000; display: flex; align-items: center; justify-content: center; transition: var(--transition); text-decoration: none !important; }
.whatsapp-float:hover { transform: scale(1.1); background-color: #1ebe5d; color: white;}

/* Promotional Ad Popup */
.ad-popup-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(5px); z-index: 2000; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: all 0.4s ease; }
.ad-popup-overlay.show { opacity: 1; visibility: visible; }
.ad-popup-content { position: relative; width: 90%; max-width: 450px; aspect-ratio: 1 / 1; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.5); transform: scale(0.9); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 4px solid var(--primary-color); }
.ad-popup-overlay.show .ad-popup-content { transform: scale(1); }
.ad-popup-content img { width: 100%; height: 100%; object-fit: cover; display: block; }
.close-popup { position: absolute; top: 15px; right: 15px; width: 35px; height: 35px; background: var(--white); color: var(--accent-dark); font-size: 20px; display: flex; align-items: center; justify-content: center; border-radius: 50%; cursor: pointer; transition: var(--transition); z-index: 10; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.close-popup:hover { background: var(--primary-color); color: var(--white); }

/* Video Modal */
.video-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); z-index: 3000; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.video-modal-overlay.show { opacity: 1; visibility: visible; }
.video-modal-content { position: relative; width: 90%; max-width: 900px; aspect-ratio: 16 / 9; background: #000; border-radius: 12px; box-shadow: 0 25px 50px rgba(0,0,0,0.5); transform: scale(0.95); transition: transform 0.3s ease; border: 2px solid var(--primary-color); }
.video-modal-overlay.show .video-modal-content { transform: scale(1); }
.video-modal-content iframe { width: 100%; height: 100%; border-radius: 10px; border: none; }
.close-video-modal { position: absolute; top: -50px; right: 0; color: #fff; font-size: 35px; cursor: pointer; transition: color 0.3s; line-height: 1; }
.close-video-modal:hover { color: var(--primary-color); }

/* --- Sub-pages Styles --- */
.page-header { background: var(--light-bg); color: var(--heading-color); padding: 180px 5% 80px; text-align: center; border-bottom: 1px solid #E2E8F0; }
.page-header h1 { font-size: 3.5rem; margin-bottom: 15px; font-weight: 800;}
.page-header p { font-size: 1.2rem; color: var(--text-color); max-width: 600px; margin: 0 auto;}
.contact-page-content, .privacy-content { max-width: 1200px; margin: 80px auto; padding: 0 5%; }
.contact-info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.info-card { text-align: center; background: var(--white); padding: 50px 30px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); transition: var(--transition); border: 1px solid #E2E8F0; }
.info-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(22, 104, 180, 0.08); border-color: var(--primary-color); }
.info-card i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; }
.privacy-content .text-container { background: var(--white); padding: 60px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); border: 1px solid #E2E8F0; }
.privacy-content h2 { color: var(--heading-color); margin: 35px 0 15px; font-size: 1.8rem; }

/* Responsive Tablets */
@media (max-width: 1024px) {
    .hero-section { height: 60vh; min-height: 400px; margin-top: 50px;}
    .hero-content h1 { font-size: 3rem; }
    .about, .contact-section, .vm-container { flex-direction: column; gap: 40px;}
    .nav-links { display: none; }
    .hamburger { display: block; }
    .nav-links.active { display: flex; flex-direction: column; position: absolute; top: 89px; left: 0; width: 100%; background: var(--white); padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-bottom: 4px solid var(--primary-color); align-items: flex-start;}
    .nav-links.active > a { margin: 15px 0; padding-bottom: 0; width: 100%;}
    .nav-links.active > a::after { display: none; }
    
    .dropdown { width: 100%; margin: 15px 0 0 0; }
    .dropdown-menu { position: static; box-shadow: none; border: none; padding: 10px 0 10px 15px; opacity: 1; visibility: visible; transform: none; display: flex; background: transparent; }
    .dropdown-menu a { padding: 8px 10px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}