:root {
    --primary-clr: #23787b;
    --secondary-clr: #fa5838;
    --accent-clr: #f4b4a1;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

/* custom class */

.w-max {
    width: max-content;
}

.b-radius {
    border-radius: 100vw;
}

/* main css style ? default settings*/

*,
*::before,
*:after {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: hsl(0, 0%, 100%);
    margin: 0;
    padding: 0;
    --clr: #23787b;
    --text-light: hsl(0, 0%, 95%);
    --text-white: hsl(0, 0%, 95%);
    --text-dark: hsl(0, 0%, 5%);
    --accent-clr-1: hsl(10, 100%, 98%);
    --accent-clr-2: hsl(240, 11%, 96%);
}

a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
}

a:is(:hover, :focus) {
    color: var(--clr);
}

/* header */

header {
    background-color: white;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: .3s;
}

header nav {
    transition: .5s;
    max-width: 1200px;
}

header nav .logo {
    width: 12rem;
}

header nav .get-cont {
    background-color: #004aad;
    color: white;
    font-weight: 600;
    transition: .4s;
}

header nav .get-cont svg,
header nav .get-cont span {
    color: white;
}

header nav .get-cont:hover {
    background-color: #23787b;
}

header nav .get-cont:is(:hover, :focus) {
    color: white;
}

header nav a.active {
    color: #004aad;
}

header nav .menu {
    width: 2rem;
    height: 2rem;
    background-color: #004aad;
    position: relative;
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGZpbGw9ImN1cnJlbnRDb2xvciIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMjAuNzUgN2EuNzUuNzUgMCAwIDEtLjc1Ljc1SDRhLjc1Ljc1IDAgMCAxIDAtMS41aDE2YS43NS43NSAwIDAgMSAuNzUuNzVtMCA1YS43NS43NSAwIDAgMS0uNzUuNzVINGEuNzUuNzUgMCAwIDEgMC0xLjVoMTZhLjc1Ljc1IDAgMCAxIC43NS43NW0wIDVhLjc1Ljc1IDAgMCAxLS43NS43NUg0YS43NS43NSAwIDAgMSAwLTEuNWgxNmEuNzUuNzUgMCAwIDEgLjc1Ljc1IiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=), url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGZpbGw9ImN1cnJlbnRDb2xvciIgZD0ibTEyIDEzLjRsLTQuOSA0LjlxLS4yNzUuMjc1LS43LjI3NXQtLjctLjI3NXEtLjI3NS0uMjc1LS4yNzUtLjd0LjI3NS0uN2w0LjktNC45bC00LjktNC45cS0uMjc1LS4yNzUtLjI3NS0uN3QuMjc1LS43cS4yNzUtLjI3NS43LS4yNzV0LjcuMjc1bDQuOSA0LjlsNC45LTQuOXEuMjc1LS4yNzUuNy0uMjc1dC43LjI3NXEuMjc1LjI3NS4yNzUuN3QtLjI3NS43TDEzLjQgMTJsNC45IDQuOXEuMjc1LjI3NS4yNzUuN3QtLjI3NS43cS0uMjc1LjI3NS0uNy4yNzV0LS43LS4yNzV6Ii8+PC9zdmc+);
    mask-size: 100%;
    mask-position: 50% center, 3rem center;
    mask-repeat: no-repeat;
    transition: .5s;
}

header nav .menu.active {
    mask-position: -3rem center, 50% center;
}

body.mob-menu {
    overflow: hidden;
    transform: translateX(calc(-100% + 4rem));
}

.social-icons-wrapper a svg {
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.social-icons-wrapper a:hover svg {
    transform: scale(1.3) !important;
    filter: drop-shadow(0 0 6px #ffffffd3) !important;
}

/* mobile description expand and less code  */

.slide-description {
    line-height: 1.8em;
    font-size: 16px;
    color: #333;
}

.toggle-btn {
    color: #007bff;
    font-weight: 600;
    cursor: pointer;
}

.d-none {
    display: none;
}

/* By default: hide responsive toggle versions, show full */
.responsive-toggle {
    display: none;
}

.desktop-full {
    display: block;
}

/* For mobile/tablet: show toggle version, hide full */
@media (max-width: 991px) {
    .responsive-toggle {
        display: block;
    }

    .desktop-full {
        display: none;
    }
}




@media (width <=1200px) {
    header nav .navigation {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(255, 255, 255, 0.95);
        z-index: 9999;
        height: 100vh;
        font-size: 2rem;
        opacity: 0;
        pointer-events: none;
        transition: .5s;
    }

    header nav .navigation.mob-menu {
        opacity: 1;
        pointer-events: all;
    }

    header nav .navigation a {
        opacity: 0;
        transform: translateY(1rem);
        transition: .5s;
        transition-delay: calc(var(--delay, 0) * 0.1s);
    }

    header nav .navigation.mob-menu a {
        opacity: 1;
        transform: translateY(0);
    }

    header nav .navigation .close-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 2rem;
        font-size: 2.5rem;
    }
}

/* sub title */

.sub-title {
    color: var(--primary-clr);
    width: 100%;
    justify-content: start;
    align-items: center;
}

.title-line {
    height: 2px;
    width: 50px;
    background-color: var(--primary-clr);
}

.title-under-line {
    color: var(--secondary-clr);
}

/* header start */

.logo {
    position: relative;
}

.logo .logo-image {
    border-radius: 8px;
    width: 110%;
}

.top-bar {
    font-size: 14px;
    background-color: #004aad;
}

.top-bar a,
.top-bar svg {
    /* transition: color 0.2s; */
    /* color: white !important; */
}

.top-bar .social-icons-wrapper a:hover,
.top-bar .social-icons-wrapper svg:hover {
    color: #d6f1ff !important;
    fill: #0c4869 !important;
}

.top-bar .top-contact-wrapper:hover a,
.top-bar .top-contact-wrapper:hover svg {
    color: #d6f1ff !important;
    fill: #0c4869 !important;
}

.top-contact-wrapper svg {
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.top-contact-wrapper:hover svg {
    transform: scale(1.3);
    filter: drop-shadow(0 0 6px #00ffc3);
}

/* header end */

/* banner start */

#banner-section .swiper {
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

#banner-section .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    background-image: var(--slider-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#banner-section .slide-content {
    /* Add black background with blur effect */
    background: rgba(0, 0, 0, 0.492);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2rem 3rem;
    border-radius: 16px;
    margin-left: 5vw;
    max-width: 500px;
    text-align: left;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.382);
}

#banner-section .slide-content h2 {
    color: #fff;
    /* Green color for heading */
}

#banner-section .slide-content p {
    color: #fff;
    /* White color for paragraph */
}

#banner-section .swiper-pagination {
    bottom: 30px !important;
    text-align: center;
}

#banner-section .swiper-pagination-bullet {
    background: #004aad !important;
}

#banner-section .swiper-button-next,
#banner-section .swiper-button-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #004aad;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(35, 120, 123, 0.10);
    transition: background 0.2s, color 0.2s, border 0.2s;
    /* border: 2px solid #23787b; */
}

#banner-section .swiper-button-next:after,
#banner-section .swiper-button-prev:after {
    font-size: 1.5rem;
    color: #fff;
    transition: color 0.2s;
}

#banner-section .swiper-button-next:hover,
#banner-section .swiper-button-prev:hover {
    background: #fff;
    color: #23787b;
    border: 2px solid #23787b;
}

#banner-section .swiper-button-next:hover:after,
#banner-section .swiper-button-prev:hover:after {
    color: #23787b;
}

/* banner end */

/* about-us start */

.about-subheading {
    letter-spacing: 1px;
    background-color: #e6f4f5;
    border-radius: 6px;
    color: #004aad;
    font-size: 1rem;
}

.about-title {
    color: #004aad;
}

.get-contact-btn {
    background-color: #004aad;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.2s;
}

.get-contact-btn:hover {
    background-color: #19595b;
}

/* about-us end */

.why-choose-section {
    background: #f7fbfb;
}

.why-choose-title {
    font-weight: 700;
    color: #004aad;
}

.why-choose-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(35, 120, 123, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.why-choose-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 32px rgba(35, 120, 123, 0.18);
}

.why-choose-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e6f4f5;
    border-radius: 50%;
    color: #004aad;
    font-size: 2rem;
    transition: .4s;
}

.why-choose-icon svg {
    color: #004aad;
    transition: .4s;
}

.why-choose-icon svg:hover {
    color: #333;
}

.why-choose-card:hover .why-choose-icon {
    background: #23787b;
    color: #fff;
}


.why-choose-card:hover .why-choose-icon svg {
    color: #fff;
}

.why-choose-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #004aad;
}

.why-choose-card:hover .why-choose-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #23787b;
}

.why-choose-desc {
    font-size: 1rem;
    color: #555;
}

@media (max-width: 991px) {
    .why-choose-card {
        min-width: 180px;
        max-width: 100%;
    }
}

/* why-choose-us end */

/* solution start */

.solution-section {
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: box-shadow 0.3s;
    background: #fff;
    height: 100%;
}

.solution-section:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
}

.solution-section-img {
    object-fit: cover;
    width: 100%;
}

.solution-section-title {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
    color: #004aad;
}

.solution-section-text {
    color: #000000;
    font-size: 12px;
    margin-bottom: 1.5rem;
}

.modern-btn {
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    background-color: #004aad;
    color: #fff;
    border: 2px solid #004aad;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(79, 140, 255, 0.10);
    width: max-content;
}

.modern-btn:hover {
    background-color: #ffffff;
    color: #19595b;
}

/* solution end */

/* testimonial start */

#testimonials .modern-testimonial {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    padding: 36px 32px 32px 32px;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 70px;
}

#testimonials {
    background: #f7fbfb;
}

#testimonials .modern-testimonial .testimonial-img {
    position: absolute;
    top: -48px;
    right: 32px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
    object-fit: cover;
    background: #fff;
    display: none;
}

#testimonials .modern-testimonial .testimonial-header {
    text-align: left;
    margin-bottom: 12px;
}

#testimonials .modern-testimonial .testimonial-name {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
}

#testimonials .modern-testimonial .testimonial-tagline {
    color: #f59e42;
    font-size: 1em;
    margin-bottom: 4px;
}

#testimonials .modern-testimonial .testimonial-stars {
    color: #f59e42;
    font-size: 1.1em;
    margin-bottom: 8px;
}

#testimonials .modern-testimonial .testimonial-text {
    color: #444;
    font-size: 14px;
    text-align: left;
    margin-top: 10px;
    max-height: 120px;
    overflow: auto;
}

#testimonials .modern-testimonial .quote-icon {
    color: #2563eb;
    font-size: 1.5em;
    vertical-align: middle;
    margin-right: 6px;
}

#testimonials .modern-testimonial .quote-end {
    color: #2563eb;
    font-size: 1.2em;
    vertical-align: middle;
    margin-left: 4px;
}

#testimonials .modern-testimonial .speech-bubble {
    position: absolute;
    left: 32px;
    bottom: -24px;
    width: 40px;
    height: 32px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#testimonials .swiper-pagination-bullet {
    background: #004aad !important;
}

/* Swiper next/prev button custom style for testimonials */

#testimonials .swiper-button-next,
#testimonials .swiper-button-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #004aad;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(35, 120, 123, 0.10);
    transition: .4s;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
}

#testimonials:hover .swiper-button-next,
#testimonials:hover .swiper-button-prev {
    opacity: 1;
}

#testimonials .swiper-button-next:after,
#testimonials .swiper-button-prev:after {
    font-size: 1.5rem;
    color: #fff;
    transition: color 0.2s;
}

#testimonials .swiper-button-next:hover,
#testimonials .swiper-button-prev:hover {
    background: #fff;
    color: #23787b;
    border: 1.5px solid #23787b;
}

#testimonials .swiper-button-next:hover:after,
#testimonials .swiper-button-prev:hover:after {
    color: #23787b;
}

/* Responsive for small screens */

@media (max-width: 600px) {
    #testimonials .modern-testimonial {
        padding: 32px 16px 32px 16px;
        max-width: 98vw;
    }

    #testimonials .modern-testimonial .testimonial-img {
        right: 16px;
    }

    #testimonials .modern-testimonial .speech-bubble {
        left: 16px;
    }

    #testimonials .swiper-button-next,
    #testimonials .swiper-button-prev {
        width: 38px;
        height: 38px;
        opacity: 1;
    }
}

/* testimonial end */

/* footer start */

#footer {
    background-color: #ffffff;
}

.footer h5 {
    color: #004aad;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer p,
.footer a {
    color: #333;
    font-size: 0.9rem;
}

.footer a:hover {
    color: #23787b;
    text-decoration: none;
}

.social-icons a {
    color: #333;
    font-size: 1.2rem;
    margin-right: 15px;
}

.social-icons a:hover {
    color: #23787b;
}

.map-container {
    background-color: #f0f0f0;
    border-radius: 5px;
}

.bottom-footer {
    background-color: #004aad;
    padding: 15px 0;
    color: white;
}

/* footer end */