 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 /* Dropdown opens on hover */
 /* TOP Bar */

 body {
     padding-top: 0;
 }

 p {
     text-align: justify;
 }


 /* Main Headings */
 .main-heading {
     text-align: center;
     margin: 0 auto 0px;
     position: relative;
     line-height: 60px;
     color: #555 !important;
 }

 .main-heading::after {
     content: "";
     background-color: #ff523b;
     width: 120px;
     height: 5px;
     border-radius: 5px;
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translate(-50%);
 }


 .navbar {
     transition: box-shadow 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
     padding: 1rem 1rem;
     /* normal padding */
     background-color: transparent;
     /* initial bg */
 }

 .navbar.fixed-top {
     background-color: #7a1712;
     /* or your navbar bg */
     padding: 0.6rem 1rem;
     /* slightly reduce padding when fixed */
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
 }

 .nav-item.dropdown:hover .dropdown-menu {
     display: block;
     margin-top: 0;
 }

 .menu-scroll {
     overflow-x: auto;
     white-space: nowrap;
     -webkit-overflow-scrolling: touch;
 }

 /* Hide scrollbar (optional) */
 .menu-scroll::-webkit-scrollbar {
     display: none;
 }


 .navbar .nav-link {
     color: white !important;
     font-weight: 600;
     transition: color 0.3s ease;
 }

 .navbar .nav-link:hover {
     color: yellow !important;
 }

 .dropdown-menu {
     background-color: #7a1712;
     border: none;
 }

 .dropdown-menu .dropdown-item {
     color: #000;
     font-weight: 600;
     transition: background-color 0.3s, color 0.3s;
 }

 .dropdown-menu .dropdown-item:hover {
     background-color: #7a1712;
     color: yellow;
 }


 /* Hero Section Start */
 .swiper {
     width: 100%;
     height: 100%;
 }

 .swiper-slide {
     text-align: center;
     font-size: 18px;
     background: #444;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .swiper-slide img {
     display: block;
     width: 100%;
     height: 100%;
     object-fit: cover;
 }



 /* Hero Section Ends */
 /* About Start */
 .about-heading {
     text-align: center;
     margin: 0 auto 0px;
     position: relative;
     line-height: 60px;
     color: #000;
 }

 .about-heading::after {
     content: "";
     background-color: #ff523b;
     width: 120px;
     height: 5px;
     border-radius: 5px;
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translate(-50%);
 }

 .hover-shadow {
     transition: box-shadow 0.3s ease;
 }

 .hover-shadow:hover {
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
 }

 .learn-more-btn:hover {
     background-color: #d21404 !important;
     color: #ffffff !important;
 }

 .bg-whitesmoke {
     background-color: whitesmoke !important;
 }

 .zoom-hover {
     transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
 }

 .zoom-hover:hover {
     transform: scale(1.02);
     box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
 }

 .accordion-button:hover {
     color: #4169ea;
 }

 /* About Ends */


 /* Patron and committee Start */
 .patron-card {
     transition: transform 0.3s ease-in-out;
 }

 .patron-card:hover {
     transform: scale(1.05);
     z-index: 2;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
 }

 .row .col {
     overflow: visible;
 }

 /* Patron and committee Ends */

 /* Submission Start */
 .hover-scale:hover {
     transform: scale(1.05);
     transition: transform 0.3s ease;
 }

 /* Submission Ends */

 /* Glimpses Start */
 .glimpses-heading {
     text-align: center;
     margin: 0 auto 0px;
     position: relative;
     line-height: 60px;
     color: #000 !important;
 }

 .glimpses-heading::after {
     content: "";
     background-color: #ff523b;
     width: 120px;
     height: 5px;
     border-radius: 5px;
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translate(-50%);
 }

 .glimpses-section p {
     font-size: 1.2rem;
     /* slightly larger paragraph text */
     line-height: 1.5;
 }

 .glimpses-section h2 {
     font-size: 2.2rem;
     /* increased size for main heading */
     line-height: 1.4;
     color: #7a1712;

 }

 .glimpses-section h5 {
     font-size: 1.3rem;
     /* slightly larger subheading */
     line-height: 1.5;
     color: #d21404;
 }

 /* Glimpses Ends */
 /* Gallery Start */
 .image-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
}


.image-modal img {
    display: block;
    margin: auto;
    max-width: 90vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: zoom 0.3s ease;
}

 @keyframes zoom {
     from {
         transform: scale(0.8);
         opacity: 0;
     }

     to {
         transform: scale(1);
         opacity: 1;
     }
 }

 .close-btn {
     position: absolute;
     top: 20px;
     right: 35px;
     color: #fff;
     font-size: 35px;
     font-weight: bold;
     cursor: pointer;
     z-index: 1060;
     transition: 0.3s;
 }

 .close-btn:hover {
     color: #ccc;
 }

 /* Gallery Ends */


 /* Tourist Section Start  */
 /* Hide map initially */
 .map-iframe {
     opacity: 0;
     transition: opacity 0.5s ease-in-out;
     pointer-events: none;
 }

 /* Show map only when hovering on the image container */
 .image-hover-container:hover .map-iframe {
     opacity: 1;
 }


 /* Tourist Section Ends  */


 /* Footer Start */


 .quick-links a {
     /* font-size: 18px; */
     color: white !important;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .quick-links a:hover {
     color: red !important;
 }


 /* Footer Ends */