@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');


:root {
    --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;

    --primary: #0696D4;
    --primary-hover: #1479B8;
    --primary-text: #374151;
    --text-white: #fff;


}


html,
body {
    max-width: 100%;
    overflow-x: clip;
    /* prevent page-level horizontal scrolling */
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.jump-to-top {
    /* display: none; hidden by default */
    opacity: 0;
    /* hidden */
    visibility: hidden;
    /* prevent clicks */
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
#about,
#products_services,
#why_us,
#industries,
#contact {
  scroll-margin-top: 100px;
}
.jump-to-top.show {
    opacity: 1;
    /* visible */
    visibility: visible;
}

.jump-to-top a {
    position: fixed;
    bottom: 10%;
    right: 5%;
    width: 50px;
    height: 50px;
    background: #137bba;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    color: #fff;
    font-size: 24px;
}

.navbar-collapse {
    flex-grow: 1;
    flex-basis: 100%;
    align-items: center;
    background: #ffffff;
    padding: 11px;
    border-radius: 8px;
}

.container.our-st.py-3.py-md-5 {
    overflow: visible !important;
}

nav.navbar.navbar-expand-lg.bg-white {
    height: 70px;
    display: flex;
    align-items: center;
}

.navbar>.container {
    margin: 8px auto;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: inter;

}

.navbar-nav a {
    color: #374151;
}

.sticky-top {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 1030;
    /* make sure it's above other elements */
}

.navbar-nav a {
    font-weight: 500;
    opacity: 0.75;
    transition: opacity .2s ease;
    /* border-bottom: 1px solid #ccc; */
}

.navbar-nav a:hover {
    opacity: 1;
    /* looks bold but no width change */
}

.primary-button {
    text-decoration: none;
    color: var(--text-white);
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-hover) 100%);
    background-size: 200% 100%;
    background-position: right center;
    padding: 16px 26px;
    border-radius: 8px;
    border: 2px solid var(--text-white);
    transition: background-position 0.4s ease, color 0.4s ease;
    font-size: 18px;
}

.primary-button:hover {
    background-position: left center;
    color: #fff;
    /* keep white text on hover for smooth feel */
}


.secondary-button {
    text-decoration: none;
    color: var(--primary);
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-hover) 49.5%, var(--text-white) 50%, var(--text-white) 100%);
    background-size: 200%;
    background-position: right;
    padding: 8px 14px;
    border-radius: 8px;
    border: 2px solid var(--primary);
    transition: background-position 0.4s ease, color 0.3s ease;
}





.secondary-button:hover {
    background-position: left;
    color: #fff;
}


.navbar-nav {
    gap: 0.75rem;
}

.navbar-brand:focus,
.navbar-brand:hover {
    border: none;
    outline: none;
}

.navbar-brand img {
    vertical-align: middle;
    width: 90%;
}

.hero-section-headings a {
    padding: 12px 20px;
}

.hero-img img {
    object-fit: cover;
}

.hero-img {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0px 25px 50px 0px #00000040;

}

.hero-section-headings h1 {
    font-size: 56px;
    font-weight: 700;
}

.section-heading h2 {
    font-weight: 700;
    text-align: center;
    font-size: 40px;
}

.milestone-count {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 182, 212, 0.1) 70.71%);
    text-align: center;
    border-radius: 16px;
    padding: 32px 12px;
    height: 100%;
}


.milestone-count p {
    font-size: 40px;
    font-weight: 700;
    color: #0EA5E9;
}

.our-story-img-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #2DCCE7 0%, #2EA5E3 70.71%);
    text-align: center;
    border-radius: 16px;
    padding: 26px 32px;
    color: var(--text-white);

}

.our-story-img-badge p {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 60px;
}



.section-heading span {
    color: var(--primary);
}

.product-details h5 {
    font-size: 18px;
    font-weight: 700;
}

.product-details p {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* show only 4 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card {
    box-shadow: 0px 6px 8px 0px #0000001A;
    border-radius: 12px;
    background: #fff;
    z-index: 1;
    position: relative;
    height: 100%;
    /* Allows equal height in Bootstrap grid */
    display: flex;
    flex-direction: column;
    background: #fff;
    transition: 0.3s all;

}

.product-card:hover {
    transform: scale(1.03);
    /* slight zoom */
    box-shadow: 0px 12px 20px 0px #00000030;
    /* deeper shadow */
    z-index: 5;
    /* lift card above others */
    transition: 0.3s all;

}

.our-story-img-badge:hover {
    transform: scale(1.03);
    /* slight zoom */
    box-shadow: 0px 12px 20px 0px #00000030;
    /* deeper shadow */
    z-index: 5;
    /* lift card above others */
    transition: 0.3s all;

}




.our-mission-primary-card {
    border-radius: 12px;
    background: linear-gradient(135deg, #F0F9FF 0%, #ECFEFF 70.71%);
    z-index: 1;
    position: relative;
    transition: 0.3s all;
    height: 100%;
}

.our-mission-primary-card:hover {
    box-shadow: 0px 12px 20px 0px #00000030;
    /* deeper shadow */
    transform: scale(1.03);
    /* slight zoom */
    transition: 0.3s all;



}

.our-mission-secondary-card {
    border-radius: 12px;
    background: linear-gradient(135deg, #EFF6FF 0%, #EEF2FF 70.71%);
    z-index: 1;
    position: relative;
    transition: 0.3s all;
    height: 100%;
}

.our-mission-secondary-card:hover {
    box-shadow: 0px 12px 20px 0px #00000030;
    /* deeper shadow */
    transform: scale(1.03);
    /* slight zoom */
    transition: 0.3s all;

}

.navbar-toggler:focus {

    box-shadow: none;
}

.navbar-toggler {
    border: none;
}

.section-heading span {
    color: #2563EB;
    font-size: 14px;
    font-weight: 600;
}

.our-story-content p {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #374151;
}

.section-heading p {
    font-size: 20px;
}

.section-bg img {
    bottom: 0;
    right: 0;
    position: absolute;
    width: 39%;
    z-index: 0;
}

.testimonial-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50px;
    overflow: hidden;
}

.testimonial-card {
    padding: 18px 20px;
    border-radius: 24px;
    box-shadow: 0px 10px 15px 0px #0000001A;
    display: flex;
    max-width: 720px;
    /* avoid expanding beyond viewport */
    width: 100%;
    margin: 0 auto;


}

.testimonial-content {
    width: calc(100% - 80px);
    padding-left: 12px;
}

/* Make images responsive to avoid natural overflow */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent container children from causing page-level overflow */
.container {
    /* overflow-x: hidden; */
}

.rating-star i {
    color: #FACC15;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
    bottom: -6px !important;
}

.swiper-slide {
    display: flex !important;
    justify-content: center !important;

}






.copyrights p {
    color: #D7D7D7;
    font-size: 16px;
}

.copyrights {
    border-top: 1px solid #44556E;
}

.navbar-toggler-icon {
    width: 1.1em;
    height: 1.1em;
}


.product-card.serve {
    padding: 35px;
}






.maintenance p {
    margin: 0;
    padding: 13px 0;
}

.maintenance {
    background: rgb(255 245 178);
}

/* .maintenance .container.d-flex.align-items-center.gap-2.justify-content-center {
    height: 60px;
} */
.hero-section-headings p {
    font-size: 18px;
}

.hero-con {
    height: 70vh;
    position: relative;
    z-index: 9;
    width: 65%;
}

.hero-con h1 {
    font-family: Inter;
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    leading-trim: NONE;
    line-height: 58px;
    letter-spacing: 0%;
    text-align: center;
    width: 98%;
    margin: 0 auto;
}

.hero-con p {
    font-family: Inter;
    font-weight: 300;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;

}

.hero-sec::before {
    content: "";
    position: absolute;
    height: 70vh;
    width: 100%;
    background: #00000065;
}

.mission-card {
    background: #F4FBFF;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    gap: 10px;
    padding-right: 20px;
    height: 100%;

}

.mission-card h3 {
    font-size: 18px;
    font-weight: 700;
}

.mission-card p {
    font-size: 14px;
    font-weight: 400;
}

.mission-card-wrapper {
    background: linear-gradient(90deg, #0696D4 0%, #1479B8 100%);
    padding: 1px;
    border-radius: 16px;
    width: 80%;
    margin-bottom: 28px;
}

.mission-card-content {
    width: calc(100% - 50px);
}

.why-card-wrapper {
    background: linear-gradient(90deg, #0696D4 0%, #1479B8 100%);
    padding: 1px;
    border-radius: 8px;
    box-shadow: 0px 6px 8px 0px #0000001A;

}

.why-card {
    background: #F4FBFF;
    padding: 14px;
    border-radius: 8px;
}

.why-card p {
    margin: 0;
    font-size: 16px;
    line-height: 20px;
}

footer::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    background: #253247e3;
}

.footer-heading h3 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-heading p {
    font-family: Inter;
    font-weight: 300;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 0%;
    color: #D7D7D7;
}

.footer-heading a {
    color: #D7D7D7;
    text-decoration: none;
}

@media (max-width:1399px) {
    .our-story-content p {
        line-height: 24px;
    }

    .our-story-img-badge p {
        font-size: 38px;
        font-weight: 700;
        margin: 0;
        padding: 0;
        line-height: 60px;
    }

    .our-story-img-badge {
        position: absolute;
        bottom: 0;
        right: 0;
        background: linear-gradient(135deg, #2DCCE7 0%, #2EA5E3 70.71%);
        text-align: center;
        border-radius: 16px;
        padding: 20px 24px;
        color: var(--text-white);
        transition: 0.3s all;

    }
}

@media (max-width:1023px) {
    .hero-con {
        height: 70vh;
        position: relative;
        z-index: 9;
        width: 90%;
    }
}

@media (max-width:1199px) {
    .our-story-img-badge p {
        font-size: 32px;
        font-weight: 700;
        margin: 0;
        padding: 0;
        line-height: 53px;
    }

    .our-story-img-badge {
        position: absolute;
        bottom: 0;
        right: 0;
        background: linear-gradient(135deg, #2DCCE7 0%, #2EA5E3 70.71%);
        text-align: center;
        border-radius: 16px;
        padding: 20px 15px;
        color: var(--text-white);
    }

    .hero-con h1 {
        font-family: Inter;
        font-weight: 700;
        font-style: Bold;
        font-size: 42px;
        leading-trim: NONE;
        line-height: 50px;
        letter-spacing: 0%;
        text-align: center;
        width: 98%;
        margin: 0 auto;
    }

    .hero-con p {
        font-family: Inter;
        font-weight: 400;
        font-style: Regular;
        font-size: 20px;
        leading-trim: NONE;
        line-height: 24px;
        letter-spacing: 0%;
        text-align: center;
    }

    .why-card p {
        margin: 0;
        font-size: 14px !important;
        line-height: 16px;
    }

    .why-card {
        background: #F4FBFF;
        padding: 12px;
        border-radius: 8px;
    }

    .section-heading p {
        margin-bottom: 6px;
        font-size: 18px !important;
    }

    .section-heading h2 {
        font-size: 32px !important;
    }
}

@media (max-width:991px) {

    .hero-section-headings h1,
    .section-heading h2 {
        font-size: 34px;
    }

    .our-story-content p {
        font-size: 14px;
        line-height: 18px;
    }

    .our-story-content span {
        font-size: 10px;

    }

    .section-heading p {
        font-size: 16px;
    }

    .product-details h5 {
        font-size: 16px;
    }

    .product-details p {
        font-size: 14px;
    }

    .testimonial-card {
        width: 100%;


    }

    .our-story-img-badge span {
        font-size: 12px;
    }

    .our-story-img-badge p {
        font-size: 26px;
        line-height: 28px;
    }

    .navbar-nav {
        gap: 0;
    }

    .hero-con h1 {
        font-family: Inter;
        font-weight: 700;
        font-style: Bold;
        font-size: 38px;
        leading-trim: NONE;
        line-height: 46px;
        letter-spacing: 0%;
        text-align: center;
        width: 98%;
        margin: 0 auto;
    }

    p.text-center.fs-4.fw-light.second-head-para {
        font-size: 18px !important;
    }

    .mission-card-wrapper {
        width: 100%;
        margin-bottom: 12px;
    }

    .mission-card h3 {
        font-size: 16px;
        font-weight: 700;
    }

    .mission-card p {
        font-size: 12px;
        font-weight: 400;
    }

}

@media (max-width:767px) {
    .hero-section-headings {
        text-align: center;
        margin: 12px 0px;
    }

    .hero-section-headings h1,
    .section-heading h2 {
        font-size: 28px;
    }

    .milestone-count p {
        font-size: 32px;
    }

    .milestone-count span {
        font-size: 14px;
    }

    .our-story-img img {
        width: 80% !important;
    }

    .our-story-img {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .our-story-content p {
        font-size: 14px;
        line-height: 16px;
    }

    .section-heading p {
        padding: 0% 10%;
    }

    .our-story-img-badge {
        right: 38px;

    }

    .hero-con h1 {
        font-family: Inter;
        font-weight: 700;
        font-style: Bold;
        font-size: 28px;
        leading-trim: NONE;
        line-height: 38px;
        letter-spacing: 0%;
        text-align: center;
        width: 98%;
        margin: 0 auto;

    }

    .hero-con p {
        font-family: Inter;
        font-weight: 400;
        font-style: Regular;
        font-size: 18px;
        leading-trim: NONE;
        line-height: 24px;
        letter-spacing: 0%;
        text-align: center;
    }

    p.text-center.fs-4.fw-light.second-head-para {
        font-size: 14px !important;
    }

    .why-card-wrapper {
        background: linear-gradient(90deg, #0696D4 0%, #1479B8 100%);
        padding: 1px;
        border-radius: 8px;
        width: 80%;
        margin: 0 auto;
    }

    .why-card-wrapper {
        background: linear-gradient(90deg, #0696D4 0%, #1479B8 100%);
        padding: 1px;
        border-radius: 8px;
        width: 92%;
        margin: 0 auto;
        margin-bottom: 6px;
    }

    .footer-heading h3 {
        margin-bottom: 6px !important;
    }
}

@media (max-width:430px) {
    .our-story-img-badge {
        position: absolute;
        bottom: 0;
        right: 32px;
        background: linear-gradient(135deg, #2DCCE7 0%, #2EA5E3 70.71%);
        text-align: center;
        border-radius: 16px;
        padding: 16px 8px;
        color: var(--text-white);
    }

    .our-story-img-badge p {
        font-size: 18px;
        line-height: 16px;
    }

    .our-story-img-badge span {
        font-size: 10px;
    }

    .copyrights p {
        color: #D7D7D7;
        font-size: 12px;
    }

}



@media (max-width:575px) {

    .hero-section-headings h1,
    .section-heading h2 {
        font-size: 22px;
    }

    .milestone-count span {
        all: unset;
        display: block;
        font-size: 12px;
        line-height: 16px;
    }

    .milestone-count p {
        font-size: 22px;
    }

    .milestone-count {
        background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 182, 212, 0.1) 70.71%);
        text-align: center;
        border-radius: 16px;
        padding: 20px 12px;
    }

    .our-story-content p {
        font-size: 12px;
        line-height: 15px;
    }

    .section-heading p {
        font-size: 12px;
    }

    .product-details h5 {
        font-size: 13px;
    }

    .product-details p {
        font-size: 12px;
        line-height: 15px;
    }

    .testimonial-card {
        display: block;
    }

    .testimonial-img {
        margin: 0 auto;
    }

    .testimonial-content {
        width: 100%;
        padding-left: 0;
        text-align: center;
    }

    .testimonial-content .testimonial-comment p {
        font-size: 13px;
    }

    .r {
        font-size: 14px;
        font-weight: 300;
    }



    .copyrights p {
        font-size: 12px;
    }

    .product-card,
    .our-mission-primary-card,
    .our-mission-secondary-card {
        text-align: center;
    }


    .navbar-brand img {
        width: 62%;
    }

    .hero-section-headings a {
        padding: 8px 12px;
    }

    .product-card.serve {
        padding: 15px;
    }

    .product-img img {
        margin: 0 auto;
    }



    .jump-to-top a {
        position: fixed;
        bottom: 10%;
        right: 5%;
        width: 30px;
        height: 30px;
        background: #137bba;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        color: #fff;
        font-size: 16px;
    }

    .navbar>.container {
        margin: 7px auto;
    }

    .maintenance p {
        font-size: 10px;
    }

    nav.navbar.navbar-expand-lg.bg-white {
        height: 60px;
    }

    .navbar-nav a {
        font-size: 10px;
    }

    .hero-con h1 {
        font-weight: 500;
        font-size: 22px;
        line-height: 28px;
    }

    .hero-con {
        height: 60vh;
        position: relative;
        z-index: 9;
        width: 95%;
    }

    .hero-con p {
        font-family: Inter;
        font-weight: 300;
        font-style: Regular;
        font-size: 14px;
        leading-trim: NONE;
        line-height: 18px;
        letter-spacing: 0%;
        text-align: center;
    }

    .primary-button {
        text-decoration: none;
        color: var(--text-white);
        background: linear-gradient(90deg, var(--primary) 0%, var(--primary-hover) 100%);
        background-size: 200% 100%;
        background-position: right center;
        padding: 10px 20px;
        border-radius: 8px;
        border: 1px solid var(--text-white);
        transition: background-position 0.4s ease, color 0.4s ease;
        font-size: 14px;
    }

    .hero-sec::before {
        content: "";
        position: absolute;
        height: 60vh;
        width: 100%;
        background: #00000065;
    }

    .hero-sec {
        height: 60vh;
    }

    .section-heading p {
        margin-bottom: 6px;
        font-size: 14px !important;
        padding: 0;
    }

    .mission-card h3 {
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .mission-card p {
        font-size: 10px;
        font-weight: 400;
    }

    .footer-heading p {
        font-family: Inter;
        font-weight: 300;
        font-style: Regular;
        font-size: 10px;
        leading-trim: NONE;
        line-height: 24px;
        letter-spacing: 0%;
        color: #D7D7D7;
    }

    .footer-heading a {
        color: #D7D7D7;
        font-size: 10px;
        text-decoration: none;
    }

    .copyrights p {
        font-size: 9px;
    }
    .mission-card-img img{
        width: 35px;
    }
    .why-card p {
    margin: 0;
    font-size: 12px !important;
    line-height: 14px;
}
}
