* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }
  body {
    background: linear-gradient(to right, #f8f4e3, #fffbe6);
    color: #333;
    line-height: 1.6;
    font-family: 'Merriweather', serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  
  
 
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #004d40;
    padding: 10px 15px;
    flex-wrap: wrap;
  }
  
  
  .logo {
    color: white;
    font-weight: bold;
    font-size: 20px;
  }
  
 
  .menu-toggle {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
  }
  
  nav {
    background: #004d40;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    flex-wrap: wrap;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #ffcc80;
  }
  
  

  @media (max-width: 768px) {
    nav {
      display: none;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
    }
  
    nav.show {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  }
  
  
  
  
  .hero {
    text-align: center;
    padding: 100px 20px 60px;
    background: linear-gradient(to bottom, #fffbe6, #f0e4c3);
    position: relative;
    overflow: hidden;
  }
  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #2e2e2e;
  }
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
  }
  .cta-button {
    padding: 12px 28px;
    background: #ff9800;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: backgroun 0.3s ease, transform 0.3s ease;
  }
  .cta-button:hover {
    background: #f57c00;
    transform: scale(1.05);
  }
  
  /* Cultural Icons */
  .sun, .tree, .fish, .lotus, .chakra {
    position: absolute;
    animation: float 6s ease-in-out infinite;
  }
  .sun {
    top: 30px;
    left: 60px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #ffeb3b, #fbc02d);
    border-radius: 50%;
  }
  .tree {
    bottom: 40px;
    left: 50px;
    width: 60px;
    height: 100px;
    background: linear-gradient(green, darkgreen);
    border-radius: 10px;
  }
  .fish {
    bottom: 100px;
    right: 70px;
    width: 40px;
    height: 20px;
    background: orange;
    border-radius: 20px 50% 50% 20px;
  }
  .lotus {
    top: 120px;
    right: 60px;
    width: 50px;
    height: 50px;
    background: pink;
    border-radius: 50%;
  }
  .chakra {
    top: 200px;
    left: 150px;
    width: 40px;
    height: 40px;
    border: 3px solid navy;
    border-radius: 50%;
  }
  
  /* Float Animation */
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
  }
  
  /* Info Section */
  .info-section {
    background: #ffffff;
    padding: 60px 30px;
    text-align: center;
  }
  .info-section h2 {
    color: #00695c;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .info-section p {
    max-width: 800px;
    margin: auto;
    font-size: 1rem;
    color: #444;
  }
  
  /* Footer */
  footer {
    background: #004d40;
    color: white;
    padding: 30px 20px;
    margin-top: auto;
  }
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .footer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .footer-links a {
    color: #ffcc80;
    margin-right: 15px;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: white;
  }
  
  
  
  
  
  /* ---- INFO SECTION DESIGN ---- */
  .info-section {
    background: linear-gradient(to bottom, #fffdf7, #f3f0e0); /* हल्का ग्रेडिएंट */
    padding: 60px 20px;
    text-align: center;
    border-top: 3px solid #004d40;
    border-bottom: 3px solid #004d40;
    animation: borderGlow 3s ease-in-out infinite; /* बॉर्डर कलर का animation */
  }
  
  /* Border Animation */
  @keyframes borderGlow {
    0%, 100% {
      border-color: #004d40;
    }
    50% {
      border-color: #009688;
    }
  }
  
  .info-section h2 {
    font-size: 2.5rem;
    color: #00695c;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    animation: fadeInDown 1s ease-out; /* ऊपर से आने वाला animation */
  }
  
  .info-section p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
    color: #444;
    line-height: 1.8;
    animation: fadeInUp 1.5s ease-out; /* नीचे से fade-in animation */
  }
  
  /* Text Animations */
  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  
  
  
  
  
  
  #experience-bihar {
    padding: 60px 0;
    background-color: #f9f9f9;
  }
  
  #experience-bihar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  #experience-bihar h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    color: #333;
  }
  
  .experience-grid {
    display: flex;
    flex-wrap: noerap;
    gap: 20px;
    overflow: auto;
  }
  
  .experience-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 0 0 auto;
  }
  
  .experience-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .experience-card h3 {
    margin: 15px 0 10px;
    font-size: 24px;
    color: #555;
  }
  
  .experience-card p {
    padding: 0 15px 20px;
    color: #777;
    font-size: 16px;
  }
  
  .center-text {
    text-align: center;
  }
  
  .colorful-title {
    font-size: 3rem;  /* large size */
    color: #004d40;
  }
  
  /* Responsive font size */
  @media (max-width: 600px) {
    .colorful-title {
      font-size: 2rem;  /* chhota size mobile pe */
    }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  body {
    background-color: #111;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .center-text {
    text-align: center;
    margin-top: 40px;
  }
  
  .colorful-title {
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 2px;
    color: white;
    text-shadow: 2px 2px 5px #444;
  }
  
  .bubble-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 50px auto;
    max-width: 1000px;
  }
  
  .bubble {
    padding: 20px 30px;
    border-radius: 40px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
  }
  
  .bubble:hover {
    transform: scale(1.1);
  }
  
  .orange { background-color: orange; }
  .blue { background-color: #00bfff; }
  .pink { background-color: hotpink; }
  .purple { background-color: rebeccapurple; }
  .brown { background-color: #d2691e; }
  .navy { background-color: navy; }
  .violet { background-color: violet; }
  .red { background-color: crimson; }