/* General */
    body { font-family: 'Segoe UI', sans-serif; }
    header { padding: 20px 0; background-color: #fff; text-align: center; }
    .logo { height: 60px; width: 60px; object-fit: contain; margin-right: 15px; }
    .title-container h1, .title-container h2 { margin: 0; }
    /* Navbar */
    nav.navbar { background-color: #343a40; }
    nav.navbar .nav-link, nav.navbar .dropdown-item { color: #fff; }
    nav.navbar .nav-link:hover, nav.navbar .dropdown-item:hover { color: #ffc107; }
    .dropdown-submenu { position: relative; }
    .dropdown-submenu > .dropdown-menu { top: 0; left: 100%; margin-left: 0.1rem; }
    @media(max-width:991px){
      .dropdown-menu { position: static !important; float: none; }
      .dropdown-submenu > .dropdown-menu { margin-left:0; }
    }
    /* Slider */
    .carousel-inner img { height: 400px; object-fit: cover; }
    /* Gallery */
    .gallery img { width:100%; height:200px; object-fit:cover; border-radius:10px; transition: transform 0.3s; }
    .gallery img:hover { transform: scale(1.05); }
    /* News/Events */
    .news-card { background:#f1f1f1; border-radius:10px; padding:15px; transition: transform 0.3s; }
    .news-card:hover { transform: scale(1.03); }
    /* Footer */
    footer { background:#343a40; color:#fff; padding:30px 0; }
    footer a { color:#ffc107; margin:0 10px; text-decoration:none; }
	/* Desktop Hover Effect */
    @media(min-width:992px){
      .dropdown:hover>.dropdown-menu { display:block; }
      .dropdown-submenu:hover>.dropdown-menu { display:block; }
    }
	    :root{
      --overlay: rgba(10,10,25,0.45);
      --accent: #ff6b6b;
    }
    body, html { height: 100%; font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; }

    /* Full-screen hero */
    /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

    /* ðŸ”¹ HERO SECTION */
   /* ✅ Banner Container */
  .banner {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  /* ✅ Responsive Image (Auto-fit, No Crop) */
  .banner img {
    width: 100%;
    height: 60vh;        /* 👈 Auto height maintain karega */
    display: block;
     /* 👈 Image full fit hogi (no crop) */
  }

  /* ✅ Optional Text Overlay */
  .banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 1;
  }

  .banner-content h1 {
    font-size: clamp(1.5rem, 4vw, 3rem);
  }

  .banner-content p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
  }

  /* ✅ Optional overlay (dark shade) */
  .banner::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3);
  }

  /* ✅ Responsive Spacing */
  @media (max-width: 768px) {
    .banner-content h1 {
      font-size: 1.8rem;
    }
  }

  /* Make text wrap nicely on small screens */
  .nobr-small{white-space:normal}

  
    @keyframes float{ 0%{ transform: translateY(0) } 50%{ transform: translateY(-8px)} 100%{ transform: translateY(0)} }


    .profile-card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: all 0.4s ease;
    }
    .profile-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    }
    .profile-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
    }
    .profile-info {
      padding: 20px;
      text-align: center;
    }
    .profile-info h4 {
      margin-bottom: 5px;
      font-weight: 700;
    }
    .profile-info p {
      margin: 0;
      font-size: 0.95rem;
      color: #555;
    }
    .title-heading {
      text-align: center;
      font-weight: 800;
      margin-top: 40px;
      margin-bottom: 40px;
      color: #222;
    }
	
	/* Gallery Grid */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
    }

    .gallery img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 10px;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gallery img:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }

    /* Lightbox (Popup) */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 9999;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.85);
      justify-content: center;
      align-items: center;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 80%;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    }

    .lightbox.active {
      display: flex;
    }

    /* Navigation buttons */
    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.7);
      color: #000;
      border: none;
      font-size: 30px;
      padding: 8px 15px;
      cursor: pointer;
      border-radius: 50%;
      transition: background 0.3s;
      user-select: none;
    }

    .nav-btn:hover {
      background: #007bff;
      color: #fff;
    }

    .prev {
      left: 20px;
    }

    .next {
      right: 20px;
    }

    /* Close Button */
    .close {
      position: absolute;
      top: 20px;
      right: 30px;
      color: #fff;
      font-size: 35px;
      font-weight: bold;
      cursor: pointer;
    }

    .close:hover {
      color: #ff3333;
    }

    @media (max-width: 768px) {
      .gallery img {
        height: 180px;
      }
      .nav-btn {
        font-size: 25px;
        padding: 6px 12px;
      }
    }    
.contact-section { padding: 60px 0; }
    .contact-title { text-align: center; font-size: 2rem; font-weight: bold; margin-bottom: 40px; color: #333; }
    .form-control { border-radius: 8px; }
    .btn-submit { background: #007bff; color: #fff; border-radius: 8px; transition: background 0.3s; }
    .btn-submit:hover { background: #0056b3; }
    .contact-card { background: #fff; padding: 30px; border-radius: 15px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
    .map-responsive { overflow:hidden; padding-bottom:56.25%; position:relative; height:0; border-radius: 15px; margin-bottom: 30px; }
    .map-responsive iframe { left:0; top:0; height:100%; width:100%; position:absolute; border:0; }
.footer { background: #222; color: #fff; padding: 60px 0 20px 0; }
    .footer a { color: #fff; text-decoration: none; }
    .footer a:hover { color: #0d6efd; }
    .footer h5 { font-weight: bold; margin-bottom: 20px; }
    .social-icons a { font-size: 1.2rem; margin-right: 15px; transition: color 0.3s; }
    .social-icons a:hover { color: #0d6efd; }
    .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #444; font-size: 0.9rem; }
	
	.about-card { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); margin-bottom: 30px;}
    .about-card:hover { transform: translateY(-10px); }
	.about-card h4 { color: #007bff; margin-bottom: 15px; }
    .about-card p { color: #555; line-height: 1.6; }
  