body {
    font-family: 'Poppins', sans-serif;
    /* Applying Poppins font to the entire site */
    overflow-x: hidden;
}

/* Sticky Top Bar */
.top-bar {
    position: sticky;
    top: 0;
    z-index: 1001; /* Ensure it stays on top of the navigation bar */
    background-color: #f8f9fa; /* Light background color */
    border-bottom: 0.2px solid #333;
    padding: 10px 0; /* Padding for top bar */
}
.top-bar .container {
    padding-left: 20px;
    /* Left margin for the container */
    padding-right: 0;
    margin-left: 0%;
}

.top-bar .contact-info {
    font-size: 0.9rem;
    color: #343a40 !important;
    /* Dark gray text */
    cursor: pointer;
}

.top-bar .contact-info .divider {
    margin: 0 10px;
    /* Spacing around the divider */
    border-left: 1px solid #343a40;
    /* Thin gray vertical line */
    height: 18px;
    /* Height of the divider */
}

.top-bar .social-icons {
    position: relative;
    left: 400px;
    /* Move the social icons 400px to the right */
    margin-right: 20px;
    /* Add a 20px gap between the icons and the screen edge */
}

.top-bar .social-icons a {
    color: #354abf;
    /* Blue color for social icons */
    margin-right: 15px;
}
.top-bar .social-icons a:hover{
    color: #f6c344 !important;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

}


/*Header Section*/

.header {
    background-color: #f8f9fa;
    /* Light background color */
    padding: 20px 0;
    /* Vertical padding for spacing */
    /* border-bottom: 2px solid #007bff; */
    /* Blue underline for a subtle creative touch */
}

.header .logo img {
    width: 140px !important;
    /* Set image width */
    height: auto;
    /* Maintain aspect ratio */
}

.first-logo {
    margin-top: -10px;
    margin-left: 100px;
}

.second-logo {
    margin-left: 130px !important;
    height: 100px !important;
}

.header .heading-subheading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    /* Allow column to take up available space */
    padding: 0 15px;
    /* Optional: Add padding to ensure spacing around text */
}


.header .heading-subheading h1 {
    font-size: 1.8rem;
    /* Adjust font size as needed */
    margin: 0;
    white-space: nowrap;
    /* Prevent text from wrapping to a new line */
    overflow: visible;
    /* Ensure overflow is visible */
    text-align: center;
    /* Center the text */
    margin-top: 10px;
}

.header .heading-subheading h2 {
    font-size: 1.2rem;
    /* Font size for subheading */
    color: #6c757d;
    /* Light gray color */
    margin: 0;
    text-align: center;
    /* Center the text */
    width: 100%;
    /* Ensure it takes full width of its container */
    margin-top: 19px;
}

/* Sticky Navbar */
.navbar {
    position: sticky;
    top: 40px;
    z-index: 1000;
    /* Ensure it stays on top of other content */
    width: 100%;
    /* Ensure it spans the full width of the page */
    background-color: #2f24c1 !important;
    /* Optional: Set a background color */
    border-bottom: 0.5px solid white;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    /* White text color */
    font-weight: 600;
    /* Semi-bold text */
    padding: 12px 20px;
    /* Add padding for larger clickable area */
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Smooth transition for hover effects */
    margin-right: 12px;
    margin-left: 15px;
}

.navbar-nav .nav-link:hover {
    background-color: #d4edda;
    /* Darker blue for hover effect */
    color: #000000 !important;
    /* Light color for text on hover */
    border-radius: 5px;
    /* Rounded corners */
}

.navbar-nav .dropdown-menu {
    background-color: #2f24c1;
    /* Match dropdown menu background with navbar */
    border: none;
    /* Remove default border */
    border-radius: 5px;
    /* Rounded corners for dropdown */
}

.navbar-nav .dropdown-item {
    color: #ffffff !important;
    /* White text color */
}

.navbar-nav .dropdown-item:hover {
    background-color: #d4edda;
    /* Darker blue for dropdown item hover effect */
    color: #000000 !important;
    /* Ensure text color remains white */
}

.navbar-brand {
    display: none !important;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
     
    .header{
        padding-top: 0px;
    }
    
    /* Centering the first logo */
    .header .logo img:first-of-type {
        display: block;
        margin: 0 auto;
        /* Center horizontally */
        max-width: 130px;
        /* Ensure logo size */
    }

    /* Adjust font size for smaller screens */
    .header .navbar-brand {
        font-size: 1.5rem !important;
        /* Slightly reduce font size */
        white-space: normal !important;
        /* Allow text to wrap if necessary */
        text-align: left !important;
        /* Center align the text */
    }

    .second-logo {
        display: none !important;
    }

    /* Centering the subheading under the first logo */
    .header .heading-subheading {
        text-align: center;
        /* Center text */
        padding: 0 15px;
        /* Optional: Ensure spacing around text */
    }

    /* Make sure subheading is centered */
    .header .heading-subheading h2 {
        margin-top: 10px;
        /* Add space between h1 and h2 */
        font-size: 1rem;
        /* Adjust font size for smaller screens */
        color: #6c757d;
        /* Light gray color */
    }

    .h1-class {
        font-size: 1rem !important;
    }
    .navbar {
        top: 0px !important;
    }

    .navbar-brand {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .navbar-brand .social-icons {
        display: none !important; /* Hide social icons on mobile view */
    }

    .navbar-brand .mobile-text {
        display: block;
        color: white !important;
        text-align: center;
        font-size: 1.2rem;
        width: 100%;
        padding: 10px 0; /* Adjust padding as needed */
    }
    .custom-envelope{
        color: white;
        font-size: 13px;
    }
    .mail-mobile{
        color: white;
        font-size: 13px;
    }
    .divider-mobile-view{
        color: white;
        margin-left: 8px;
    }
    .custom-phone{
        margin-left: 8px;
        color: white;
        font-size: 12px;
    }
    .phone-mobile{
        color: white;
        font-size: 12px;
    }

    .navbar-toggler {
        margin-left: auto;
    }

    .navbar {
        padding-left: 6px !important;
    }

    /* Align nav items to the left */
    .navbar-nav {
        text-align: left;
    }

    .navbar-nav .nav-item {
        width: 100%;
        /* Make each item take full width */
    }

    .navbar-nav .nav-link {
        padding-left: 20px;
        /* Adjust left padding as needed */
    }
    
    .custom-toggler {
        border: 3px solid #f6c344; /* Remove the default border */
        background-color: transparent; /* Make the background transparent */
        outline: none; /* Remove focus outline */
    }
    
    .custom-toggler .navbar-toggler-icon {
        display: inline-block;
        position: relative;
        width: 24px;
        height: 24px;
    }
    
    .custom-toggler .navbar-toggler-icon::before,
    .custom-toggler .navbar-toggler-icon::after,
    .custom-toggler .navbar-toggler-icon span {
        content: '';
        display: block;
        width: 100%;
        height: 3px; /* Thickness of the bars */
        color: white; /* Pure white color */
        border-radius: 2px;
        position: absolute;
    }
    
    .custom-toggler .navbar-toggler-icon::before {
        top: 0;
    }
    
    .custom-toggler .navbar-toggler-icon::after {
        bottom: 0;
    }
    
    .custom-toggler .navbar-toggler-icon span {
        top: 50%;
        transform: translateY(-50%);
    }
    
    
    
}

@media only screen and (min-width: 320px) and (max-width: 380px) {
    .h1-class{
        font-size: 15px !important;
    }
    .mobile-mail-number{
        text-align: left;
        position: relative;
        left: 1.5px;
        margin: 0px !important;
        padding: 0px !important;
        font-size: 12px;
    }

    .custom-envelope{
        color: white;
        font-size: 13px;
    }
    .mail-mobile{
        color: white;
        font-size: 12px;
    }
    .divider-mobile-view{
        color: white;
        margin-left: 5px;
    }
    .custom-phone{
        margin-left: 4px;
        color: white;
        font-size: 11px;
    }
    .phone-mobile{
        color: white;
        font-size: 12px;
    }

    .navbar-toggler {
        margin-left: auto;
    }
}

/* Breadcrumb */
.breadcrumb-section {
    height: 30vh; /* Set the height to 30% of the viewport height */
    background-color: #EFFAFD; /* Light background color */
    display: flex;
    align-items: center; /* Center breadcrumb vertically */
    justify-content: center; /* Center breadcrumb horizontally */
    padding: 20px 0; /* Add padding for better spacing */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add a light shadow for better separation */
}

/* breadcrumb-section */
.breadcrumb-section {
    height: 15vh; /* Set the height to 30% of the viewport height */
    margin-bottom: 30px;
    position: relative; /* Position relative to use pseudo-elements */
    display: flex;
    align-items: center; /* Center breadcrumb vertically */
    justify-content: center; /* Center breadcrumb horizontally */
    padding: 20px 0; /* Add padding for better spacing */
    color: #fff; /* Text color */
    overflow: hidden; /* Hide any overflow */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add a light shadow for better separation */
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('path-to-your-image.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.2; /* Light opacity for a subtle effect */
    z-index: 0; /* Ensure the image is behind the content */
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: none; /* Remove default background */
    position: relative; /* Position relative to ensure z-index works */
    z-index: 1; /* Ensure breadcrumb text is on top of background */
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #A0006D; /* White color for the breadcrumb separator */
}

.breadcrumb-item a {
    color: #A0006D; /* White link color */
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: none; /* Underline on hover */
}

.breadcrumb-item.active {
    color: #ffffff; /* White color for the active breadcrumb item */
}

/* Slider */
 /* Carousel inner image styling */
 .carousel-inner img {
    object-fit: cover;
    height: 100%;
}

/* Adjustments for prev/next buttons */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 50%, 50%;
	width: 100%;  /* Make sure the icon width matches the button */
    height: 100%; /* Make sure the icon height matches the button */
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    
    text-decoration: none;
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-size: 40%, 40%;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }
}

/* About */
.container-fluid {
    display: flex;
    padding: 0;
    /* Remove default padding */
    box-sizing: border-box;
    /* Ensure padding and border are included in element's total width and height */
    margin-top: 30px !important;
    background: none !important;
}

.left-section {
    width: 75%;
    /* 75% width */

    display: flex;
    flex-direction: column;
    /* Stack rows vertically */
    box-sizing: border-box;
    /* Ensure padding is included in width */
}



.left-section .row {
    display: flex;
    width: 100%;
    padding: 10px;
    /* Add padding */
    box-sizing: border-box;
    /* Ensure padding is included in width */
}

.left-section .column {
    padding: 10px;
    /* Adjust padding as needed */
}

.left-section .column.col-35 {
    width: 32% !important;
    /* 35% width */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Ensure the image doesn't overflow the container */
    position: relative;
    left: 88px;
}

.left-section .column.col-35 img {
    max-width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    transform: scale(1.7);
    /* Permanently zoom the image */
    border-radius: 4px;

}

.left-section .column.col-65 {
    width: 61%;
    /* 65% width */
    margin-left: 20px;
    position: relative;
    left: 75px;
    text-align: justify;
}

.left-section .column p {
    margin: 0;
    /* Remove default margin for paragraphs */
}

.read-more-link {
    color: #2f24c1;
    /* Text color for the link */
    text-decoration: none;
    /* Remove underline */
    font-weight: normal;
    /* Bold text */
    margin-left: 8px;
    /* Add some space before the link */
    transition: transform 0.3s ease;
    /* Smooth zoom effect on hover */
    display: inline-block;
    /* Allow the transform effect to apply */
}

.read-more-link:hover {
    transform: scale(1.1);
    /* Zoom effect on hover */
   
}


/* Right Section */
.right-section {
    background-color: #f0f4f8;
    width: 25%;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    height: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px; /* Space around the section */
}

.heading {
    font-size: 24px;
    font-weight: bold;
    color: #2B3949;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #2B3949;
    padding-bottom: 10px;
}

.scrolling-container {
    height: calc(100% - 50px); /* Adjust for heading height */
    overflow: hidden;
    position: relative;
}

.news-list {
            position: absolute;
            width: 100%;
        }

        .news-item {
            padding: 10px 20px;
            border-bottom: 1px solid #ddd;
        }

        .news-item a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
        }

.scroll-item {
    padding: 15px 10px;
    font-size: 16px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    color: #000; /* Black text color */
    font-weight: bold; /* Bold text */
}

.scroll-item:hover {
    background-color: #d4edda;
    cursor: pointer;
}

@keyframes scroll-up {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

@media (max-width: 767px) {
    .container-fluid {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .left-section, .right-section {
        width: 100%;
        margin-bottom: 20px;
    }

    .left-section .row {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0px !important;
        margin-left: 0px;
    }

    .left-section .column.col-35, .left-section .column.col-65 {
        width: 100% !important;
        position: relative;
        left: 0px !important;
    }

    .left-section .column.col-35 img {
        width: 100% !important ;
        height: 200px;
        border-radius: 8px;
        transform: scale(1.2);
        position: relative;
        left: 0px;
        object-fit: cover;
        display: block;
    }

    .left-section .column.col-65 {
        width: 100%;
        /* 65% width */
        margin-left: 0px;
        position: relative;
        left: 0px !important;
        text-align: justify;
        padding-left: 10px;
    }

    .left-section .column.col-65 p {
        text-align: justify;
        margin-top: 10px;
        padding: 0;
        
    }

    .right-section .heading {
        text-align: center;
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .right-section .scrolling-container {
        width: 100%;
        overflow: hidden;
    }

    .right-section .book-list {
        padding: 0;
        margin: 0;
        list-style: none;
        font-size: 1em;
    }

    .right-section .scroll-item {
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid #ccc;
    }
}




/* Director */
#director-section {
  
    padding: 40px 20px;
    padding-bottom: 0px !important;
    border-radius: 15px;
    margin-top: 30px;
    width: 100%;
    /* Set the width to 80% */
    margin-left: auto;
    /* Center the section horizontally */
    margin-right: auto;
    /* Center the section horizontally */
    height: 60% !important;
    margin-bottom: 30px;
}

.director-photo {
    position: relative;
    width: 64%;
    /* Adjust as needed */
    height: 98%;
    margin-bottom: 20px;
    /* Space between photo and text */
    border-radius: 8px;
    /* Rounded corners */
    overflow: hidden;
    /* Ensure the border-radius is applied */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Subtle shadow */
    text-align: center;
    /* Center-align the name */
    position: relative;
    right: 20px;
}

.director-photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.director-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem !important;
    color: #2B3949;
    /* Match with the theme color */
    margin-top: 15px;
    /* Add space between the photo and the name */
    margin-bottom: 0 !important;
}



#director-section .row {
    display: flex;
    justify-content: flex-start;
    /* Align items to the start (left) */
}

.col-md-8 {
    margin-right: auto;
    /* Push the content to the left */
    position: relative;
    right: 90px;
}


#director-section h2 {
    color: #2B3949;
    /* Dark blue color for the heading */
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    /* Uppercase text for emphasis */
    letter-spacing: 1px;
    /* Spacing between letters */
}

#director-section h3 {
    color: #2B3949;
    /* Dark blue color for the subtitle */
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    /* Space between subtitle and content */
}

#director-section p {
    color: #333;
    line-height: 1.6;
    max-height: none;
    /* Allow height to adjust automatically */
    text-align: justify;
    
}

#director-section .read-more-btn {
    margin-top: 10px;
    background-color: #2B3949;
    /* Dark blue color */
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    /* Apply Poppins font to button */
}

.read-more-link {
    color: #2f24c1;
    /* Text color for the link */
    text-decoration: none !important;
    /* Remove underline */
    font-weight: normal;
    /* Normal text weight */
    margin-left: 8px;
    /* Add some space before the link */
    transition: transform 0.3s ease;
    /* Smooth zoom effect on hover */
    display: inline-block;
    /* Allow the transform effect to apply */
}

.read-more-link:hover {
    transform: scale(1.1);
    /* Zoom effect on hover */
}

@media (max-width: 768px) {
    #director-section {
        padding: 20px;
        width: 100%;
        /* Adjust to full width on smaller screens */
        justify-content: center !important;
    }

    #director-section .director-photo {
        width: 80%;
        /* Adjusted width for smaller screens */
        padding-top: 0%;
        /* Adjust aspect ratio for smaller screens */
        margin-left: 40px;
    }

    .col-md-8 {
        margin-right: auto;
        /* Push the content to the left */
        position: relative;
        right: 0px;
    }
    .director-heading{
        font-size: 25px !important;
    }
}

/* Gallery */

/* Image Container with Marquee Effect */
.image-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    background: #f8f9fa;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #d1dbe1;
    margin-bottom: 30px;
}

.marquee-image {
    height: 200px; /* Adjust height as needed */
    width: 200px;  /* Adjust width as needed */
    display: inline-block;
    animation: marquee 10s linear infinite;
    margin-right: 10px; /* Space between images */
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.marquee-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Custom Lightbox Styles */
.custom-lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 80px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.custom-lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    
    border-radius: 10px;
}

.custom-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.custom-close:hover {
    color: #f6c344;
}

.custom-prev, .custom-next {
    cursor: pointer;
    position: absolute;
    top: 35%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s;
    border-radius: 0 3px 3px 0;
    background-color: rgba(0, 0, 0, 0.5);
    user-select: none;
}

.custom-prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.custom-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.custom-prev:hover, .custom-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .custom-lightbox{
        top: 30px;
    }
    .custom-prev, .custom-next{
        top: 43%;
        background-color: transparent;
    }
    .custom-close {
        position: absolute;
        top: 15px;
        right: 5px;
        color: white;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
        transition: color 0.3s;
    }
   
}

/* footer section */

.footer {
    background-color: #000000dd;
    background-image: radial-gradient(rgba(255, 255, 255, 0.403) 0.2px, transparent 0.5px);
    background-size: 10px 10px;
    color: #ffffff;
}

.footer h5 {
    font-weight: bold;
}

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

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #d4edda;
}

.footer p {
    margin-bottom: 0.5rem;
}

.divider-line {
    border-top: 1px solid #ffffff;
    margin: 2rem 0;
}

.copyright {
    text-align: center;
    margin-top: 1rem;
    color: white;
}

.footer-span {
    color: white;
    cursor: pointer;
}

.footer-span:hover {
    color: #d4edda;
}

.footer-link {
    margin-bottom: 0.5rem;
}