/* Global Styles */
:root {
    --primary-color: #283e72;
    --secondary-color: #f69a30;
    --accent-color: #e67e22;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --transition: all 0.3s ease;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-color);
  line-height: 1.5;
}

/* Utility Classes */
.divider {
    width: 60px;
    height: 3px;
    background-color: #f69a30;
    margin-top: 10px;
    margin-bottom: 20px;
}
.lead {
    font-weight: normal;
    text-align: justify;
    font-size: 1.15rem;
    line-height:30px;
}
/*Topbar*/
#topbar {
    background: #283e72;
    padding:0px 10px;
}
    #topbar i {
        color: #f79b30;
        font-size:13px;
        vertical-align:middle;
    }
    #topbar a{
        text-decoration:none;
        color:#ddd;
        font-size:14px;
        padding:3px 5px;
        vertical-align:middle
    }
    #topbar a:hover, #topbar a:focus {
        color:#fff;
        text-decoration:none;
    }
    #topbar .btn-donate {
        position: relative;
        display: inline-block;
        padding: 5px 30px;
        background-color: #f79b30;
        color: #000;
        font-size: 13px;
        letter-spacing: 1px;
        font-weight: bold;
        text-transform: uppercase;
        border: none;
        border-radius: 0px;
        text-decoration: none;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
        #topbar .btn-donate:hover, #topbar .btn-donate:focus {
            color:#000;
        }
        #topbar .btn-donate::before {
            content: '';
            position: absolute;
            top: 0;
            left: -75%;
            width: 50%;
            height: 100%;
            background: linear-gradient( 120deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.1) 100% );
            transform: skewX(-20deg);
            animation: shine 2s infinite;
        }

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}


@keyframes pulseZoom {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}


/* Navigation */
/* Show dropdown on hover */
.navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0; /* Optional: remove jump effect */
}

.navbar-nav .dropdown-toggle::after {
    display: none; /* Optional: hide the caret if not needed */
}
/* Hover dropdown for desktop only */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  padding: 0px 0px;
}
.nav-link i {
    font-size:12px;
}
.navbar-brand {
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  padding:20px 5px;
}
    .navbar-brand:hover {
        color: var(--primary-color);
    }
    .khanda-icon {
        margin-right: 10px;
        color: var(--secondary-color);
        font-size: 1.5rem;
    }
    .khanda-icon img{
        width:50px;
        height:auto;
    }
    .nav-link {
        color: var(--dark-color);
        font-weight: 500;
        padding: 2.07rem 1rem !important;
        transition: var(--transition);
    }

        .nav-link:hover, .nav-link.active {
            color: #f79b30;
        }

.navbar .dropdown-menu {
    border-top: 0px solid #f79b30;
    border-radius: 0px;
}
    .navbar .dropdown-menu .dropdown-item {
        color:#000;
    }
        .navbar .dropdown-menu .dropdown-item:hover, .navbar .dropdown-menu .dropdown-item:focus {
            background: #f59a30;
            color: #000;
        }
        /* Hero Section */
        .hero-section {
            position: relative;
        }

.carousel-item {
  height: 70vh;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  filter: brightness(0.7);
}

.carousel-caption {
  bottom: 25%;
  z-index: 10;
}

.carousel-caption h1 {
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 3rem;
}

.carousel-caption p {
  font-size: 1.25rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about-section {
  background-color: var(--light-color);
}

.section-title h2 {
  color: var(--primary-color);
  font-weight: 700;
}

.blockquote {
  border-left: 4px solid var(--secondary-color);
  background-color: rgba(212, 175, 55, 0.1);
}

/* History Section */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 3px;
  background-color: var(--secondary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 10px 40px;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-date {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  top: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.timeline-item:nth-child(odd) .timeline-date {
  right: -40px;
}

.timeline-item:nth-child(even) .timeline-date {
  left: -40px;
}

.timeline-content {
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  margin-left:10px;
  margin-right:10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
  color: var(--primary-color);
  margin-top: 0;
}

/* Gallery Section */
#photos {
    background: #283e72;
}
.gallery-item {
  position: relative;
  margin-bottom: 0px;
  overflow: hidden;
  border-radius: 0px;
}

.gallery-item img {
  transition: var(--transition);
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(40, 62, 114, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  border-radius: 0px;
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}
/*About Bg Section*/

.about-bg {
    position: relative;
    background-image: url('../Images/about-bg.jpg');
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
    height: 300px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

    .about-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7); /* Overlay */
        z-index: 2;
    }

.about-content {
    position: relative;
    z-index: 3;
}

    .about-content h1 {
        margin: 0;
        font-size: 45px;
        font-weight: bold;
    }

.breadcrumb {
    margin-top: 10px;
    font-size: 16px;
    justify-content:center;
}

    .breadcrumb a {
        color: #f79b30;
        text-decoration: none;
    }

    .breadcrumb span {
        color: #ccc;
    }

/* Video Section */
.video-card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.video-card .card-title {
  color: var(--primary-color);
}

/* Events Section */
.event-card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.event-date {
  background-color: var(--primary-color);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  float: left;
  margin-right: 15px;
}

.event-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.event-details {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.event-details li {
  margin-bottom: 5px;
}

.event-details li i {
  color: var(--secondary-color);
  margin-right: 8px;
}
/* News and Press Release Section */
#newspress {
    background: #283e72;
}
.newspress-info {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    .newspress-info h3,
    .newspress-info h4 {
        color: var(--primary-color);
        font-weight: bold;
        position: relative; /* Needed for positioning the line */
        padding-bottom: 10px; /* Optional spacing */
    }

        /* Line under headings */
        .newspress-info h3::after,
        .newspress-info h4::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;right:0;
            margin:auto;
            width: 50px; /* Line width */
            height: 3px; /* Line thickness */
            background-color: #f79b30;
            border-radius: 2px;
            transition: width 0.4s ease;
        }
        .newspress-info h3:hover::after,
        .newspress-info h4:hover::after {
            width: 80px;
        }
    .newspress-info h6 {
        margin-bottom:5px;
        padding:5px 0px;
    }
    .newspress-info img {
        width:auto;
        height:200px;
        border:1px solid #ddd;
        padding:1px;
    }
    .newspress-info i {
        color: var(--secondary-color);
        margin-right: 10px;
    }
    .newspress-info p {
        margin-bottom:5px;
        border-bottom:1px solid #ddd;
        padding:10px 0px;
    }
    .newspress-info p a {
        background: #0080ff;
        padding: 3px 10px;
        color: #fff;
        text-decoration: none;
        font-size: 14px;
    }
    .map-container {
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
/* Contact Section */
.contact-info {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h3, .contact-info h4 {
  color: var(--primary-color);
}

.contact-info i {
  color: var(--secondary-color);
  margin-right: 10px;
}

.map-container {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: white;
}

    .footer h3,
    .footer h4 {
        color: white;
        margin-bottom: 20px;
        font-size:22px;
        padding:10px 0px;
        position: relative;
        display: inline-block; /* Ensures the line matches the text width */
    }

        .footer h3::after,
        .footer h4::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 40%;
            height: 3px;
            margin-top:5px;
            background-color: #f79b30;
        }


.footer-links ul {
  list-style: none;
  padding-left: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}
.footer p{
    margin-bottom:0px;
}
.social-links a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin-right: 10px;
  transition: var(--transition);
}

    .social-links a:hover {
        background-color: #f79b30;
        color:#000;
        transform: translateY(-3px);
    }

.footer-newsletter input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  margin-bottom: 10px;
}

.copyright {
  background-color: rgba(0, 0, 0, 0.2);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #f79b30;
    color: #000;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight:bold;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.active {
  opacity: 1;
  visibility: visible;
}

    .scroll-to-top:hover {
        background-color: #f38a0a;
    }
    /* Icon animation */
    .scroll-to-top i {
        animation: bounceUp 1.5s infinite ease-in-out;
    }

@keyframes bounceUp {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}
/* Responsive Styles */
@media (max-width: 991.98px) {
  .carousel-item {
    height: 60vh;
  }
  
  .carousel-caption h1 {
    font-size: 2.5rem;
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-date {
    width: 60px;
    height: 60px;
    font-size: 0.9rem;
    left: 0;
  }
  
  .timeline-item:nth-child(odd) .timeline-date {
    right: auto;
    left: 0;
  }
    .nav-link {
        color: var(--dark-color);
        font-weight: 500;
        padding: .5rem 1rem !important;
        transition: var(--transition);
    }
}

@media (max-width: 767.98px) {
  .carousel-item {
    height: 50vh;
  }
  
  .carousel-caption h1 {
    font-size: 2rem;
  }
  
  .carousel-caption p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
}
/* Carousel container styles */
#heroCarousel {
    position: relative;
    overflow: hidden;
}

/* Fade effect */
.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

    /* Show the active item */
    .carousel-item.active {
        position: relative;
        opacity: 1;
        z-index: 1;
    }
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    background-color: rgba(40, 62, 114, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
    height:50px;
    width:50px;
    border-radius:50px;
}
    .carousel-arrow:hover, .carousel-arrow:focus {
        background: #f69a30;
        color:#000;
    }

    .carousel-arrow.left {
        left: 10px;
    }

    .carousel-arrow.right {
        right: 10px;
    }
.image-wrapper {
    position: relative;
    display: inlineblock;
}
    /* Dots under the image */
.dots-grid-under {
    position: absolute;
    bottom: -20px; /* Adjust as needed to place slightly under */
    left: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#f79b30 2px, transparent 2px);
    background-size: 20px 20px;
    animation: floatDots 10s linear infinite;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

/* Optional floating animation */
@keyframes floatDots {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 40px;
    }
}
.btn-readmore {
    display: inline-block;
    padding: 12px 28px;
    background-color: #283e72; /* Custom coral-red */
    color: #fff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(255, 111, 97, 0.3);
}

    /* Hover animation: grow + bounce + icon slide */
    .btn-readmore:hover {
        background-color: #f79b30;
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(255, 111, 97, 0.5);
    }

    /* Icon animation */
    .btn-readmore i {
        transition: transform 0.3s ease;
    }

    .btn-readmore:hover i {
        transform: translateX(6px);
    }
.btn-viewall {
    display: inline-block;
    padding: 12px 28px;
    background-color: #f79b30; /* Custom coral-red */
    color: #000;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

    /* Hover animation: grow + bounce + icon slide */
    .btn-viewall:hover {
        background-color: #f79b30;
        color:#000;
        transform: scale(1.05);
    }

    /* Icon animation */
    .btn-viewall i {
        transition: transform 0.3s ease;
    }

    .btn-viewall:hover i {
        transform: translateX(6px);
    }
.contact-icon {
    color: #f79b30; /* Bootstrap Primary */
    margin-bottom: 10px;
    font-size: 1.2rem;
    vertical-align: middle;
}
.goog-te-gadget-icon {
    display: none;
}


.goog-te-gadget-simple {
    background-color: #283e72 !important;
    border: 0 !important;
    font-size: 10pt;
    font-weight: normal;
    display: inline-block;
    padding: 0px 5px !important;
    cursor: pointer;
    zoom: 1;
}

    .goog-te-gadget-simple span {
        color: #fff !important;
    }