/* Imports */
@import url(bootstrap.min.css);
@import url(header.css);

:root {
    --primary-color: #1248C1;
    --dark-color: #242424;
    --dark-gray-color: #4A4A4A;
    --light-color: #D4E2FE;
    --regular: 'Segoe-UI-Regular, system-ui';
    --bold: 'Segoe-UI-Bold, system-ui';
}

@font-face {
    font-family: 'Segoe-UI-Regular, system-ui';
    src: url(../assets/fonts/Segoe-UI.ttf) format('TrueType');
}

@font-face {
    font-family: 'Segoe-UI-Bold, system-ui';
    src: url(../assets/fonts/Segoe-UI-Bold.ttf) format('TrueType');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--regular);
}
.text-justify {
    text-align: justify;
}
.container {
    max-width: 1200px;
}

.fill-available {
    width: -webkit-fill-available;
    width: -moz-available;
    /* for Firefox */
}

.light-mode .dark-d-none {
    display: none;
}

/* Index  */
section.sec-hero .row {
    min-height: 70vh;
    align-items: center;
}

section.sec-hero {
    padding: 100px 0px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../assets/images/bg-hero-img.png');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}


.light-mode .sec-hero {
    background-image: unset;
    background-color: #ffffff;
}

section.sec-hero .btn, section.sec-hero .btn:hover {
    width: 320px;
    height: 60px;
    background: var(--primary-color);
    font-size: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #ffffff;
    border: 0px;
}

h1.hero-title {
    color: #242424;
    font-size: 56px;
    font-weight: 900;
    font-family: 'Segoe-UI-Bold, system-ui';
    margin-bottom: 24px;
}

p.hero-subtitle {
    font-size: 20px;
    color: #242424;
    font-weight: 400;
}

p.lead {
    font-size: 24px;
    color: #4A4A4A;
    line-height: 1.2;
    margin-bottom: 32px;
    margin-top: 20px;
}

p.hero-subtitle {
    font-weight: 400;
    font-family: var(--regular);
}

.sec-hero img {
    margin: 0px auto;
}
.sec-hero .banner-image {
    padding: 70px;
}

/* sec-we-help */
.sec-we-help {
    background-color: #E8F2FF;
    padding: 80px 0px;
}

.sec-we-help h2 {
    color: var(--primary-color);
    font-family: var(--bold);
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.sec-we-help p {
    font-size: 20px;
    color: #4A4A4A;
    line-height: 1.7;
    font-weight: 400;
    font-family: var(--regular);
}
.sec-we-help p strong {
    font-family: var(--bold);
}


.sec-why-ccs {
    padding: 80px 0px;
}

.sec-why-ccs h2 {
    font-size: 52px;
    color: #383838;
    font-family: var(--bold);
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.sec-why-ccs h2 span {
    font-weight: 600;
    font-family: var(--bold);
    color: var(--primary-color);
}

.why-card {
    backdrop-filter: blur(41.400001525878906px);
    border: 1px solid #0090FF2B;
    background-color: #0090FF1A;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    min-height: 300px;
}

.why-card img {
    width: 160px;
    margin: 0px auto;
    margin-bottom: 16px;
}

.why-card h4 {
    font-size: 24px;
    color: #242424;
    font-family: 'Segoe-UI-Bold, system-ui';
    font-weight: 700;
    margin-bottom: 12px;
    text-align: left;
}

.why-card p {
    font-size: 16px;
    text-align: left;
}

.sec-what-we-offer {
    position: relative;
    background-color: #001951;
    z-index: 1;
    padding: 80px 0px;
}

.sec-what-we-offer h2 {
    color: #ffffff;
    text-transform: uppercase;
    font-family: var(--bold);
    font-size: 52px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}
.sec-what-we-offer h2 span {
    font-family: var(--bold);
}
.sec-what-we-offer::after {
    position: absolute;
    background-image: url(../assets/images/bg-sec-what-we-offer.png);
    height: 100%;
    width: 100%;
    z-index: 99;
    content: '';
    top: 0px;
    left: 0px;
}

.offer-card {
    z-index: 9999;
    margin-bottom: 60px;
}

.offer-card p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
}

.offer-card h4 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    font-family: var(--bold);
}

.offer-card img {
    height: 40px;
    margin-bottom: 24px;
}

section.sec-counter {
    padding: 60px 0px;
}

section.sec-counter img {
    height: 60px;
    margin-bottom: 16px;
}

section.sec-counter h6 {
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 12px;
}

section.sec-counter h4 {
    color: #242424;
    font-size: 60px;
    font-family: 'Segoe-UI-Bold, system-ui';
}


/* Vision & Mission Section  */
section.sec-vision-mission h2 {
    color: #ffffff;
    text-transform: uppercase;
    font-family: var(--bold);
    font-size: 52px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 40px;
}

section.sec-vision-mission {
    background-color: #000514;
    padding: 68px 0px;
}

section.sec-vision-mission ul {
    padding: 0;
    list-style: none;
}

section.sec-vision-mission ul li {
    border-radius: 20px;
    margin-bottom: 24px;
    background-color: #FFFFFF2B;
    padding: 24px;
    width: 90%;
    border: 1px solid #FFFFFF2B;
}

.img-vision-mission {
    padding: 32px;
}

section.sec-vision-mission ul li h4 {
    color: #D4E2FE;
    font-size: 36px;
    font-weight: 600;
    font-family: var(--bold);
}

section.sec-vision-mission ul li p {
    color: #ffffff;
    font-size: 16px;
    margin-top: 18px;
}

/* Client Success Story */
.sec-client-story {
    background-color: #FFFFFF;
    padding: 60px 0px;
}
.section-title {
    color: #1248C1;
    text-transform: uppercase;
    font-family: var(--bold);
    font-size: 52px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}
.section-title span {
    font-family: var(--bold);
    color: #383838;
}
.testimonial-card {
    background-color: #F1F1F1;
    backdrop-filter: blur(10px);
    border: 1px solid #FFFFFF2B;
    border-radius: 20px;
    padding: 28px;
    margin: 0 20px;
    color: white;
    margin-left: auto;
    margin-right: auto;
}
section.sec-client-story .owl-dots {
    margin-top: 24px !important;
}
.company-info {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.company-logo {
    width: 62px;
    height: 62px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-weight: bold;
    color: #ffffff;
    font-size: 12px;
}

.company-name {
    font-size: 24px;
    font-family: var(--bold);
    font-weight: 600;
    color: #242424;
}

.rating {
    margin-bottom: 30px;
    display: flex;
    justify-content: start;
}

.star {
    height: 18px;
    width: 18px !important;
    margin-right: 10px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #383838;
    font-weight: 400;
    font-family: var(--regular);
}

.author-info {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 40px !important;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-details h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #383838;
    font-family: var(--bold);
    text-transform: capitalize;
}

.author-details p {
    margin: 0;
    font-size: 12px;
    color: #383838;
    opacity: 60%;
}
/* Owl Carousel Custom Styles */
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 50px;
}

.owl-carousel .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 8px;
    background: #BCBCBC66 !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active {
    background: #FFFFFF52;
    width: 30px;
    border-radius: 12px;
    height: 12px;
}
.owl-theme .owl-dots .owl-dot span {
    margin: 0px;
    width: 12px;
    background-color: #FFFFFF52;
    height: 12px;
}
.owl-theme .owl-dots .owl-dot.active span {
    width: 15px;
}
.owl-carousel .owl-nav {
    display: none;
}





/* sec-meet-people */
.sec-meet-people {
    background-color: #E9F8FF;
    padding: 60px 0px;
}
.sec-meet-people h2 {
    color: #383838;
    text-transform: uppercase;
    font-family: var(--bold);
    font-size: 52px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 28px;
}
.sec-meet-people h2 span {
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--bold);
}
.sec-meet-people ul {
    list-style: none;
    margin-bottom: 50px;
}
.sec-meet-people ul li {
    margin: 0px 10px;
    color: #242424;
    display: flex;
    font-size: 24px;
    align-items: center;
}
.sec-meet-people ul li span {
    background-color: #242424;
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
}
.meet-people-card .profile-img img {
    height: 330px;
}

.profile-img {
    background-color: #C5E6FF;
    height: 354px;
    display: flex;
    align-items: end;
    justify-content: center;
    border-radius: 20px;
}

.meet-people-card .profile-details h4 {
    color: #242424;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    font-family: var(--bold);
    margin: 24px 0px 10px;
    text-transform: uppercase;
}

.meet-people-card .profile-details h6 {
    font-size: 16px;
    text-align: center;
    font-family: var(--regular);
}

.dark-mode .sec-client-story {
    background-color: #000514;
}
.dark-mode .sec-client-story .section-title {
    color: #ffffff !important;
}
.dark-mode .testimonial-card {
    background: #000514;
}
.dark-mode .company-name {
    color: #ffffff;
}
.dark-mode .testimonial-text {
    color: #D2D2D2;
}
.dark-mode .author-details p, .dark-mode  .author-details h5 {
    color: #ffffff;
}
/* Footer */

footer {
    padding: 56px 0px;
}
footer a {
    text-decoration: unset;
}
.foot-brand h4 {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--bold);
    color: #242424;
    margin-top: 16px;
}
.foot-brand h6 {
    font-size: 10px;
    font-weight: 600;
    font-family: var(--bold);
    color: #8B8B8B;
}
footer h4 {
    font-size: 36px;
    font-weight: 600;
    font-family: var(--bold);
    margin-bottom: 18px;
}
footer .foot-logo {
    height: 98px;
    margin: 0px auto;
}
footer ul {
    list-style: none;
    padding: 0px;
}
footer ul li a {
    display: flex;
    color: #242424;
}
footer ul li a span {
    font-size: 14px;
}
.foot-contact li {
    margin-bottom: 20px;
}
footer ul li a span a {
    display: unset;
}
.foot-links li a span {
    color: #242424;
    font-weight: 600;
    font-family: var(--regular);
    font-size: 18px;
    opacity: 70%;
}
.foot-links li {
    margin-bottom: 16px;
}
.foot-social ul {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.foot-social h6 {
    color: #242424;
    font-size: 18px;
    font-weight: 600;
}
.foot-social ul li {
    margin: 0px 10px;
}
footer p {
    color: #242424;
    font-size: 20px;
}
footer .container {
    z-index: 999;
    position: relative
}
footer .foot-social {
    position: relative;
}





/* About Page CSS */
.sec-about-banner {
    align-items: center;
    background-color: #FFFFFF;
    text-align: center;
    padding: 120px 0px;
}

.sec-about-banner h1 {
    text-shadow: 2px 2px 5px  #D4E2FE;
    color: #1248C1;
    font-family: var(--bold);
    font-size: 56px;
}

.sec-about-banner p {
    color: #383838;
    font-size: 24px;
    font-size: var(--regular);
    opacity: 80%;
    font-size: 24px;
    font-style: italic;
    margin: 24px 0px 48px;
}
.sec-about-banner .about-img img {
    height: 426px;    
    width: -webkit-fill-available;
    width: -moz-available;
}
.sec-our-vision h2 {
    font-size: 52px;
    font-weight: 700;
    font-family: var(--bold);
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 40px;
}
.sec-our-vision h2 span {
    color: #D4E2FE;
    font-family: var(--bold);
} 
.sec-our-vision {
    background-color: #000514;
    padding: 100px 0px;
    background-image: url(../assets/images/vision-bg.png);
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
}
.sec-our-vision p {
    color: #FFFFFF;
    font-size: 20px;
    font-family: var(--regular);
    font-weight: 400;
}
.sec-our-vision p strong {
    font-weight: 700; 
    font-family: var(--bold);   
}
.sec-our-mission {
    background-color: #000514;
    padding: 100px 0px;
    background-image: url(../assets/images/mission-bg.png);
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
}
.sec-our-mission p {
    color: #FFFFFF;
    font-size: 20px;
    font-family: var(--regular);
    font-weight: 400;
}
.sec-our-mission h2 {
    font-size: 52px;
    font-weight: 700;
    font-family: var(--bold);
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 40px;
}
.sec-our-mission h2 span {
    color: #D4E2FE;
    font-family: var(--bold);
} 
.sec-our-mission p strong, .sec-our-mission li strong {
    font-weight: 700; 
    font-family: var(--bold);   
}
.sec-our-mission li {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 16px;
}
.sec-build-future {
    padding: 100px 0px;
    background-color: #E9F8FF;
}

.sec-build-future h2 {
    font-size: 52px;
    font-weight: 700;
    font-family: var(--bold);
    text-transform: uppercase;
    color: #1248C1;
    margin-bottom: 40px;
}
body .sec-build-future h2 span {
    color: #383838;
    font-family: var(--bold);
}
.sec-build-future p {
    font-size: 20px;
    color: #383838;
    font-family: var(--regular);
}
.sec-build-future p strong {
    font-family: var(--bold);
}
section.sec-build-future a.btn.btn-primary {
    width: 320px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-family: var(--regular);
    font-weight: 500;
    color: #FFFFFF;
    background-color: #1248C1;
    border-radius: 10pxs;
    margin: 40px auto 0px;
}
/* Service */
.body-services .sec-about-banner {
    padding-bottom: 80px;
}
.body-services .sec-about-banner .services-desc {
    font-size: 20px;
    font-style: normal;
    color: #242424;
    opacity: 100%;
}
.body-services .sec-what-we-offer::after {
    display: none;
}
.body-services .sec-what-we-offer {
    background-color: #E9F8FF;
}
.body-services .sec-what-we-offer h2 {
    color: #1248C1;
}
.body-services .sec-what-we-offer h2 span {
    color: #383838;
}
.body-services .offer-card h4 {
    color: #242424;
}
.body-services .offer-card p {
    color: #4A4A4A;
}
.body-services .offer-card svg {
    margin-bottom: 12px;
}

.sec-why-choose {
    padding: 80px 0px;
}
.sec-why-choose h2 {
    font-size: 52px;
    font-weight: 700;
    font-family: var(--bold);
    text-transform: uppercase;
    color: #1248C1;
    margin-bottom: 40px;
}
.sec-why-choose h2 span {
    color: #242424;
    font-family: var(--bold);
}
section.sec-why-choose ul li {
    font-size: 28px;
    line-height: 2;
}

section.sec-why-choose ul li strong {
    font-family: var(--bold);
}




/*Contact Us */
.body-contact .contact-now {
    font-size: 24px;
    font-style: normal;
    font-family: var(--bold);
    color: #242424;
    opacity: 100%;
}
.body-contact section.sec-about-banner {
    background-color: #E9F8FF;
}
.sec-contact-form {
    padding: 80px 0px;
}
ul#contactTab {
    width: fit-content;
    margin: 0px auto;
    border: 1px solid #00000030;
    border-radius: 18px;
    height: 80px;
    width: 700px;
    padding: 10px;
}
ul#contactTab li.nav-item {
    width: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #242424;
    font-size: 24px;
    font-family: var(--regular);
}
ul#contactTab li.nav-item button {
    color: #242424;
    font-size: 24px;
    font-family: var(--regular);
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
}
ul#contactTab li.nav-item button.active {
    font-family: var(--bold);
    width: 100%;
    background-color: #e3e3e3;
}
ul#contactTab li.nav-item button:hover {
    border: 0px;
}
.input-group {
    margin-bottom: 20px;
}
.form-control, select, textarea {
    border: 1px solid #00000033;
    height: 60px;
    font-size: 18px;
    color: #242424;
    border-radius: 4px !important;
    background-color: #ededed !important;
    width: 100%;
    font-family: var(--regular);
}
.form-control::placeholder, select::placeholder, textarea::placeholder {
    font-size: 18px;
    color: #242424;
    font-family: var(--regular);
    opacity: 60%;
}
textarea {
    min-height: 180px;
    padding: 20px 16px;
    text-align: left;
}
.form-control:focus, .form-select:focus, .form-control.is-invalid:focus, .form-select.is-invalid:focus {
    border-color: unset;
    box-shadow: unset;
    border: 1px solid #00000033;
}
.product-enquiry-form {
    padding: 60px 0px;
}
.sec-contact-form .btn.btn-primary {
    width: 320px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-family: var(--regular);
    font-weight: 500;
    color: #FFFFFF;
    background-color: #1248C1;
    border-radius: 10px;
    margin: 40px auto 0px;
    border: 0px;
}
textarea.form-control {
    min-height: 180px;
    padding-top: 16px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .testimonial-card {
        padding: 30px;
        margin: 0 10px;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}





/* Dark Theme Color  */
.dark-mode .light-d-none {
    display: none;
}

.dark-mode .sec-hero {
    background-color: #000514;
}

.dark-mode h1.hero-title,
.dark-mode p.hero-subtitle,
.dark-mode p.lead {
    color: #ffffff;
}

.dark-mode p.hero-subtitle {
    opacity: 80%;
}

.dark-mode .sec-we-help {
    background-color: #000514;
}

.dark-mode .sec-we-help h2 {
    color: #D4E2FE;
}

.dark-mode .sec-we-help p {
    color: #FFFFFF;
    opacity: 80%;
}
body .dark-mode .sec-we-help p .about-txt {
    opacity: 100% !important;
    color: #ffffff;
}
.dark-mode .sec-why-ccs {
    background-color: #000514;
}

.dark-mode .sec-why-ccs h2,
.dark-mode .sec-why-ccs h2 span,
.dark-mode .why-card p,
.dark-mode .why-card h4 {
    color: #ffffff;
}

.dark-mode .sec-what-we-offer {
    position: relative;
    background-color: #000514;
}
.dark-mode .sec-about-banner {
    background-color: #000514 !important;
}
.dark-mode .sec-about-banner h1 {
    color: #D4E2FE;
}
.dark-mode .sec-about-banner p {
    color: #FFFFFF;
    opacity: 80%;
}
.dark-mode .sec-what-we-offer::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 99;
    background-image: url('../assets/images/bg-sec-what-we-offer.png');
    background-color: transparent;
    background-size: cover;
    background-repeat: no-repeat;
}

.dark-mode .offer-card p {
    opacity: 80%;
}

.dark-mode .offer-card img {
    filter: brightness(2);
}

.dark-mode .sec-counter {
    background-color: #000514;
}

.dark-mode .sec-counter img {
    filter: brightness(20);
}

.dark-mode .sec-counter h6 {
    color: #ffffff;
}

.dark-mode .sec-counter h4 {
    color: #ffffff;
}

.dark-mode .sec-meet-people {
    background-color: #000514;
}
.dark-mode .sec-meet-people h2   {
    color: #D4E2FE;
}
.dark-mode .sec-meet-people ul li span {
    background-color: #ffffff;
}
.dark-mode .sec-meet-people h2 span, .dark-mode .sec-meet-people ul li, .dark-mode .meet-people-card .profile-details h4, .dark-mode .meet-people-card .profile-details h6 {
    color: #ffffff;
}
.dark-mode .sec-meet-people .profile-img {
    background-color: #FFFFFF0F;
    border: 1px solid #FFFFFF2B;
}
.dark-mode footer {
    background-color: #000514;
    position: relative;
}
.dark-mode footer::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 99;
    background-image: url('../assets/images/bg-sec-what-we-offer.png');
    background-color: transparent;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0px;
}
.light-mode footer img.foot-logo.dark {
    display: none;
}
.dark-mode footer img.foot-logo.light {
    display: none;
}
.dark-mode footer img.foot-logo.dark {
    display: block;
}
.dark-mode .foot-brand h4, .dark-mode .foot-brand h6, .dark-mode footer li a, .dark-mode footer li, .dark-mode footer li a span, .dark-mode footer h4, .dark-mode .foot-social h6, .dark-mode footer p {
    color: #ffffff;
}
.dark-mode footer .foot-brand svg path {
    fill: #D4E2FE;
}
.dark-mode footer .foot-links li a svg path, .dark-mode .copyright path {
    fill: #ffffff;
}
.dark-mode ul.foot-links a img {
    filter: brightness(3);
}
.dark-mode .navbar-expand-lg .navbar-nav .dropdown-menu {
    background-color: #000514;
    border: 1px solid #FFFFFF1A;
}
.dark-mode a.category-item {
    color: #ffffff;
}
.dark-mode a.category-item.active {
    background: linear-gradient(90deg, rgba(153, 153, 153, 0) 0%, rgba(133, 190, 255, 0.2) 100%);
}
.dark-mode a.product-item span {
    color: #ffffff;
}
.dark-mode  a.product-item img {
    filter: brightness(5.5);
}

.dark-mode .accordion-item .accordion-button {
    color: #ffffff;
}
.dark-mode .foot-contact li svg path {
    fill: #D4E2FE;
}
.dark-mode .sec-we-help p {
    opacity: 100%
}
.dark-mode section h2 span {
    color: #D4E2FE !important;
    font-family: var(--bold) !important;
} 
.dark-mode section.sec-build-future {
    background-color: #000514;
}

.dark-mode .sec-build-future h2 {
    color: #ffffff;
}
.dark-mode .sec-build-future p {
    color: #ffffff;
}
.dark-mode.body-services .sec-about-banner .services-desc {
    color: #ffffff;
}
.dark-mode.body-services .offer-card svg path {
    fill: #D4E2FE;
}
.dark-mode.body-services .offer-card h4 {
    color: #ffffff;
}
.dark-mode.body-services .offer-card p {
    color: #ffffff;
}
.dark-mode .sec-why-choose {
    background-color: #000514;
}
.dark-mode .sec-why-choose li, .dark-mode .sec-why-choose strong {
    color: #ffffff;
}
body.body-contact.dark-mode .contact-now {
    color: #ffffff;
    opacity: 100%;
}
body.body-contact.dark-mode .contact-now svg path {
    stroke: #ffffff;
}
.dark-mode .sec-contact-form {
    background-color: #000514;
}
.dark-mode ul#contactTab li.nav-item button {
    color: #ffffff;
}
.dark-mode #contactTab {
    border: 1px solid #FFFFFF30;
}
.dark-mode  #contactTab li.nav-item button.active {
    border: 1px solid #e3e3e333;
    background-color: #e3e3e333;
}
.dark-mode .sec-contact-form form .form-control, .dark-mode .sec-contact-form form .form-select, .dark-mode .sec-contact-form form textarea {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.dark-mode .form-control::placeholder, .dark-mode .form-select::placeholder, .dark-mode textarea::placeholder, .dark-mode .form-control, .dark-mode .form-select, .dark-mode textarea, .dark-mode select.form-select {
    color: #ffffff;
    opacity: 60% !important;
}
.dark-mode select.form-select option {
    background-color: #000514;
}
