@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =====================================
   Theme Variables
===================================== */
:root {
    /* Primary Colors */
    --color-primary: #00aeef;
    --color-secondary: #139547;

    /* Neutral Colors */
    --color-text-default: #929292;
    --color-heading: #000000;
    --color-subtext: #9f9f9f;
    --color-white: #ffffff;

    /* Card Colors */
    --card-border-color: #e7f4ec;
    --card-bg-color: #f3faf5;
    --card-img-bg: #ffffff;

    /* Typography */
    --font-main: "Montserrat", sans-serif;
    --font-button: "Helvetica Neue", sans-serif;

    /* Font Sizes */
    --fs-heading: 36px;
    --fs-subtext: 18px;
    --fs-subtext2: 12px;
    --fs-button: 16px;
    --fs-card-title: 16px;
    --fs-card-subtext: 12px;
    --fs-nav: 15px;

    /* Border Radius */
    --radius-button: 30px;
    --radius-card: 15px;
    --radius-card-img: 13px;

    --search-border-color: #ffffff;
    --search-border-radius: 10px;
    --search-bg: rgba(255, 255, 255, 0.1);

    --navbar-bg: #ffffff;
    --navbar-radius: 10px;
    --navbar-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
    --main-bg: #E5F7FD;
    --sec-bg: #fff;

    /* Badge */
    --badge-font-family: "Montserrat", sans-serif;
    --badge-font-size: 9px;
    --badge-font-weight: normal;
    --badge-font-color: #00aeef;

    /* Learn More Anchor */
    --learnmore-font-family: "Helvetica Neue", sans-serif;
    --learnmore-font-size: 14px;
    --learnmore-font-weight: normal;
    --learnmore-font-color: #139547;

    --newBadge-font-family: "Montserrat", sans-serif;
    --newBadge-font-size: 10px;
    --newBadge-font-weight: 600;
    --newBadge-font-color: #ffffff;
    --newBadge-bg: #84C89F;
    --newBadge-radius: 6px;
}




.bgPrimary {
    background: var(--color-primary);
    height: 100px;
    padding-block: 0.8rem;
}

.searchCustom-input {
    width: 100%;
    border-color: var(--search-border-color);
    border-width: 1px;
    border-style: solid;
    border-radius: var(--search-border-radius);
    background: var(--search-bg);
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 15px;
    outline: none;
    transition: all 0.3s ease;
}

.navCustom-bar {
    border-radius: var(--navbar-radius);
    background: var(--navbar-bg);
    filter: drop-shadow(var(--navbar-shadow));
    padding: 10px 20px;
}


/* =====================================
   Navigation Links
===================================== */
.navCustom-link {
    font-family: var(--font-main);
    font-size: var(--fs-nav);
    font-weight: 500;
    font-style: normal;
    text-align: left;
    color: var(--color-text-default);
    text-decoration: none;
    transition: color 0.3s ease;
}

.navCustom-link.active,
.navCustom-link:hover {
    color: var(--color-primary) !important;
}

/* =====================================
   Headings and Text
===================================== */
.mainCustom-heading {
    font-family: var(--font-main);
    font-size: var(--fs-heading);
    font-weight: 600;
    line-height: 45px;
    font-style: normal;
    text-align: left;
    color: var(--color-heading);
}

.mainCustom-heading span {
    color: var(--color-secondary);
}

.subCustom-text {
    font-family: var(--font-main);
    font-size: var(--fs-subtext);
    font-weight: normal;
    line-height: 30px;
    font-style: normal;
    text-align: left;
    color: var(--color-subtext);
}

.subCustom-text span {
    color: var(--color-primary);
    font-size: var(--fs-subtext);
}

.sub-text2 {
    font-family: var(--font-main);
    font-size: var(--fs-subtext2);
    font-weight: normal;
    line-height: 30px;
    font-style: normal;
    text-align: left;
    color: var(--color-subtext);
}


.border-15 {
    border-radius: var(--radius-card);
}

.bg-main {
    background: var(--main-bg);
}

.bg-sec {
    background: var(--sec-bg);
}

.bg-main2 {
    background: #F3FAF5;
}

/* =====================================
   Buttons
===================================== */
.btnCustom-primary,
.btnCustom-secondary {
    display: inline-block;
    border-radius: var(--radius-button);
    font-family: var(--font-button);
    font-size: var(--fs-button);
    font-weight: normal;
    line-height: 30px;
    font-style: normal;
    text-align: left;
    color: var(--color-white);
    padding: 10px 25px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btnCustom-primary2 {
    display: inline-block;
    border-radius: var(--radius-button);
    font-family: var(--font-button);
    font-size: var(--fs-button);
    font-weight: normal;
    line-height: 30px;
    font-style: normal;
    text-align: left;
    color: var(--color-white);
    padding: 2px 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btnCustom-primary {
    background: var(--color-primary);
}

.btnCustom-primary:hover {
    background-color: var(--sec-bg);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btnCustom-primary2 {
    background: var(--color-primary);
}

.btnCustom-primary2:hover {
    background-color: var(--sec-bg);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}


.btnCustom-secondary {
    background: var(--color-secondary);
}

.btnCustom-secondary:hover {
    background: var(--sec-bg);
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

/* =====================================
   Cards
===================================== */
.cardCustom {
    border: 1px solid var(--card-border-color);
    border-radius: var(--radius-card);
    background: var(--card-bg-color);
    padding: 20px;
}

.cardCustom-image {
    border-radius: var(--radius-card-img);
    background: var(--card-img-bg);
    overflow: hidden;
}

.cardCustom-title {
    font-family: var(--font-main);
    font-size: var(--fs-card-title);
    font-weight: 600;
    font-style: normal;
    text-align: left;
    color: var(--color-heading);
}

.cardCustom-subtext {
    font-family: var(--font-main);
    font-size: var(--fs-card-subtext);
    font-weight: normal;
    font-style: normal;
    text-align: left;
    color: var(--color-subtext);
}

/* --- Card Badge (inside card) --- */
.cardCustom-badge {
    display: inline-block;
    font-family: var(--badge-font-family);
    font-size: var(--badge-font-size);
    font-weight: var(--badge-font-weight);
    font-style: normal;
    text-align: left;
    color: var(--badge-font-color);
    background: rgba(0, 174, 239, 0.1);
    border: 1px solid var(--badge-font-color);
    border-radius: 5px;
    padding: 3px 6px;
    letter-spacing: 0.3px;
}

/* --- General Badge (standalone use) --- */
.badgeCustom {
    font-family: var(--badge-font-family);
    font-size: var(--badge-font-size);
    font-weight: var(--badge-font-weight);
    font-style: normal;
    text-align: left;
    color: var(--badge-font-color);
    background: rgba(0, 174, 239, 0.1);
    border: 1px solid var(--badge-font-color);
    border-radius: 5px;
    padding: 3px 6px;
}

/* --- Learn More Anchor --- */
.learnMore-link {
    font-family: var(--learnmore-font-family);
    font-size: var(--learnmore-font-size);
    font-weight: var(--learnmore-font-weight);
    font-style: normal;
    text-align: center;
    color: var(--learnmore-font-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.learnMore-link:hover {
    color: #0f7f3a;
    /* slightly darker green on hover */
}



.swiper {
    position: relative;
    padding-bottom: 60px;
    /* space for pagination + arrows */
}

/* Pagination Dots */
.swiper-pagination-bullet {
    background: var(--color-primary) !important;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
    color: var(--color-primary) !important;
    font-weight: bold;
    transition: color 0.3s ease;
    z-index: 9999;

}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px;

}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: var(--color-primary) !important;
}

/* Center pagination and arrows together */
.cardSwiper .swiper-pagination {
    bottom: 15px !important;
}

.swiper-button-prev {
    left: 42%;
    top: auto;
    bottom: 5px;
    transform: translateX(-50%);
}

.swiper-button-next {
    right: 42%;
    top: auto;
    bottom: 5px;
    transform: translateX(50%);
}

.guide {
    border-radius: var(--radius-card);
    height: 300px;
}

.left-picture {
    width: 50%;
}

.left-picture img {
    width: 100%;
    height: 300px;
    border-top-right-radius: 0;
    border-top-left-radius: var(--radius-card);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: var(--radius-card);

}

.right-guide {
    width: 50%;
    height: 100%;
    background-color: var(--color-secondary);
    padding: 2rem;
    border-top-right-radius: var(--radius-card);
    border-bottom-right-radius: var(--radius-card);
}

.newBadge {
    display: inline-block;
    font-family: var(--newBadge-font-family);
    font-size: var(--newBadge-font-size);
    font-weight: var(--newBadge-font-weight);
    font-style: normal;
    text-align: center;
    color: var(--newBadge-font-color);
    background: var(--newBadge-bg);
    border-radius: var(--newBadge-radius);
    padding: 3px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.font-h {
    font-family: "Montserrat";
    font-size: 32px;
    font-weight: 600;
    line-height: 45px;
    font-style: normal;
    text-align: left;
    color: #ffffff;
}

.font-p {
    font-family: "Montserrat";
    font-size: 18px;
    font-weight: normal;
    line-height: 30px;
    font-style: normal;
    text-align: left;
    color: #ffffff;
}

@media(max-width:768px) {
    .guide {
        height: auto;
        flex-direction: column;
    }

    .left-picture {
        width: 100%;
        border-top-right-radius: var(--radius-card);
        border-top-left-radius: var(--radius-card);
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .left-picture img {
        width: 100%;
        border-top-right-radius: var(--radius-card);
        border-top-left-radius: var(--radius-card);
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .right-guide {
        width: 100%;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
        border-bottom-right-radius: var(--radius-card);
        border-bottom-left-radius: var(--radius-card);

    }

    .swiper-button-next {
        right: 22%;
    }

    .swiper-button-prev {
        left: 22%;
    }

}

.font-s {
    font-family: "Montserrat";
    font-size: 17px;
    font-weight: normal;
    line-height: 30px;
    font-style: normal;
    text-align: center;
    color: #9f9f9f;
}

.font-s1 {
    font-family: "Montserrat";
    font-size: 26px;
    font-weight: bold;
    line-height: 46px;
    font-style: normal;
    text-align: center;
    color: #000000;
}

.font-s3 {
    font-family: "Montserrat";
    font-size: 17px;
    font-weight: normal;
    line-height: 30px;
    font-style: normal;
    text-align: center;
    color: #ffffff;
}

.font-s4 {
    font-family: "Montserrat";
    font-size: 26px;
    font-weight: bold;
    line-height: 46px;
    font-style: normal;
    text-align: center;
    color: #ffffff;
}


.slider-container {
    position: relative;
    width: 100%;
    height: 6px;
    background-color: #E5F7FD;
    border-radius: 5px;
    margin: 20px 0;

}

.slider-fill {
    position: absolute;
    height: 100%;
    background-color: #139547;
    border-radius: 5px;
    width: 0%;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #139547;
    border-radius: 50%;
    cursor: pointer;
}

.lose {
    color: white;

    padding: 15px;
    border-radius: 15px;


    background: #00aeef
}

.card-slider {
    border-radius: 15px;


    background: #ffffff;

    padding-top: 1rem;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e5f7fd;
    border-radius: 15px;
    padding: 25px 30px;
    /* width: 400px; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.card-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.card-header img {
    width: 200px;
    height: auto;
}

.card-text {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 23px;
    font-style: italic;
    text-align: left;
    color: #9f9f9f;
    margin-bottom: 15px;
}

.card-author {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    text-align: left;
    color: #000000;
}

.fs2 {
    font-family: "Montserrat";
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    color: #000000;
}

.fs3 {
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-style: normal;
    text-align: left;
    color: #9f9f9f;
}

.accordion-item {
    border: 1px solid #E5F7FD !important;
    background-color: #F2FBFE !important;
    margin-bottom: 10px;
    border-radius: 15px;
    overflow: hidden;
}

.accordion-button {
    background-color: #F2FBFE !important;
    color: #000 !important;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    box-shadow: none !important;
    border-radius: 15px;
}

.accordion-button::after {
    background-image: url('../images/plus.png') !important;
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(0deg) !important;
    transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(45deg) !important;
}

.accordion-body {
    background-color: #f2fbfe !important;
    color: #555;
    font-family: "Montserrat", sans-serif;
    line-height: 22px;
    font-size: 14px;
}


footer {
    background-color: #e5f7fd;
    padding: 40px 0;
    font-family: "Montserrat", sans-serif;
}

.footer-logo img {
    max-width: 200px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
    color: #000000;
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    font-size: 13px;
    font-weight: normal;
    line-height: 27px;
    font-style: normal;
    color: #9f9f9f;
    text-decoration: none;
}

.footer-links a:hover {
    color: #139547;
}

@media (max-width: 768px) {
    .footer-title {
        margin-top: 20px;
    }
}

.company {
    background: #00AEEF;
}

.fs4 {
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: normal;
    line-height: 27px;
    font-style: normal;
    text-align: center;
    color: #ffffff;
}



.form-step {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 45px;
    font-style: normal;
    margin-bottom: 25px;
}

.option-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e5f7fd;
    border-radius: 15px;
    background: #f2fbfe;
    padding: 15px 20px;
    margin-bottom: 12px;
    cursor: pointer;
}

.option-box input {
    width: 20px;
    height: 20px;
    border: 1px solid #e5f7fd;
    background: #ffffff;
    cursor: pointer;
}

.option-box label {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    color: #9f9f9f;
    flex: 1;
}

.option-card {
    border: 1px solid #e5f7fd;
    border-radius: 15px;
    background: #f2fbfe;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 17px;
    color: #9f9f9f;
    font-weight: 500;
}

.option-card.active {
    border: 2px solid #00aeef;
    background-color: #e5f7fd;
    color: #000;
}

input[type="text"],
input[type="number"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5f7fd;
    border-radius: 15px;
    background: #f2fbfe;
    font-size: 17px;
    font-weight: 500;
    color: #000;
}

.unit-text {
    color: #9f9f9f;
    font-size: 17px;
    font-weight: 500;
    margin-left: 10px;
}

.switch-link {
    display: inline-block;
    margin-top: 10px;
    color: #00aeef;
    text-decoration: underline;
    cursor: pointer;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn-nav {
    border: 1px solid #00aeef;
    border-radius: 30px;
    background: #ffffff;
    color: #00aeef;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 30px;
    padding: 8px 30px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: #00aeef;
    color: #ffffff;
}



/* Main Image */
.main-image {
    border: 1px solid #e6ece8;
    border-radius: 15px;
    background: #ffffff;
    height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Small images */
.thumbnail-list {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 10px;
}

.thumbnail-item {
    border: 1px solid #e6ece8;
    border-radius: 15px;
    background: #ffffff;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.thumbnail-item img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.thumbnail-item.active {
    border-color: #00aeef;
}

/* Product details */
.product-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 45px;
    color: #000000;
}

.product-subtitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    color: #9f9f9f;
}

.review-text {
    font-size: 14px;
    color: #9f9f9f;
    line-height: 30px;
    margin-left: 8px;
}

.star {
    width: 18px;
    height: 18px;
}

/* Price Cards */
.price-card {
    border: 1px solid #e7f4ec;
    border-radius: 15px;
    background: #f3faf5;
    padding: 15px 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.price-card:hover,
.price-card.active {
    border-color: #00aeef;
    background: #e5f7fd;
}

.price-card input[type="radio"] {
    display: none;
}

.price-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.price-card-subtext {
    font-size: 14px;
    color: #9f9f9f;
}

.price-card-right {
    text-align: right;
}

.price-card-price {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.price-card-save {
    font-size: 13px;
    color: #00aeef;
}

/* Buy Button */
.buy-btn {
    border-radius: 30px;
    background: #00aeef;
    font-family: "Helvetica Neue";
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    border: none;
    padding: 10px 40px;
    margin-top: 10px;
    width: 100%;
    transition: all 0.2s ease;
}

.buy-btn:hover {
    background: #008ecc;
}