        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
            color: #ffffff;
        }

        /* Animated Background with Particles */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(120, 119, 198, 0.08) 0%, transparent 50%);
            animation: backgroundMove 25s ease-in-out infinite;
            pointer-events: none;
            z-index: 1;
        }

        /* Floating Particles */
        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.1), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(120, 119, 198, 0.2), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.08), transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(120, 119, 198, 0.15), transparent);
            background-size: 200px 200px, 180px 180px, 160px 160px, 140px 140px;
            background-position: 0 0, 40px 40px, 80px 0, 120px 80px;
            animation: particleFloat 20s linear infinite;
            pointer-events: none;
            z-index: 1;
        }
        
    /* Header */
    .header {
      position: fixed;
      top: 0;
    width: 100%;
      background: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(20px);
      z-index: 1000;
      padding: 1rem 2rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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



      .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: color 0.3s ease;
      font-weight: 500;
    }

    .nav-links a:hover {
      color: #64ffda;
    }



    .logo {
      font-size: 20px;
      font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    }


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

.nav-links li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #64ffda;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

/* Feedback Section */
.feedback-section {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.feedback-btn {
    display: inline-block;
    padding: 12px 25px;        /* slightly bigger for better click area */
    margin-top: 10px;
    background: #ff5722;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;       /* smoother corners */
    font-weight: bold;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    position: relative;
}

/* Hover effect */
.feedback-btn:hover {
    background: #e64a19;
    transform: translateY(-4px);   /* slight bounce */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Optional subtle pulse animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.feedback-btn.pulse {
    animation: pulse 2s infinite;
}



        /* Responsive */
        @media (max-width: 768px) {
          .nav-links {
            position: absolute;
            top: 60px;
            right: 0;
            width: 200px;
            background: rgb(7, 7, 7);
            flex-direction: column;
            align-items: flex-start;
            padding: 15px;
            border: 1px solid #ddd;
            box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
            display: none; /* hidden initially */
          }

          .nav-links.active {
            display: flex;
          }

          .menu-toggle {
            display: block;
          }
        }

.announcement-banner {
  position: fixed;
  top: 60px; /* below the header */
  width: 100%;
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-weight: bold;
  font-size: 1rem;
  z-index: 1100;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.banner-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
}

.banner-icon {
  font-size: 1.5rem;
}

.close-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  color: #000;
  padding: 0;
  line-height: 1;
}


        @keyframes backgroundMove {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        @keyframes particleFloat {
            0% { transform: translateY(0px) translateX(0px); }
            25% { transform: translateY(-100px) translateX(50px); }
            50% { transform: translateY(-50px) translateX(100px); }
            75% { transform: translateY(-150px) translateX(25px); }
            100% { transform: translateY(0px) translateX(0px); }
        }

        /* Enhanced Loading Screen */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            animation: fadeOut 2s ease-in-out 3s forwards;
        }

        .loading-content {
            text-align: center;
            color: white;
            position: relative;
        }
    

        


        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes bookPulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.1); }
        }

        /* Typewriter Effect */
.typewriter {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid #fff; /* cursor */
    white-space: nowrap;
    letter-spacing: 2px;
    animation: typing 3s steps(40, end), blink 0.7s step-end infinite;
}

/* Typing animation */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

/* Cursor blink */
@keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: white; }
}

        .whatsapp-btn {
                display: inline-block;
                background: linear-gradient(135deg, #25D366, #128C7E);
                color: white;
                padding: 10px 18px;
                margin-top: 10px;
                border-radius: 8px;
                font-weight: 600;
                font-size: 0.95rem;
                text-decoration: none;
                box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
                transition: transform 0.2s ease, box-shadow 0.2s ease;
                backdrop-filter: blur(6px);
            }

        .whatsapp-btn:hover {
                transform: scale(1.05);
                box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
        }


        .loading-books {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .book {
            font-size: 24px;
            animation: bookBounce 1.5s ease-in-out infinite;
            filter: drop-shadow(0 0 10px rgba(120, 119, 198, 0.5));
        }

        .book:nth-child(1) { animation-delay: 0s; }
        .book:nth-child(2) { animation-delay: 0.2s; }
        .book:nth-child(3) { animation-delay: 0.4s; }
        .book:nth-child(4) { animation-delay: 0.6s; }
        .book:nth-child(5) { animation-delay: 0.8s; }

        @keyframes bookBounce {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-25px) rotate(10deg); }
        }

        @keyframes fadeOut {
            to { opacity: 0; visibility: hidden; }
        }

.header-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;  /* important for responsiveness */
    align-items: center;
    gap: 10px;
}

.right-header {
    display: flex;
    flex-direction: column;  /* stack vertically on small screen */
    align-items: flex-end;
    gap: 5px;
}




        /* Main Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            opacity: 0;
            animation: slideIn 1s ease-out 3.5s forwards;
            position: relative;
            z-index: 10;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Glass Cards with Black Theme */
        .glass-card {
            background: rgba(30, 30, 30, 0.8);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(120, 119, 198, 0.2);
            padding: 30px;
            margin: 25px 0;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .glass-card:hover::before {
            left: 100%;
        }

        .glass-card:hover {
            transform: translateY(-10px);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(120, 119, 198, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border-color: rgba(120, 119, 198, 0.4);
        }

        /* Enhanced Header */
        .header {
            text-align: center;
            color: white;
            margin-bottom: 40px;
            position: relative;
            z-index: 10;
        }


        .header h1 {
            font-size: 3.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff 0%, #7877c6 50%, #ffffff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            text-shadow: 0 0 30px rgba(120, 119, 198, 0.5);
            margin-bottom: 15px;
            animation: titleGlow 3s ease-in-out infinite alternate;
            position: relative;
        }

        .header p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            animation: fadeInUp 1s ease-out 2s forwards;
            opacity: 0;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .header {
            padding: 20px 40px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            border-radius: 12px;
        }

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

        .gallery-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 18px;
            border-radius: 10px;
            color: #00bcd4;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s ease, transform 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .gallery-link:hover {
            background: rgba(0, 188, 212, 0.2);
            transform: scale(1.05);
        }

        .time-date {
            font-family: 'Courier New', monospace;
            font-size: 14px;
            color: #00ffe7;
            background: rgba(0, 255, 204, 0.08);
            border: 1px solid rgba(0, 255, 204, 0.3);
            padding: 6px 12px;
            border-radius: 8px;
            text-shadow: 0 0 6px #00ffe7;
            box-shadow: 0 0 8px rgba(0, 255, 204, 0.3);
            margin-top: 6px;
            display: inline-block;
        }


        


        @keyframes titleGlow {
            0% { filter: drop-shadow(0 0 10px rgba(120, 119, 198, 0.3)); }
            100% { filter: drop-shadow(0 0 20px rgba(120, 119, 198, 0.6)); }
        }

        @keyframes sparkle {
            0%, 100% { transform: translateX(-50%) scale(1) rotate(0deg); }
            50% { transform: translateX(-50%) scale(1.2) rotate(15deg); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Section Headers */
        .section h2 {
            color: #ffffff;
            font-size: 2rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
            padding-bottom: 10px;
        }

        .section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #7877c6, transparent);
            border-radius: 2px;
        }

        .section h3 {
            color: #e0e0e0;
            font-size: 1.4rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .section p, .section li {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            margin-bottom: 10px;
            font-size: 1.05rem;
        }

        .section ul {
            list-style: none;
            padding-left: 0;
        }

        .section li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 8px;
        }

        .section li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #7877c6;
            font-size: 12px;
            top: 50%;
            transform: translateY(-50%);
        }

        /* Enhanced WiFi Credentials */
        .wifi-info {
            background: rgba(20, 20, 20, 0.6);
            padding: 20px;
            border-radius: 15px;
            margin: 15px 0;
            border: 1px solid rgba(120, 119, 198, 0.3);
            position: relative;
            backdrop-filter: blur(10px);
        }

        .wifi-credential {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(40, 40, 40, 0.8);
            padding: 15px 20px;
            border-radius: 12px;
            margin: 12px 0;
            border: 1px solid rgba(120, 119, 198, 0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .wifi-credential::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .wifi-credential:hover::before {
            left: 100%;
        }

        .wifi-credential:hover {
            transform: translateX(5px);
            background: rgba(50, 50, 50, 0.9);
            border-color: rgba(120, 119, 198, 0.5);
            box-shadow: 0 5px 20px rgba(120, 119, 198, 0.2);
        }

        .credential-text {
            font-family: 'Courier New', monospace;
            font-weight: bold;
            color: #ffffff;
            user-select: all;
            flex-grow: 1;
            font-size: 1.1rem;
        }

        .copy-btn {
            background: linear-gradient(135deg, #7877c6 0%, #5a5a9e 100%);
            border: none;
            color: #ffffff;
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 12px;
            transition: all 0.3s ease;
            margin-left: 15px;
            font-weight: 600;
            box-shadow: 0 2px 10px rgba(120, 119, 198, 0.3);
        }

        .copy-btn:hover {
            background: linear-gradient(135deg, #8a89d4 0%, #6b6bb2 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(120, 119, 198, 0.4);
        }

        .copy-btn:active {
            transform: translateY(0);
        }

        .copy-btn.copied {
            background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
            box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
        }

        /* Enhanced Highlight Boxes */
        .highlight {
            background: linear-gradient(135deg, rgba(120, 119, 198, 0.1) 0%, rgba(120, 119, 198, 0.05) 100%);
            padding: 20px;
            border-radius: 15px;
            border-left: 4px solid #7877c6;
            margin: 20px 0;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .highlight::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(120, 119, 198, 0.05), transparent);
            border-radius: 15px;
            pointer-events: none;
        }

        /* Contact Cards */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

      .contact-card {
            background: rgba(20, 20, 20, 0.75);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(14px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            color: #f1f1f1;
            }

            .contact-card h3 {
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 12px;
            }

            .contact-card a {
            color: #00bcd4;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            }

            .contact-card a:hover {
            color: #1de9b6;
            text-decoration: underline;
            }


        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(120, 119, 198, 0.2);
            border-color: rgba(120, 119, 198, 0.4);
        }

        /* Social Links */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .social-btn {
            background: linear-gradient(135deg, rgba(120, 119, 198, 0.2) 0%, rgba(120, 119, 198, 0.1) 100%);
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(120, 119, 198, 0.3);
            font-weight: 500;
            backdrop-filter: blur(10px);
        }

        .social-btn:hover {
            background: linear-gradient(135deg, rgba(120, 119, 198, 0.3) 0%, rgba(120, 119, 198, 0.2) 100%);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(120, 119, 198, 0.3);
            border-color: rgba(120, 119, 198, 0.5);
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

            /* Common styles */
        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 20px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 500;
            color: white;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .social-btn i {
            font-size: 1.2em;
        }

            /* WhatsApp glassy green */
        .social-btn.whatsapp {
            background: rgba(37, 211, 102, 0.15);
            border: 1px solid rgba(37, 211, 102, 0.4);
        }

        .social-btn.whatsapp:hover {
            background: rgba(37, 211, 102, 0.35);
        }

        /* YouTube glassy red */
        .social-btn.youtube {
            background: rgba(255, 0, 0, 0.15);
            border: 1px solid rgba(255, 0, 0, 0.4);
        }

        .social-btn.youtube:hover {
            background: rgba(255, 0, 0, 0.35);
        }

        /* Instagram glassy gradient */
        .social-btn.instagram {
            background: linear-gradient(45deg, rgba(253, 94, 83, 0.2), rgba(131, 58, 180, 0.2));
            border: 1px solid rgba(131, 58, 180, 0.4);
        }

        .social-btn.instagram:hover {
            background: linear-gradient(45deg, rgba(253, 94, 83, 0.4), rgba(131, 58, 180, 0.4));
        }

        /* Google Maps glassy green-blue */
        .social-btn.googlemaps {
            background: rgba(72, 133, 237, 0.15); /* Google Blue */
            border: 1px solid rgba(72, 133, 237, 0.4);
        }
        .social-btn.googlemaps:hover {
           background: rgba(72, 133, 237, 0.35);
        }

        /* JustDial glassy orange */
        .social-btn.justdial {
            background: rgba(255, 140, 0, 0.15); /* JustDial Orange */
            border: 1px solid rgba(255, 140, 0, 0.4);
        }
        .social-btn.justdial:hover {
            background: rgba(255, 140, 0, 0.35);
        }



        .stars {
            font-size: 1.8rem;
            color: #ffd700;
            margin: 15px 0;
            filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
        }

        /* Tooltip */
        .tooltip {
            position: absolute;
            background: rgba(0, 0, 0, 0.9);
            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 12px;
            top: -45px;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(120, 119, 198, 0.3);
        }

        .tooltip.show {
            opacity: 1;
        }

        .tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-top-color: rgba(0, 0, 0, 0.9);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.5rem;
            }
            
            .glass-card {
                padding: 20px;
                margin: 15px 0;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .social-links {
                flex-direction: column;
                align-items: center;
            }
            
            .wifi-credential {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .copy-btn {
                margin-left: 0;
                align-self: flex-end;
            }
        }

        /* Scroll animations */
        .fade-in {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #7877c6, #5a5a9e);
            border-radius: 6px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #8a89d4, #6b6bb2);
        }




