/* Apply Saira font to the whole website */
body {
    font-weight: 400;
    width: 100vw;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    /* Default */
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: .5rem;
    line-height: 1.2;
    color: var(--black-color);
    /* Bold */
}

.bg-silver-light {
    background-color: #F7F8FA !important;
}

.carousel-content h1 {
    font-weight: 600;
}

p {

    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    /* Regular */
}

button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    /* Extra Bold */
}

#schemeTable_filter {
    margin-bottom: 10px;
}

#schemeTable th,
#schemeTable td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

/* Add border to pagination numbers */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: 1px solid #007bff;
    /* Blue border */
    padding: 5px 10px;
    margin: 2px;
    border-radius: 5px;
    background-color: white;
    color: #007bff;
    transition: 0.3s;
}





body {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    background-color: var(--white-color);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}



/* navbar */
/* navbar */
.navbar {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px;
    transition: box-shadow 0.3s ease-in-out;
    background: rgb(2, 0, 36);
    background: linear-gradient(to right, #14467b, #0088bc);



}

/* Navbar items */
.navbar-nav .nav-item {
    margin: 0 15px;
    font-weight: 500;
    position: relative;
}

.navbar-nav .nav-link {
    color: var(--white-color);
    padding: 10px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    border-radius: 5px;
}

.navbar-nav .nav-item:hover>.nav-link {
    background-color: var(--white-color);
    color: var(--primary-color);

}


.icon-hover i {
    text-align: center;
    font-size: 2px;
    color: white;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.icon-hover:hover i {
    background-color: white;
    color: var(--primary-color);
}

/* Base dropdown styles */
.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transform: translateY(15px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    background-color: var(--primary-color);
    min-width: 200px;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
}

/* Show main dropdown on hover (desktop) */
.nav-item.dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown items */
.dropdown-item {
    font-size: 16px;
    padding: 8px 15px;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    display: block;
    position: relative;
    background-color: var(--white-color);
}

.dropdown-item:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    text-indent: 10px;
}

/* Submenu specific styling */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    transform: translateX(-10px);
}

/* Show submenu only on direct parent hover (desktop) */
.dropdown-submenu:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Chevron/icon styling */
.nav-link i,
.dropdown-item i {
    font-size: 10px;
    margin-left: 7px;
    transition: transform 0.3s ease-in-out;
}

.nav-item.dropdown:hover>.nav-link>i,
.dropdown-submenu:hover>.dropdown-item>i {
    transform: rotate(180deg);
}

/* Remove Bootstrap's default arrow */
.dropdown-toggle::after {
    display: none;
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 10px 0;
    }

    .navbar-nav .nav-item {
        margin: 2px 0;
        width: 100%;
    }

    .navbar-nav .nav-link,
    .dropdown-item {
        padding: 12px 20px;
        width: 100%;
        justify-content: space-between;
        display: flex;
        align-items: center;
    }

    /* Base dropdown styles for mobile */
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        transform: none;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 0;
        padding: 0;
        display: none;
        background-color: var(--white-color);
        opacity: 1;
        visibility: visible;
    }

    /* Show dropdowns when toggled */
    .dropdown-menu.show {
        display: block;
    }

    /* Submenu adjustments */
    .dropdown-submenu>.dropdown-menu {
        position: static;
        left: 0;
        padding-left: 30px;
        transform: none;
        display: none;
    }

    .dropdown-submenu.show>.dropdown-menu {
        display: block;
    }

    /* Dropdown items in mobile */
    .dropdown-item {
        background-color: transparent;
    }

    .dropdown-item:hover {
        text-indent: 0;
        background-color: rgba(0, 0, 0, 0.1);
    }

    /* Chevron rotation for mobile */
    .nav-item.dropdown.show>.nav-link>i,
    .dropdown-submenu.show>.dropdown-item>i {
        transform: rotate(180deg);
    }

    /* Ensure proper spacing for sub-dropdowns */
    .dropdown-submenu .dropdown-item {
        padding-left: 40px;
        /* Additional indent for nested items */
    }
}

@media (min-width: 992px) {
    .dropdown-menu {
        top: 100%;
        left: 0;
    }

    .dropdown-submenu>.dropdown-menu {
        top: 0;
        left: 100%;
    }
}

/* navbar */


/* top header */
/* .top-bar { */
/* background: rgb(2, 0, 36);  */
/* background-color: #e4f0fb;
    font-size: 16px;
    color: var(--primary-color); */
/* } */

.top-bar {
    background: linear-gradient(to right, #14467b, #0088bc);

}

.top-bar-icon i {
    color: var(--primary-color);
}

.figcaption {
    font-size: 12px;
}

.header-bottom {
    background-color: var(--background-color);
}

.header-bottom i {
    color: var(--primary-color);
    font-size: 30px;
}

.header-bottom span {
    color: var(--secondary-color);
    font-size: 15px;
}

/* top header */



.btn-custom {
    font-size: 14px;
    font-weight: bold;
}

.btn-theme-light {
    background-color: var(--primary-color);
    color: #fff;
}

.text-theme-dark {
    color: var(--secondary-color);
}

.btn-theme-dark {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-theme-light {
    background-color: var(--primary-color);
    color: #fff;
}

/* Login Button */
.btn-signup {
    background-color: #45c4e9;
    border: none;
    color: white;
    font-weight: 500;
}

/* Sign Up Button */
.btn-login {
    background-color: #45c4e9;
    color: white;
}



@media (max-width: 1200px) {
    .action-button {
        display: none !important;
    }
}

footer {
    color: var(--white-color);
}

.footer .widget-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin: 20px;
    position: relative;
    /* Space for icon */
}


.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #00aaff;
    /* Hover Effect */
}

/* Divider Line */
.list-border li {
    border-bottom: 1px dashed #cccccc44;
    padding-bottom: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer ul {
        padding-left: 0;
    }
}

.footer-bottom {
    background-color: #002855;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
}

.footer-bottom p {
    font-size: 14px;
    color: white;
    margin: 0;
}

.footer-bottom a {
    color: #45c4e9;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Social icons styling */
.styled-icons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.styled-icons li {
    margin: 0 10px;
}

.styled-icons li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease-in-out;
}

.styled-icons li a:hover {
    color: var(--text-color);
}

.styled-icons.icon-bordered i {
    border: 1px solid var(--text-color);
    border-radius: 1px;
    padding: 8px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.styled-icons.icon-sm i {
    font-size: 16px;
}

.fact-section {
    /* background: rgb(2, 0, 36); */
    /* background: linear-gradient(to right, #14467b, #0088bc); */
    /* color: var(--primary-color) !important; */

}


/* Responsive adjustments */
@media (max-width: 767px) {
    .styled-icons {
        flex-direction: column;
        /* Stack vertically on mobile */
        align-items: center;
    }

    .styled-icons li {
        margin: 5px 0;
        /* Vertical spacing on mobile */
    }
}

@media (min-width: 768px) {
    .styled-icons {
        flex-direction: row;
        /* Horizontal on desktop */
    }

    .styled-icons li {
        margin: 0 10px;
        /* Horizontal spacing on desktop */
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-section {
        width: 45%;
        /* Two sections per row on smaller screens */
    }
}

@media (max-width: 500px) {
    .footer-section {
        width: 100%;
        /* Single section per row on very small screens */
    }
}

/*** Carousel Start ***/


.carousel-item {
    position: relative;
}

.carousel-item h1 {
    font-size: 50px;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    background-color: #cccccc54;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 45%;
    left: 2%;
    border-radius: 50px;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--secondary-color);
    transition: .8s;
}

.carousel-control-next {
    background-color: #cccccc54;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 45%;
    right: 2%;
    border-radius: 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--secondary-color);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    color: var(--white-color);
    background-color: #cccccc54;
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    color: var(--white-color);
    background: var(--secondary-color);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}



#carouselId .carousel-indicators li {
    width: 30px;
    height: 30px;
    background: var(--bs-primary);
    margin: 30px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}


/* 
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #999;
    border: none;
    margin: 0 5px;
    opacity: 0.5;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: var(--black-color);

}

.carousel-item p {
    font-size: 20px !important;
}



.carousel-content-btn1 {
    color: var(--white-color);
    background-color: var(--primary-color);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-content-btn1:hover {
    color: var(--white-color);
    background: var(--secondary-color);
    border: 0;
    opacity: 1;
    transition: 0.9s;
    border-radius: 20px;
    letter-spacing: 2px;
}

.custom-banner-wrapper {
    overflow: hidden;
}

.bannerBg {
    padding: 50px 40px;
} */

@media (max-width: 991.98px) {

    /* for tablet and below */
    .bannerBg {
        padding: 20px 10px;
        /* reduced padding for tablet/mobile */
        height: 400px
    }
}

@media (max-width: 575.98px) {

    /* for mobile */
    .bannerBg {
        padding: 10px 5px;
        height: 300px
            /* even less padding for small mobile */
    }
}



/* .custom-banner {
    width: 80%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
} */


@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

.fadeInRight {
    animation-name: fadeInRight;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }

    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 20px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }

    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 22px !important;
    }

    .carousel-item p {
        font-size: 15px !important;
    }
}

.text-theme-light {
    color: var(--footer-element-color);
}

.fact-section {
    margin-top: 20px;
}

@media (max-width: 576px) {
    .fact-section {
        margin-top: 20px !important;
    }

    .fact-section .bg-white {
        padding: 2rem 1rem;
        border-radius: 1rem;
    }

    .fact-section h2 {
        font-size: 1.5rem;
    }

    .fact-section h5 {
        font-size: 1rem;
    }

    .fact-section i {
        font-size: 1.75rem;
    }
}

/*** Services Start ***/

.services-section {
    padding: 50px 0;
}

.heading {
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 2rem;
}

/* Service Card */
.services-section {
    padding: 50px 0;
}

.heading {
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 2rem;
}

/* Service Card */
/* General Styling for the Service Cards */
.service-card {
    position: relative;
    /* Required for positioning the pseudo-element */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
    border-top: 4px solid var(--primary-color);
    overflow: hidden;
    /* Ensures the pseudo-element stays within bounds */
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0;
    background-color: var(--primary-color);
    transition: width 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-card:hover::after {
    width: 100%;
}

/* Icon Styling */
.service-icon {
    width: 80px;
    /* Increased size */
    height: 80px;
    border-radius: 8px;
    /* Smaller border radius for less noticeable curve */
    background-color: #f1ebe1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.service-icon img {
    width: 50px;
    height: 50px;
}

/* Hover Effect for Icon */
.service-card:hover .service-icon {
    background-color: var(--primary-color);
    /* Blue background on hover */
}

/* Content Styling */
.service-content {
    text-align: center;
    flex-grow: 1;
    /* Ensure content takes the available space */
}

/* Service Title */
.service-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Service Description */
.service-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* Learn More Link */
.learn-more {
    font-size: 14px;
    font-weight: bold;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--primary-color);
    text-decoration: underline;

}



/*** Services End ***/


/*** calculation start ***/
#homeSliderSection {
    background: rgb(2, 0, 36);
    background: linear-gradient(to right, #14467b, #0088bc);
}

.return-info {
    background-color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid var(--secondary-color);
    font-weight: bold;
    color: var(--white-color);
    display: inline-block;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}


/*** calculation end ***/


/*** chart start ***/
.chart-section {
    padding: 50px 0;
}

/*** chart end ***/


/*** goal start ***/


.goal-section .card {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Ensure card body content fits well */
.goal-section .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.goal-section {
    padding: 30px 0;
}


.goalIcon {
    font-size: 20px;
    padding: 18px 17px;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--white-color);
}

.goal-heading {
    color: var(--black-color);
}



/*** goal end ***/
/*** risk start ***/
.risk-profile-section {
    padding: 50px 0;
}

/* .risk-profile-card {
    border-radius: 15px;
    box-shadow: 0 8px 50px #ccc
} */

/*** risk end ***/

/*** contact us  start ***/
.contact-us-section {
    /* background-color: #dcf0fa70; */
    padding: 40px 0;
}



.form-control {
    background-color: #fff;
    padding: 8px;
    font-size: 1rem;
    color: #666;
    height: 40px;
}

.form-control:focus {
    outline: none;
}

/*** contact us  end ***/


/*** blog news start ***/
.news-section {
    padding: 30px 0;
}

.blog-section {
    padding: 30px 0;
}


/*** blog news start ***/
/*** partner start ***/
.partner-section {
    padding: 30px 0;
}

.client-slider {
    height: 100px;
    position: relative;
    width: auto;
    margin: auto;
    overflow: hidden;
}

.client-slider .client-slide-track {
    display: flex;
    width: calc(18000px);
    animation: 40s linear 0s infinite normal none running scroll;
}

.client-slider .client-logo-slide {
    height: 100px;
    width: 250px;
}

@keyframes scroll {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(calc(-1750px));
    }
}

/*** partner end ***/



/*** page header start ***/
.page-header {
    background-color: #149a4414;
    padding: 25px 0;
}



.breadcrumb-item+.breadcrumb-item::before {
    content: "•";
    color: #666;
    padding: 0 5px;
}

/* Ensure responsiveness (handled by Bootstrap) */
@media (max-width: 767px) {
    .page-header .display-2 {
        font-size: 1.5rem;
    }

    .breadcrumb {
        font-size: 0.75rem;
    }
}

/*** page header end ***/


/*** service and product start ***/
.servicePageCard {
    padding: 60px;

}

.servicePageCard .card {
    border: none;
}


.mr-10 {
    margin-right: 10px !important;
}

/*** service and product end ***/

/*** faqs start ***/
.accordion-button.collapsed::after {
    background-color: var(--bs-secondary);
}

.accordion-button::after {
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background-color: #f95750;
    background-image: none !important;
}

/*** faqs start ***/


/*** bottom start ***/
.line-bottom {
    width: 0;
    height: 3px;
    border-radius: 30px;
    background: var(--secondary-color);
    margin: 0px auto 0;
    transition: width 0.3s ease-in-out;
    position: relative;
    right: 50%;
    transform: translateX(50%);
    bottom: 0;
}

.service-box:hover .line-bottom {
    width: 100%;
}

.linner:hover .line-bottom {
    width: 100%;
}

/*** bottom end ***/

.table thead {
    --bs-table-bg: var(--primary-color) !important;
    --bs-table-border-color: var(--bs-border-color);
    --bs-table-accent-bg: transparent;
}

.roboInput {
    border: 0;
    border-bottom: 1px solid #4b4e53;
    border-radius: 0px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    outline: none;
    width: 150px !important;
}

#risk {
    width: 220px !important;
}


.goal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center text */
    position: relative;
    width: 100%;
}

.back-button {
    position: absolute;
    right: 20px;
    /* Adjust position */
    top: 20px;
    /* Adjust position */
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    /* Gold color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s;
    color: white;
}

body.modal-open {
    padding-right: 0px !important;
    overflow-y: scroll;
    /* Ensures the page doesn't jump when scrollbar disappears */
}

.back-button:hover {
    background-color: var(--primary-color);
    color: white;

}

.back-button i {
    color: white;
    font-size: 20px;
}

.goalcontentbg {
    background: #ffcc8c !important;
    color: #000 !important;
    position: relative;
    bottom: 0 !important;
    transition: bottom 0.5s ease-in-out !important;
    padding: 7px !important;
    border-radius: 5px !important;
}

.box {
    box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
    padding: 1rem !important;
    box-sizing: border-box;
    margin-bottom: 1rem !important;
}

.lower-card {
    cursor: pointer;
}

.existing-client {
    background: rgb(2, 0, 36);
    background: linear-gradient(to right, #14467b, #0088bc);

}

.new-client {
    background: rgb(36, 14, 0);
    background: linear-gradient(101deg, rgba(36, 14, 0, 1) 0%, rgba(255, 140, 0, 1) 0%, rgba(255, 94, 0, 1) 64%);

}

.modal-header {
    background-color: var(--primary-color);
}

.threturn.active {
    background: #6ac259 !important;
}

.threturn.a {
    background-color: transparent;
    text-decoration: none;
    outline: none;
}

.activeli {
    background: #002841;
}

.investment-info h5 {
    color: var(--primary-color);
    font-weight: 600;
}

.feature-list i {
    color: var(--secondary-color);
}

.objective-title {
    font-weight: bold;
    color: var(--secondary-color);
}

.objective-header {
    font-weight: 600;
    color: var(--primary-color);
}

.feature-list li {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.yearsfilter a {
    display: inline-block;
    padding: 4px 10px;
    margin: 2px;
    border: 2px solid var(--secondary-color);
    /* Border color (matches the purple) */
    border-radius: 12px;
    color: var(--secondary-color);
    font-weight: bold;
    background-color: white;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.yearsfilter a.active {
    cursor: pointer;
    background-color: var(--secondary-color);
    /* Active background (purple) */
    color: white;
    border-color: var(--secondary-color);
}




.exampleone-post {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.09);
    overflow: hidden;
    transition: 0.3s ease all;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.exampleone-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.exampleone-header img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s ease-in-out;
}

.exampleone-post:hover .exampleone-header img {
    transform: scale(1.05);
}

.exampleone-body {
    padding: 1rem 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.exampleone-body h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #343a40;
    line-height: 1.4;
}




#homeNews .card {
    border-top: 3px solid var(--primary-color) !important;
    border-bottom: 3px solid var(--primary-color) !important;
    border: 0;
    box-shadow: 0 0 5px #dfdbdb;
    border-radius: 15px;
}

.newsBtn {
    color: #fff;
    background-color: var(--primary-color);
    border-radius: 20%;
    padding: 9px 10px;
}

.newsBtn:hover {
    color: #fff;
    background-color: var(--secondary-color);
    border-radius: 20%;
    padding: 9px 10px;
}

.newsline {
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 10px;
}


/*** about us  start ***/

/*** about us  start ***/
.bannerAbout {
    border-radius: 25px;
    /* background: #002248; */
}

.bannerAbout img {
    width: 80%;
    position: relative;
}

.bannerAbout h1 {
    font-size: 65px;
    line-height: 70px;
}

@media (max-width: 767px) {
    .bannerAbout img {
        width: 90%;
        position: relative;
        top: 0 !important;
    }
}

.mission-vision {
    border-radius: 40px;
    background: linear-gradient(to right, #14467b, #0088bc);
    padding: 60px 40px;
    margin-top: 40px;
    color: white;
}

.mission-vision h4 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
}

.mission-vision ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 20px;
    font-size: 17px;
}

.mission-vision li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.mission-vision img {
    width: 50px;
    height: auto;
}

@media (max-width: 767px) {
    .mission-vision {
        padding: 40px 20px;
        border-radius: 20px;
        text-align: center;
    }

    .mission-vision .col-md-6 {
        margin-bottom: 30px;
    }

    .mission-vision ul {
        padding-left: 0;
        list-style-position: inside;
    }
}




.team-section h3 {
    font-size: 26px;
    font-weight: 600;
}

.team-section h5 {
    font-size: 18px;
    font-weight: 500;
    color: #6c757d;
}

.team-section ul,
.services-list {
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.services-list li {
    margin-bottom: 12px;
}

.services-section {
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
}

.text-primary {
    color: #14467b !important;
}

@media (max-width: 768px) {
    .team-section {
        text-align: center;
    }

    .services-section {
        padding: 20px;
    }

    .team-section ul,
    .services-list {
        list-style-position: inside;
    }
}

.contact-icon i {
    color: var(--primary-color);
    /* Change icon color */
}



.contact-card {
    padding: 30px;
    background-color: #f9f9f9c8;
    border-radius: 10px;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.text-design {
    font-size: 1rem;
    color: #555;
}


.testimonial-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.user-icon {
    font-size: 70px;
    color: #00598d;
}

.testimonial-content h5 {
    font-weight: 600;
    color: #213360;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}




.ag-courses_box {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 20px 0;
}

.ag-courses_item {
    flex-basis: calc(33.33333% - 30px);
    margin: 0 15px 30px;
    overflow: hidden;
    border-radius: 28px;
}

.ag-courses-item_link {
    display: block;
    padding: 30px 20px;
    background-color: #e4f0fb;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ag-courses-item_link:hover {
    text-decoration: none;
    color: #fff !important;
    transform: translateY(-5px);
}

.ag-courses-item_link:hover .ag-courses-item_bg {
    transform: scale(10);
}


.ag-courses-item_link:hover .ag-courses-item_title,
.ag-courses-item_link:hover .ag-courses-item_title i,
.ag-courses-item_link:hover .ag-courses-item_date-box,
.ag-courses-item_link:hover .ag-courses-item_date {
    color: #fff;
}

.ag-courses-item_title {
    min-height: 87px;
    margin-bottom: 25px;
    font-weight: bold;
    font-size: 30px;
    color: #373636;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ag-courses-item_title i {
    font-size: 28px;
    color: var(--primary-color);
    ;
}

.ag-courses-item_date-box {
    font-size: 18px;
    color: #373636;
    z-index: 2;
    position: relative;
}

.ag-courses-item_date {
    font-weight: bold;
    color: #373636;
    transition: color 0.5s ease;
}

.ag-courses-item_bg {
    height: 128px;
    width: 128px;
    background-color: var(--secondary-color);
    z-index: 1;
    position: absolute;
    top: -75px;
    right: -75px;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.ag-courses_item:nth-child(2n) .ag-courses-item_bg {
    background-color: var(--secondary-color);
}

.ag-courses_item:nth-child(3n) .ag-courses-item_bg {
    background-color: var(--secondary-color);
}

.ag-courses_item:nth-child(4n) .ag-courses-item_bg {
    background-color: var(--secondary-color);
}

.ag-courses_item:nth-child(5n) .ag-courses-item_bg {
    background-color: var(--secondary-color);
}

.ag-courses_item:nth-child(6n) .ag-courses-item_bg {
    background-color: var(--secondary-color);
}

@media only screen and (max-width: 979px) {
    .ag-courses_item {
        flex-basis: calc(50% - 30px);
    }

    .ag-courses-item_title {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .ag-format-container {
        width: 96%;
    }
}

@media only screen and (max-width: 639px) {
    .ag-courses_item {
        flex-basis: 100%;
    }

    .ag-courses-item_title {
        min-height: 72px;
        font-size: 24px;
        line-height: 1;
    }

    .ag-courses-item_link {
        padding: 22px 40px;
    }

    .ag-courses-item_date-box {
        font-size: 16px;
    }
}

.bannerHighText {
    font-size: 40px;
    color: var(--primary-color);
}