@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

:root {
    --neon: #00f2ff;
    --purple: #bc13fe;
    --dark: #0a0b10;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
}

/* Base Fixes - No Shaking */
html, body { margin: 0; padding: 0; width: 100%; max-width: 100vw; overflow-x: hidden; background: var(--dark); color: #fff; font-family: 'Poppins', sans-serif; }
* { box-sizing: border-box; }

/* Navigation */
.glass-nav { 
    display: flex; justify-content: space-between; align-items: center; padding: 0 5%; 
    background: rgba(10, 11, 16, 0.98); backdrop-filter: blur(20px); 
    position: fixed; width: 100%; top: 0; z-index: 3000; border-bottom: 1px solid var(--border); height: 70px; 
}
.logo { font-size: 1.4rem; font-weight: 800; }
.logo span { color: var(--neon); text-shadow: 0 0 10px var(--neon); }

/* Hero Section (Center Aligned) */
.hero-section {
    padding: 140px 20px 60px; text-align: center;
    background: radial-gradient(circle at top, #1a1b25, var(--dark));
}
.hero-section h1 { font-size: clamp(1.8rem, 6vw, 3rem); font-weight: 800; margin-bottom: 15px; }
.hero-section h1 span { color: var(--neon); }

/* Premium Grid - Fixed for Tablet & Laptop */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.main-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 25px; padding: 30px 0; justify-content: center;
}

/* Card Style Fix (No Cutting) */
.card { 
    background: var(--glass); border-radius: 15px; border: 1px solid var(--border); 
    overflow: hidden; transition: 0.3s; cursor: pointer; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); border-color: var(--neon); box-shadow: 0 10px 20px rgba(0, 242, 255, 0.1); }
.card-img-box { width: 100%; height: 180px; background: #111; overflow: hidden; }
.card-img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 15px; text-align: center; flex-grow: 1; }
.card-body h3 { font-size: 1rem; margin-bottom: 15px; line-height: 1.4; height: 2.8rem; overflow: hidden; }

/* Slider & Details Fix (No Cutting) */
.slider-wrapper { 
    width: 100%; height: 300px; /* Fixed Height for mobile/web */
    margin-top: 70px; position: relative; overflow: hidden; background: #000; 
}
@media (min-width: 768px) { .slider-wrapper { height: 450px; } }

.slider { display: flex; height: 100%; transition: 0.6s ease; }
.slider img { width: 100%; height: 100%; object-fit: cover; flex-shrink: 0; filter: brightness(0.5); }

.slider-info { 
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px 5%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    z-index: 10;
}
.slider-info h1 { margin: 0; font-size: clamp(1.2rem, 5vw, 2.2rem); color: var(--neon); }

/* Forms & Modals */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 4000; align-items: center; justify-content: center; padding: 15px; }
.modal-content { 
    background: #0f1016; width: 100%; max-width: 500px; padding: 25px; border-radius: 20px; 
    border: 1px solid var(--neon); max-height: 90vh; overflow-y: auto; position: relative;
}

.form-section-title { font-size: 10px; color: var(--neon); font-weight: 700; text-transform: uppercase; margin: 15px 0 10px; border-left: 3px solid var(--neon); padding-left: 10px; }
input, select, textarea { width: 100%; padding: 10px; margin-bottom: 10px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: #fff; border-radius: 8px; font-size: 14px; }
select option { color: #000; }

.pay-section { text-align: center; background: rgba(255,255,255,0.02); padding: 15px; border-radius: 15px; border: 1px dashed var(--neon); margin: 15px 0; }
#qrImg { width: 150px; height: 150px; background: #fff; padding: 8px; border-radius: 10px; margin: 0 auto 10px; display: block; }

.pro-btn { width: 100%; height: 45px; background: linear-gradient(45deg, var(--neon), var(--purple)); border: none; border-radius: 8px; color: #fff; font-weight: 700; cursor: pointer; }
.view-btn { background: transparent; border: 1px solid var(--neon); color: var(--neon); padding: 8px 15px; border-radius: 50px; cursor: pointer; font-size: 12px; font-weight: 600; }
.view-btn:hover { background: var(--neon); color: #000; }

/* Table Fix */
.table-container { width: 100%; overflow-x: auto; margin-top: 10px; border-radius: 10px; border: 1px solid var(--border); }
.fee-table { width: 100%; border-collapse: collapse; min-width: 450px; }
.fee-table th, .fee-table td { padding: 12px; text-align: left; border-bottom: 1px solid var(--border); font-size: 13px; }

/* Admin Dashboard Fix */
.admin-grid { display: grid; grid-template-columns: 1fr; gap: 20px; padding: 90px 5% 30px; }
@media (min-width: 992px) { .admin-grid { grid-template-columns: 350px 1fr; } }




/* --- PREMIUM REALISTIC FOOTER CSS --- */
.main-footer {
    background: #0a0b10;
    border-top: 1px solid rgba(0, 242, 255, 0.2);
    padding: 40px 0 30px 0;
    width: 100%;
    margin-top: 60px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.footer-logo span { color: var(--neon); }

/* REAL BRAND COLORS FOR ICONS */
.social-wrapper { display: flex; gap: 20px; margin-bottom: 25px; }

.social-icon {
    width: 45px; height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Specific Brand Hover Effects */
.youtube:hover { background: #FF0000; color: #fff; box-shadow: 0 0 20px #FF0000; border-color: #FF0000; }
.whatsapp:hover { background: #25D366; color: #fff; box-shadow: 0 0 20px #25D366; border-color: #25D366; }
.instagram:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; box-shadow: 0 0 20px #dc2743; border-color: transparent; }
.facebook:hover { background: #1877F2; color: #fff; box-shadow: 0 0 20px #1877F2; border-color: #1877F2; }

.social-icon:hover { transform: translateY(-8px) scale(1.1); }

.footer-line {
    width: 60%;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 15px 0 25px 0;
}

/* CENTERED & GLOWING WHITE TEXT */
.footer-bottom-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.copy-text-white {
    font-size: 14px;
    color: #ffffff !important; /* Pure White */
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 8px rgba(255,255,255,0.3);
}

.india-text-white {
    font-size: 16px;
    color: #ffffff !important; /* Pure White */
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 8px rgba(255,255,255,0.3);
}

/* ANIMATED BREATHING HEART */
.heart-beat {
    color: #ff4757;
    display: inline-block;
    margin: 0 5px;
    animation: pulseHeart 1.2s infinite ease-in-out;
    filter: drop-shadow(0 0 5px #ff4757);
}

@keyframes pulseHeart {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

/* RESPONSIVE FIX */
@media (max-width: 600px) {
    .footer-line { width: 80%; }
    .india-text-white { font-size: 14px; }
}