html {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'CalSans-Regular';
    src: url('/static/vendor/fonts/CalSans-Regular.ttf') format('truetype');
    font-weight: 100 !important;
}

body {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    background-color: white;
}

h1,
h2,
h3,
h4,
h5,
h6,
.highlight,
.navMenu {
    font-family: 'CalSans-Regular', sans-serif;
    font-weight: bolder;
}

p,
span,
li,
small,
.headerText {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.appNavLogo {
    height: 140px;
    padding-left: 30px;
    margin-top: 10px !important;
}


@media (max-width:425px) {
    .appNavLogo {
        max-width: 210px !important;
    }
}

.appHeader {
    position: fixed;
    top: 20;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    background-color: #E4EFFF !important;
}

.appNavBar {
    position: relative;
}

/* CENTER NAV PERFECTLY */
.navLinks {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 95px !important;
}


@media (max-width:425px) {
    .appNavLogo {
        max-width: 210px;
    }
}

.navLinks li {
    position: relative;
}



.navMenu {
    color: #011D44 !important;
    /* font-weight: 700; */
    text-decoration: none;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease;
}

.navMenu::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #F7120E;
    transition: width 0.35s ease;
}

.navMenu:hover {
    transform: translateY(-2px);
    color: #F7120E !important;
}

.navMenu:hover::after {
    width: 100%;
}

.navMenu.active {
    color: #F7120E !important;
    animation: activeGlow 2.5s ease-in-out infinite;
}

.navMenu.active::after {
    width: 100%;
    top: 30px !important;
    font-weight: 500 !important;
}

@keyframes activeGlow {
    0% {
        text-shadow: 0 0 0 rgba(255, 255, 255, 0.784);
    }

    50% {
        text-shadow: 0 0 10px rgb(215, 88, 190);
    }

    100% {
        text-shadow: 0 0 0 rgb(255, 255, 255);
    }
}

.inquiryNavBtn {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    display: inline-block;
    background-color: #F7120E !important;
    color: #fff !important;
    border: 1px solid #F7120E !important;
    z-index: 1;
    padding: 10px 20px;
    transition: color 0.35s ease;
}

.inquiryNavBtn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #E4EFFF;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.inquiryNavBtn:hover {
    color: #011D44 !important;
    border: 1px solid #011D44 !important;
}

.inquiryNavBtn:hover::before {
    transform: scaleX(1);
}



/* ===== Offcanvas Css Start ===== */
.cursorPointer {
    cursor: pointer;
}

#mobileNav,
#mobileNav a,
#mobileNav summary,
#mobileNav p {
    font-weight: 500 !important;
}

.offcanvas {
    background-color: #011D44 !important;
}

.offcanvas-header {
    /* background: #ED2490 !important; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobileNavLink {
    color: white;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-decoration: none;
    position: relative;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.mobileNavLink:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

.mobileNavLink.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 90%;
    height: 3px;
    background: #FD5D51;
    border-radius: 10px;
    transform: translateX(-50%);
}

.mobileNavLink .active a {
    color: #FD5D51 !important;
}


@keyframes mobileActive {
    0% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

.menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
}

/* Off Canvas Css End */


/* Index Page Hero Section */
.indexHero {
    background: #011D44 !important;
}

.indexHeroText {
    padding-left: 80px;
}


.indexHeroTextTop {
    padding-top: 20px;
}

.indexHeroText h1 {
    font-size: 60px !important;
    font-weight: bolder !important;
    line-height: 1.4;
}



.indexHeroText img {
    animation: handPulse 3s ease-in-out infinite;
}

@keyframes handPulse {
    0% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.08) translateY(-5px);
    }

    100% {
        transform: scale(1) translateY(0);
    }
}

.indexHeroText p {
    font-size: 20px !important;
    font-weight: 500 !important;
    width: 95%;
}

.indexHeroContent {
    position: relative;
}



.indexHeroContent p {
    position: relative;
    z-index: 1;
}



.heroAnimContainer {
    position: relative;
    width: 530px;
    height: 550px;
    overflow: hidden;
    border-radius: 12px;
}

.heroImg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    object-fit: cover;
    opacity: 0;
}

.heroImg.img1 {
    animation: ultraSmoothFade 6s infinite cubic-bezier(0.77, 0, 0.175, 1);
    animation-delay: 0s;
    top: 3%;
    height: 85% !important;
}

.heroImg.img2 {
    animation: ultraSmoothFade 6s infinite cubic-bezier(0.77, 0, 0.175, 1);
    animation-delay: 3s;
    top: 3%;
    height: 85% !important;
}

@keyframes ultraSmoothFade {
    0% {
        opacity: 0;
        transform: scale(1.02);
    }

    10% {
        opacity: 1;
        transform: scale(1);
    }

    45% {
        opacity: 1;
        transform: scale(1);
    }

    60% {
        opacity: 0;
        transform: scale(0.98);
    }

    100% {
        opacity: 0;
        transform: scale(0.98);
    }
}

.indexOrderBtn {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    display: inline-block;
    color: #fff;
    background-color: #F7120E;
    border: 1px solid transparent !important;
    z-index: 1;
    padding: 10px 20px 10px 20px;
    transition: color 0.35s ease;
}

.indexOrderBtn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #011D44;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}


.indexOrderBtn:hover {
    color: white !important;
    border: 1px solid white !important;
}

.indexOrderBtn:hover::before {
    transform: scaleX(1);
}



@media (max-width: 1024px) {

    .indexHeroText h1 {
        font-size: 35px !important;
    }

    .indexHeroContent {
        margin-top: 25px !important;
    }

    .indexHeroText p {
        font-size: 15px !important;
        width: 100% !important;
    }

    .heroAnimContainer {
        width: 438px !important;
        height: 450px;
    }
}

@media (max-width: 868px) {

    .indexHeroTextTop {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .indexHeroText {
        padding: 20px;
    }

    .indexHeroText p {
        width: 70% !important;
        margin: auto;
    }

    .heroAnimContainer {
        height: 258px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .heroImg {
        width: 85% !important;
        height: auto !important;
        object-fit: contain;
        left: 50% !important;
        transform: translateX(-54%) !important;
    }
}

@media (max-width: 425px) {

    .indexHeroTextTop {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }



    .indexHeroText {
        padding: 15px;
    }

    .indexHeroText h1 {
        font-size: 25px !important;
        line-height: 1.2;
    }

    .indexHeroText p {
        font-size: 11px !important;
        width: 90% !important;
        margin: auto;
    }

    .heroAnimContainer {
        height: 258px !important;
    }

    .heroImg {
        height: 220px;
        width: 100%;
    }

    .heroImg.img2 {
        height: 220px !important;
        width: 100%;
    }




}

@media (max-width: 375px) {

    .indexHeroText {
        padding: 12px;
    }

    .indexHeroText h1 {
        font-size: 19px !important;
    }



    .indexHeroText p {
        font-size: 10px !important;
        width: 95% !important;
    }

    .heroAnimContainer {
        height: 258px !important;
    }

    .heroImg {
        height: 220px;
        width: 100%;
    }

    .heroImg.img2 {
        height: 220px !important;
        width: 100%;
    }




}


/* About Us Section */
.aboutUsSection {
    background: white !important;
    padding: 60px 0;
    overflow: hidden;
}

/* HEADER */
.aboutUsHeader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
}

.aboutUsHeaderText {
    color: #011D44;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.aboutUsHeaderText h2 {
    font-size: 58px !important;
    font-weight: 300 !important;
}

.leftLine,
.rightLine {
    position: relative;
    width: 100px;
    height: 6px;
    overflow: hidden;
    border-radius: 20px;
}

.leftLine::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: #F7120E;
    border-radius: 20px;
    animation: fillLeftLine 1.8s ease forwards;
}

.rightLine::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #F7120E;
    border-radius: 20px;
    animation: fillRightLine 1.8s ease forwards;
}

@keyframes fillLeftLine {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes fillRightLine {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}


/* About Us Content */
.aboutUsWrapper {
    background-color: #E4EFFF !important;
    padding: 50px !important;
}





.aboutUsImg {
    display: flex;
    justify-content: center;
    align-items: center;
}

.aboutUsImg img {
    width: 90%;
    height: auto;
    object-fit: cover;
}

.aboutUsContent {
    width: 50%;
    padding: 40px;
    color: #011D44;
}

.aboutUsContent h4 {
    font-size: 40px !important;
    margin-bottom: 20px !important;
}

.aboutUsContent p {
    line-height: 1.2;
    font-size: 20px !important;
    width: 100% !important;
    margin-bottom: 19px !important;
    color: #011D44;
    font-weight: 400 !important;
}

.aboutUsContent .aboutList {
    font-weight: 300;
}




/* =========================
   ABOUT US RESPONSIVE CSS
========================= */

@media (max-width: 1024px) {

    .aboutUsWrapper {
        padding: 35px !important;
        gap: 20px;
        align-items: center;
    }

    .aboutUsContent {
        width: 55%;
        padding: 20px;
    }

    .aboutUsContent h4 {
        font-size: 30px !important;
        line-height: 1.4;
    }

    .aboutUsContent p,
    .aboutUsContent li {
        font-size: 15px !important;
        line-height: 1.8;
    }

    .aboutUsHeaderText h2 {
        font-size: 42px !important;
    }

    .leftLine,
    .rightLine {
        width: 80px;
        height: 5px;
    }
}


/* =========================
   TABLET
========================= */

@media (max-width: 990px) {

    .aboutUsSection {
        padding: 40px 0;
    }

    .aboutUsWrapper {
        flex-direction: column;
        padding: 30px 20px !important;
    }

    .aboutUsImg,
    .aboutUsContent {
        width: 100% !important;
    }

    .aboutUsImg {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .aboutUsImg img {
        width: 80%;
        height: auto;
        object-fit: contain !important;
    }

    .aboutUsContent {
        text-align: center;
        padding: 10px;
    }

    .aboutUsContent h4 {
        font-size: 28px !important;
        margin-bottom: 15px !important;
    }

    .aboutUsContent p,
    .aboutUsContent li {
        font-size: 15px !important;
        line-height: 1.8;
    }

    .aboutUsContent ul {
        padding-left: 0;
        list-style-position: inside;
    }

    .aboutUsContent ul {
        width: fit-content;
        margin: 0 auto;
        padding-left: 20px;
        text-align: left;
        margin-bottom: 20px;
    }

    .aboutUsContent li {
        font-size: 15px !important;
        line-height: 1.8;
        text-align: start;
    }

    .aboutUsHeader {
        gap: 10px;
        margin-bottom: 10px;
    }

    .aboutUsHeaderText h2 {
        font-size: 34px !important;
    }

    .leftLine,
    .rightLine {
        width: 60px;
        height: 4px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 425px) {

    .aboutUsSection {
        padding: 30px 0;
    }

    .aboutUsWrapper {
        padding: 20px 15px !important;
    }

    .aboutUsImg img {
        width: 95%;
    }

    .aboutUsContent h4 {
        font-size: 22px !important;
        line-height: 1.5;
    }

    .aboutUsContent p,
    .aboutUsContent li {
        font-size: 13px !important;
        line-height: 1.8;
    }

    .aboutUsHeaderText h2 {
        font-size: 24px !important;
    }

    .leftLine,
    .rightLine {
        width: 40px;
        height: 3px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 375px) {

    .aboutUsHeaderText h2 {
        font-size: 20px !important;
    }

    .aboutUsContent h4 {
        font-size: 18px !important;
    }

    .aboutUsContent p,
    .aboutUsContent li {
        font-size: 12px !important;
    }

    .leftLine,
    .rightLine {
        width: 30px;
    }
}

/* =========================================
   OUR SERVICE SWIPER
========================================= */

.mySwiper {
    background-color: #E4EFFF !important;
    padding: 80px 0 !important;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    height: auto !important;
}

.serviceCard {
    width: 400px !important;
    border-radius: 30px;
    overflow: hidden;
    text-align: center;
    padding: 0 !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.4s ease;
}

.serviceCardHeader {
    display: flex;
    justify-content: center;
    align-items: center;
}

.serviceCardHeader img {
    max-width: 100%;
    height: auto;
    display: block;
}

.serviceCardHeader h4 {
    color: #fff;
    font-size: 20px !important;
}

.serviceCardContHeader {
    background-color: #075AA9;
    color: white;
    padding: 8px !important;
}

.serviceCardContHeader h4 {
    font-size: 30px !important;
    text-align: center;
    align-items: center;
    margin: 0 !important;
}

.serviceCardContFooter {
    padding: 15px;
    text-align: center !important;
}

.serviceCardContFooter p {
    text-align: center !important;
    margin-bottom: 15px !important;
    line-height: 1.7;
    font-size: 17px;
}

.serviceCardCont {
    background: #011D44;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.serviceCardCont ul {
    margin: 20px !important;
}

.serviceCardCont li {
    margin-bottom: 10px;
    font-size: 16px !important;
    color: #fff;
    font-weight: 400;
}

.serviceByFooter {
    background: #fff;
    padding: 12px;
    text-align: center;
    margin-top: 10px;
    padding: 0;
}

.serviceByFooter p {
    margin: 0;
    font-weight: 600;
    font-size: 13px;
    color: #FD5D51;
}

.serviceCardCont button {
    display: block;
    margin: 15px auto 5px;
    background: #FD5D51;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 10px !important;
}

/* =========================================
   SWIPER NAVIGATION
========================================= */

.mySwiper,
.feedBackSwipper {
    position: relative;
    padding-bottom: 90px;
    align-items: stretch !important;
}

.custom-next,
.custom-prev {
    position: absolute;
    bottom: 0;
    top: auto;
    transform: none;
    color: #011D44;
    z-index: 10;
}

.custom-prev {
    left: 46%;
}

.custom-next {
    right: 46%;
}

.custom-next i,
.custom-prev i {
    font-size: 28px;
    transition: 0.3s ease;
}

.custom-next:hover i,
.custom-prev:hover i {
    transform: scale(1.08);
}

.custom-next::after,
.custom-prev::after {
    display: none;
}


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1024px) {

    .mySwiper {
        padding: 100px !important;
    }

    .serviceCard {
        width: 100% !important;
        max-width: 320px;
    }

    .serviceCardContHeader h4 {
        font-size: 24px !important;
    }

    .serviceCardContFooter p {
        font-size: 15px;
    }

    .serviceCardCont button {
        font-size: 14px;
        padding: 6px 18px;
    }

    .custom-prev {
        left: 44%;
    }

    .custom-next {
        right: 44%;
    }


}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .mySwiper {
        padding: 40px 20px !important;
    }

    .serviceCard {
        /* max-width: 500px; */
        border-radius: 25px;
    }

    .serviceCardHeader img {
        width: 100%;
    }

    .serviceCardContHeader h4 {
        font-size: 22px !important;
    }

    .serviceCardContFooter {
        padding: 18px 15px;
    }

    .serviceCardContFooter p {
        font-size: 14px;
        line-height: 1.7;
    }



    .serviceCardCont button {
        font-size: 13px;
        padding: 7px 18px;
    }

    /* .custom-prev {
        left: 41%;
    }

    .custom-next {
        right: 41%;
    } */

    .custom-next i,
    .custom-prev i {
        font-size: 25px;
        /* margin-top: 60px !important; */

    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 425px) {

    .mySwiper {
        padding: 30px 12px !important;
        padding-bottom: 80px !important;
    }

    .serviceCard {
        /* max-width: 100% !important; */
        border-radius: 22px;
    }

    .serviceCardHeader {
        padding: 0;
    }

    .serviceCardHeader img {
        width: 100%;
        object-fit: cover;
    }

    .serviceCardContHeader {
        padding: 10px !important;
    }

    .serviceCardContHeader h4 {
        font-size: 18px !important;
        line-height: 1.5;
    }

    .serviceCardContFooter {
        padding: 15px 12px;
    }

    .serviceCardContFooter p {
        font-size: 13px;
        line-height: 1.8;
    }



    .serviceCardCont button {
        font-size: 12px;
        padding: 6px 15px;
    }

    .custom-prev {
        left: 38%;
    }

    .custom-next {
        right: 38%;
    }

    .custom-next i,
    .custom-prev i {
        font-size: 22px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 375px) {

    .mySwiper {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }



    .serviceCardContHeader h4 {
        font-size: 16px !important;
    }

    .serviceCardContFooter p {
        font-size: 12px;
    }

    .serviceCardCont button {
        font-size: 11px;
        padding: 5px 12px;
    }

    .custom-prev {
        left: 36%;
    }

    .custom-next {
        right: 36%;
    }

    .custom-next i,
    .custom-prev i {
        font-size: 20px;
    }
}


/* Testimonial Section */
.testimonialCard {
    width: 380px;
    margin: 40px auto;
    padding: 30px 20px;
    text-align: center;
    background-color: #f3f3f3;
    font-family: Arial, sans-serif;
}

.quoteCircle {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: #011D44;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quoteCircle i {
    color: #ffffff;
    font-size: 22px;
}

.testimonialText {
    font-size: 16px;
    color: #222;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonialText {
    max-height: 120px;
    overflow-y: auto;
    padding-right: 8px;
}

.testimonialText::-webkit-scrollbar {
    width: 4px;
}

.testimonialText::-webkit-scrollbar-track {
    background: transparent;
}

.testimonialText::-webkit-scrollbar-thumb {
    background-color: #011D44;
    border-radius: 10px;
}

.testimonialText {
    scrollbar-width: thin;
    scrollbar-color: #011D44 transparent;
}

.testimonialText {
    scroll-behavior: smooth;
}

.dividerLine {
    width: 80%;
    height: 1px;
    background-color: #bbb;
    margin: 15px auto;
}

.clientName {
    font-size: 30px !important;
    margin-top: 10px;
}

.starRating {
    margin-top: 10px;
}

.starRating i {
    color: #FFA72C;
    font-size: 18px;
    margin: 0 2px;
}

@media(max-width:1024px) {
    .testimonialCard {
        padding: 20px;
        font-size: 14px !important;
        width: 500px !important;
    }
}



@media (max-width: 768px) {
    .testimonialCard {
        padding: 20px;
        font-size: 14px;
    }

    .testimonialText {
        font-size: 13px;
    }

    .clientName {
        font-size: 14px;
    }
}

@media (max-width: 425px) {
    .testimonialCard {
        padding: 15px;
        font-size: 13px;
    }

    .testimonialText {
        font-size: 12px;
    }

    .clientName {
        font-size: 13px;
    }

    .quoteCircle {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
}

@media (max-width: 375px) {
    .testimonialCard {
        padding: 12px !important;
        font-size: 12px !important;
        width: 280px !important;

    }

    .testimonialText {
        font-size: 11px !important;
    }

    .clientName {
        font-size: 12px !important;
    }

    .quoteCircle {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
}

.feedBackSwipper {
    background-color: #011D44 !important;
}


/* Footer Section */
.footerSection {
    background-color: #E4EFFF !important;
}

.footerTitle {
    font-size: 30px !important;
    color: #F7120E;
    margin-bottom: 20px;
    font-weight: 100 !important;
}

.footerText {
    color: #011D44;
    font-size: 17px !important;
    text-align: justify !important;
    font-weight: 500 !important;
    padding-right: 20px;
}

.footerLinks {
    list-style: none;
    padding: 0;
}

.footerLinks li {
    margin-bottom: 24px !important;
    font-size: 15px !important;
    color: #011D44;
    font-weight: 600;
}

.footerLinks li {
    display: flex;
    align-items: center;
    column-gap: 10px;
}



.footerLinks li:hover {
    font-weight: 600;
    cursor: pointer;
    color: #011D44;

}

.footerLinks a {
    text-decoration: none;
    color: #011D44;
    font-weight: 600;
    font-size: 15px !important;
}

.footerLinks .activeLink {
    color: #FD5D51 !important;
    font-weight: 900 !important;
    text-decoration: underline;
}

.footerLinks a:hover {
    font-weight: 600;
    cursor: pointer;
    color: #2b5793;
}

.contactLinks li {
    display: flex;
    align-items: center;
    gap: 1px !important;
}


.contactLinks i {
    color: #000;
    font-size: 18px;
    padding: 8px;
    border-radius: 30px;
}

.footerIcons a {
    width: 42px;
    height: 42px;
    background: #011D44;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s;
}

.footerIcons a:hover {
    background: white;
    color: #011D44;
    border: 1px solid #011D44;
}

/*  */
.contactList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contactItem {
    display: block;
    color: #011D44;
    column-gap: 8px;
    margin-bottom: 12px;
}

.contactLabel {
    color: #ff5e57;
    font-weight: 600;
    white-space: nowrap;
    font-weight: 600;
    display: inline;
}

.contactValue {
    color: #011D44;
    line-height: 1.6;
    font-weight: 300;
}

.contactValue a {
    color: #011D44;
    text-decoration: none;
    font-size: 19px !important;
    font-weight: 300;
    white-space: nowrap;
}

.contactValue a:hover {
    text-decoration: underline;
}




/*  */

.socialTitle {
    /* margin-bottom: 40px !important; */
    color: #011D44;
    font-size: 25px !important;
}

.copyRightTexts p {
    margin-bottom: 0 !important;
}

@media (max-width:1024px) {

    .footerTitle {
        font-size: 18px !important;
    }

    .footerLinks li,
    .footerLinks a {
        font-size: 16px !important;
    }

    .footerText {
        font-size: 14px !important;
    }

    .footerIcons a {
        width: 36px;
        height: 36px;
    }

    .footerIcons i {
        font-size: 15px;
    }
}

@media (max-width:880px) {

    .footerSection .row {
        display: flex;
        flex-wrap: wrap;
    }

    .footerSection .col-lg-3:first-child {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footerSection .col-lg-3:not(:first-child) {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
    }

    .footerText {
        width: 80%;
        margin: auto;
        text-align: center;
    }

    .footerIcons {
        justify-content: center;
    }
}

@media (max-width:768px) {

    .footerTitle {
        font-size: 16px !important;
    }

    .footerLinks li,
    .footerLinks a {
        font-size: 12px !important;
    }

    .footerText {
        font-size: 13px !important;
    }

    .contactValue a {
        font-size: 15px !important;
    }
}

@media (max-width:550px) {

    .footerSection .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footerText {
        width: 100%;
        padding: 0;
        text-align: center !important;
    }

    .footerIcons {
        justify-content: center;
    }

    .contactList {
        text-align: left;
    }

    .contactValue a {
        font-size: 13px !important;
    }


    .contactItem {
        text-align: left;
    }

    .contactItem span {
        text-align: left !important;
    }
}

@media(max-width:460px) {

    .contactLabel {
        font-size: 12px !important;
    }

    .contactList {
        width: 100% !important;
    }

    .contactValue a {
        font-size: 12px !important;
    }

    .contactValue {
        font-size: 12px !important;
    }
}

@media(max-width:425px) {

    .contactLabel {
        font-size: 11px !important;
    }

    .contactList {
        width: 100% !important;
    }

    .contactValue a {
        font-size: 11px !important;
    }

    .contactValue {
        font-size: 11px !important;
    }
}

@media(max-width:400px) {

    .contactLabel {
        font-size: 10px !important;
    }

    .contactList {
        width: 100% !important;
    }

    .contactValue a {
        font-size: 10px !important;
    }

    .contactValue {
        font-size: 10px !important;
    }
}


/* Service Her0 Section */
.serviceHero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.heroFadeChangeImg {
    width: 100%;
    height: 100%;
    position: relative;
}

/* all images stacked */
.heroFadeChangeImg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.serviceHeroContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 100%;
    padding: 20px;
}

/* heading */
.serviceHeroContent h1 {
    font-size: 3rem;
    font-weight: 500;
}

/* paragraph */
.serviceHeroContent p {
    font-size: 1.1rem;
}

@media (max-width:768px) {
    .serviceHero {
        width: 100%;
        height: 50vh;
        overflow: hidden;
    }

}

@media (max-width:438px) {
    .serviceHero {
        width: 100%;
        height: 40vh;
        overflow: hidden;
    }

    /* heading */
    .serviceHeroContent h1 {
        font-size: 20px !important;
        font-weight: 500;
    }

    /* paragraph */
    .serviceHeroContent p {
        font-size: 12px !important;
        width: 100% !important;
    }

}

/*  */
.servicePageCards {
    width: 100%;
    padding: 20px;
    margin: 0 auto 30px auto;
    justify-content: center;
    align-items: stretch;
}

/* card wrapper spacing */
.cardGap {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

/* card */
.servicePageCards .serviceCard {
    width: 100%;
    max-width: 400px;
    height: 100%;
}

/* Tablet */
@media (max-width: 768px) {

    .servicePageCards {
        padding: 15px;
        row-gap: 20px;
    }

    .servicePageCards .serviceCard {
        max-width: 500px;
    }
}

/* Mobile */
@media (max-width: 425px) {

    .servicePageCards {
        padding: 12px;
    }

    .servicePageCards .serviceCard {
        max-width: 100%;
    }
}

.serviceCardContFooter h6 {
    font-size: 25px !important;
    font-weight: 200 !important;
}

.serviceCardContFooter ul li {
    text-align: left;
    font-size: 13px !important;
}


/*  */

/***************************************Navbar style start****************************************/

#preloader {
    position: fixed;
    inset: 0;
    background: #E4EFFF;
    /* theme */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* FIX: flex column to center logo + ring */
.preloaderInner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    transform: scale(1);
    transition: transform .6s ease;
}

.preloaderLogo {
    margin-bottom: 16px;
}

/* Ring Loader */
.loaderRing {
    width: 48px;
    height: 48px;
    border: 3px solid #011D44;
    border-top-color: #F7120E;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* EXIT animation */
#preloader.hide {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease;
}

#preloader.hide .preloaderInner {
    transform: scale(0.92);
}

#preloader:not(.hide)~.floatingWhatsApp {
    display: none;
}

/* width of the scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

/* scrollbar track (background) */
::-webkit-scrollbar-track {
    background: #011D44;
}

/* scrollbar handle (thumb) */
::-webkit-scrollbar-thumb {
    background: #F7120E;
    /* your brand color */
    border-radius: 10px;
}

/* hover effect */
::-webkit-scrollbar-thumb:hover {
    background: #ca6666;
}


/* ===============================
   Floating WhatsApp – Dock Style
================================ */

/* Base */
.floatingWhatsApp.dockSplit {
    position: fixed;
    bottom: clamp(18px, 4vw, 28px);
    right: 18px;

    display: flex;
    align-items: center;

    text-decoration: none;
    z-index: 9999;
}

/* WhatsApp Logo – Left Circle */
.waIconWrap {
    width: 56px !important;
    height: 56px !important;

    background: rgba(34, 255, 78, 0.95);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(34, 255, 78, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    z-index: 2;
    animation: waZoomPulse 2.2s ease-in-out infinite;
}

.fa-whatsapp {
    font-size: 2rem !important;
}

.waIcon {
    width: 30px;
    height: 30px;
}

.waBadge {
    margin-left: -14px;
    padding: 6px 18px 6px 26px;
    background: rgba(5, 163, 19, 0.95);

    color: #ffffff;
    font-size: 15px !important;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 0 999px 999px 0;
    box-shadow: 0 10px 25px rgba(34, 255, 78, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .3s ease, box-shadow .3s ease;
}

@media (max-width: 568px) {

    .floatingWhatsApp.dockSplit {
        right: 14px;
        bottom: 18px;
    }

    /* Icon slightly smaller */
    .waIconWrap {
        width: 52px !important;
        height: 52px !important;
        animation-duration: 2.8s;
        /* slower = premium */
    }

    .fa-whatsapp {
        font-size: 1.8rem !important;
    }

    /* Hide text badge */
    .waBadge {
        margin-left: -14px;
        padding: 6px 18px 6px 26px;
        background: rgba(5, 163, 19, 0.95);
        color: #fff;
        font-size: 11px !important;
        font-weight: 500;
        white-space: nowrap;
        border-radius: 0 999px 999px 0;
        box-shadow: 0 10px 25px rgba(34, 255, 78, 0.35);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        transition: transform .3s ease, box-shadow .3s ease;
    }

}


/* Hover feel */
@media (hover: hover) {
    .floatingWhatsApp.dockSplit:hover .waIconWrap {
        transform: scale(1.08);
        box-shadow: 0 18px 35px rgba(34, 255, 78, 0.389);
    }

    .floatingWhatsApp.dockSplit:hover .waBadge {
        transform: translateX(-4px);
        box-shadow: 0 18px 35px rgba(34, 255, 78, 0.234);
    }
}




/* Zoom in / out */
@keyframes waZoomPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 425px) {
    .floatingWhatsApp .waBadge {
        display: none !important;
    }
}

/*  */


/* Contact Form */
.contactBody {
    width: 100%;
    /* padding: 40px 0px; */
    background-color: #011D44 !important;
}

.contactUsWrapper {
    display: flex;
    align-items: stretch;
    /* IMPORTANT */
    justify-content: center;
}

.contactUsImg,
.contactUsContent {
    display: flex;
}

.contactUsImg img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.contactUsContent {
    width: 65%;
}

.contactForm {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contactForm h1 {
    font-size: 39px !important;
}

/* Inputs */
.contactForm input,
.contactForm textarea {
    background-color: transparent !important;
    color: white !important;
    border: 1px solid #FD5D51;
}

/* Focus Effect */
.contactForm input:focus,
.contactForm textarea:focus {
    outline: none;
    border-color: #FD5D51;
    box-shadow:
        0 0 12px rgba(237, 70, 70, 0.5),
        0 0 24px rgba(255, 255, 255, 0.35),
        inset 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Placeholder (DO NOT REMOVE - as per your request) */
.contactForm input::-webkit-input-placeholder,
.contactForm textarea::-webkit-input-placeholder {
    color: white !important;
    opacity: 0.8;
}

.contactForm input::placeholder,
.contactForm textarea::placeholder {
    color: white !important;
    opacity: 0.8;
}

.contactForm input:-ms-input-placeholder,
.contactForm textarea:-ms-input-placeholder {
    color: white !important;
}

.sendMsg {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    display: inline-block;
    color: #fff;
    background-color: #FD5D51;
    border: 1px solid transparent !important;
    z-index: 1;
    padding: 15px 60px;
    transition: color 0.35s ease;
}

.sendMsg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #011D44;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.sendMsg:hover {
    color: white !important;
    border: 1px solid white !important;
}

.sendMsg:hover::before {
    transform: scaleX(1);
}



@media (max-width: 1024px) {
    .contactUsImg {
        width: 40%;
    }

    .contactUsContent {
        width: 60%;
    }

    .contactForm h1 {
        font-size: 36px !important;
    }
}

@media (max-width: 880px) {
    .contactUsWrapper {
        flex-wrap: wrap;
        text-align: center;
    }

    .contactUsImg,
    .contactUsContent {
        width: 100%;
    }

    .contactForm h1 {
        margin-bottom: 0 !important;
    }

    .contactUsImg img {
        max-height: fit-content;
    }
}

@media (max-width: 768px) {
    .contactForm {
        padding: 20px !important;
        text-align: center;
    }

    .contactForm h1 {
        font-size: 30px !important;
    }

    .sendMsg {
        padding: 12px 40px;
    }
}

@media (max-width: 425px) {
    .contactForm h1 {
        font-size: 26px !important;
    }

    .contactForm input,
    .contactForm textarea {
        padding: 12px !important;
    }
}

@media (max-width: 375px) {
    .contactForm h1 {
        font-size: 22px !important;
    }

    .sendMsg {
        width: 100%;
    }
}


.contactIframe {
    width: 65% !important;
    overflow: hidden;
    flex-shrink: 0;
}

.contactIframe iframe {
    width: 100%;
    height: 100%;
    min-height: 50vh !important;
    border: 0;
    display: block;
}

.contactAddresses {
    width: 35%;
    background-color: #011D44;
    color: #fff;
}

.contactAddresses h3 {
    text-align: center;
    font-size: 32px;
}


.contactUsInfo {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
}

.contactUsDetail {
    display: flex !important;
    gap: 18px !important;
}

.contactUsDetail i {
    background-color: #fff;
    padding: 10px 11px;
    color: #011D44 !important;
    border-radius: 40px;
    font-size: 16px !important;
}

@media (max-width: 888px) {

    .contactUsSection {
        flex-direction: column;
        align-items: center !important;
    }

    .contactIframe {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .contactIframe iframe {
        min-height: 500px !important;
    }

    .contactUsDetail p {
        text-align: start !important;
    }

    .contactAddresses {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .contactAddresses h3 {
        font-size: 26px;
    }

    .addressDivider .line {
        width: 70px;
    }

    .contactUsInfo {
        align-items: center !important;
        text-align: center !important;
    }

    .contactUsDetail {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        gap: 8px;
    }

    .contactUsDetail p {
        text-align: center !important;
    }

    .contactUsDetail i {
        font-size: 20px;
    }

    .contactUsDetail .d-flex {
        align-items: center !important;
        text-align: center !important;
    }
}

@media (max-width: 425px) {

    .contactIframe iframe {
        min-height: 250px;
        border-radius: 18px;
    }



    .contactAddresses h3 {
        font-size: 22px;
    }

    .addressDivider {
        gap: 6px;
        margin-bottom: 20px;
    }

    .addressDivider .line {
        width: 50px;
    }



    .contactUsDetail i {
        font-size: 16px;
        margin-top: 3px;
    }

    .contactUsDetail p {
        font-size: 14px;
        line-height: 1.4;
    }
}

.copyRightTexts {
    background-color: #011D44 !important;
}


.ratingStars {
    font-size: 28px;
    cursor: pointer;
}

.ratingStars i {
    color: #d4af37 !important;
    /* gold */
    margin: 0 4px;
    transition: transform 0.15s ease;
}

.ratingStars i:hover {
    transform: scale(1.1);
    color: #d4af37 !important;
}

.writeReviewModal {
    background-color: #E4EFFF !important;
    color: #011D44 !important;
}

.submitReviewBtn {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    display: inline-block;
    color: #fff;
    background-color: #F7120E;
    border: 1px solid transparent !important;
    z-index: 1;
    padding: 10px 20px 10px 20px;
    transition: color 0.35s ease;
}

.submitReviewBtn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #011D44;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}


.submitReviewBtn:hover {
    color: white !important;
    border: 1px solid white !important;
}

.submitReviewBtn:hover::before {
    transform: scaleX(1);
}

.testimonialLoadingOverlay {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(255, 255, 255, 0.35) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    z-index: 100 !important;
    border-radius: 20px !important;
}

.testimonialSpinner {
    width: 55px !important;
    height: 55px !important;
    border: 4px solid rgba(247, 18, 14, 0.15) !important;
    border-top-color: #F7120E !important;
    border-radius: 50% !important;
    animation: testimonialSpin 0.7s linear infinite !important;
}

@keyframes testimonialSpin {
    to {
        transform: rotate(360deg) !important;
    }
}

#testimonialWrapper {
    position: relative !important;
    min-height: 250px !important;
}


/* Booking Modal */
/* ── Form Shell ─────────────────────────────────────────── */
.sda-form-shell {
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    background: linear-gradient(145deg, #E4EFFF 0%, #dce8ff 60%, #c8daff 100%);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(1, 29, 68, 0.18), 0 4px 16px rgba(1, 29, 68, 0.10);
    position: relative;
}

.sda-form-shell::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(247, 18, 14, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.sda-form-shell::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(1, 29, 68, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ── Header ─────────────────────────────────────────────── */
.sda-header {
    background: #011D44;
    padding: 22px 28px 20px;
    position: relative;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.sda-header::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -30px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(247, 18, 14, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

.sda-header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 30%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.sda-header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}




.sda-header-text {
    flex: 1;
}

.sda-header-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
    line-height: 1.2;
    margin: 0 0 4px;
}

.sda-header-subtitle {
    font-size: 11.5px;
    font-weight: 300;
    color: rgba(228, 239, 255, 0.80);
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.1px;
}

.sda-header-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(247, 18, 14, 0.7) 0%, rgba(255, 255, 255, 0.15) 60%, transparent 100%);
    margin: 16px 0 0;
    position: relative;
    z-index: 1;
}

/* ── Form Body ───────────────────────────────────────────── */
.sda-form-body {
    padding: 24px 28px 20px;
    position: relative;
    z-index: 1;

    /* NEW */
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;

    /* Firefox Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #011D44 transparent;
}


/* Chrome / Edge / Safari Scrollbar */
.sda-form-body::-webkit-scrollbar {
    width: 6px;
}

.sda-form-body::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 20px;
}

.sda-form-body::-webkit-scrollbar-thumb {
    background: #011D44;
    border-radius: 20px;
}

.sda-form-body::-webkit-scrollbar-thumb:hover {
    background: #022b66;
}


/* ── Field Group ─────────────────────────────────────────── */
.sda-row {
    display: grid;
    gap: 14px;
    margin-bottom: 14px;
}

.sda-row-2 {
    grid-template-columns: 1fr 1fr;
}

.sda-row-1 {
    grid-template-columns: 1fr;
}

.sda-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sda-label {
    font-size: 11px;
    font-weight: 600;
    color: #011D44;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sda-label i {
    color: #F7120E;
    font-size: 10px;
}

/* ── Field Group ─────────────────────────────────────────── */
.sda-row {
    display: grid;
    gap: 14px;
    margin-bottom: 14px;
}

.sda-row-2 {
    grid-template-columns: 1fr 1fr;
}

.sda-row-1 {
    grid-template-columns: 1fr;
}

.sda-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sda-label {
    font-size: 11px;
    font-weight: 600;
    color: #011D44;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sda-label i {
    color: #F7120E;
    font-size: 10px;
}

/* ── Input Wrapper ───────────────────────────────────────── */
.sda-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.sda-input-wrap {
    display: flex !important;
    flex-direction: column !important;
}


.sda-input-wrap input,
.sda-input-wrap select,
.sda-input-wrap textarea {
    width: 100%;
    padding: 10px 12px 10px 36px;
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    color: #011D44;
    background: rgba(255, 255, 255, 0.82);
    border: 1.5px solid rgba(1, 29, 68, 0.14);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    backdrop-filter: blur(4px);
    appearance: none;
    -webkit-appearance: none;
}

.sda-input-wrap input::placeholder,
.sda-input-wrap textarea::placeholder {
    color: #a8bcd8;
    font-weight: 300;
}

.sda-input-wrap input:focus,
.sda-input-wrap select:focus,
.sda-input-wrap textarea:focus {
    border-color: #F7120E;
    box-shadow: 0 0 0 3px rgba(247, 18, 14, 0.10), 0 2px 8px rgba(247, 18, 14, 0.08);
    background: #fff;
}

.sda-input-wrap input:focus~.sda-icon,
.sda-input-wrap select:focus~.sda-icon,
.sda-input-wrap textarea:focus~.sda-icon {
    color: #F7120E;
}

.sda-input-wrap:focus-within .sda-icon {
    color: #F7120E;
}

/* Textarea */
.sda-input-wrap textarea {
    resize: none;
    height: 76px;
    line-height: 1.5;
    padding-top: 11px;
}

/* Select arrow */
.sda-select-wrap::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #7a9cc8;
    font-size: 10px;
    pointer-events: none;
    transition: color 0.25s ease;
}

.sda-select-wrap:focus-within::after {
    color: #F7120E;
}

.sda-input-wrap select {
    cursor: pointer;
    padding-right: 32px;
}

.sda-input-wrap select option {
    color: #011D44;
    background: #fff;
}

/* Date input icon fix */
input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.4;
    cursor: pointer;
    margin-right: 2px;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 0.8;
}

/* ── Divider ─────────────────────────────────────────────── */
.sda-section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(1, 29, 68, 0.12) 20%, rgba(1, 29, 68, 0.12) 80%, transparent);
    margin: 6px 0 16px;
}

.sda-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(1, 29, 68, 0.40);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sda-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(1, 29, 68, 0.12), transparent);
}

/* ── Footer Note ─────────────────────────────────────────── */
.sda-form-footer {
    text-align: center;
    padding: 12px 28px 18px;
    font-size: 11px;
    color: rgba(1, 29, 68, 0.42);
    letter-spacing: 0.4px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.sda-form-footer span {
    color: #F7120E;
    font-weight: 600;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 500px) {
    .sda-row-2 {
        grid-template-columns: 1fr;
    }

    .sda-form-body {
        padding: 18px 16px 14px;
    }

    .sda-header {
        padding: 18px 16px 16px;
    }

    .sda-form-footer {
        padding: 10px 16px 14px;
    }

    .sda-header-title {
        font-size: 17px;
    }
}



.courseSubmitBtn {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    display: inline-block;
    color: #fff;
    background-color: #F7120E;
    border: 1px solid transparent !important;
    z-index: 1;
    padding: 10px 20px 10px 20px;
    transition: color 0.35s ease;
}

.courseSubmitBtn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #011D44;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}


.courseSubmitBtn:hover {
    color: white !important;
    border: 1px solid white !important;
}

.courseSubmitBtn:hover::before {
    transform: scaleX(1);
}

@media (max-width: 500px) {
    .sda-header-subtitle {
        display: none !important;
    }
}

.errorText{
    color: #011D44 !important;
    display: block !important;
    font-weight: 500 !important;
}