/*** Spinner Start ***/
/*** Spinner ***/



@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Custom CSS */
/* Section Styling */
.section-heading {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-dark-blue); /* Updated from #1a1a1a to match new theme */
}

.section-subheading {
    font-family: var(--font-secondary);
    color: var(--color-dark-red); /* Changed from blue to dark red for accent */
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.content-text {
    font-family: var(--font-secondary);
    line-height: 1.8;
    color: var(--color-dark-blue); /* Updated from #444444 for better contrast */
}

/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--color-deep-green); /* Changed from bs-primary to deep green */
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--color-deep-green) !important; /* Updated border color */
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--color-deep-green) !important; /* Updated border color */
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--color-deep-green); /* Changed from bs-primary */
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--color-deep-green) !important; /* Updated border color */
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--color-deep-green) !important; /* Updated border color */
}

/* Spinner */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Styles ***/
.btn {
    font-weight: 600;
    transition: 0.5s;
    border: 2px solid var(--color-medium-green); /* Updated from off-gray */
}

/* Square Button Sizes */
.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

/* Primary Button */
.btn.btn-primary {
    background-color: var(--color-dark-red);
    color: var(--color-text-white);
    border: 2px solid var(--color-dark-red);
    box-shadow: inset 0 0 0 0 var(--color-dark-red);
    transition: box-shadow 0.5s, background-color 0.5s, color 0.5s, border-color 0.5s;
}

.btn.btn-primary:hover {
    background-color: var(--color-text-white) !important;
    color: var(--color-dark-red) !important;
    border-color: var(--color-dark-red);
    box-shadow: inset 300px 0 0 0 var(--color-text-white) !important;
}

/* Light Button */
.btn.btn-light {
    background-color: var(--color-text-white);
    color: var(--color-deep-green);
    border: 2px solid var(--color-deep-green);
    box-shadow: inset 0 0 0 0 var(--color-deep-green);
    transition: box-shadow 0.5s, background-color 0.5s, color 0.5s, border-color 0.5s;
}

.btn.btn-light:hover {
    background-color: var(--color-deep-green) !important;
    color: var(--color-text-white) !important;
    border-color: var(--color-deep-green);
    box-shadow: inset 300px 0 0 0 var(--color-deep-green) !important;
}

/* Hover Effect */
.btn-hover {
    transition: 0.5s;
    border: 2px solid var(--color-deep-green);
}

.btn-hover:hover {
    background-color: var(--color-text-white) !important;
    color: var(--color-deep-green) !important;
    border-color: var(--color-deep-green);
}






/*** Modern Navbar Styling ***/
/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--color-dark-blue) !important; /* Using our new dark blue/black color */
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--color-dark-blue) !important;
}

/* Hover and active link color */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--color-dark-red) !important; /* Changed to dark red for hover state */
}

/* Navbar brand logo size and transition */
.navbar-light .navbar-brand img {
    max-height: 80px;
    padding: 10px;
    transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 65px;
}

/* Dropdown toggle icon customization */
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

/* Dropdown Menu Styles */
@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: translateY(10px);
        transform-origin: top;
        border: none;
        border-radius: 0;
        padding: 0;
        box-shadow: 0 4px 10px rgba(15, 34, 61, 0.1); /* Updated shadow color */
        background-color: #FFFFFF;
        transition: 0.3s ease;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        visibility: visible;
        transform: translateY(0);
        opacity: 1;
    }
}

/* Dropdown Links */
.navbar .dropdown-menu .dropdown-item {
    padding: 12px 20px;
    color: var(--color-dark-blue);
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 14px;
    border-bottom: 1px solid var(--color-light-green); /* Updated border color */
}

.navbar .dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
}

.navbar .dropdown-menu .dropdown-item:hover {
    background-color: var(--color-deep-green); /* Changed hover background */
    color: var(--color-text-white) !important;
}

/* Responsive Dropdown Styles */
@media (max-width: 991.98px) {
    .navbar .dropdown-menu {
        position: relative;
        transform: none;
        visibility: visible;
        opacity: 1;
        box-shadow: none;
        background-color: #FFFFFF;
    }

    .navbar .dropdown-menu .dropdown-item {
        border-bottom: 1px solid var(--color-light-green);
    }

    .navbar .dropdown-menu .dropdown-item:hover {
        background-color: var(--color-deep-green);
        color: var(--color-text-white) !important;
    }
}

/* Overall Navbar Link Hover Styles */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--color-dark-red) !important; /* Changed to dark red */
}

/* Responsive navbar styles */
@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF; /* Keeping white background */
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--color-dark-red);
        color: var(--color-dark-red);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid var(--color-light-green);
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--color-dark-blue) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 90px;
    }
}

/* Navbar styles for larger screens */
@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(39, 79, 53, 0.1); /* Updated border color */
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF !important; /* Keeping white background */
    }

    /* Underline effect for nav links */
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--color-dark-red); /* Changed underline color */
        transition: 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    /* Exclude underline for specific links */
    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}



/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    padding: 160px 0 60px 0;
    background-attachment: fixed; /* Makes the background image fixed for parallax effect */
}

/* Breadcrumb link styling, if needed */
.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}
/*** Single Page Hero Header End ***/












/********************************/
/*     color theme new          */
/********************************/





:root {
    /* Primary Colors */
    --color-dark-red: #b5201d;          /* Your dark red */
    --color-deep-green: #274f35;        /* Your deep green */
    --color-yellow: #f5d11d;            /* Your yellow */
    --color-dark-blue: #0f223d;         /* Your dark blue/black */

    /* Light Variations */
    --color-light-red: #ffeaea;         /* Light shade of red */
    --color-light-green: #eaf4ef;       /* Light shade of green */
    --color-light-yellow: #fff9e6;      /* Light shade of yellow */
    --color-light-background: #f5f7fa;  /* Light background */

    /* Medium Variations */
    --color-medium-red: #d84845;        /* Medium shade of red */
    --color-medium-green: #3a6b4a;      /* Medium shade of green */
    --color-medium-yellow: #f7da4b;     /* Medium shade of yellow */
    
    /* Hover States */
    --color-red-hover: #c83532;         /* Hover state for red */
    --color-green-hover: #315c40;       /* Hover state for green */
    --color-yellow-hover: #f6d643;      /* Hover state for yellow */

    /* Gradients */
    --gradient-primary: linear-gradient(to right, rgba(181, 32, 29, 0.5), rgba(39, 79, 53, 0.5));
    --gradient-secondary: linear-gradient(to right, rgba(15, 34, 61, 0.8), rgba(39, 79, 53, 0.8));
    
    /* Text Colors */
    --color-text-white: #ffffff;
    --color-text-dark: #0f223d;
    
    /* Utility Colors */
    --color-topBar: #0f223d;            /* Using your dark blue for top bar */
    --color-footer-gradient-start: #b5201d;
    --color-footer-gradient-end: #274f35;
}



/********************************/
/*     Section Styling          */
/********************************/
.carousel-section {
   padding: 0 0 0 0;
   overflow: hidden;
}

/* For tablets */
@media screen and (max-width: 989px) {
    .carousel-section {
        padding: 0;
    }
}

/* For mobile phones */
@media screen and (max-width: 480px) {
    .carousel-section {
        padding: 0;
    }
}

/********************************/
/*      Carousel Styling        */
/********************************/
.fade-carousel {
    position: relative;
    height: 55vh;
    overflow: hidden;
    margin: 15px;
}

.fade-carousel .carousel-inner .carousel-item {
    height: 55vh;
    background-position: center;
    background-size: cover;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    border-radius: 15px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 55vh;
    object-fit: cover;
    width: 100%;
}

/********************************/
/*            Overlay           */
/********************************/
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        135deg, 
        rgba(181, 32, 29, 0.3),  /* Dark red with opacity */
        rgba(39, 79, 53, 0.3)    /* Deep green with opacity */
    );
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(2px);
}

/********************************/
/*       Text Styling           */
/********************************/
.carousel-text {
    color: var(--color-text-white);
    font-family: 'Open Sans', sans-serif;
    padding: 30px;
    max-width: 800px;
    text-shadow: 2px 2px 4px rgba(15, 34, 61, 0.3);
}

.carousel-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    animation-duration: 1s;
    letter-spacing: -0.5px;
}

.carousel-text p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    animation-duration: 1.5s;
    line-height: 1.6;
    opacity: 0.9;
}

/********************************/
/*       Dots Styling           */
/********************************/
.header-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.header-carousel .owl-dots .owl-dot {
    background-color: rgba(255, 255, 255, 0.5) !important;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.header-carousel .owl-dots .owl-dot.active {
    background-color: var(--color-text-white) !important;
    transform: scale(1.2);
    border-color: var(--color-dark-red);
}

/********************************/
/*       Navigation Styling     */
/********************************/
.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -30px;
    right: -30px;
    width: calc(100% + 60px);
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    pointer-events: auto;
    background-color: var(--color-deep-green) !important;
    color: var(--color-text-white);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(15, 34, 61, 0.2);
    opacity: 0.9;
}

.header-carousel .owl-nav .owl-prev {
    margin-left: 10px;
}

.header-carousel .owl-nav .owl-next {
    margin-right: 10px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background-color: var(--color-text-white) !important;
    color: var(--color-deep-green);
    transform: scale(1.1);
    opacity: 1;
}

.header-carousel .owl-nav .owl-prev i,
.header-carousel .owl-nav .owl-next i {
    font-size: 22px;
    line-height: 1;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .header-carousel .owl-nav {
        left: -15px;
        right: -15px;
        width: calc(100% + 30px);
    }

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        width: 40px;
        height: 40px;
    }

    .header-carousel .owl-nav .owl-prev i,
    .header-carousel .owl-nav .owl-next i {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .header-carousel .owl-nav {
        left: -10px;
        right: -10px;
        width: calc(100% + 20px);
    }

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        width: 35px;
        height: 35px;
    }

    .header-carousel .owl-nav .owl-prev i,
    .header-carousel .owl-nav .owl-next i {
        font-size: 16px;
    }
}

/********************************/
/*       Responsive Design      */
/********************************/
@media screen and (max-width: 991px) {
    .fade-carousel,
    .fade-carousel .carousel-inner .carousel-item,
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 55vh;
    }

    .carousel-text {
        padding: 20px;
    }
}

@media screen and (max-width: 640px) {
    .header-carousel .owl-nav {
        padding: 0 10px;
    }

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        width: 35px;
        height: 35px;
    }

    .header-carousel .owl-nav .owl-prev i,
    .header-carousel .owl-nav .owl-next i {
        font-size: 16px;
    }

    .carousel-text {
        padding: 15px;
    }
}

/* Animation Enhancement */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-text h1,
.carousel-text p {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Optional: Add smooth transition for images */
.header-carousel .header-carousel-item img {
    transition: transform 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}




/********************************/
/*       Top   Navbar           */
/********************************/
.nav {
    background-color: var(--color-dark-blue); /* Using our dark blue/black color */
}

/* Social media icon color and hover effects */
.social li a {
    color: var(--color-dark-red); /* Changed to dark red for icons */
    transition: color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    padding: 3px;
    border-radius: 50%;
    font-size: 20px;
}

.social li a:hover {
    color: var(--color-text-white) !important;
    background-color: var(--color-dark-red) !important; /* Changed to dark red */
    border-color: var(--color-text-white) !important;
    transform: scale(1.05);
}

/********************************/
/*       Top   Navbar  End      */
/********************************/

.bg-primary {
    background-color: var(--color-deep-green) !important; /* Changed from #1bb397 */
}

.text-primary {
    color: var(--color-dark-blue) !important; /* Changed from #000 */
}

.border-primary {
    border-color: var(--color-deep-green) !important; /* Changed from #1bb397 */
}
/********************************/
/*     NEWs sections          */
/********************************/
.bg-light {
  background-color: #f8f9fa !important;
}

.rounded-start {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.btn-outline-primary {
  border-color: #1bb397;
  color: #1bb397;
}

.btn-outline-primary:hover {
  background-color: #1bb397;
  color: #fff;
}

/* General styling for tabs */
.nav-tabs {
    background-color: #ffffff; 
    border: none; /* Remove the border */
    padding: 10px 0; /* Add padding to give space between tabs */
}

.nav-tabs .nav-item .nav-link {
    color: #000; 
    border: none; /* Remove borders around individual tabs */
    padding: 10px 20px; /* Add padding to the tabs */
    margin-right: 5px; /* Space between tabs */
}

.nav-tabs .nav-item .nav-link.active {
    background-color: #1bb397; 
    color: #ffffff; 
    border-bottom: 2px solid #1bb397; 
}

.nav-tabs .nav-item .nav-link:hover {
    background-color: #1bb397  /* Light hover effect #f8f9fa; */
    color: #1bb397; /* Green text color on hover */
}

/* Responsive design for tabs */
@media (max-width: 768px) {
    .nav-tabs {
        padding: 5px 0; /* Adjust padding for smaller screens */
    }

    .nav-tabs .nav-item .nav-link {
        padding: 8px 15px; /* Adjust tab padding for smaller screens */
    }
}

/* Styling for the list group in the "Upcoming Events" section */
.list-group-item {
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 10px 15px; /* Add padding for better spacing */
}

.list-group-item a {
    color: #1bb397; /* Green text for event links */
    text-decoration: none; /* Remove underline */
}

.list-group-item a:hover {
    color: #148e6d; /* Darker green for hover effect */
    text-decoration: underline; /* Underline on hover */
}

/* Brown color for event date section */
.bg-brown {
    background-color: #6f4f28 !important;
    color: white; /* Ensure text is readable on dark background */
    padding: 5px 10px; /* Add padding to improve readability */
}

/* Button styles to match the green color theme */
.btn-dark {
    background-color: #1bb397; /* Green background */
    border-color: #1bb397; /* Green border */
    color: white; /* White text */
    padding: 10px 20px; /* Add padding to buttons */
}

.btn-dark:hover {
    background-color: #148e6d; /* Darker green on hover */
    border-color: #148e6d; /* Darker green border on hover */
}

/* Responsive design for buttons */
@media (max-width: 768px) {
    .btn-dark {
        padding: 8px 15px; /* Adjust button padding for smaller screens */
    }
}
/********************************/
/*     NEWs sections  end       */
/********************************/



/********************************/
/*    About section start      */
/********************************/



/* General Styling for the About Section */
#about {
    background-color:#faf9f5 ;
    padding-top: 60px; /* Extra space above */
    padding-bottom: 60px; /* Extra space below */
}




/* School Description Styling */
#about .lead {
    
    font-size: 1.2rem;
    margin-bottom: 30px; /* Space after the description */
}

/* Mission and Vision Styling */
#about .row h4 {
   color:#1bb397;
    font-weight: bold;
    margin-bottom: 10px;
}

#about .row p {
    color: #666; /* Dark gray text color for the content */
    font-size: 1rem;
}

/* Image Styling */
#about .img-fluid {
    border-radius: 15px; /* Rounded corners for the image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow around the image */
}


/* Styling for the Achievement Cards     */

#about .card {
    position: relative; /* Ensure positioning of pseudo-elements */
    border-radius: 10px;
    border: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Ensure pseudo-elements do not overflow card corners */
    transition: transform 0.3s ease-in-out;
}

#about .card:before,
#about .card:after {
    content: '';
    position: absolute;
    z-index: -1;
    transition: all 1s ease;
}

#about .card:before {
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #1bb397; /* Initial color for the effect */
}

#about .card:after {
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background-color: #1bb397; /* Initial color for the effect */
}

#about .card:hover:before,
#about .card:hover:after {
    width: 100%; /* On hover, the color will fill the width */
    height: 100%; /* Color will fill the height */
}

#about .card:hover {
    transform: translateY(-10px); /* Slight movement on hover */
}

#about .card:hover .card-body {
    color: #fff; /* Change text color when hovering */
}

#about .card:hover .card-title {
    color: #fff; /* Change card title color on hover */
}

#about .card:hover .card-text {
    color: #fff; /* Change card description text color on hover */
}

#about .card:hover:before {
    width: 100%; /* Full width from top to bottom */
    height: 100%; /* Full height from top to bottom */
    top: 0;
    left: 0;
}

#about .card:hover:after {
    width: 100%; /* Full width from bottom-right */
    height: 100%; /* Full height from bottom-right */
    bottom: 0;
    right: 0;
}

/* Optional: Add text color change on hover */
#about .card:hover .card-body {
    color: white;
}

@media (max-width: 768px) {
    #about .card {
        transform: none; /* Remove hover effect on smaller screens */
    }
}


/* Reusable Card Effect CSS */
.effect-card {
    position: relative; /* Ensure positioning of pseudo-elements */
    border-radius: 10px;
    border: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Ensure pseudo-elements do not overflow card corners */
    transition: transform 0.3s ease-in-out;
}

.effect-card:before,
.effect-card:after {
    content: '';
    position: absolute;
    z-index: -1;
    transition: all 1s ease;
}

.effect-card:before {
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #1bb397; /* Initial color for the effect */
}

.effect-card:after {
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background-color: #1bb397; /* Initial color for the effect */
}

.effect-card:hover:before,
.effect-card:hover:after {
    width: 100%; /* On hover, the color will fill the width */
    height: 100%; /* Color will fill the height */
}

.effect-card:hover {
    transform: translateY(-10px); /* Slight movement on hover */
}

.effect-card:hover .card-body {
    color: #fff; /* Change text color when hovering */
}

.effect-card:hover .card-title {
    color: #fff; /* Change card title color on hover */
}

.effect-card:hover .card-text {
    color: #fff; /* Change card description text color on hover */
}

.effect-card:hover:before {
    width: 100%; /* Full width from top to bottom */
    height: 100%; /* Full height from top to bottom */
    top: 0;
    left: 0;
}

.effect-card:hover:after {
    width: 100%; /* Full width from bottom-right */
    height: 100%; /* Full height from bottom-right */
    bottom: 0;
    right: 0;
}

/* Optional: Add text color change on hover */
.effect-card:hover .card-body {
    color: white;
}

/* Remove hover effect on small screens */
@media (max-width: 768px) {
    .effect-card {
        transform: none; /* Remove hover effect on smaller screens */
    }
}



/* History Timeline List */
#about .list-group-item {
    border: none; /* Remove border from list items */
    background-color: #f8f9fa; /* Light background for list items */
    padding: 15px;
    font-size: 1rem;
    border-radius: 10px; /* Rounded corners for list items */
    margin-bottom: 10px; /* Space between items */
}

#about .list-group-item strong {
    color: #1bb397; /* Green color for years or important highlights */
    font-weight: bold;
}

#about .list-group-item:hover {
    background-color: #e9f5f1; /* Light green background on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #about h2 {
        font-size: 2rem; /* Smaller font size for mobile screens */
    }

    #about h3 {
        font-size: 1.5rem; /* Smaller font size for subsections */
    }

    #about .lead {
        font-size: 1rem; /* Smaller font size for mobile */
    }

    /* Adjust the layout for smaller screens */
    .custom-nav-tabs .nav-item .nav-link {
        padding: 8px 15px; /* Adjust padding for smaller screens */
    }

    .col-lg-6 {
        text-align: center; /* Center text on mobile */
        margin-bottom: 30px; /* Add some space below the image */
    }

    .img-fluid {
        max-width: 100%; /* Limit image width on smaller screens */
    }

    .card {
        margin-bottom: 20px; /* Space between cards */
    }

    .list-group-item {
        font-size: 0.95rem; /* Adjust font size for list items on mobile */
    }
}

.animated-divider {
    position: relative;
    height: 4px;
    background: linear-gradient(to right, #1bb397, #1b98e0);
    margin: 0 auto;
    overflow: hidden;
    width: 0; /* Initial width */
    animation: expandDivider 2s ease-in-out forwards; /* Trigger animation on load */
}

/* Keyframes for divider expansion */
@keyframes expandDivider {
    from {
        width: 0;
    }
    to {
        width: 100%; /* Full width on animation end */
    }
}

/* parallax-quote-section */

.parallax-quote-section {
    position: relative;
    background-image: url('https://lvajorhat.h24x7.in/uploads/gallery/media/674d858bcf29-b.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px; /* Allows growth for content */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #1bb397, #1b98e0);
    opacity: 0.8;
    z-index: 1;
}

.counter-box {
    position: relative;
    color: white;
    text-align: center;
    padding: 20px 0; /* Increased padding for better spacing */
}

.counter-box .counter {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}

.counter-box h4 {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .parallax-quote-section {
        background-attachment: scroll; /* Disables fixed background for smaller devices */
        padding: 20px 0; /* Adds padding for content */
 min-height: 600px;

    }
    .counter-box .counter {
        font-size: 2rem; /* Smaller font for counters */
    }
    .counter-box h4 {
        font-size: 1rem; /* Adjust heading size */
    }
}






@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}





   .gallery-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }
        .tz-gallery .col-sm-4 {
            padding: 5px;
        }











/* General Footer Styles */
.footer {
    background: var(--gradient-primary); /* Using our theme gradient */
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-item {
    padding: 10px;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--color-text-white);
}

/* Logo and Contact Info */
.footer-logo {
    max-width: 120px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* Clean and lightweight social media styles */
.social-media-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-media-icons a {
    font-size: 25px;
    color: var(--color-text-white);
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative;
}

.social-media-icons a:hover {
    color: var(--color-yellow); /* Using our theme yellow instead of gold */
    transform: scale(1.2);
}

/* Tooltip styling */
.social-tooltip {
    display: none;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-dark-blue);
    color: var(--color-text-white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-media-icons a:hover .social-tooltip {
    display: block;
    opacity: 1;
}

/* Location Map */
iframe {
    border-radius: 8px;
}

/* Word Wrap for Email */
.word-break {
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Responsive Design */
@media (max-width: 767px) {
    .footer-title {
        font-size: 16px;
    }

    .footer-logo {
        max-width: 100px;
    }

    ul.list-unstyled li a {
        font-size: 13px;
    }
}

/* Add the border on larger screens (from md and up) */
.custom-border-footer {
    border-right: 3px solid var(--color-text-white);
}

/* Remove the border for medium screens and below */
@media (max-width: 991px) {
    .custom-border-footer {
        border-right: none;
    }
}

/* General copyright Styles */
.copyright {
    background-color: var(--color-dark-blue); /* Using our theme dark blue */
}





.gallery-item {
    position: relative;
  }

  .image-container {
    width: 100%;
    height: 200px; /* Adjust height as needed */
    overflow: hidden;
  }

  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the container */
    border-radius: 0; /* No border-radius */
  }



/*Admission from css */

  .admissoncardfrom{
 border: 1px solid #1bb397;

      
    }









/* About Section Styles */
.about-section {
    background-color: #ffffff;
}

/* Custom Divider */
.divider-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
}

.divider-custom .line {
    width: 100px;
    height: 2px;
    background: var(--color-dark-red);
    opacity: 0.3;
}

.divider-custom .icon {
    padding: 0 20px;
    color: var(--color-dark-red);
}

/* Card Hover Effect */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

/* Icon Box Styling */
.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.hover-card:hover .icon-box {
    transform: scale(1.1);
}

/* Image Hover Effect */
.hover-img {
    transition: transform 0.3s ease;
}

.hover-img:hover {
    transform: scale(1.05);
}

/* Feature Box Styling */
.feature-box {
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.feature-box:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.05);
}

/* Responsive Typography */
@media (max-width: 768px) {
    .display-5 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}





/* Video Gallery Section Styles */
.video-gallery-section {
    background-color: #f8f9fa;
}

/* Featured Video Styles */
.featured-video-wrapper {
    transition: transform 0.3s ease;
}

.featured-video-wrapper:hover {
    transform: translateY(-5px);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    transition: opacity 0.3s ease;
}

/* Video Cards Styling */
.video-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.video-card .card-body {
    padding: 1.5rem;
}

.video-card .card-title {
    font-family: var(--font-primary);
    color: #1a1a1a;
    font-weight: 600;
}

.video-card .card-text {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Custom Divider */
.divider-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
}

.divider-custom .line {
    width: 100px;
    height: 2px;
    background: var( --color-dark-red);
    opacity: 0.3;
}

.divider-custom .icon {
    padding: 0 20px;
    color: var( --color-dark-red);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .video-card {
        margin-bottom: 20px;
    }
    
    .featured-video-wrapper {
        margin-bottom: 30px;
    }
}




/* Section Typography */
.section-subheading {
    font-family: var(--font-secondary);
    color: var(--bs-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.section-heading {
    font-family: var(--font-primary);
    font-weight: 700;
    color: #1a1a1a;
}


/* Video Gallery Section Styles */
.video-gallery-section {
    background-color: #f8f9fa;
}

/* Featured Video Styles */
.featured-video-wrapper {
    transition: transform 0.3s ease;
}

.featured-video-wrapper:hover {
    transform: translateY(-5px);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    transition: opacity 0.3s ease;
}

/* Video Cards Styling */
.video-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.video-card .card-body {
    padding: 1.5rem;
}

.video-card .card-title {
    font-family: var(--font-primary);
    color: #1a1a1a;
    font-weight: 600;
}

.video-card .card-text {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Custom Divider */
.divider-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
}

.divider-custom .line {
    width: 100px;
    height: 2px;
    background: var( --color-dark-red);
    opacity: 0.3;
}

.divider-custom .icon {
    padding: 0 20px;
    color: var( --color-dark-red);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .video-card {
        margin-bottom: 20px;
    }
    
    .featured-video-wrapper {
        margin-bottom: 30px;
    }
}




/* Section Typography */
.section-subheading {
    font-family: var(--font-secondary);
    color: var(--bs-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.section-heading {
    font-family: var(--font-primary);
    font-weight: 700;
    color: #1a1a1a;
}




/* Vision Mission Section Styles */
.vision-mission-section {
    background-color: #f8f9fa;
}

.content-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.card-header-custom {
    text-align: center;
    margin-bottom: 2rem;
}

/* Vision & Mission Lists */
.vision-list,
.mission-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vision-item,
.mission-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.vision-item:hover,
.mission-item:hover {
    transform: translateX(10px);
    background: #f0f0f0;
}

.vision-item i,
.mission-item i {
    margin-top: 4px;
}

.vision-item p,
.mission-item p {
    margin-bottom: 0;
    margin-left: 10px;
}

/* Goal Items */
.goal-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    height: 100%;
    transition: transform 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    background: #f0f0f0;
}

.goal-item h5 {
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

/* Section Typography */
.section-heading {
    font-family: var(--font-primary);
    font-weight: 700;
    color: #1a1a1a;
}

.section-subheading {
    font-family: var(--font-secondary);
    color: var(--bs-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Custom Divider */
.divider-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
}

.divider-custom .line {
    width: 100px;
    height: 2px;
    background: var(--color-dark-red);
    opacity: 0.3;
}

.divider-custom .icon {
    padding: 0 20px;
    color: var(--color-dark-red);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content-card {
        margin-bottom: 2rem;
    }
    
    .vision-item,
    .mission-item {
        padding: 0.75rem;
    }
    
    .goal-item {
        margin-bottom: 1rem;
    }
}


/* Counter Section Styles */
.counter-section {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                url('path-to-your-background-image.jpg') center/cover no-repeat;
}

/* Counter Box Styles */
.counter-box {
    background: var(--color-text-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(15, 34, 61, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.counter-box:hover {
    transform: translateY(-10px);
}

/* Counter Icon */
.counter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: var(--color-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-icon i {
    font-size: 2.5rem;
    color: var(--color-deep-green);
}

/* Counter Numbers */
.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-dark-red);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.counter-number .plus {
    font-size: 2rem;
    font-weight: 500;
}

/* Counter Label */
.counter-label {
    font-size: 1.1rem;
    color: var(--color-dark-blue);
    opacity: 0.7;
    margin-bottom: 0;
    font-weight: 500;
}

/* Animation for Counter Box */
@keyframes countUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.counter-box {
    animation: countUp 0.8s ease-out forwards;
}

/* Testimonial Section Styles */
.testimonial-section {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                url('path-to-your-background-image.jpg') center/cover no-repeat;
    position: relative;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--color-text-white);
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 5px 20px rgba(15, 34, 61, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Quote Icon */
.quote-icon {
    font-size: 2rem;
background: var(--color-dark-red);
    color: var(--color-deep-green);
    opacity: 0.2;
    margin-bottom: 1rem;
}

/* Testimonial Content */
.testimonial-text {
    font-size: 1.1rem;
    color: var(--color-dark-blue);
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(15, 34, 61, 0.1);
    padding-top: 1.5rem;
}

.author-image {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
    border: 3px solid var(--color-deep-green);
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    color: var(--color-dark-blue);
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--color-dark-blue);
    opacity: 0.6;
    font-size: 0.9rem;
}





/* Responsive Adjustments */
@media (max-width: 768px) {
    .counter-box {
        margin-bottom: 1rem;
    }

    .counter-number {
        font-size: 2.5rem;
    }

    .counter-icon {
        width: 60px;
        height: 60px;
    }

    .counter-icon i {
        font-size: 2rem;
    }
}



/* Carousel Navigation */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: var(--color-deep-green) !important;
    color: var(--color-text-white) !important;
    font-size: 1.5rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.owl-nav button:hover {
    opacity: 1;
    background: var(--color-green-hover) !important;
}

.owl-prev {
    left: -20px;
}

.owl-next {
    right: -20px;
}

/* Dots Navigation */
.owl-dots {
    text-align: center;
    margin-top: 2rem;
}

.owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background: var(--color-light-green) !important;
}

.owl-dot.active {
    background: var(--color-deep-green) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        margin: 0.5rem;
    }

    .owl-nav button {
        display: none !important;
    }
}



/* About Section Styles */
.about-section {
    background-color: var(--color-light-background);
    position: relative;
}

/* Enhanced Branch Card Styles */
.branch-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: var(--color-text-white);
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(15, 34, 61, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 34, 61, 0.05);
}

.branch-card:hover {
    transform: translateX(10px);
    background: var(--color-light-green);
    border-color: var(--color-deep-green);
}

.branch-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--color-light-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
}

.branch-card:hover .branch-icon {
    background: var(--color-deep-green);
    color: var(--color-text-white);
}

.branch-icon i {
    font-size: 1.75rem;
    color: var(--color-deep-green);
    transition: all 0.3s ease;
}

.branch-card:hover .branch-icon i {
    color: var(--color-text-white);
}

.branch-details h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark-blue);
    font-weight: 600;
}

.branch-details p {
    font-size: 0.95rem;
    color: var(--color-dark-blue);
    opacity: 0.7;
    margin-bottom: 0;
}

/* Badge Styles */
.badge {
    padding: 0.5em 1em;
    font-weight: 500;
}

/* Enhanced Establishment Info */
.establishment-info {
    padding: 1rem 1.5rem;
    background: var(--color-text-white);
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 3px 15px rgba(15, 34, 61, 0.05);
    border: 1px solid rgba(15, 34, 61, 0.05);
}

.establishment-info p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Section Typography */
.section-subheading {
    color: var(--color-dark-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-heading {
    font-weight: 700;
    color: var(--color-dark-blue);
}

.about-content h3 {
    color: var(--color-dark-red);
    font-weight: 700;
}

.about-content .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark-blue);
    opacity: 0.9;
}

/* Call to Action Section Styles */
.cta-section {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                url('path-to-subtle-pattern.jpg');
    position: relative;
}

/* CTA Box Styles */
.cta-box {
    background: var(--color-text-white);
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(15, 34, 61, 0.08);
    transition: all 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-5px);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--color-deep-green);
}

/* Icon Styles */
.cta-icon {
    width: 70px;
    height: 70px;
    background: var(--color-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: floatIcon 3s ease-in-out infinite;
}

.cta-icon i {
    font-size: 2rem;
    color: var(--color-deep-green);
}

/* Content Styles */
.cta-box h3 {
    color: var(--color-dark-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-box p {
    color: var(--color-dark-blue);
    opacity: 0.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    min-height: 48px;
}

/* Button Styles */
.cta-box .btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-box .btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(39, 79, 53, 0.2);
}

/* Update Info Styles */
.update-info {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 34, 61, 0.1);
}

.update-info small {
    font-size: 0.85rem;
    color: var(--color-dark-blue);
    opacity: 0.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cta-box {
        padding: 2rem;
        margin-bottom: 1rem;
    }

    .cta-box p {
        min-height: auto;
    }
}

/* Animation */
@keyframes floatIcon {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}






/* Notifications Section Styles */
.notifications-section {
    background-color: var(--color-light-background);
}

/* Tabs Styling */
.notification-tabs .nav-pills {
    background: var(--color-text-white);
    padding: 1rem;
    border-radius: 50px;
    box-shadow: 0 0 45px rgba(15, 34, 61, 0.08);
}

.notification-tabs .nav-link {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    color: var(--color-dark-blue);
    transition: all 0.3s ease;
}

.notification-tabs .nav-link.active {
    background: var(--color-deep-green);
    color: var(--color-text-white);
}

.notification-tabs .nav-link:not(.active):hover {
    background: var(--color-light-green);
}

/* Notification Item Styling */
.notification-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notification-item {
    display: flex;
    align-items: flex-start;
    background: var(--color-text-white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 0 45px rgba(15, 34, 61, 0.08);
    transition: transform 0.3s ease;
    position: relative;
}

.notification-item:hover {
    transform: translateY(-5px);
}

/* Notification Icon */
.notification-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--color-light-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.notification-icon i {
    font-size: 1.5rem;
    color: var(--color-deep-green);
}

.notification-icon.student {
    background: var(--color-light-red);
}

.notification-icon.student i {
    color: var(--color-dark-red);
}

/* Notification Content */
.notification-content {
    flex: 1;
}

.notification-content h5 {
    margin-bottom: 0.5rem;
    color: var(--color-dark-blue);
}

.notification-content p {
    color: var(--color-dark-blue);
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

/* Notification Meta */
.notification-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-dark-blue);
    opacity: 0.6;
}

/* Notification Status */
.notification-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.notification-status.new {
    background: var(--color-light-green);
    color: var(--color-deep-green);
}

.notification-status.urgent {
    background: var(--color-light-red);
    color: var(--color-dark-red);
}

/* Pagination Styling */
.pagination {
    margin-top: 2rem;
}

.pagination .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 5px;
    border: none;
    color: var(--color-dark-blue);
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: var(--color-light-green);
    color: var(--color-deep-green);
}

.pagination .page-item.active .page-link {
    background: var(--color-deep-green);
    color: var(--color-text-white);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .notification-tabs .nav-link {
        padding: 0.75rem 1.25rem;
    }

    .notification-item {
        flex-direction: column;
    }

    .notification-icon {
        margin-bottom: 1rem;
    }

    .notification-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}


/* School Information Section Styles */
.school-info-section {
    background-color: #f8f9fa;
}

/* Custom Accordion Styles */
.custom-accordion .accordion-item {
    border: none;
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0,0,0,0.08);
}

.custom-accordion .accordion-button {
    padding: 1.5rem;
    background: #fff;
    font-weight: 600;
    color: #333;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--bs-primary);
    background: #fff;
    box-shadow: none;
}

.custom-accordion .accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.3s ease;
}

/* Admission Classes Grid */
.admission-classes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.class-item {
    background: rgba(var(--bs-primary-rgb), 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.class-item:hover {
    transform: translateY(-5px);
}

/* Subject Grid */
.subject-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.subject-card {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.subject-card:hover {
    transform: translateY(-5px);
}

.subject-card i {
    font-size: 2rem;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

/* Timings Grid */
.timings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.timing-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(var(--bs-primary-rgb), 0.05);
    border-radius: 10px;
}

/* Safety & Uniform Info */
.safety-uniform-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-section {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.info-section ul {
    list-style: none;
    padding-left: 0;
}

.info-section ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.info-section ul li:last-child {
    border-bottom: none;
}

/* Info Cards */
.info-card {
    background: rgba(var(--bs-primary-rgb), 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    height: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .admission-classes,
    .subject-grid,
    .timings-grid,
    .safety-uniform-info {
        grid-template-columns: 1fr;
    }
    
    .custom-accordion .accordion-button {
        padding: 1rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Facilities Section Styles */
.facilities-section {
    background-color: var(--color-light-background);
}

/* Section Header Styles */
.facilities-section .section-subheading {
    color: var(--color-dark-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.facilities-section .section-heading {
    color: var(--color-dark-blue);
    font-weight: 700;
}

/* Divider Custom */
.divider-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.divider-custom .line {
    width: 100px;
    height: 2px;
    background: var(--color-deep-green);
    opacity: 0.3;
}

.divider-custom .icon {
    color: var(--color-deep-green);
    font-size: 1.5rem;
}

/* Facility Card Styles */
.facility-card {
    background: var(--color-text-white);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 0 45px rgba(15, 34, 61, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 34, 61, 0.05);
}

.facility-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-deep-green);
}

/* Facility Icon Styles */
.facility-icon {
    width: 70px;
    height: 70px;
    background: var(--color-light-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.facility-card:hover .facility-icon {
    background: var(--color-deep-green);
}

.facility-icon i {
    font-size: 2rem;
    color: var(--color-deep-green);
    transition: all 0.3s ease;
}

.facility-card:hover .facility-icon i {
    color: var(--color-text-white);
}

/* Facility Content */
.facility-content h4 {
    color: var(--color-dark-blue);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

/* Facility List */
.facility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-list li {
    display: flex;
    align-items: center;
    color: var(--color-dark-blue);
    opacity: 0.8;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.facility-list li i {
    color: var(--color-deep-green);
    font-size: 1rem;
}

/* Animation */
.wow {
    visibility: hidden;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .facility-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .facility-card {
        padding: 1.5rem;
    }

    .facility-icon {
        width: 60px;
        height: 60px;
    }

    .facility-icon i {
        font-size: 1.5rem;
    }

    .facility-content h4 {
        font-size: 1.2rem;
    }

    .facility-list li {
        font-size: 0.95rem;
    }

    .divider-custom .line {
        width: 60px;
    }
}




/* Course Tags */
.courses-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.course-tag {
    background: var(--color-light-gray);
    color: var(--color-navy-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.course-tag:hover {
    background: var(--color-blue);
    color: var(--color-text-white);
}

/* Info Boxes */
.appointment-info, .certificate-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--color-dark-blue);
    border-radius: 10px;
    margin-top: 1rem;
}

.appointment-info i, .certificate-info i {
    color: var(--color-blue);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .facility-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .facility-card {
        height: auto; /* Allow height to adjust on smaller screens */
    }

    .facility-content h3 {
        font-size: 1.3rem;
    }

    .courses-grid {
        gap: 0.5rem;
    }

    .course-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}



/* Gallery Section Styles */
.gallery-section {
    background: var(--color-light-background);
}

/* Filter Buttons */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: var(--color-text-white);
    color: var(--color-navy-blue);
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 45px rgba(13, 71, 161, 0.08);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-blue);
    color: var(--color-text-white);
}

/* Gallery Grid */
.gallery-grid {
    position: relative;
    min-height: 400px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(33, 150, 243, 0), rgba(13, 71, 161, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Lightbox Customization */
.lb-data .lb-caption {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-white);
}

.lb-data .lb-number {
    color: var(--color-text-white);
}

/* Animation Classes */
.fadeIn {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .gallery-item img {
        height: 250px;
    }
}



/* Notification Styles */
.notifications-section {
    background-color: var(--color-light-background);
}

.text-primary {
    color: var(--color-deep-green) !important;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.current-time {
    font-size: 0.85rem;
    margin-top: 10px;
    color: var(--color-dark-blue);
    opacity: 0.7;
}

/* Notice Card */
.notice-card {
    background: var(--color-text-white);
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(15, 34, 61, 0.05);
    height: 100%;
    transition: transform 0.2s ease;
}

.notice-card:hover {
    transform: translateY(-5px);
}

/* Notice Header */
.notice-header {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(15, 34, 61, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.notice-header i {
    color: var(--color-deep-green);
    font-size: 1.2rem;
}

.notice-header h5 {
    margin: 0;
    color: var(--color-dark-blue);
    font-weight: 600;
}

/* Notice Body */
.notice-body {
    padding: 1.25rem;
    min-height: 200px;
}

/* Notice Item */
.notice-item {
    padding: 15px;
    margin-bottom: 15px;
    background: var(--color-light-background);
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.notice-item:hover {
    background: var(--color-light-green);
    transform: translateX(5px);
}

.notice-item:last-child {
    margin-bottom: 0;
}

.notice-item .date {
    color: var(--color-dark-blue);
    opacity: 0.6;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 8px;
}

.notice-item h6 {
    color: var(--color-dark-blue);
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.notice-item p {
    color: var(--color-dark-blue);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* New Tag */
.new-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--color-dark-red);
    color: var(--color-text-white);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
}

/* Notice Link */
.notice-link {
    color: var(--color-deep-green);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.notice-link:hover {
    color: var(--color-dark-blue);
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 20px;
    color: var(--color-dark-blue);
    opacity: 0.6;
}

.loading-spinner i {
    margin-right: 10px;
}

/* Error State */
.error-message {
    text-align: center;
    padding: 20px;
    color: var(--color-dark-red);
}

/* No Data State */
.no-data {
    text-align: center;
    padding: 20px;
    color: var(--color-dark-blue);
    opacity: 0.6;
    font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .notice-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .notice-header, .notice-body {
        padding: 1rem;
    }
    
    .notice-item {
        padding: 12px;
    }
}





/* Principal Message Section Styles */
.principal-message-section {
    background-color: #ffffff;
    position: relative;
}

/* Principal Image Styles */
.principal-image-wrapper {
    position: relative;
    padding: 1rem;
height:100%
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
height:100%
}

.image-container img {
    width: 100%;
    transition: transform 0.3s ease;
height:100%
}

.image-container:hover img {
    transform: scale(1.02);
}

.principal-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

.principal-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.principal-info .designation {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    opacity: 0.9;
}

.principal-info .education {
    font-size: 0.9rem;
    opacity: 0.8;
}

.experience-tag {
    position: absolute;
    top: 2rem;
    right: 0;
    background: var(--bs-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px 0 0 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.experience-tag i {
    margin-right: 0.5rem;
    color: #ffd700;
}

/* Message Content Styles */
.message-content {
    position: relative;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.quote-icon {
    position: absolute;
    top: -1rem;
    left: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--bs-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.message-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

/* Signature Block Styles */
.signature-block {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.signature-img {
    height: 60px;
    opacity: 0.8;
}

.principal-sign {
    font-size: 1rem;
    color: #333;
}

.principal-sign strong {
    color: var(--bs-primary);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .principal-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .experience-tag {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .message-content {
        padding: 1.5rem;
    }
    
    .message-text {
        font-size: 1rem;
    }
    
    .principal-info h4 {
        font-size: 1.3rem;
    }
}



/* Contact Info Section Styles */
.contact-info-section {
    background-color: var(--color-light-background);
}

/* Section Header Styles */
.contact-info-section .section-subheading {
    color: var(--color-dark-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-section .section-heading {
    color: var(--color-dark-blue);
    font-weight: 700;
}

/* Divider Custom */
.divider-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.divider-custom .line {
    width: 100px;
    height: 2px;
    background: var(--color-deep-green);
    opacity: 0.3;
}

.divider-custom .icon {
    color: var(--color-deep-green);
    font-size: 1.5rem;
}

/* Contact Card Styles */
.contact-card {
    background: var(--color-text-white);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 0 45px rgba(15, 34, 61, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-10px);
}

/* Contact Icon */
.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--color-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--color-deep-green);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--color-deep-green);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon i {
    color: var(--color-text-white);
}

/* Contact Card Content */
.contact-card h4 {
    color: var(--color-dark-blue);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--color-dark-blue);
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

/* Contact Info Styles */
.contact-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.contact-info i {
    color: var(--color-deep-green);
}

/* Working Hours Styles */
.working-hours .hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(15, 34, 61, 0.1);
}

.working-hours .hours-item:last-child {
    border-bottom: none;
}

.working-hours .day {
    color: var(--color-dark-blue);
    font-weight: 500;
}

.working-hours .time {
    color: var(--color-dark-blue);
    opacity: 0.8;
}

.working-hours .closed .time {
    color: var(--color-dark-red);
}

/* System Info Card */
.system-info {
    text-align: left;
    background: var(--color-deep-green);
    color: var(--color-text-white);
}

.current-datetime, .user-login {
    font-size: 0.9rem;
}

.system-info i {
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .contact-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-card {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon i {
        font-size: 1.5rem;
    }

    .contact-card h4 {
        font-size: 1.2rem;
    }

    .system-info .user-login {
        text-align: left;
        margin-top: 0.5rem;
    }
}




/*teachers*/

.teachers-section {
    background-color: var(--color-light-background);
    padding: 5rem 0;
}

.teachers-section .section-subheading {
 
}

.teachers-section .section-heading {

}





.teachers-section .faculty-card {
    background-color: var(--color-text-white);
    border: 1px solid var(--color-default-gray);
    border-radius: 0.25rem;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.teachers-section .faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}

.teachers-section .faculty-card-image img {
    width: 100%;
    height: auto;
    border-radius: 0.25rem;
}

.teachers-section .faculty-card-content {
    text-align: center;
    margin-top: 1rem;
}

.teachers-section .faculty-card-content .faculty-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--color-dark-blue);
}

.teachers-section .faculty-card-content .faculty-designation,
.teachers-section .faculty-card-content .faculty-department,
.teachers-section .faculty-card-content .faculty-qualifications {
    font-size: 1rem;
    color: var(--color-off-gray);
}

.teachers-section .loading {
    text-align: center;
    font-size: 1.25rem;
    color: var(--color-off-gray);
    margin-top: 2rem;
}

.teachers-section .error-message {
    text-align: center;
    font-size: 1.25rem;
    color: var(--color-navy-blue);
    margin-top: 2rem;
}