 body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #eef6f9;
    }

    /* Top Bar */
    .top-bar {
      background-color: #0d6efd;
      color: #fff;
      font-size: 0.9rem;
      padding: 5px 0;
    }

    .top-bar marquee {
      font-weight: 500;
    }

    .top-bar .btn {
      background-color: #084298;
      border: none;
    }

    /* Navbar Base */
    .main-navbar {
      background: linear-gradient(90deg, #0d6efd, #6610f2);
      transition: background-color 0.3s ease, top 0.3s ease, box-shadow 0.3s ease;
      padding: 10px 0;
      position: relative;
      z-index: 999;
    }

    /* When Scrolled */
    .navbar-fixed-top {
      position: fixed !important;
      top: 0;
      width: 100%;
      animation: slideDown 0.3s ease-in-out;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .navbar-transparent {
      background-color: rgba(13, 110, 253, 0.85) !important;
    }

    @keyframes slideDown {
      from { top: -70px; }
      to { top: 0; }
    }

    .navbar-brand img {
      height: 45px;
    }

    .nav-link {
      color: #fff;
      font-weight: 500;
      margin: 0 10px;
      transition: color 0.3s ease;
    }

    .nav-link:hover, .nav-link.active {
      color: #ffdd57;
    }

    .dropdown-menu {
      border-radius: 4px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .dropdown-item:hover {
      background-color: #0d6efd;
      color: #fff;
    }

    @media (max-width: 991.98px) {
      .navbar-collapse {
        background-color: #0d6efd;
        padding: 10px;
      }

      .nav-link {
        padding: 8px 0;
      }
    }

    /* Banner Slider */
    .banner-slider {
      position: relative;
      height: 550px;
      overflow: hidden;
    }

   .banner-slider img {
          width: 100%;
          height: 100%;
          object-fit: contain; /* shows full image */
          background: #000;    /* optional: black background for empty space */
          display: none;
          position: absolute;
          top: 0;
          left: 0;
}

    .banner-slider img.active {
      display: block;
      z-index: 1;
      animation: fadein 0.5s ease-in-out;
    }

    @keyframes fadein {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    
    
    
    /*about section */
    
    
    
    
                .about-us-section {
                  background: #fdfdfd;
                  border-top: 1px solid #ddd;
                }
                
                .about-content p {
                  font-size: 16px;
                  line-height: 1.7;
                  text-align: justify;
                  color: #555;
                }
                
                .title-highlight {
                  font-size: 20px;
                  font-weight: 600;
                  margin-bottom: 0;
                  padding: 0.5rem 1rem;
                  display: inline-block;
                  position: relative;
                  color: #0d6efd;
                }
                
                .title-highlight::after {
                  content: '';
                  position: absolute;
                  width: 50%;
                  height: 3px;
                  background-color: #0d6efd;
                  left: 25%;
                  bottom: -5px;
                  border-radius: 2px;
                }
                
                
                           
                .circle {
                  width: 120px;
                  height: 120px;
                  border: 3px solid #fff;
                  border-radius: 50%;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  background: rgba(255, 255, 255, 0.05);
                  transition: transform 0.4s ease;
                }
                
                .counter-box:hover .circle {
                  transform: scale(1.1);
                }



                
                .custom-profile-card:hover {
                  transform: translateY(-5px);
                  transition: 0.3s ease;
                }
                
                .card-img-top {
                  height: 250px;
                  object-fit: cover;
                }
                
                #readMoreBtn {
                  transition: background-color 0.2s;
                }
                
                #readMoreBtn:hover {
                  background-color: #0d6efd;
                  color: #fff;
                }
                
       
                                 
                .hover-card {
                  position: relative;
                  cursor: pointer;
                }
                
                .img-fit {
                  width: 100%;
                  height: 100%;
                  object-fit: cover;
                  transition: transform 0.5s ease;
                }
                
                .hover-card:hover .img-fit {
                  transform: scale(1.05);
                }
                
                .overlay-text {
                  position: absolute;
                  top: 0;
                  left: 0;
                  height: 100%;
                  width: 100%;
                  background-color: rgba(0, 0, 0, 0.6);
                  opacity: 0;
                  transform: translateY(20px);
                  transition: all 0.5s ease;
                }
                
                .hover-card:hover .overlay-text {
                  opacity: 1;
                  transform: translateY(0);
                }
                
                
                
                
                                   
                    .gallery {
                      display: flex;
                      flex-wrap: wrap;
                      gap: 15px;
                      justify-content: center;
                    }
                
                    .gallery img {
                      width: 100%;
                      height: 200px;
                      object-fit: cover;
                      border-radius: 6px;
                      cursor: zoom-in;
                      transition: transform 0.3s ease;
                    }
                
                    .gallery-item {
                      flex: 0 0 calc(25% - 15px);
                      max-width: calc(25% - 15px);
                    }
                
                    .gallery img:hover {
                      transform: scale(1.05);
                    }
                
                    .extra-image {
                      display: none;
                    }
                
                    #seeMoreBtn {
                      margin-top: 30px;
                      display: inline-block;
                      padding: 10px 20px;
                      background-color: #0d6efd;
                      color: #fff;
                      border: none;
                      border-radius: 4px;
                      cursor: pointer;
                    }
                
                    #seeMoreBtn:hover {
                      background-color: #084fc1;
                    }
                
                    /* Lightbox Modal */
                    .lightbox-modal {
                      display: none;
                      position: fixed;
                      top: 0; left: 0;
                      width: 100vw; height: 100vh;
                      background-color: rgba(0, 0, 0, 0.9);
                      z-index: 9999;
                      justify-content: center;
                      align-items: center;
                    }
                
                    .lightbox-modal img {
                      max-width: 90%;
                      max-height: 90%;
                      animation: zoomIn 0.5s ease;
                    }
                
                    .lightbox-close {
                      position: absolute;
                      top: 20px;
                      right: 30px;
                      font-size: 40px;
                      color: white;
                      cursor: pointer;
                    }
                
                    @keyframes zoomIn {
                      from { transform: scale(0.8); opacity: 0; }
                      to { transform: scale(1); opacity: 1; }
                    }
                
                    @media (max-width: 768px) {
                      .gallery-item {
                        flex: 0 0 calc(50% - 10px);
                        max-width: calc(50% - 10px);
                      }
                    }
                
                    @media (max-width: 480px) {
                      .gallery-item {
                        flex: 0 0 100%;
                        max-width: 100%;
                      }
                    }




        
        .footer-link {
          color: #ccc;
          text-decoration: none;
          display: block;
          padding: 4px 0;
          transition: 0.3s;
        }
        .footer-link:hover {
          color: #ffc107;
          padding-left: 5px;
        }
        
        .social-icon {
          font-size: 18px;
          color: #fff;
          margin-right: 10px;
          transition: 0.3s;
        }
        .social-icon:hover {
          color: #ffc107;
        }

