 /********** Template CSS **********/
:root {
    --primary: #FE5D37;
    --light: #FFF5F3;
    --dark: #103741;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** 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;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Heading ***/
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Lobster Two', cursive;
    font-weight: 700;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}

.font-secondary {
    font-family: 'Lobster Two', cursive;
}


/*** Navbar ***/
/*.navbar .navbar-nav .nav-link {
    padding: 30px 15px;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}
*/

/*** Header ***/
.header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    background: url(../img/bg-header-top.png) center center repeat-x;
    z-index: 1;
}

.header-carousel::after,
.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
    background: url(../img/bg-header-bottom.png) center center repeat-x;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Facility ***/
.facility-item .facility-icon {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-item .facility-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-icon span {
    position: absolute;
    content: "";
    width: 15px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.facility-item .facility-icon span:last-child {
    left: auto;
    right: 0;
}

.facility-item .facility-icon i {
    position: relative;
    z-index: 2;
}

.facility-item .facility-text {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border-radius: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.facility-item .facility-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-text * {
    position: relative;
    z-index: 2;
}

.facility-item:hover .facility-icon::before,
.facility-item:hover .facility-text::before {
    background: transparent;
}

.facility-item * {
    transition: .5s;
}

.facility-item:hover * {
    color: #FFFFFF !important;
}


/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}


/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}


/*** Team ***/
.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

.team-item:hover .team-text {
    border-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 45px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary) !important;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--primary) !important;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}








/* extra css*/

.breadcrumb_area {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.breadcrumb_area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5); /* Dark overlay for readability */
}

.breadcrumb_area .container {
    position: relative;
    z-index: 1;
}

.breadcam_wrap h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.custom_breadcam {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.custom_breadcam .breadcrumb-item {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom_breadcam .breadcrumb-item:hover {
    color: #FF5170;
}

.custom_breadcam .breadcrumb-item::after {
    content: "/";
    color: rgba(255,255,255,0.5);
    margin-left: 8px;
}

.custom_breadcam .breadcrumb-item:last-child::after {
    content: "";
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb_area {
        padding: 70px 0;
    }
    .breadcam_wrap h3 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .breadcam_wrap h3 {
        font-size: 24px;
    }
    .custom_breadcam {
        font-size: 13px;
    }
}

.statement_area {
    padding: 60px 0;
    background: #f9f9fc;
}

.statement_info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    color: #392C7D;
}

.statement_info h3::after {
    content: "";
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF5170, #392C7D);
    position: absolute;
    bottom: -8px;
    left: 0;
    border-radius: 2px;
}

.statement_lists {
    list-style: none;
    padding: 0;
    margin: 0;
}

.statement_lists li {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.statement_lists li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.statement_title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.statement_title h4 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    color: #FF5170;
}

.statement_lists p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.icon {
    background: #f7f5ff;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accreditation_wrapper img {
    border-radius: 15px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

@media (max-width: 768px) {
    .statement_area {
        padding: 40px 0;
    }
    .statement_info h3 {
        font-size: 24px;
    }
}




.services_area {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}
.section__title.white_text.text-center {
    padding-bottom: 26px;
}
.services_area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5); /* Overlay for readability */
}

.services_area .container {
    position: relative;
    z-index: 1;
}

.section__title.white_text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.section__title.white_text p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
}

.serevice_box {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.serevice_box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.serevice_box .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.serevice_box .icon img {
    max-width: 50px;
    height: auto;
}

.serevice_box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #392C7D;
    margin-bottom: 10px;
}

.serevice_box p {
    font-size: 14px;
    color: #555;
    margin: 0;
    flex-grow: 1;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .serevice_box {
        padding: 25px 15px;
    }
    .section__title.white_text h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .services_area {
        padding: 50px 0;
    }
    .section__title.white_text h3 {
        font-size: 24px;
    }
    .serevice_box {
        margin-bottom: 20px;
    }
    .serevice_box .icon {
        width: 70px;
        height: 70px;
    }
    .serevice_box .icon img {
        max-width: 40px;
    }
}

@media (max-width: 480px) {
    .section__title.white_text h3 {
        font-size: 22px;
    }
    .section__title.white_text p {
        font-size: 14px;
    }
}



.about_gallery_wrapper {
    padding: 60px 0;
    background: #f9f9fc;
}

.single_about_gallery {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.single_about_gallery:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.single_about_gallery_thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.single_about_content {
    flex: 1;
    padding: 20px 25px;
}

.single_about_content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #392C7D;
    margin-bottom: 10px;
}

.single_about_content p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.iconImg {
    margin-bottom: 10px;
}

.iconImg img {
    max-height: 60px;
    width: auto;
}

/* Alternate Layout for Even Items */
.single_about_gallery:nth-child(even) {
    flex-direction: row-reverse;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .single_about_gallery {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .single_about_gallery:nth-child(even) {
        flex-direction: column;
    }
    .single_about_content {
        padding: 15px;
    }
    .single_about_content h4 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .about_gallery_wrapper {
        padding: 40px 0;
    }
    .single_about_content h4 {
        font-size: 18px;
    }
    .single_about_content p {
        font-size: 14px;
    }
}
/* General Footer Styling */
.footer {
    background: #111; /* Darker, modern tone */
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 15px;
    line-height: 1.6;
}

/* Footer Logo */
.footer .logo img {
    max-height: 60px;
    transition: transform 0.3s ease;
}
.footer .logo img:hover {
    transform: scale(1.05);
}

/* Links */
.footer a {
    color: rgba(255, 255, 255, 0.75)!important;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: #ff5170;
}

/* Section Titles */
.footer h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

/* Social Icons */
.footer .btn-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-right: 8px;
}
.footer .btn-social:hover {
    background: #ff5170;
    border-color: #ff5170;
    color: #fff;
}

/* Subscribe Form */
.footer .subcribe-form input {
    padding: 10px 15px;
    border-radius: 4px;
    border: none;
    outline: none;
    margin-right: 10px;
    flex: 1;
}
.footer .subcribe-form {
    display: flex;
    gap: 10px;
}
.footer .subcribe-form .submit-btn {
    background: #ff5170;
    border: none;
    padding: 10px 18px;
    color: #fff;
    border-radius: 4px;
    transition: background 0.3s ease;
}
.footer .subcribe-form .submit-btn:hover {
    background: #e14360;
}

/* Copyright Section */
.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    .footer .subcribe-form {
        flex-direction: column;
        align-items: stretch;
    }
}
form.subscription.relative {
    display: flex
;
}



/* event page */
/* Event list section styling */
.eventList_area {
    padding: 60px 0;
    background: #f9f9f9;
}

/* Blog Card */
.blog_page_widget {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog_page_widget:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Image */
.event_thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.blog_page_widget:hover .event_thumb img {
    transform: scale(1.05);
}

/* Content */
.blog_page_meta {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog_page_meta h4 a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog_page_meta h4 a:hover {
    color: #ff6600;
}

.blog_page_meta p {
    font-size: 0.95rem;
    color: #555;
    margin: 0px 0 10px;
}

/* Bottom area */
.blog_page_bottom {
    border-top: 1px solid #eee;
    padding-top: 15px;
    font-size: 0.9rem;
}

.blog_page_bottom a {
    color: #ff6600;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog_page_bottom a:hover {
    color: #cc5200;
}

.blog_date {
    color: #888;
}

/* Responsive */
@media (max-width: 991px) {
    .col-xl-4.col-lg-4.col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .col-xl-4.col-lg-4.col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Blog Card */
.blog_page_widget {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog_page_widget:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #ff6600; 
}

/* coures*/
/* event*/
/* Make columns stretch equally */
.row.align-items-center {
    display: flex;
    flex-wrap: wrap;
}

/* Ensure all cards fill column height */
.eventList_widget {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.eventList_widget:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.event_thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.eventList_meta {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.eventList_meta h4 a {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.eventList_meta h4 a:hover {
    color: #ff6600;
}

.event_date_location {
    list-style: none;
    padding: 0;
    margin-top: auto; /* Push date/location to bottom */
    font-size: 14px;
}

.event_date_location li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    color: #555;
}

.event_date_location i {
    margin-right: 8px;
    color: #ff6600;
}

/* Responsive */
@media (max-width: 767px) {
    .event_thumb img {
        height: 180px;
    }
}
/*details*/
.news_page_area {
    background: #f9f9f9;
    font-family: Arial, sans-serif;
}

.section_padding {
    padding: 40px 15px;
}

.news_page_info,
.news_page_right_sidebar {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.news_page_info_banner img {
    width: 100%;
    border-radius: 8px;
}

.event_posted_header {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

.event_d_title {
    font-size: 24px;
    margin: 15px 0;
    color: #222;
}

.event_lists {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Sub notices inside main content */
.news_page_info h4 {
    margin: 20px 0 5px;
    font-size: 18px;
    color: #333;
    font-weight: bold;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.news_page_info p {
    margin: 0 0 10px;
    color: #555;
}

/* Sidebar title */
.news_page_right_sidebar h4 {
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
    font-size: 20px;
}

/* Latest news list */
.latest_news_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.single_latest_news_list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.single_latest_news_list img {
    width: 90px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.single_latest_news_list h4 {
    font-size: 16px;
    margin: 0;
}

.single_latest_news_list p {
    font-size: 14px;
    color: #888;
    margin: 2px 0 0;
}


@media (max-width: 991px) {
    .col-xl-8,
    .col-xl-4 {
        flex: 1 1 100%;
    }
}
/*contact*/
.contact_section {
    background: #f9f9f9;
    padding: 60px 15px;
}

.section__title h3 {
    font-size: 32px;
    font-weight: bold;
    color: #222;
}

.find_content_widget_wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.find_content_widget {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.find_content_widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.find_content_widget .icon img {
    max-width: 60px;
    margin-bottom: 10px;
}

.find_content_widget h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

/* Map */
.contact_map iframe {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Form */
.contact_form_box {
    background: #1b3c87;
    padding: 30px;
    border-radius: 8px;
}

.contact_form_box .primary_label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #fff;
}

.primary_input,
.primary_textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.primary_textarea {
    min-height: 120px;
    resize: vertical;
}

.theme_btn {
    background: #ffb400;
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.theme_btn:hover {
    background: #e6a100;
}

/* Responsive */
@media (max-width: 991px) {
    .row.justify-content-between {
        flex-direction: column;
    }
    .contact_map iframe {
        min-height: 300px;
        margin-bottom: 20px;
    }
}
.contact_department_area {
    background: #f9f9f9;
    padding: 60px 15px;
}

.section__title h3 {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

.section__title p {
    font-size: 15px;
    color: #666;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

.contact_department_box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact_department_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact_department_box .icon img {
    max-width: 120px;
    margin-bottom: 15px;
    border-radius: 50%;
    object-fit: cover;
}

.contact_department_box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.contact_department_box p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
    .contact_department_box {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .section__title h3 {
        font-size: 26px;
    }
}
/*admission*/

.contact_department_area {
    padding: 60px 0;
    background: #f8f9fa;
}

.section__title h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section__title p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.contact_department_box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact_department_box .icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.contact_department_box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.contact_department_box p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.contact_department_box:hover {
    border-color: #b17d2d;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.contact_department_box:hover .icon img {
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .section__title h3 {
        font-size: 24px;
    }
    .contact_department_box {
        padding: 20px 10px;
    }
}
.mb_24 {
    padding: 10px;
}

.theme_btn2 {
    background-color:#FE5D37 !important;
    border: none !important;
    color: #fff !important;
}

.theme_btn2:hover {
    background-color: darkorange !important;
}
button.primary-btn-small-input {
    background-color:#FE5D37 ;
    border: none;
}
select{
    padding: 8px;
}
.form-control:read-only {
     background-color: #fff !important; 
}
.dob.form-control.ot-input {
    background-color: #fff !important;
}
/*call to*/
.value-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.value-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.value-card h6 {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
  margin-top: 15px;
  padding: 0px 0px !important;
}

/* Section background */
.bg-light.rounded {
  padding: 40px 25px;
  background: #f8f9fa;
}

/* Responsive grid fix */
.row.g-0.align-items-center > .col {
  padding: 15px;
}

/* Image styling */
.value-card img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .row.g-0.align-items-center {
    flex-direction: column;
  }
  .row.g-0.align-items-center > .col {
    width: 100%;
  }
}
