/*** Spinner Start ***/
/*** Spinner ***/

:root {
    --bs-primary: #007bff; /* Set your desired primary color */
}

#spinner {
background-color:var(--color-light-yellow);
    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;
}
/*** Spinner End ***/

.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 Start ***/
.btn {
    font-weight: 600;
    transition: 0.5s;
    border: 2px solid #1AB295; /* Default border color */
}

/* 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%;
}

/* Button with light blue background, white text, and border */
.btn.btn-primary {
    background-color: var(--color-light-blue);
    color: var(--color-text-white);
    border: 2px solid var(--color-light-blue);
    box-shadow: inset 0 0 0 0 var(--color-light-blue);
    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-light-blue) !important;
    border-color: var(--color-light-blue); /* Maintains border color on hover */
    box-shadow: inset 300px 0 0 0 var(--color-text-white) !important;
}

/* Light Button with light blue text and border */
.btn.btn-light {
    background-color: var(--color-light-blue);
    color: var(--color-text-black);
    border: 2px solid var(--color-light-blue);
    box-shadow: inset 0 0 0 0 var(--color-light-blue);
    transition: box-shadow 0.5s, background-color 0.5s, color 0.5s, border-color 0.5s;
}

.btn.btn-light:hover {
    background-color: var(--color-yellow) !important;
    color: var(--color-text-white) !important;
    border-color: var(--color-light-blue); /* Keeps the border consistent */
    box-shadow: inset 300px 0 0 0 var(--color-yellow) !important;
}

/* Hover Effect */
.btn-hover {
    transition: 0.5s;
    border: 2px solid var(--color-light-blue); /* Ensure hover buttons have borders */
}

.btn-hover:hover {
    background-color: var(--color-text-white) !important;
    color: var(--color-light-blue) !important;
    border-color: var(--color-light-blue); /* Keep border consistent on hover */
}

/*** 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(--bs-primary);
}

.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(--bs-primary) !important;
}

.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(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--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(--bs-primary) !important;
}

.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(--bs-primary) !important;
}





/*** Navbar ***/

/* Default link styles */
.navbar-light .navbar-nav .nav-link {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--color-text-black) !important; /* Default text 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; /* Sticky navbar text color */
}

/* Hover and active link color */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--color-red) !important;
}

/* Navbar brand logo size and transition */
.navbar-light .navbar-brand img {
    max-height: 50px;
    transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

/* 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(0, 0, 0, 0.1);
        background-color: var(--color-light-blue);
        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-text-black);
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 14px;
    border-bottom: 1px solid var(--color-default-gray);
}

.navbar .dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
}

.navbar .dropdown-menu .dropdown-item:hover {
    background-color: var(--color-yellow);
    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: var(--color-light-blue);
    }

    .navbar .dropdown-menu .dropdown-item {
        border-bottom: 1px solid var(--color-default-gray);
    }

    .navbar .dropdown-menu .dropdown-item:hover {
        background-color: var(--color-yellow);
        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-red) !important;
}

/* Responsive navbar styles */
@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--color-light-yellow);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--color-red);
        color: var(--color-red);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid var(--color-default-gray);
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--color-text-black) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

/* Navbar styles for larger screens */
@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #fff !important;
    }

    /* 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-red);
        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;
    }
}


/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative; 
}

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 150px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

@media (max-width: 576px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        top: 630px;
        transition: 0.5s;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95% !important;
        padding-top: 100px !important;
    }
 
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    height: 700px;
    margin-top: 95px;
    display: block;
    object-fit: cover;
    transition: 0.5s;
    background-color: #1b1b1b;

}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
    }

}

@media (min-width: 992px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin-top: 50px;
    }
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 75%;
    
}
/*** Carousel Hero Header End ***/


/*** 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 ***/



/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2) ;
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item .service-img::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;
    
}

.service .service-item:hover .service-img::before {
    height: 100%;
    background: rgba(21, 185, 217, .3);
}

.service .service-item .service-img:hover img {
    transform: scale(1.3);
}

.service .service-item .service-content {
    position: relative;
    z-index: 2;

}

.service .service-item .service-content::before {
    width: 100%;
    height: 8px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: rgba(21, 185, 217, .5);
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-content::before {
    background: rgba(21, 185, 217, .5);
    height: 100%;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}


.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 9;
}
.service .service-item:hover .service-content .service-content-inner h5 {
    color: var(--bs-secondary);
}

/*** Service End ***/





/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    display: flex;
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;

}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover::before {
    width: 100%;
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    display: inline-flex;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    position: relative;
    z-index: 2;
}

.feature .feature-item:hover .feature-content {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.feature .feature-item:hover .feature-content h5 {
    color: var(--bs-dark);
}
/*** Feature End ***/


/*** Appointment Start ***/
.appointment {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.appointment .appointment-form {
    background: rgba(239, 162, 134, 0.3);
}

.appointment .appointment-form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.appointment .appointment-form .btn.btn-primary:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Youtube Video start ***/
.video {
    position: relative;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 33px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;
    

}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 115px;
    height: 115px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 33px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin-left: 5px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/
/*** Appointment End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.team .team-item .team-img:hover .team-icon {
    margin-bottom: 145px;
}

.team .team-item:hover .team-img::before {
    background: rgba(21, 185, 217, .3);
}

.team .team-item .team-content {
    color: var(--bs-primary);
    transition: 0.5s;
}

.team .team-item .team-content h5 {
    color: var(--bs-secondary);
    transition: 0.5s;
}

.team .team-item:hover .team-content h5 {
    color: var(--bs-dark);
}

.team .team-item:hover .team-content {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(21, 185, 217, 0.9), rgba(21, 185, 217, 0.9)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background: transparent;
}

.testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--bs-white);
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}


@media (max-width: 900px) {
    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -190px;
        margin-left: 40px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -190px;
        margin-right: 40px;
    }
    
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid var(--bs-white);
    background: transparent;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    background: var(--bs-secondary) !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    transition: 0.5s;
}

@media (min-width: 900px) {
    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 20px;
    }
}


/* Testimonial Section Title Start */
.testimonial .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.testimonial .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .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(--bs-white) !important;
}

.testimonial .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(--bs-white) !important;
}

.testimonial .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .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(--bs-white) !important;
}

.testimonial .section-title .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(--bs-white) !important;
}
/*** Testimonial End ***/


  /*** Blog Start ***/



/*** Contact Start ***/
.contact {
     background-color: var(--color-light-gray) !important;
 
}


.contact .contact-form .btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .contact-form .btn.btn-light:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.contact .contact-form .form-floating input,
.contact .contact-form .form-floating textarea,
.contact .contact-form .form-floating label {
    color: var(--bs-light);
}



/* Testimonial Section Title Start */
.contact .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.contact .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .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(--bs-white) !important;
}

.contact .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(--bs-white) !important;
}

.contact .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .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(--bs-white) !important;
}

.contact .section-title .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(--bs-white) !important;
}
/*** Contact End ***/






.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 50px 0;
}

.box {
  position: relative;
  width: 350px;
  height: 250px;
  margin: 20px;
  background: #000;
  transition: transform 0.5s, z-index 0.5s, box-shadow 0.5s;
  transform-style: preserve-3d;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.box:hover {
  transform: scale(1.1);
  z-index: 1;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.imgBx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.imgBx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.imgBx::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  mix-blend-mode: multiply;
  transition: opacity 0.5s;
  opacity: 0;
}

.box:hover .imgBx::before {
  opacity: 1;
}

.content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.box:hover .content {
  opacity: 1;
  transform: translateY(0);
}

.content h2 {
  margin: 0;
  padding: 0;
  font-size: 16px;
  text-transform: uppercase;
}

.content p {
  font-size: 14px;
}

#gallery-section{ margin-top: 200px;
padding-left: 10px; 
    padding-right: 10px
}


@media (min-width: 992px) { /* Adjust this value based on your breakpoints */
    #gallery-section {
        padding-left: 100px; /* Padding for large screens */
        padding-right: 100px; /* Padding for large screens */
    }
}

.grid-wrapper {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
}

.grid-wrapper > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-wrapper > div > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-wrapper > div:hover > img {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.grid-wrapper .wide {
    grid-column: span 2;
}

.grid-wrapper .tall {
    grid-row: span 2;
}

.grid-wrapper .big {
    grid-column: span 2;
    grid-row: span 2;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    display: inline-block;
}

/* Modal CSS */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.8); /* Black w/ opacity */
}

.modal-content {
    margin: auto;
    display: block;
    width: auto; /* Change width to auto */
    max-width: 90%; /* Set max width */
    max-height: 80%; /* Set max height to maintain aspect ratio */
    position: relative; /* Change position to relative */
    top: 50%; /* Position from the top */
    transform: translateY(-50%); /* Center the image vertically */
}

#caption {
    margin: auto;
    text-align: center;
    color: white;
    padding: 10px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: red;
}

@media (max-width: 576px) {
    .grid-wrapper {
        grid-template-columns: 1fr; /* 1 column for mobile */
    }

    .grid-wrapper > div {
        width: 100%; /* Ensure it takes full width */
    }
}




/********************************/
/*     color theme new          */
/********************************/


:root {
    --color-light-blue: #d6e9f5;          /* Light Blue */
    --color-blue: #5b9bd5;                /* Blue */
    --color-light-yellow: #fff8d9;        /* Light Yellow */
    --color-yellow: #ffd966;              /* Yellow */
    --color-light-red: #f8d7da;           /* Light Red */
    --color-red: #d9534f;                 /* Red */
--color-footer-gradient-start: #e5bb21;  /* Gradient Start */
    --color-footer-gradient-end: #ae2525;    /* Gradient End */
    --gradient-primary: linear-gradient(to right,rgba(229, 187, 33, 0.7),rgba(174, 37, 37, 0.6));
 
    --color-light-hover: #fef7e5;         /* Light Hover (Yellowish) */
    --color-light-background: #fffaf2;    /* Light Background (Cream) */
    --color-default-gray: #f0f0f0;        /* Default Light Gray */
    --color-text-black: #000000;   
    --color-text-white: #ffffff;          /* White */
    --color-off-gray: #e4e4e4;            /* Soft Gray */
    --color-topBar: #d9534f;              /* Red for Top Bar */
}


.gradientprimary{
background:linear-gradient(to right,rgba(229, 187, 33, 0.7),rgba(174, 37, 37, 0.6));
}

/********************************/
/*     Section Styling          */
/********************************/
.carousel-section {
    padding: 10px 20px 10px 20px; /* Add padding around the carousel */
    overflow: hidden;
 
   
}

/********************************/
/*      Carousel Styling        */
/********************************/
.fade-carousel {
    position: relative;
    height: 60vh;
   
    overflow: hidden; 
}

.fade-carousel .carousel-inner .carousel-item {
    height: 60vh;
    
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
   
  border-radius: 0.9rem;
    transition: transform 0.3s ease-in-out;
}

.header-carousel .header-carousel-item:hover {
    transform: none; 
}

/********************************/
/*            Overlay           */
/********************************/
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 50;
    background: var(--gradient-primary); 
   border-radius: 0.9rem;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/********************************/
/*       Text Styling           */
/********************************/
.carousel-text {
    color: var(--color-text-white);
    font-family: 'Open Sans', sans-serif;
    padding: 0 15px;
}

.carousel-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation-duration: 1s;
}

.carousel-text p {
    font-size: 1.25rem;
    font-weight: 400;
    animation-duration: 1.5s;
}

/********************************/
/*       Dots Styling           */
/********************************/
.header-carousel .owl-dots .owl-dot {
    background-color:var(--color-off-gray); 
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    transition: background-color 0.3s;
}

.header-carousel .owl-dots .owl-dot.active {
    background-color: var(--color-yellow);
}

/********************************/
/*       Navigation Styling     */
/********************************/
.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    background-color: var(--color-green);
    color:var(--color-text-white); /* White arrow icons */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background-color: var(--color-text-white); /* White background on hover */
    color:  var(--color-green); /* Green arrow icons on hover */
    transform: none; 
}

.header-carousel .owl-nav .owl-prev i,
.header-carousel .owl-nav .owl-next i {
    font-size: 18px;
}

/********************************/
/*       Responsive Design      */
/********************************/
@media screen and (max-width: 640px) {
    .fade-carousel .carousel-inner .carousel-item {
        height: 40vh; /* Adjust height for smaller screens */
    }

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        width: 30px;
        height: 30px;
    }

    .header-carousel .owl-nav .owl-prev i,
    .header-carousel .owl-nav .owl-next i {
        font-size: 14px;
    }
}
/********************************/
/*       Top   Navbar           */
/********************************/
.nav {
    background-color: var( --color-topBar);
  
}

/* Social media icon color and hover effects */
.social li a {
    color: var(--color-yellow); /* Default yellow color for icons */
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 4px; /* Optional spacing for better alignment */
    border-radius: 50%; /* Circular icon background (optional) */
}

.social li a:hover {
    color: var(--color-text-white) !important; /* White text on hover */
    background-color: var(--color-blue) !important; /* Blue background on hover */
    transform: scale(1.1); /* Slight zoom effect on hover */
}






/********************************/
/*       Top   Navbar  End          */
/********************************/

.bg-primary {
  background-color: var(--color-light-blue) !important; /* Light Blue */
}

.text-primary {
  color: var(--color-blue) !important; /* Blue */
}

.border-primary {
  border-color: var(--color-light-blue) !important; /* Light Blue */
}

/* Additional classes for the new colors */
.bg-secondary {
  background-color: var(--color-light-yellow) !important; /* Light Yellow */
}

.text-secondary {
  color: var(--color-yellow) !important; /* Yellow */
}

.border-secondary {
  border-color: var(--color-light-yellow) !important; /* Light Yellow */
}

.bg-danger {
  background-color: var(--color-light-red) !important; /* Light Red */
}

.text-danger {
  color: var(--color-red) !important; /* Red */
}

.border-danger {
  border-color: var(--color-light-red) !important; /* Light Red */
}


/********************************/
/*     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 {
   
    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 */
    color:  var(--color-yellow);
}

#about h2,h3{
 color:  var(--color-red);
}

/* Mission and Vision Styling */
#about .row h4 {
    color: var(--color-red);
    font-weight: bold;
    margin-bottom: 10px;
}

#about .row p {
    color: var(--color-text-black); /* 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: var(--color-red); /* Initial color for the effect */
}

#about .card:after {
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-red); /* 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 */
    background-color: #fff; /* Background color on hover */
}

#about .card:hover .card-body,
#about .card:hover .card-title,
#about .card:hover .card-text {
    color: #fff; /* Change text color when hovering */
}

@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: var(--color-red); /* Initial color for the effect */
}

.effect-card:after {
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-red); /* 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 */
    background-color: var(--color-red); /* Change background color on hover */
}

.effect-card:hover .card-body {
    color: var(--color-text-white); /* Change text color when hovering */
}

.effect-card:hover .card-title {
    color: var(--color-text-white); /* Change card title color on hover */
}

.effect-card:hover .card-text {
    color: var(--color-text-white); /* 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;
}

/* 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: var(--color-light-background); /* 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: var(--color-green); /* Use a consistent green color for years or highlights */
    font-weight: bold;
}

#about .list-group-item:hover {
    background-color: var(--color-light-hover); /* Light hover background color */
}

/* 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: var(--gradient-primary); /* Use gradient from root variables */
    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: fill;
    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: var(--gradient-primary); /* Using root gradient */
    opacity: 0.8;
    z-index: 1;
}

.counter-box {
    position: relative;
    color: var(--color-text-white);  /* Using root color */
    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: linear-gradient(to right, var(--color-footer-gradient-start), var(--color-footer-gradient-end));

    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-item {
    padding: 10px;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Logo and Contact Info */
.footer-logo {
    max-width: 120px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* Useful Links Styling */
ul.list-unstyled li {
    margin-bottom: 8px;
}

ul.list-unstyled li a {
    font-size: 14px;
    color: var(--color-text-white);
    text-decoration: none;
    transition: color 0.3s;
}

ul.list-unstyled li a:hover {
    color: var(--color-yellow); /* Gold color */
}

/* Social Media Icons */
.social-media-icons a {
    font-size: 20px;
    color: var(--color-text-white);
    transition: color 0.3s ease;
}

.social-media-icons a:hover {
    color: var(--color-yellow); /* Gold color */
}

/* 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-red);
}


.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 */
  }





/* General Section Styling */
#principal-message {
    padding: 3rem 0;
    color: var(--color-text-black); /* Neutral black for text */
}

/* Section Header Styling */
#principal-message .text-center {
    margin-bottom: 2rem;
}

#principal-message h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-red); /* Red for heading */
    font-weight: bold;
}

#principal-message p {
    font-size: 1rem;
    color: var(--color-text-black); /* Neutral black for paragraph text */
    line-height: 1.8;
}

/* Image Section Styling */
#principal-message .rounded-circle {
    width: 150px;
    height: 150px;
    border: 3px solid var(--color-red); /* Red border for emphasis */
    overflow: hidden;
    display: inline-block;
    margin: 0 auto;
}

#principal-message .rounded-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

#principal-message h5 {
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--color-red); /* Red for name */
    text-align: center;
}

#principal-message small {
    font-size: 0.875rem;
    color: var(--color-red); /* Red for qualifications */
}

/* Message Body Styling */
#principal-message .p-4 {
    background: var(--color-light-red); /* Light red background */
    border-left: 4px solid var(--color-red); /* Red border for emphasis */
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

#principal-message .p-4 p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--color-text-black); /* Neutral black text */
}

#principal-message .p-4 .text-end {
    text-align: right;
    font-weight: bold;
    color: var(--color-red); /* Red for signature text */
    font-size: 1rem;
}


/* testimonial  */
.testimonial-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: bold;
  color: #333;
}


