        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #fff8f0;
            color: #3b2e2e;
            line-height: 1.6;
        }
        a {
            color: #d35400;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        /* Container */
        .container {
            max-width: 1100px;
            margin: auto;
            padding: 0 20px;
        }
        /* Header */
        header {
            background: #e67e22;
            color: white;
            padding: 20px 0;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        header h1 {
            font-family: 'Georgia', serif;
            font-size: 2.8rem;
            letter-spacing: 2px;
        }
        nav {
            margin-top: 10px;
        }
        nav a {
            margin: 0 15px;
            font-weight: 600;
            font-size: 1.1rem;
        }
        nav a.active {
            border-bottom: 2px solid #fff;
            padding-bottom: 4px;
        }
        /* Hero Section */
        .hero {
            background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            height: 350px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
            margin-bottom: 40px;
        }
        .hero h2 {
            font-size: 3rem;
            background: rgba(230, 126, 34, 0.7);
            padding: 15px 30px;
            border-radius: 10px;
        }
        /* Sections */
        section {
            margin-bottom: 50px;
        }
        section h3 {
            font-family: 'Georgia', serif;
            font-size: 2.4rem;
            color: #d35400;
            margin-bottom: 20px;
            border-bottom: 3px solid #d35400;
            display: inline-block;
            padding-bottom: 5px;
        }
        /* Grid for arts, music, dance */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
            gap: 30px;
        }
        .card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .card-content {
            padding: 20px;
        }
        .card-content h4 {
            font-family: 'Georgia', serif;
            font-size: 1.6rem;
            margin-bottom: 10px;
            color: #e67e22;
        }
        .card-content p {
            font-size: 1rem;
            color: #5d4037;
        }
        /* Quotes Section */
        #quotes-section {
            background: #f9e5d8;
            padding: 30px 20px;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            max-width: 700px;
            margin: 0 auto 60px auto;
            text-align: center;
        }
        #quotes-section h3 {
            margin-bottom: 20px;
            color: #d35400;
        }
        #quote-text {
            font-size: 1.5rem;
            font-style: italic;
            margin-bottom: 10px;
            color: #6e2c00;
            min-height: 80px;
        }
        #quote-author {
            font-weight: 700;
            color: #a64d00;
        }
        #language-toggle {
            margin-top: 20px;
            background: #d35400;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 1rem;
            border-radius: 25px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        #language-toggle:hover {
            background: #e67e22;
        }
        /* Footer */
        footer {
            background: #e67e22;
            color: white;
            text-align: center;
            padding: 15px 0;
            font-size: 1rem;
            margin-top: 60px;
        }
        /* Responsive text */
        @media (max-width: 600px) {
            header h1 {
                font-size: 2rem;
            }
            .hero h2 {
                font-size: 2rem;
                padding: 10px 20px;
            }
            section h3 {
                font-size: 1.8rem;
            }
            #quote-text {
                font-size: 1.2rem;
            }
        }

        /* New full screen spacing and image layout */
        .full-screen-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            padding: 60px 20px;
            background: #f0e6dc;
        }
        .full-screen-section img {
            width: 45%;
            max-width: 600px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            object-fit: cover;
            height: 350px;
            transition: transform 0.3s ease;
        }
        .full-screen-section img:hover {
            transform: scale(1.05);
        }
        .full-screen-single {
            width: 90%;
            max-width: 900px;
            margin: 40px auto 0 auto;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .full-screen-single:hover {
            transform: scale(1.03);
        }
        @media (max-width: 768px) {
            .full-screen-section img {
                width: 100%;
                height: 250px;
            }
            .full-screen-single {
                width: 100%;
                height: 300px;
            }
        }
body, h1, h2, p, ul {
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  background-color: #F9F9F9;
  color: #555;
}
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 2px solid #ddd;
  background: #fff;
}
.top-header .logo img {
  height: 150px;
}
.top-header .header-text {
  text-align: center;
}
.top-header .header-text h1 {
  font-size: 50px;
  margin: 0;
  font-weight: bold;
}

h1 {
  font-family: 'Poppins', sans-serif; /* clean modern font */
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, #000000, #434343);
 /* gradient color */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  margin: 20px 0;
}






.top-header .header-text p {
  font-size: 14px;
  color: #555;
  margin-top: 4px;
}
.top-header .header-img img {
  height: 150px;
  border-radius: 50%;
}


.slogan {
  font-family: 'Merriweather', serif; /* elegant + classy */
  font-size: 1.3rem;
  font-style: italic;
  text-align: center;
  max-width: 900px;
  margin: 10px auto;
  line-height: 1.6;
  background: linear-gradient(90deg, #ff512f, #dd2476); /* black gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.registration-no {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #ff512f, #dd2476); /* gradient highlight */
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 1px;
  margin-top: 10px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.3);
}




/* Navbar sticky */
.navbar {
  position: sticky;   /* sticky करायला */
  top: 0;             /* top पासून 0px अंतरावर */
  z-index: 1000;      /* इतर content वर दिसण्यासाठी */
  background: #004080;  /* रंग background कायम राहील */
  padding: 10px 20px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;  /* background ठेवलं की scroll करताना image/text miss होणार नाही */
}


/* Navbar Base */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #2C3E50;
  color: white;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.nav-links li a:hover {
  color: #FFD700;
}

.right-side {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Search Box */
.search-box {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.search-box input {
  padding: 6px 10px;
  border-radius: 5px;
  border: none;
}

.search-box button {
  padding: 6px 10px;
  border: none;
  background: #FFD700;
  border-radius: 5px;
  cursor: pointer;
}

/* Language Switcher */
.language-switcher {
  position: relative;
  margin-left: 20px;
}

.lang-btn {
  background: #FFD700;
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  color: white;
}

.lang-menu {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  background: white;
  color: black;
  list-style: none;
  border-radius: 5px;
  overflow: hidden;
}

.lang-menu li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: black;
}

.lang-menu li a:hover {
  background: #eee;
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}


/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links,
  .search-box,
  .language-switcher {
    display: none;
    width: 100%;
    flex-direction: column;
    background: #2C3E50;
    padding: 10px;
    gap: 10px;
  }

  .nav-links.active,
  .search-box.active,
  .language-switcher.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
  }
}

.language-switcher {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.lang-btn .arrow {
  font-size: 0.8rem;
}

.lang-menu {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  list-style: none;
  padding: 5px 0;
  min-width: 120px;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.lang-menu li {
  padding: 8px 15px;
}

.lang-menu li a {
  text-decoration: none;
  color: #333;
  display: block;
}

.lang-menu li:hover {
  background: #f5f5f5;
}

/* Show menu on active */
.language-switcher.active .lang-menu {
  display: block;
}





.footer {
  background: #2C3E50;
  color: #fff;
  padding: 40px 20px 10px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 15px;
}

.footer-section h3 {
  color:#27ae60; /* gold highlight */
  margin-bottom: 15px;
}

.footer-points {
  list-style: none;
  padding: 0;
}
.footer-points li::before {
  content: "✔ "; /* Or use ➤, ●, ➔ */
  color: #ff6600; /* Custom color */
  margin-right: 6px;
}

.footer-section p,
.footer-section li,
.footer-section a {
  color: #ddd;
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 6px 0;
}

.footer-section ul li a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #FFD700;
}

/* Newsletter */
.newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter input {
  padding: 8px 12px;
  border-radius: 4px;
  border: none;
  outline: none;
}

.newsletter button {
  background: #8B0000;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter button:hover {
  background: #a80000;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #FFD700;
}

/* Registration highlight */
.registration {
  display: inline-block;
  background: linear-gradient(90deg, #ff512f, #dd2476);
  padding: 4px 10px;
  border-radius: 5px;
  font-weight: bold;
  color: #fff;
  font-size: 13px;
  margin-top: 8px;
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 13px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    margin: 15px 0;
  }

  .newsletter {
    align-items: center;
  }
}


/* Page Banner */
.page-banner {
  background: #f5f5f5;
  padding: 30px;
  text-align: center;
  border-bottom: 2px solid #ddd;
}

.page-banner h1 {
  font-size: 2rem;
  color: #222;
}

/* Contact Container */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px;
  max-width: 1100px;
  margin: auto;
}

