/********** Template CSS **********/
:root {
    --primary: rgba(1, 69, 172, 1);
    --secondary: #000;
    --light: #F2F8FE;
    --dark: #111111;
}

.back-to-top {
    color: #FFF;
    background-color: rgba(1, 69, 172, 1);
    border: 1px solid rgba(1, 69, 172, 1);
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    /* font-weight: 500 !important; */
    font-weight: 500;
    margin: 0;
}

p {
    margin: 0;
    padding: 0;
}

section {
    padding: 50px 0;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


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

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

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

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

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

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

.Header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*** Navbar ***/
.navbar.sticky-top {
    width: 100%;
    top: -100px;
    transition: .5s;
}

.navbar-brand {
    width: 170px;
    height: 80px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 10px 0 10px;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary) !important;
    border-bottom: 2px solid var(--primary);
}

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



.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}

.OffcanvasTargetBtnBox {
    display: none;
}

.HeaderOffcanvas .offcanvas-header {
    padding: 5px 16px;
}

.HeaderOffcanvas .offcanvas-start {
    width: 300px;
}

/*** Header ***/
.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.MyOffcanvasUl .MyOffcanvasLi .nav-link {
    padding-left: 0;
}

.MyOffcanvasUl .MyOffcanvasLi .nav-link.active {
    color: var(--primary) !important;
    border-bottom: 2px solid var(--primary);
}

/*** Service ***/
.service-item {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.service-item a {
    margin-top: 10px;
    display: inline-block;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -80px;
    right: -80px;
    border: 80px solid;
    transform: rotate(45deg);
    opacity: 1;
    transition: .5s;
}

.service-item.bg-white::after {
    border-color: transparent transparent var(--light) transparent;
}

.service-item.bg-light::after {
    border-color: transparent transparent #FFFFFF transparent;
}

.service-item:hover::after {
    opacity: 0;
}


/*** Roadmap ***/
.roadmap-carousel {
    position: relative;
}

.roadmap-carousel::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    top: 20px;
    left: 0;
    border-top: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item .roadmap-point {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 6px;
    left: 50%;
    margin-left: -15px;
    background: #FFFFFF;
    border: 2px solid var(--primary);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--primary);
}

.roadmap-carousel .roadmap-item {
    position: relative;
    padding-top: 150px;
    text-align: center;
}

.roadmap-carousel .roadmap-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 115px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-right: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 111px;
    left: 50%;
    margin-left: -7px;
    transform: rotate(45deg);
    background: var(--primary);
}

.roadmap-carousel .owl-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

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


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

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

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

.footer .btn.btn-square {
    color: var(--primary);
    border: 1px solid var(--primary);
}

.footer .btn.btn-square:hover {
    color: #FFFFFF;
    background: var(--primary);
}

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

.footer .copyright a {
    color: var(--primary);
}

.footer .copyright a:hover {
    color: var(--dark);
}

/* HeroSection Start  */
.HeroSection {
    width: 100%;
    height: calc(100vh - 75px);
    background-image: url("../img/banner/hero-banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#particles-js {
    width: 100%;
    height: 100%;
    background-color: #0145AC;
    position: absolute;
    left: 0;
    top: 0;

}

.HeroSection::after {
    content: "";
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
}

.HeroHeading {
    font-size: 45px;
    line-height: 50px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.HeroBox {
    height: 100%;
    padding: 150px 0;
    gap: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
}

.HeroSubText {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ExploreMoreLink {
    width: 200px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    background-color: rgba(1, 69, 172, 1);
    color: #FFF;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.ExploreMoreLink:hover {
    border: 1px solid rgba(1, 69, 172, 1);
    color: rgba(1, 69, 172, 1);
    background-color: #fff;

}

.bor10px {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.iconSize {
    width: 60px;
    height: 60px;
}

.imgCover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footerLogo {
    width: 170px;
    height: 70px;
}

/* HeroSection End  */

/* ------------- Section Header Style -------------- */
.section-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.section-header h3 {
    font-size: 32px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-header h3::before {
    content: '';
    position: absolute;
    display: block;
    width: 100px;
    height: 0;
    border-bottom: 4px dashed #353535;
    bottom: 0;
    left: calc(50% - 50px);
}

.section-header p {
    text-align: center;
    padding-bottom: 30px;
}


/* ---------------- About Us Style ----------------- */
.about {
    position: relative;
    padding: 60px 0 40px 0;
}

.about .about-row {
    margin-bottom: 50px;
}

.about .about-col {
    background: #ffffff;
    height: 100%;
    margin-bottom: 20px;
    border: 1px solid rgba(1, 69, 172, 0.5);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.about .about-col:hover {
    box-shadow: 0px 2px 10px #dddddd;
}

.about .about-col .img {
    position: relative;
    border-radius: 8px 8px 0 0;
    -webkit-border-radius: 8px 8px 0 0;
    -moz-border-radius: 8px 8px 0 0;
    -ms-border-radius: 8px 8px 0 0;
    -o-border-radius: 8px 8px 0 0;
}

.about .about-col .img img {
    border-radius: 8px 8px 0 0;
    -webkit-border-radius: 8px 8px 0 0;
    -moz-border-radius: 8px 8px 0 0;
    -ms-border-radius: 8px 8px 0 0;
    -o-border-radius: 8px 8px 0 0;
}

.about .about-col .icon {
    width: 64px;
    height: 64px;
    padding-top: 10px;
    padding-left: 1px;
    text-align: center;
    position: absolute;
    background-color: #1dbf73;
    border-radius: 50%;
    text-align: center;
    border: 4px solid #ffffff;
    left: calc(50% - 32px);
    bottom: -30px;
    transition: 0.3s;
}

.about .about-col i {
    font-size: 36px;
    line-height: 1;
    color: #ffffff;
    transition: 0.3s;
}

.about .about-col:hover .icon {
    background-color: #ffffff;
}

.about .about-col:hover i {
    color: #1dbf73;
}

.about .about-col h2 {
    color: #353535;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding: 0;
    margin: 20px 0 12px 0;
}

.about .about-col h2 a {
    color: #353535;
}

.about .about-col h2 a:hover {
    color: #1dbf73;
}

.about .about-col p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #353535;
    margin-bottom: 0;
    padding: 0 30px;
}

.about .read-more {
    width: 100%;
    text-align: center;
    padding: 20px 0 30px;
}


.about .about-col:hover .read-more a,
.about .read-more a:hover {
    background: #353535;
    color: #ffffff;
}

.about .about-row .read-more {
    text-align: left;
}

.about .about-row .read-more a {
    margin: 0;
}

/* WhyChooseUsSection Start  */

.WhyChooseUsSection {
    padding: 100px 0;
}



.WhyChooseUsCenterBox .HeroHeading,
.WhyChooseUsCenterBox .HeroSubText {
    color: #000;
}

.BlueColor {
    color: rgba(1, 69, 172, 1);
}


.WhyChooseUsCard {
    padding: 20px;
    height: 100%;
    gap: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 21px 15px 74px -4px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.WhyChooseUsCard:hover {
    background-color: rgba(1, 69, 172, 0.1);
}

.WhyChooseUsCard:hover .WhyChooseUsCardNumber {
    background-color: rgba(1, 69, 172, 1);
    color: #fff;
    rotate: 360deg;
}

.WhyChooseUsCardNumber {
    font-size: 30px;
    display: inline-block;
    font-weight: 900;
    padding: 20px;
    color: rgba(1, 69, 172, 1);
    line-height: normal;
    font-style: italic;
    background-color: #fff;
    width: fit-content;
    border-radius: 12px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    rotate: -30deg;

}

.WhyChooseUsCardHeding {
    font-size: 25px;
    line-height: 30px;
    font-weight: 900;
    color: #000;
}

.WhyChooseUsCardText {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.5);
}

.WhyChooseUsGride {
    margin-top: 50px;
}

/* WhyChooseUsSection End  */


/* RoadMapSection Start  */
.RoadMapcard {
    min-height: 380px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: rgba(1, 69, 172, 0.3);
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    border: 1px solid #0145AC;
    background-color: #fff;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.RoadMapcard:hover {
    background-color: rgba(1, 69, 172, 0.1);
}

.RoadMapcard .WhyChooseUsCardNumber {
    rotate: 0deg;
}

.RoadMapcard:hover .WhyChooseUsCardNumber {
    background-color: rgba(1, 69, 172, 1);
    color: #fff;
    rotate: 0deg;
}

.RoadMapCardHeading {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 20px;
    text-align: left;
}

.RoadMapCardText {
    font-size: 16px;
    line-height: 20px;
    text-align: left;
}

.FourNotFourImgBox {
    height: 500px;
}

.FourNotFourImgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RoadMapSection End */











/* ======================================================================== Media Start ============================================================= */
/* ======================================================================== Media Start ============================================================= */
/* ======================================================================== Media Start ============================================================= */
/* ======================================================================== Media Start ============================================================= */
/* ======================================================================== Media Start ============================================================= */
/* ======================================================================== Media Start ============================================================= */
/* ======================================================================== Media Start ============================================================= */
/* ======================================================================== Media Start ============================================================= */
/* ======================================================================== Media Start ============================================================= */

@media (max-width:1440px) {

    /* WhyChooseUsSection Start  */

    .WhyChooseUsSection {
        padding: 50px 0;
    }

    .WhyChooseUsCardHeding {
        font-size: 22px;
        line-height: 25px;
    }

    .WhyChooseUsCardText {
        font-size: 15px;
    }

    .WhyChooseUsCardNumber {
        font-size: 25px;
    }

    /* WhyChooseUsSection End  */
}

@media (max-width:768px) {

    /* WhyChooseUsSection Start  */
    .WhyChooseUsSection {
        padding: 30px 0;
    }

    .HeroHeading {
        font-size: 30px;
        line-height: 40px;
    }

    .HeroSubText {
        font-size: 14px;
        max-width: 100%;
    }

    .WhyChooseUsCardHeding {
        font-size: 20px;
        line-height: 20px;
    }

    .WhyChooseUsCardText {
        font-size: 14px;
    }

    .WhyChooseUsCardNumber {
        font-size: 20px;
        padding: 15px;
    }

    .WhyChooseUsGride {
        margin-top: 30px;
    }



    /* WhyChooseUsSection End  */
}


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

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

    .OffcanvasTargetBtnBox {
        display: block;
    }

    .OffcanvasTargetBtn {
        width: 50px;
        height: 50px;
        gap: 4px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(1, 69, 172, 1);
        border-radius: 5px;
    }

    .ThreeLine {
        width: 20px;
        height: 3px;
        background-color: rgba(1, 69, 172, 1);
        display: block;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }

    .AboutLeftOrder1 {
        order: 2;
    }

    .AboutRightOrder2 {
        order: 1;
    }
}

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

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


@media (max-width:576px) {


    /* HeroSection Start  */

    .HeroSection {
        height: 100%;
    }



    .HeroBox {
        padding: 50px 0;
        gap: 20px;
    }

    .HeroHeading {
        font-size: 20px;
        line-height: 25px;
    }

    .HeroSubText {
        font-size: 14px;
        line-height: 20px;
    }

    .ExploreMoreLink {
        width: 200px;
        height: 40px;
        font-size: 14px;
    }

    .AboutBox {
        padding: 30px 0 0;
    }

    /* .HeroSection End  */
    /* RoadMapSection Start  */

    .RoadMapcard {
        min-height: auto;
        padding: 20px;
    }

    .roadmap-carousel .owl-nav {
        margin-top: 20px;
    }

    .RoadMapCardHeading {
        font-size: 16px;
    }

    .RoadMapCardText {
        font-size: 15px;
    }


    /* RoadMapSection End */

}


/* ======================================================================== Media End ============================================================= */
/* ======================================================================== Media End ============================================================= */
/* ======================================================================== Media End ============================================================= */
/* ======================================================================== Media End ============================================================= */
/* ======================================================================== Media End ============================================================= */
/* ======================================================================== Media End ============================================================= */
/* ======================================================================== Media End ============================================================= */
/* ======================================================================== Media End ============================================================= */
/* ======================================================================== Media End ============================================================= */
/* ======================================================================== Media End ============================================================= */
/* ======================================================================== Media End ============================================================= */
/* ======================================================================== Media End ============================================================= */
/* ======================================================================== Media End ============================================================= */
/* ======================================================================== Media End ============================================================= */
/* ======================================================================== Media End ============================================================= */
/* ======================================================================== Media End ============================================================= */

/* Improved Modern Tech Navbar Styles */
.custom-navbar {
    background: linear-gradient(90deg, #0a2540 0%, #1e2a5c 100%);
    /* border-radius: 0 0 2rem 2rem; */
    box-shadow: 0 4px 24px 0 rgba(10,37,64,0.10), 0 1.5px 0 0 #23395d;
    border-bottom: 1.5px solid #23395d;
    padding: 0.5rem 0;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.custom-navbar .navbar-brand span {
    color: #fff;
    letter-spacing: 0.5px;
}

.custom-navbar .navbar-nav .nav-link {
    position: relative;
    color: #e3e8ee;
    font-weight: 500;
    font-size: 1.08rem;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    margin: 0 0.25rem;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
    z-index: 1;
    overflow: visible;
    background: transparent;
}

.custom-navbar .navbar-nav .nav-link.active {
    background: linear-gradient(90deg, #0145ac 60%, #1e2a5c 100%);
    color: #fff !important;
    box-shadow: 0 2px 12px 0 rgba(1,69,172,0.10);
}

.custom-navbar .navbar-nav .nav-link::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #38a1ff, #0145ac);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(.77,0,.18,1), left 0.4s cubic-bezier(.77,0,.18,1);
    opacity: 0.7;
}

.custom-navbar .navbar-nav .nav-link:hover::after {
    width: 70%;
    left: 15%;
}

.custom-navbar .navbar-nav .nav-link:hover {
    color: #fff;
    background: rgba(1,69,172,0.18);
    box-shadow: 0 0 8px 0 #0145ac33;
}

.custom-navbar .navbar-nav .nav-link.active::after {
    width: 100%;
    left: 0;
    background: linear-gradient(90deg, #fff, #0145ac);
    opacity: 1;
}

.btn-talk {
    background: linear-gradient(90deg, #0145ac 60%, #38a1ff 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 2px 12px 0 rgba(1,69,172,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    letter-spacing: 0.5px;
    font-size: 1.08rem;
    border: none;
}
.btn-talk:hover, .btn-talk:focus {
    background: linear-gradient(90deg, #38a1ff 0%, #0145ac 100%);
    color: #fff;
    box-shadow: 0 0 16px 0 #0145ac55;
    transform: translateY(-2px) scale(1.04);
}

/* Offcanvas (Mobile) Styles */
.custom-offcanvas {
    background: rgba(10,37,64,0.98);
    backdrop-filter: blur(8px);
    border-radius: 1.5rem 0 0 1.5rem;
    box-shadow: -4px 0 24px 0 rgba(1,69,172,0.10);
}
.custom-offcanvas .offcanvas-title {
    color: #fff;
    font-weight: 600;
}
.custom-offcanvas .nav-link {
    color: #e3e8ee;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    /* border-radius: 999px; */
    padding: 0.5rem 1.25rem;
}
.custom-offcanvas .nav-link.active, .custom-offcanvas .nav-link:hover {
    background: linear-gradient(90deg, #0145ac 60%, #1e2a5c 100%);
    color: #fff;
}
.custom-offcanvas .btn-talk {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 991.98px) {
    .custom-navbar {
        /* border-radius: 0 0 1.25rem 1.25rem; */
        padding: 0.25rem 0;
    }
    .custom-navbar .navbar-brand span {
        font-size: 1.1rem;
    }
    .custom-navbar .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    .btn-talk {
        font-size: 1rem;
        padding: 0.5rem 1.1rem;
    }
}

/* Navbar Toggler (Hamburger) Icon Styling */
.navbar-toggler {
    border: none;
    background: transparent;
    outline: none;
    color: #fff;
    box-shadow: none;
}
.navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.95)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 2rem;
    height: 2rem;
}

/* Improved Offcanvas Styles */
.custom-offcanvas {
    background: linear-gradient(120deg, #0a2540 0%, #1e2a5c 100%);
    color: #fff;
    backdrop-filter: blur(8px);
    border-radius: 1.5rem 0 0 1.5rem;
    box-shadow: -4px 0 24px 0 rgba(1,69,172,0.10);
    padding-top: 1.5rem;
}
.custom-offcanvas .offcanvas-title {
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
}
.custom-offcanvas .btn-close {
    filter: invert(1) grayscale(1);
    opacity: 0.8;
}
.custom-offcanvas .navbar-nav .nav-link {
    color: #e3e8ee;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    transition: background 0.2s, color 0.2s;
}
.custom-offcanvas .nav-link.active, .custom-offcanvas .nav-link:hover {
    background: linear-gradient(90deg, #0145ac 60%, #1e2a5c 100%);
    color: #fff;
}
.custom-offcanvas .btn-talk {
    width: 100%;
    margin-top: 1rem;
    background: linear-gradient(90deg, #0145ac 60%, #38a1ff 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 2px 12px 0 rgba(1,69,172,0.10);
    border: none;
    font-size: 1.08rem;
}
.custom-offcanvas .btn-talk:hover, .custom-offcanvas .btn-talk:focus {
    background: linear-gradient(90deg, #38a1ff 0%, #0145ac 100%);
    color: #fff;
    box-shadow: 0 0 16px 0 #0145ac55;
    transform: translateY(-2px) scale(1.04);
}

/* Glass Offcanvas (Mobile Menu) - No Border Radius, Navbar Color */
.glass-offcanvas {
    background: linear-gradient(90deg, #0a2540 0%, #1e2a5c 100%);
    color: #fff;
    backdrop-filter: blur(8px);
    /* border-radius: 1.5rem 0 0 1.5rem; */
    border-radius: 0;
    box-shadow: -4px 0 24px 0 rgba(1,69,172,0.10);
    padding-top: 1.5rem;
}