* {
    font-family: "Rajdhani", sans-serif;
    font-weight: 500;
}

#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;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
    border-bottom: 1px solid #0000ff33;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
    font-size: 21px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}

/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}

.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}

/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(../img/bg-breadcrumb.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/


/* SERVICE CARD */
.service-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    font-family: "Rajdhani", sans-serif;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* IMAGE AREA */
.service-img {
    position: relative;
    width: 100%;
    height: 220px;
    /* 🔥 SAME IMAGE SIZE */
    background: #f7f7f7;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* 🔥 keeps all images same size */
    transition: transform 0.5s ease;
}

.service-item:hover .service-img img {
    transform: scale(1.08);
}

/* ICON */
.service-icon {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #1c1c9b;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-icon img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

/* CONTENT */
.service-content {
    padding: 50px 24px 30px;
}

.service-content h4 a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
}

.service-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* BUTTON */
.service-content .btn {
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-content .btn:hover {
    transform: translateX(5px);
}

/* VIEW MORE BUTTON */
.view-more-btn {
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.25);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .service-img {
        height: 200px;
    }
}

@media (max-width: 575px) {
    .service-img {
        height: 180px;
    }
}


.view-more-btn {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    border: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}



/*** Service End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-light);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-white);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}

/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}

/*** Team End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-light);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

/*** copyright end ***/
/* Section */
.testimonial-section {
    font-family: "Rajdhani", sans-serif;
}

/* Headings */
.section-subtitle {
    color: #1e40af;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title {
    font-weight: 700;
    color: #0f172a;
}

/* Card */
.testimonial-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    position: relative;
    width: 100%;
    border: 2px solid #eaeaea;
    height: 100;
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 10px 10px rgba(0, 0, 0, 0.1);
}

/* Quote icon */
.quote-icon {
    position: absolute;
    top: 20px;
    left: 5px;
    font-size: 50px;
    color: #1a18828e;
    font-family: serif;
    line-height: 1;
}

/* Text */
.testimonial-text {
    font-size: 16px;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Footer */
.testimonial-footer {
    border-top: 1px solid #eef2ff;
    padding-top: 15px;
    text-align: right;
}

.testimonial-footer h6 {
    margin: 0;
    font-weight: 700;
    color: #1e40af;
    text-transform: capitalize;
}

.testimonial-footer span {
    font-size: 14px;
    color: #475569;
    text-transform: uppercase;
    text-decoration: underline;
}

/* Owl spacing fix */
.owl-carousel .owl-stage {
    display: flex;
}



.client-name {
    font-size: 16px;
    font-weight: 700;
    color: #015fc9;
}


.client-role {
    font-size: 13px;
    color: #6c757d;
}

/*--- Existing Styles ---*/
.step-container {
    position: relative;
    z-index: 1;
}

.step-progress-bg {
    position: absolute;
    top: 20px;
    left: 10%;
    width: 80%;
    height: 4px;
    background-color: #e9ecef;
    z-index: -1;
}

.step-progress-bar {
    position: absolute;
    top: 20px;
    left: 10%;
    height: 4px;
    background-color: #0d6efd;
    z-index: -1;
    transition: width 0.4s ease;
}

.step-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    background-color: #fff;
    border: 2px solid #e9ecef;
}

.step-item.active .step-icon {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

.upload-zone {
    border: 2px dashed #a4b1bc;
    background-color: #f8faff;
    border-radius: 12px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.upload-zone:hover {
    border-color: #0d6efd;
    background-color: #f0f5ff;
}

.upload-zone.file-selected {
    border-style: solid;
    border-color: #198754;
    background-color: #f0fff4;
}

.payment-select-label {
    cursor: pointer;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.btn-check:checked+.payment-select-label::after {
    content: "\f00c";
    font-family: "Rajdhani", sans-serif;
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    color: #0d6efd;
}

.progress-locked {
    background-color: #e9ecef;
    position: relative;
    opacity: 0.7;
}

.progress-locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #6c757d;
    font-weight: bold;
    text-transform: uppercase;
}

.ai-glow-effect {
    filter: drop-shadow(0 0 15px rgba(13, 110, 253, 0.7));
    animation: ai-pulse 2s infinite alternate;
}

@keyframes ai-pulse {
    from {
        filter: drop-shadow(0 0 10px rgba(13, 110, 253, 0.5));
    }

    to {
        filter: drop-shadow(0 0 25px rgba(13, 110, 253, 1));
    }
}

.progress-bar-dynamic {
    background: linear-gradient(90deg, #0d6efd 70%, #68a5ff 100%);
    box-shadow: 5px 0 20px rgba(13, 110, 253, 0.9);
    position: relative;
    overflow: visible;
}

.progress-bar-dynamic::after {
    content: '\f005';
    font-family: "Rajdhani", sans-serif;
    font-weight: 900;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    color: #fff;
    text-shadow: 0 0 10px #0d6efd, 0 0 20px #fff;
    animation: sparkle-spin 3s linear infinite;
}

@keyframes sparkle-spin {
    0% {
        transform: translateY(-50%) scale(0.8) rotate(0deg);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-50%) scale(1.2) rotate(180deg);
        opacity: 1;
    }

    100% {
        transform: translateY(-50%) scale(0.8) rotate(360deg);
        opacity: 0.8;
    }
}

.btn-check:checked+.payment-select-label {
    border-color: #0d6efd;
    background-color: #f2f7ff;
    box-shadow: 0 0 25px rgba(13, 110, 253, 0.4);
}

#submitBtn {
    background: linear-gradient(135deg, #5ea3ff 0%, #0d6efd 50%, #0852c1 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

#submitBtn:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
    animation: btn-shine 1.5s infinite;
}

@keyframes btn-shine {
    100% {
        left: 100%;
    }
}

/*--- NEW CSS FOR MULTICOLOR TEXT ---*/
.text-gradient-primary {
    /* Define the gradient colors matching your theme (Blue -> Cyan -> Blue) */
    background: linear-gradient(to right, #0d6efd, #0dcaf0, #0d6efd);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    display: inline-block;
    animation: gradient-shift 3s linear infinite;
}

@keyframes gradient-shift {
    to {
        background-position: 200% center;
    }
}

/* ----mission-list------ */
.mission-tabs .nav-link {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    border: none;
    border-bottom: 3px solid #1a1882;
    margin-right: 10px;
}

.mission-tabs .nav-link.active {
    background-color: #1a1882;
    color: #fff;
    border-bottom: none;
}

.mission-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.mission-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    line-height: 1.1;
}

.mission-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
}

/* -----vision-list------- */
.vision-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.vision-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    line-height: 1.1;
}

.vision-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
}



/* ----info-card----- */

.hover-card {
    position: relative;
    transition: all 0.35s ease;
    background: #fff;
}

.hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.15);
    background: linear-gradient(180deg, #ffffff, #f8f9ff);
}

/* Icon animation */
.hover-card i {
    transition: transform 0.3s ease;
}

.hover-card:hover i {
    transform: scale(1.1);
}

/* ---Contact us */
.contact-hero {
    overflow: hidden;
    /* prevents scroll jump */
}

.animate-title {
    animation: slideFromTop 1s ease-out forwards;
    opacity: 0;
}

@keyframes slideFromTop {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-title {
    animation: slideFromTop 1s ease-out forwards, glow 1.5s ease-in-out;
}

@keyframes glow {
    0% {
        text-shadow: none;
    }

    100% {
        text-shadow: 0 4px 20px rgba(66, 59, 59, 0.4);
    }
}

.bg-customs {
    background-color: #1a1882;
}

.header-carousel-item {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    /* dark fade */
    z-index: 1;
}

.carousel-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.carousel-content h1,
.carousel-content h4,
.carousel-content p {
    color: #fff;
}

.carousel-content .btn-outline-light:hover {
    background: #fff;
    color: #000;
}


.owl-nav {
    display: none;
}

.about-section {
    overflow: hidden;
}

/* LEFT IMAGE AREA */
.about-images {
    min-height: 450px;
}

.about-images img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.img-main {
    width: 85%;
}

.img-overlay {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 65%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    background: #fff;
    padding: 10px;
}

/* EXPERIENCE BADGE */
.experience-badge {
    position: absolute;
    left: -22px;
    top: 10%;
    background: #1a1882;
    color: #fff;
    padding: 14px 8px;
    text-align: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    border-radius: 6px;
    font-weight: 600;
}

.experience-badge span {
    font-size: 17px;
    font-weight: bold;
}

.experience-badge small {
    font-size: 14px;
    letter-spacing: 1px;
}

/* CONTENT */
.about-content p {
    color: #555;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .experience-badge {
        display: none;
    }

    .img-main,
    .img-overlay {
        width: 100%;
        position: relative;
        bottom: 0;
        right: 0;
        margin-bottom: 20px;
    }
}

.cta-section {
    position: relative;
    background: url("../../images/banner-image/slider-1.jpg") center center / cover no-repeat;
    padding: 90px 0;
    color: #fff;
    font-family: "Rajdhani", sans-serif;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(15, 16, 130, 0.95) 0%,
            rgba(15, 16, 130, 0.85) 50%,
            rgba(15, 16, 130, 0.95) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

/* LEFT */
.cta-left .cta-tag {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-left h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
}

/* RIGHT */
.cta-right p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 18px;
}

/* BUTTON */
.cta-btn {
    background: #fff;
    color: #000;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #e6e6e6;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .cta-left h1 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .cta-section {
        text-align: center;
    }

    .cta-left h1 {
        font-size: 34px;
    }
}

.btn-custom {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #787878;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgba(0, 0, 0, 0);
    padding: .375rem .75rem;
    font-size: 1rem;
    /* border-radius: 10px; */
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-custom.btn-primary {
    color: var(--bs-white);
    border: none;
    background-color: #1a1882;
}

.breadcrumb-hero {
    position: relative;
    background-image: url('../../images/banner-image/breadcrum.jpg');
    /* change image */
    background-size: cover;
    background-position: top;
    min-height: 240px;
    display: flex;
    align-items: center;
    color: #fff;
    font-family: "Rajdhani", sans-serif;
}

.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(26 24 130 / 76%), rgb(255 255 255 / 0%));
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

/* Title */
.breadcrumb-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    animation: fadeUp 1s ease forwards;
}

/* Breadcrumb */
.breadcrumb-nav {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.breadcrumb-nav a:hover {
    color: #3b82f6;
}

.breadcrumb-nav span {
    color: #cbd5f5;
}

.breadcrumb-nav .active {
    color: #ffffff;
    font-weight: 600;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb-title {
        font-size: 38px;
    }

    .breadcrumb-hero {
        min-height: 260px;
    }
}