    :root {
      --primary: #1a1a2e;
      --secondary: #16213e;
      --accent: #e94560;
      --gold: #ffd700;
      --text-dark: #f5f5f5;
      --text-light: #a0a0a0;
      --bg-light: #0f0f1a;
      --bg-white: #1e1e32;
      --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      --card-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.25);
      --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      --border-radius: 16px;
      --container-width: 1200px;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--bg-light);
      color: var(--text-dark);
      line-height: 1.7;
      overflow-x: hidden;
    }

        /* Navigation - Indian Cultural Style */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(90deg, #FF9933 0%, #FF6B35 50%, #E9426B 100%);
            padding: 15px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(255, 153, 51, 0.3);
            border-bottom: 2px solid #FFD700;
        }

        .logo {
          text-decoration: none;
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .logo span {
            color: #FFD700;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 35px;
            align-items: center;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--transition);
            padding: 10px 20px;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
        }

        nav ul li a:hover {
            color: var(--gold);
            background: rgba(255, 215, 0, 0.15);
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
            transform: translateY(-2px);
        }

        .search-container {
            position: relative;
        }

        .search-container input {
            padding: 12px 25px;
            border-radius: 30px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            font-size: 14px;
            width: 220px;
            background: rgba(255, 255, 255, 0.15);
            color: white;
            transition: var(--transition);
        }

        .search-container input::placeholder {
            color: rgba(255, 255, 255, 0.8);
        }

        .search-container input:focus {
            outline: none;
            width: 280px;
            border-color: #FFD700;
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
            padding: 10px;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: var(--transition);
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
            background: #FFD700;
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
            background: #FFD700;
        }

    /* Hero Section */
    .hero {
      height: 100vh;
      min-height: 600px;
      background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.85) 50%, rgba(15, 52, 96, 0.9) 100%),
                  url('https://static.toiimg.com/thumb/msid-107721477,width-1070,height-580,resizemode-75/107721477,pt-32,y_pad-40/107721477.jpg') no-repeat center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      padding: 20px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 30% 70%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
                  radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    }

    .hero-content {
      max-width: 900px;
      animation: fadeInUp 1s ease forwards;
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      font-weight: 700;
      margin-bottom: 20px;
      text-shadow: 2px 4px 20px rgba(0,0,0,0.5);
      line-height: 1.2;
    }

    .hero h1 span {
      color: var(--gold);
    }

    .hero p {
      font-size: 1.3rem;
      margin-bottom: 35px;
      opacity: 0.95;
      font-weight: 300;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--accent) 0%, #c73e54 100%);
      color: white;
      padding: 16px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: var(--transition);
      box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
    }

    .cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(233, 69, 96, 0.5);
    }

    .scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      animation: bounce 2s infinite;
    }

    .scroll-indicator i {
      color: white;
      font-size: 2rem;
      opacity: 0.8;
    }

    /* Section Styles */
    section {
      padding: 90px 5%;
    }

    .container {
      max-width: var(--container-width);
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      color: white;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .section-header h2::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--accent), var(--gold));
      border-radius: 2px;
    }

    .section-header p {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.7);
      max-width: 700px;
      margin: 20px auto 0;
    }

    /* Alternating Section Backgrounds */
    .bg-light {
      background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
    }

    .bg-white {
      background: linear-gradient(180deg, #1a1a2e 0%, #252540 100%);
    }

    /* About Section */
    .about-section {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      color: white;
      text-align: center;
    }

    .about-section .section-header h2 {
      color: white;
    }

    .about-section .section-header h2::after {
      background: var(--gold);
    }

    .about-section .section-header p {
      color: rgba(255,255,255,0.9);
    }

    .about-content {
      max-width: 900px;
      margin: 0 auto;
      font-size: 1.2rem;
      line-height: 1.9;
    }

    /* Cards Grid */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
    }

    .card {
      background: linear-gradient(145deg, #1e1e32 0%, #252540 100%);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--card-shadow);
      transition: var(--transition);
      position: relative;
      opacity: 0;
      transform: translateY(30px);
      animation: cardFadeIn 0.6s ease forwards;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent), var(--gold));
      transform: scaleX(0);
      transition: transform 0.4s ease;
      z-index: 10;
    }

    .card:hover {
      transform: translateY(-10px) rotateX(2deg);
      box-shadow: var(--card-shadow-hover);
    }

    .card:hover::before {
      transform: scaleX(1);
    }

    .card-image-wrapper {
      position: relative;
      overflow: hidden;
    }

    .card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .card:hover img {
      transform: scale(1.1);
    }

    .card-image-wrapper::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 50%;
      background: linear-gradient(to top, rgba(30, 30, 50, 0.9), transparent);
    }

    .card-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--accent);
      color: white;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      z-index: 5;
    }

    .card-content {
      padding: 25px;
    }

    .card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: white;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: color 0.3s;
    }

    .card:hover h3 {
      color: var(--gold);
    }

    .card h3 i {
      color: var(--accent);
    }

    .card p {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .card-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--gold);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: var(--transition);
    }

    .card-btn:hover {
      color: var(--accent);
      gap: 12px;
    }

    /* Gallery Section */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .gallery-item {
      position: relative;
      border-radius: var(--border-radius);
      overflow: hidden;
      cursor: pointer;
    }

    .gallery-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.15);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26, 26, 46, 0.8), transparent);
      opacity: 0;
      transition: var(--transition);
      display: flex;
      align-items: flex-end;
      padding: 20px;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay i {
      color: white;
      font-size: 1.5rem;
    }

    /* Map Section */
    .map-section iframe {
      width: 100%;
      height: 500px;
      border: none;
      border-radius: var(--border-radius);
      margin-top: 30px;
      box-shadow: var(--card-shadow);
    }

    /* Weather Info Cards */
    .weather-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .weather-card {
      background: linear-gradient(145deg, #1e1e32 0%, #252540 100%);
      padding: 30px;
      border-radius: var(--border-radius);
      text-align: center;
      box-shadow: var(--card-shadow);
      transition: var(--transition);
    }

    .weather-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--card-shadow-hover);
    }

    .weather-card i {
      font-size: 3rem;
      margin-bottom: 15px;
    }

    .weather-card h4 {
      color: white;
      margin-bottom: 10px;
    }

    .weather-card p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
    }

    .weather-card.sunny i { color: #f39c12; }
    .weather-card.rainy i { color: #3498db; }
    .weather-card.winter i { color: #9b59b6; }

    /* Enhanced Footer */
    .footer {
      background: linear-gradient(180deg, #0a0a14 0%, #0f0f1a 100%);
      color: white;
      padding: 60px 5% 30px;
      border-top: 1px solid rgba(255, 215, 0, 0.1);
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      max-width: var(--container-width);
      margin: 0 auto 40px;
    }

    .footer-section h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: white;
    }

    .footer-section h3 i {
      color: var(--accent);
    }

    .footer-section p {
      opacity: 0.8;
      line-height: 1.8;
      font-size: 0.95rem;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: white;
      opacity: 0.8;
      text-decoration: none;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-links a:hover {
      opacity: 1;
      color: var(--gold);
      padding-left: 5px;
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-links a {
      width: 45px;
      height: 45px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      transition: var(--transition);
    }

    .social-links a:hover {
      background: var(--accent);
      transform: translateY(-3px);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255,255,255,0.1);
      opacity: 0.7;
      font-size: 0.9rem;
    }

    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--accent) 0%, #c73e54 100%);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
      z-index: 999;
      border: none;
    }

    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top:hover {
      transform: translateY(-5px);
      background: #d62839;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes cardFadeIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
      }
      40% {
        transform: translateX(-50%) translateY(-10px);
      }
      60% {
        transform: translateX(-50%) translateY(-5px);
      }
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 3rem;
      }
      
      .nav-links {
        gap: 20px;
      }
    }

    @media (max-width: 768px) {
      .navbar {
        padding: 12px 5%;
      }

      .mobile-menu-btn {
        display: block;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        gap: 0;
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }

      .hero h1 {
        font-size: 2.2rem;
      }

      .hero p {
        font-size: 1rem;
      }

      .section-header h2 {
        font-size: 2rem;
      }

      section {
        padding: 60px 5%;
      }

      .cards {
        grid-template-columns: 1fr;
      }

      .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .social-links {
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 1.8rem;
      }

      .cta-btn {
        padding: 14px 30px;
        font-size: 1rem;
      }

    .card img {
        height: 180px;
      }
    }

    /* Video Section */
    .video-container {
      position: relative;
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--card-shadow);
    }

    .video-container iframe {
      width: 100%;
      height: 450px;
      display: block;
    }

    @media (max-width: 768px) {
      .video-container iframe {
        height: 250px;
      }
    }
    .ca1{
      text-decoration: none;
    }