/**
* Template Name: My School Admission
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";

    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #555555; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #0e4563; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #444444; /* The default color of the main navmenu links */
    --nav-hover-color: #1c70b8; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #1c70b8; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f7fcfc;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

.accent-background {
    --background-color: #195c84;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #65c9cd;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* Pulsating Play Button
  ------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(
        var(--accent-color) 50%,
        color-mix(in srgb, var(--accent-color), transparent 75%) 52%
    );
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .topbar {
    background-color: #195c84;
    color: var(--contrast-color);
    height: 40px;
    padding: 0;
    transition: all 0.5s;
}

.header .branding {
    height: 70px; /* Keep this fixed */
    padding: 0;
    display: flex;
    align-items: center;
    overflow: visible; /* Allow children (logo) to overflow */
    position: relative;
}

.header .site-logo {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 5px 12px; /* horizontal breathing space */
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.05); /* soft outline to separate */
    border-radius: 10px;
    background-color: white; /* blends with header */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); /* subtle depth */
}

.header .site-logo img {
    height: 56px !important; /* slightly less than full height */
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 6px;
}


.header .site-logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
    color: var(--contrast-color);
    background: #195c84;
    font-size: 14px;
    padding: 8px 20px;
    margin: 0 5px 0 30px;
    border-radius: 4px;
    transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
    color: var(--contrast-color);
    background: #195c84;
}

@media (max-width: 576px) {
    .contact-info a {
        font-size: 0.75rem !important; /* 12px */
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 13px;
        font-family: var(--nav-font);
        font-weight: 500;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(
            in srgb,
            var(--accent-color),
            transparent 90%
        );
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid
            color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--accent-color);
    border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}

.page-title .heading {
    padding: 80px 0;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title nav ol li + li {
    padding-left: 10px;
}

.page-title nav ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 120px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 100px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Banner Search Bar Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
    margin: 0 auto;
}

/* site-logo Style */
@media (min-width: 992px) {
    .site-logo {
        padding: 0 !important;
        margin: 0 !important;
    }

    .site-logo img {
        max-height: 45px !important;
        margin-left: -60px;
        object-fit: contain;
        display: block;
    }
}

/* Banner Style */
.bg-banner {
    position: relative;
    text-align: center;
    color: white;
}

.banner-image {
    width: 100%;
    height: 379px;
    object-fit: cover;
    display: block;
}

.search-heading {
    font-size: 32px;
    color: white;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}

.search-subtitle {
    font-size: 18px;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

/* Search Bar Style */
.search-wrapper {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    /* Reduced width */
    width: 100%;
}

.search-box {
    position: relative;
    background: white;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-box:focus-within {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.search-input {
    border: 2px solid #eee;
    border-radius: 30px !important;
    padding: 15px 30px !important;
    width: 100%;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #007bff;
    box-shadow: none;
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    z-index: 10;
    /* Ensure the icon stays above the dropdown */
    transition: all 0.3s ease;
}

.separator {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 18px;
    z-index: 10;
    /* Ensure the separator stays above the dropdown */
    transition: all 0.3s ease;
}

.search-voice-icon {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    z-index: 10;
    /* Ensure the microphone stays above the dropdown */
    transition: all 0.3s ease;
}

.search-box:focus-within .search-icon,
.search-box:focus-within .separator,
.search-box:focus-within .search-voice-icon {
    color: #007bff;
}

/* Base width for tablets and laptops */
.custom-modal-width {
    max-width: 70%;
    width: 60%;
}

/* Override for mobile screens only */
@media (max-width: 576px) {
    .custom-modal-width {
        max-width: 95% !important;
        width: 95% !important;
    }
}

/* Suggestion Dropdown Style */
#suggestion-list {
    position: absolute;
    top: 100%;
    /* Ensure it appears below the search box */
    left: 0;
    width: 100%;
    /* Match the width of the search bar */
    border: 1px solid #ddd;
    border-radius: 5px;
    max-height: 300px;
    overflow-y: auto;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
    /* Dropdown is below the icons */
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: space-between;
}

.suggestion-column {
    width: 48%;
    /* Adjust the column width */
    padding: 10px;
}

#suggestion-list .list-group-item {
    border: none;
    padding: 10px 20px;
    margin: 5px 0;
    /* Add space between list items */
    background-color: #f9f9f9;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

#suggestion-list .list-group-item:hover {
    background-color: #e9ecef;
    /* Highlight on hover */
}

.modal-heading {
    font-size: 28px;
    font-weight: 600;
    color: #555;
    text-align: center;
    line-height: 1.4;
}

.modal-subtitle {
    font-size: 1.2rem;
    color: #777;
    text-align: center;
    font-weight: 400;
    line-height: 1.6;
}

.quick-links-title {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.quick-link-btn {
    cursor: pointer;
    background-color: #e4f1fd;
    color: #2a72ba;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 7px 9px;
    margin-right: 0.4rem;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.quick-link-btn i {
    margin-left: 0.3rem;
    font-size: 12px;
}

.quick-link-btn:hover {
    background-color: #c3e0f7;
}

#search-results-container b,
#search-results-container strong {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
}

.suggestion-container {
    padding: 10px;
}

.search-item {
    padding-left: 10px;
    padding-right: 10px;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .banner-image {
        height: 300px;
    }

    .search-wrapper {
        /* Further reduce width on mobile */
        padding: 0 15px;
    }

    #suggestion-list {
        flex-direction: column;
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Browse By Category
--------------------------------------------------------------*/
.featured-services .category-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    position: relative;
    z-index: 1;
}

.featured-services .category-item:before {
    content: "";
    position: absolute;
    background: var(--accent-color);
    inset: 100% 0 0 0;
    transition: all 0.3s;
    z-index: -1;
}

.featured-services .category-item .icon {
    margin-bottom: 10px;
}

.featured-services .category-item .icon i {
    color: var(--accent-color);
    font-size: 36px;
    transition: ease-in-out 0.3s;
}

.featured-services .category-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.featured-services .category-item h4 a {
    color: var(--heading-color);
    transition: ease-in-out 0.3s;
}

.featured-services .category-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    transition: ease-in-out 0.3s;
}

.featured-services .category-item:hover h4 a,
.featured-services .category-item:hover .icon i,
.featured-services .category-item:hover p {
    color: var(--contrast-color);
}

.featured-services .category-item:hover:before {
    background: var(--accent-color);
    inset: 0;
    border-radius: 0px;
}

/*--------------------------------------------------------------
  # Call To Action Section
  --------------------------------------------------------------*/
.call-to-action {
    padding: 80px 0;
    position: relative;
    clip-path: inset(0);
}

.call-to-action .container {
    position: relative;
    z-index: 3;
}

.call-to-action h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--default-color);
}

.call-to-action p {
    color: var(--default-color);
}

.call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 4px;
    transition: 0.3s;
    margin: 10px;
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
    background: var(--contrast-color);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Browse By Boards
--------------------------------------------------------------*/
.featured-services .board-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    position: relative;
    z-index: 1;
}

.featured-services .board-item:before {
    content: "";
    position: absolute;

    inset: 100% 0 0 0;
    transition: all 0.3s;
    z-index: -1;
}

.featured-services .board-item .icon {
    margin-bottom: 10px;
}

.featured-services .board-item .icon i {
    color: var(--accent-color);
    font-size: 36px;
    transition: ease-in-out 0.3s;
}

.featured-services .board-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.featured-services .board-item h4 a {
    color: var(--heading-color);
    transition: ease-in-out 0.3s;
}

.featured-services .board-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    transition: ease-in-out 0.3s;
}

.featured-services .board-item:hover h4 a,
.featured-services .board-item:hover .icon i,
.featured-services .board-item:hover p {
}

.featured-services .board-item:hover:before {
    inset: 0;
    border-radius: 0px;
}

/*--------------------------------------------------------------
# Apply Section
--------------------------------------------------------------*/
.section-titles {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-titles h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-titles h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 30%;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-titles p {
    margin-bottom: 0;
}

.features .features-image {
    position: relative;
    min-height: 400px;
}

.features .features-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.features h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.features h3:after {
    content: "";
    background: var(--accent-color);
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    left: 0;
    bottom: 0;
}

.features .icon-box {
    margin-top: 50px;
}

.features .icon-box i {
    color: var(--accent-color);
    background-color: var(--surface-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    font-size: 28px;
    width: 56px;
    height: 56px;
    border-radius: 4px;
    line-height: 0;
    box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.features .icon-box:hover i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.features .icon-box h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.features .icon-box h4 a {
    color: var(--heading-color);
    transition: 0.3s;
}

.features .icon-box h4 a:hover {
    color: var(--accent-color);
}

.features .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Boards Section
--------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    color: var(--heading-color);
    padding: 15px 0;
    transition: 0.3s;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    border: 0;
    border-bottom: 4px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.features .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.features .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 575px) {
    .features .nav-link h4 {
        font-size: 16px;
    }
}

.features .nav-link:hover {
    color: var(--accent-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link.active {
    background-color: var(--background-color);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.features .tab-content {
    margin-top: 30px;
}

.features .tab-pane h3 {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 32px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.features .tab-pane h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
}

.features .tab-pane ul {
    list-style: none;
    padding: 0;
}

.features .tab-pane ul li {
    padding-top: 10px;
}

.features .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}

.features .tab-pane p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.stats .stats-item i {
    color: var(--accent-color);
    font-size: 42px;
    line-height: 0;
    margin-right: 20px;
}

.stats .stats-item span {
    color: var(--heading-color);
    font-size: 36px;
    display: block;
    font-weight: 600;
}

.stats .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 16px;
}

/*--------------------------------------------------------------
# Curriculum Section
--------------------------------------------------------------*/
.tabs {
    overflow: hidden;
}

.tabs .nav-tabs {
    border: 0;
}

.tabs .nav-link {
    border: 0;
    padding: 12px 15px 12px 0;
    transition: 0.3s;
    color: var(--default-color);
    border-radius: 0;
    border-right: 2px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
    font-weight: 600;
    font-size: 15px;
}

.tabs .nav-link:hover {
    color: var(--accent-color);
}

.tabs .nav-link.active {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background-color: var(--background-color);
}

.tabs .tab-pane.active {
    animation: fadeIn 0.5s ease-out;
}

.tabs .details h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

.tabs .details p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs .details p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .tabs .nav-link {
        border: 0;
        padding: 15px;
    }

    .tabs .nav-link.active {
        color: var(--accent-color);
        background: var(--accent-color);
    }
}

/*--------------------------------------------------------------
# Compare Section Titles
--------------------------------------------------------------*/
.compare-section-title {
    text-align: center;
    position: relative;
}

.compare-section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.compare-section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.compare-section-title p {
    margin-bottom: 0;
}

.compare-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background: linear-gradient(to right, #f8f9fa 50%, #e9ecef 50%);
    height: 200px;
    flex-wrap: nowrap;
}

.column {
    width: 45%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compare-box img {
    width: auto;
    height: 80%;
    max-width: 80%;
    margin-bottom: 10px;
    border-radius: 5px;
    mix-blend-mode: multiply; /* Add this line */
}


.vs-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 1;
}

.compare-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 6px 16px;
    background-color: #1c70b8;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.compare-box:hover .vs-text {
    opacity: 0;
}

.compare-box:hover .compare-btn {
    opacity: 1;
}
.school-title {
    margin-top: 10px;
    text-align: center;
}

.school-title h6 {
    font-size: 12px;
    font-weight: bold;
    margin: 0;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: "next";
    color: #186eba;
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "prev";
    color: #186eba;
    font-size: 20px !important;
    font-weight: bold;
}

/* Mobile View */
@media (max-width: 768px) {
    .compare-box {
        flex-wrap: nowrap; /* Ensure it doesn't wrap */
        height: auto; /* Adjust height dynamically */
        flex-direction: row; /* Keep columns in a row */
        justify-content: space-between;
        align-items: center;
    }

    .column {
        width: 45%; /* Maintain side-by-side layout */
        margin-bottom: 0;
    }

    .vs-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid var(--background-color);
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--background-color);
    opacity: 1;
    border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Login Model Section CSS
--------------------------------------------------------------*/
.iti {
    width: 100%;
    display: flex;
}

.iti input {
    width: calc(100% - 40px);
    /* Adjust the width to take up remaining space after country code dropdown */
    border-radius: 0.375rem;
}

#mobileNumber {
    width: 100%;
    border-radius: 0.375rem;
    padding-left: 10px;
    /* To make room for the country code */
}
.login-title {
    font-size: 20px;
    font-weight: 800 !important;
}

.login-subtitle {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 0.5rem !important;
}

.login-description {
    font-size: 12px;
    font-weight: 500;
    color: #64748b !important;
}

.btn-light,
.btn-light-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(40, 60, 80);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(220, 222, 228);
    border-image: initial;
}

.custom-register-link {
    color: rgb(0, 0, 0); /* Custom black color */
    text-decoration: none !important; /* Ensure no underline */
    font-weight: bold;
    transition: color 0.3s ease;
}

.custom-register-link:hover {
    color: #3454d1; /* Darker shade on hover */
    text-decoration: none !important; /* Ensure no underline on hover */
}

.custom-control-label {
    cursor: pointer;
    margin-bottom: 0;
    position: relative;
    color: #283c50;
    font-size: 13px;
    font-weight: 500;
    vertical-align: top;
    text-transform: inherit;
}
.custom-forget-password {
    font-size: 11px;
    color: #3454d1 !important;
    font-weight: 600;
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease;
}

.custom-forget-password:hover {
    color: #1d3ca7 !important; /* Darker shade on hover */
    text-decoration: none !important; /* Ensure no underline on hover */
}

.btn-custom,
.btn-otp {
    display: flex;
    padding: 12px 16px;
    font-size: 10px;
    line-height: normal;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-custom {
    background-color: #0e4563; /* Primary color */
    color: white;
    border: 1px solid #0e4563;
}

.btn-custom:hover {
    background-color: #6b9b43; /* Darker shade for hover */
    border-color: #6b9b43;
}

.btn-otp {
    background-color: #6c757d; /* Secondary color */
    color: white;
    border: 1px solid #6c757d;
}

.btn-otp:hover {
    background-color: #5a6268; /* Darker shade for hover */
    border-color: #5a6268;
}

.text-muted {
    --bs-text-opacity: 1;
    color: #64748b !important;
    font-size: 12px;
}

.bg-primarys {
    background: #186eba;
}

.text-white {
    color: #ffffff;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-icon {
    font-size: 24px;
    margin-right: 12px;
    color: white;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
    max-width: 80%;
}

@media (max-width: 991px) {
    /* Targets tablets and smaller screens */
    .bg-primarys {
        display: none !important;
    }
}

/*--------------------------------------------------------------
# Register Model Section CSS
--------------------------------------------------------------*/
.register-title {
    font-size: 20px;
}

.register-subtitle {
    font-size: 13px;
}

.text-muted {
    --bs-text-opacity: 1;
    color: #64748b !important;
}

.custom-small-text {
    font-size: 12px !important;
    font-weight: 600;
}

.generate-pass div.progress-bar div {
    width: 23%;
    height: 4px;
    border-radius: 25px;
    background-color: #ecedf4;
}

.generate-pass div.progress-bar {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.custom-terms-link {
    color: rgb(0, 0, 0); /* Custom color */
    font-weight: 600;
    text-decoration: none !important; /* Force remove underline */
    transition: color 0.3s ease-in-out;
    border-bottom: none !important; /* Ensure no border-style underline */
}

.custom-terms-link:hover {
    color: #1d3ca7; /* Darker shade on hover */
    text-decoration: none !important; /* Force remove underline */
    border-bottom: none !important; /* Ensure no border-style underline */
}

.input-group-text {
    color: #283c50;
    padding: 0 15px;
    font-weight: 600;
    border-radius: 5px;
    border-color: #e5e7eb;
    background-color: #ecedf4;
}
.form-input:disabled,
.form-input[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

.btn-create-account {
    display: flex;
    padding: 12px 16px;
    font-size: 10px;
    line-height: normal;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: all 0.3s ease;
    background-color:  #0e4563;
    color: white;
    border: 1px solid  #0e4563;
}

.btn-create-account:hover {
    background-color: #6b9b43;
    cursor: pointer;
    color: white;
}

.bg-primarys {
    background: #186eba;
}

.form-control {
    color: #283c50;
    padding: 12px 15px;
    border-color: #e5e7eb;
    border-radius: 5px;
}

.form-control:focus,
.form-select.active,
.form-select.focus,
.form-select:active,
.form-select:focus,
input.active,
input.focus,
input:active,
input:focus {
    outline: 0;
    color: #283c50;
    border-color: #3454d1 !important;
    box-shadow: none !important;
}

/*--------------------------------------------------------------
# Chat Icon Floating Button Section
--------------------------------------------------------------*/

.message-icon-btn {
    position: fixed;
    bottom: 70px;
    right: 20px;
    cursor: pointer;
    z-index: 991;
    width: 65px;
    height: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    background-color: orange;
    border: none;
    border-radius: 34px 8px 34px 34px;
    -webkit-box-shadow: 0 5px 4px 0 rgba(0, 0, 0, 0.26);
    box-shadow: 0 5px 4px 0 rgba(0, 0, 0, 0.26);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}
.message-icon-btn:hover {
    background-color: #6b9b43;
}

.message-icon-btn i {
    color: #fff !important;
}
