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

/* ===========================
   RESET & BASE
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

img {
    max-width: 100%;
}

/* ===========================
   BACKGROUND GRADIENT
   =========================== */
.hero-wrapper {
    position: relative;
}

.background-gradient {
    position: absolute;
    top: -50%;
    right: -35%;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .background-gradient {
        top: -5%;
        right: -10%;
        width: 120%;
        opacity: 0.6;
    }
}

@media (max-width: 576px) {
    .background-gradient {
        top: 0;
        right: -20%;
        width: 140%;
        opacity: 0.4;
    }
}

/* ===========================
   STICKY NAVBAR
   =========================== */
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    position: relative;
}

.nav-wrapper.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.nav-wrapper .logo img {
    max-width: 150px;
}

.nav-wrapper ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-wrapper ul li {
    margin: 0 15px;
}

.nav-wrapper ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s;
}

.nav-wrapper ul li a:hover {
    color: #008E88;
}

.nav-wrapper ul li a.active {
    color: #008E88;
    font-weight: bold;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 3px;
    transition: all 0.3s;
    display: block;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 768px) {
    .nav-wrapper {
        padding: 12px 20px;
        flex-wrap: wrap;
    }

    .hamburger {
        display: flex;
    }

    .nav-wrapper ul {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
        border-top: 1px solid #eee;
        margin-top: 10px;
    }

    .nav-wrapper ul.open {
        display: flex;
        position: absolute;
        background: white;
        width: auto;
        right: 30px;
        top: 50px;
        padding: 5px 25px;
        border-radius: 10px;
        box-shadow: 0px 0px 5px #0000001f;
    }

    .nav-wrapper ul li {
        margin: 8px 0;
        text-align: center;
    }
}

/* ===========================
   HERO SECTION
   =========================== */
#homeSection {
    position: relative;
    z-index: 10;
    padding-bottom: 3rem;
}

.hero-content {
    text-align: left;
    padding: 20px 0;
}

.hero-content h1 {
    line-height: 90px;
    font-family: 'Poppins', sans-serif;
    font-size: 75px;
    font-weight: bold;
}

.hero-content .image {
    padding-top: 40px;
    padding-bottom: 40px;
    width: auto;
    display: block;
}

.hero-content p {
    line-height: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #787777;
    max-width: 450px;
}

.btn.btn-primary.my-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px !important;
    margin-top: 36px;
    border: none;
    background-color: #075F7E;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn.btn-primary.my-btn:hover {
    background-color: #054f6a;
}

/* Form */
.custom-form {
    background: #fff;
    padding: 2rem 2rem 2.2rem;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all 0.3s ease;
    max-width: 525px;
}

.form-heading {
    text-align: center;
    font-weight: 600;
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
    background: #008E88;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    text-transform: capitalize;
}

.progress-bar-container {
    margin: 1.2rem 0 0.3rem 0;
}

.progress-track {
    background-color: #e9ecef;
    border-radius: 20px;
    height: 5px;
    width: 100%;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    background: #008E88;
    width: 0%;
    height: 100%;
    border-radius: 20px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 0 8px rgba(13, 110, 253, 0.5);
}

.steper-section {
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 0.6rem 0.4rem;
}

.step-1,
.step-2,
.step-3 {
    flex: 1;
    text-align: center;
    padding: 0.6rem 0.2rem;
    border-radius: 40px;
    transition: all 0.25s;
    cursor: default;
    background: transparent;
    color: #f2f2f2;
}

.step-active { color: #000; }

.step-active h4,
.step-completed h4 {
    color: #000000 !important;
}

.step-1 h4,
.step-2 h4,
.step-3 h4 {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #D0CFCF;
    letter-spacing: 0.8px;
    margin-bottom: 0.2rem;
}

.step-1 p,
.step-2 p,
.step-3 p {
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
    font-size: 1rem;
    color: #008E88;
}

.step-active p { color: #008E88; }

.form-label {
    font-weight: 600;
    color: #1e2f3e;
    margin-bottom: 0.5rem;
}

.required {
    color: #dc3545;
    font-weight: bold;
    margin-left: 2px;
}

.custom-form .form-control {
    border-radius: 10px;
}

.custom-form .form-select {
    height: 50px;
    border-radius: 10px
}

.error-feedback {
    font-size: 0.75rem;
    color: #dc3545;
    margin-top: 0.35rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.is-invalid-custom {
    border-color: #dc3545 !important;
    background-color: #fff8f8;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
}

.step-content {
    animation: fadeSlideUp 0.3s ease-out;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.form-check-input:checked {
    background-color: #008E88 !important;
    border-color: #008E88 !important;
}

.next-btn {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    border: none;
    background-color: #008E88;
    color: white;
    padding: 0.65rem 1.8rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s;
    cursor: pointer;
}

.next-btn:hover { transform: scale(1.05); }

.previous-btn {
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}

.previous-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-success {
    border: none;
    padding: 15px 20px;
    border-radius: 30px;
    color: rgb(255, 255, 255);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    cursor: pointer;
    align-items: center;
}

/* ===========================
   POWER YOUR BUSINESS SECTION
   =========================== */
#powerSection {
    padding-top: 0;
    padding-bottom: 4rem;
}

.main-heading {
    font-size: 52px;
    font-weight: 700;
    color: #000;
    font-family: 'Poppins', sans-serif;
}

.main-heading span { color: #2a7c8c; }

.section-img img {
    max-width: 100%;
    height: auto;
    padding-bottom: 45px;
}

.content h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.content ul {
    padding-left: 20px;
    list-style: disc;
}

.content ul li {
    font-size: 18px;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* ===========================
   CARD SLIDER SECTION
   =========================== */
#sliderSection {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #F9F9F9;
}

.features-card {
    border-radius: 20px !important;
    height: 100%;
}

.card-title {
    font-size: 1.24rem;
    font-weight: bold;
}

.card-text {
    font-size: 1.01rem;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    color: #6c757d;
}

/* ===========================
   FEATURE ICONS SECTION
   =========================== */
#featureSection {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.card-wrapper { padding: 10px; }

/* ===========================
   FEATURE CARDS SECTION
   =========================== */
#featureCardsSection {
    background-color: #F9F9F9;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.feature-background {
    position: relative;
    min-height: 750px;
}

.feature-background .small-vector {
    position: absolute;
    top: -7%;
    right: 13%;
}

.feature-background .large-vector {
    position: absolute;
    bottom: 1%;
    right: 1%;
}

.feature-background .tiny-vector {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
}

.feature-background .fade-vector {
    position: absolute;
    bottom: -3%;
    left: 5%;
}

.feature-content-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.custom-card {
    border-radius: 22px !important;
    margin-bottom: 22px;
}

.card-body-text {
    color: black;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.text-muted {
    color: #6c757d;
    font-size: 16px;
}

/* ===========================
   KEY BENEFITS SECTION
   =========================== */
#benefitsSection {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.bg-img {
    background-image: url('assets/images/line.png');
    background-size: auto;
    background-repeat: no-repeat;
}

.header h2, #faq h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: bold;
}

.body-text {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    margin: 0;
}

.body-icon {
    width: 22px;
    height: 26px;
    object-fit: contain;
    flex-shrink: 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}


/* ===========================
   FAQ SECTION
   =========================== */
#faq {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #F9F9F9;
}

.faq-item {
    background: #F9F5F2;
    margin-bottom: 20px;
    padding: 30px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 24px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border: 1px solid #999;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 9px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    transition: 0.3s;
}

.faq-question:not(.collapsed) .faq-icon::before {
    transform: rotate(-135deg);
}

.faq-answer {
    margin-top: 10px;
    color: #666;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

/* ===========================
   CONTACT SECTION
   =========================== */
#contactUs {
    padding-top: 3rem;
    padding-bottom: 3rem;
}


.contact-title {
    color: #1c8c8c;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
}

.contact-subtitle {
    font-size: 24px;
    color: #333;
    margin-bottom: 1.5rem;
}

.contact-box {
    background: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 10px;
}

.custom-form-control {
    border-radius: 10px !important;
}

.form-control {
    border-radius: 8px;
    height: 50px;
}

textarea.form-control {
    height: auto;
}

.send-btn {
    padding: 7px 18px;
    border-radius: 30px;
    border: none;
    color: white;
    background-color: #075F7E;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s;
}

.send-btn:hover { background-color: #054f6a; }

/* ===========================
   FOOTER
   =========================== */
.custom-footer {
    position: relative;
    background: #F0F0F0;
    padding: 60px 0;
    font-family: sans-serif;
}

.custom-footer h5 {
    color: #2f8f89;
    font-weight: 600;
    margin-bottom: 15px;
}

.custom-footer p {
    margin: 6px 0;
    color: #333;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 10px;
    padding: 9px 0px;
    margin-left: 0;
    width: 42%;
}

.social-icons a img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.custom-footer input {
    width: 100%;
    padding: 12px;
    outline: none;
    margin-bottom: 23px;
    border-radius: 10px;
}

.custom-footer .footer-btn {
    background: #3b8f88;
    color: #ffffff;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    margin-left: 0;
}

.custom-footer .footer-btn:hover {
    background: #2a6f69;
    color: white;
}

.footer-box { padding-bottom: 18px; }
.footer-second-box { padding-bottom: 26px; }

.go-top {
    background: #075F7E;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: fixed;
    right: 50px;
    bottom: 25px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.go-top svg { color: #fff; }

/* ===========================
   SPLIDE CAROUSEL
   =========================== */
.splide__container {
    box-sizing: border-box;
    position: relative;
}

.splide__list {
    backface-visibility: hidden;
    display: flex;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list { display: block; }

.splide__pagination {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    pointer-events: none;
}

.splide__pagination li {
    display: inline-block;
    line-height: 1;
    list-style-type: none;
    margin: 0;
    pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination { display: none; }
.splide__progress__bar { width: 0; }

.splide {
    position: relative;
    visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered { visibility: visible; }

.splide__slide {
    backface-visibility: hidden;
    box-sizing: border-box;
    flex-shrink: 0;
    list-style-type: none !important;
    margin: 0;
    position: relative;
}

.splide__slide img { vertical-align: bottom; }

.splide__spinner {
    animation: splide-loading 1s linear infinite;
    border: 2px solid #999;
    border-left-color: transparent;
    border-radius: 50%;
    bottom: 0;
    contain: strict;
    display: inline-block;
    height: 20px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
}

.splide__sr {
    clip: rect(0 0 0 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.splide__track {
    overflow: hidden;
    position: relative;
    z-index: 0;
}

@keyframes splide-loading {
    0%  { transform: rotate(0); }
    to  { transform: rotate(1turn); }
}

.splide__track--draggable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
    margin: 0 !important;
    opacity: 0;
    z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
    opacity: 1;
    z-index: 1;
}

.splide__arrow {
    align-items: center;
    background: #ccc;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 2em;
    justify-content: center;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2em;
    z-index: 1;
}

.splide__arrow svg { fill: #000; height: 1.2em; width: 1.2em; }
.splide__arrow:hover:not(:disabled) { opacity: .9; }
.splide__arrow:disabled { opacity: .3; }
.splide__arrow--prev { left: 1em; }
.splide__arrow--prev svg { transform: scaleX(-1); }
.splide__arrow--next { right: 1em; }

.splide__pagination {
    bottom: -36px;
    left: 0;
    padding: 0 1em;
    position: absolute;
    right: 0;
    z-index: 1;
}

.splide__pagination__page {
    background: #D9D9D9;
    border: 0;
    border-radius: 50%;
    display: inline-block;
    height: 8px;
    margin: 3px;
    opacity: .7;
    padding: 0;
    position: relative;
    transition: transform .2s linear;
    width: 8px;
}

.splide__pagination__page.is-active {
    background: #075F7E;
    transform: scale(1.4);
    z-index: 1;
}

.splide__pagination__page:hover { cursor: pointer; opacity: .9; }

.form-control:focus {
    border-color: #075F7E !important;
    box-shadow: 0 0 0 .25rem #075e7e5d !important;
}

/* Custom Popup Styles */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: 'Segoe UI', sans-serif;
}

.popup-content {
    background: white;
    max-width: 450px;
    width: 100%;
    margin: 5px 20px;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: popupAnim 0.4s ease;
}

@keyframes popupAnim {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.success-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 10px 0;
}

.popup-message {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.timer-container {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
}

.timer {
    font-size: 42px;
    font-weight: 700;
    color: #e74c3c;
    margin: 10px 0;
}

.redirect-text {
    font-size: 14px;
    color: #666;
}

.btn-group {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.popup-btn {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 160px;
}

.popup-btn-primary {
    background: #075F7E;
    color: white;
}

.popup-btn-primary:hover {
    background: #054f69;
}

.btn-secondary {
    background: #f1f1f1;
    color: #333;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.show-passowrd {
    color: #054f6a;
    text-decoration: none;
    transition: all 0.2s linear;
}

.show-passowrd:hover {
    font-weight: 600;
    color: #054f6a;
}


/* ===========================
   RESPONSIVE
   =========================== */

/* Large tablet */
@media (max-width: 1199px) {
    .hero-content h1 {
        line-height: 50px;
        font-size: 45px;
    }

    .hero-content .image {
        width: 50%;
        padding: 20px 0;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 20px;
    }

    .header h2 { font-size: 30px; }

    .card-text {
        margin-bottom: 1.5rem !important;
        font-size: 16px;
        color: #575656;
    }

    .banner-img { width: 75% !important; }
    .main-heading { font-size: 42px; }
    .content h1 { font-size: 24px; }
    .content ul li { font-size: 16px; }
    .contact-title { font-size: 26px; }
}

/* Tablet */
@media (max-width: 991px) {
    /* Hero stacks */
    #homeSection .row {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
        padding: 20px 0;
    }

    .hero-content h1 {
        font-size: 36px;
        line-height: 48px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 24px;
    }

    .hero-content .image {
        width: 60%;
        padding: 20px 0;
        margin: 0 auto;
    }

    .btn.btn-primary.my-btn {
        /* margin: ; */
        justify-content: center;
    }

    .custom-form { margin: 20px 16px; }

    /* Feature cards background vectors hidden */
    .feature-background {
        position: static !important;
        min-height: auto;
    }

    .feature-background .small-vector,
    .feature-background .large-vector,
    .feature-background .tiny-vector,
    .feature-background .fade-vector { display: none; }

    .feature-content-wrapper {
        position: static !important;
        width: 100%;
        transform: none !important;
    }

    /* Benefits */
    .bg-img {
        background-image: none !important;
        width: 100%;
        max-width: 100%;
    }

    .bg-img .container {
        margin-left: 0 !important;
        padding: 0 16px;
    }

    .header h2 { font-size: 26px !important; }
    .body-text { font-size: 16px !important; }

    .body-icon {
        width: 36px !important;
        flex-shrink: 0;
        object-fit: contain !important;
    }

    .banner-img {
        width: 85% !important;
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }
}

/* Medium mobile */
@media (max-width: 768px) {
    .main-heading {
        font-size: 36px !important;
        padding: 0 16px;
    }

    .section-img img {
        width: 80%;
        max-width: 320px;
        margin: 0 auto;
        display: block;
    }

    .content h1 {
        font-size: 18px;
        margin-top: 20px;
    }

    .content ul li { font-size: 16px; }

    /* Power section stacks */
    #powerSection .row {
        flex-direction: column;
    }

    #powerSection .row > div {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 32px;
    }

    /* Feature 3-col */
    #featureSection .row .col-4 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 24px;
    }

    #featureSection .w-100.d-flex.justify-content-center img {
        max-width: 375px !important;
        padding: 0 16px;
    }

    /* Benefits row stacks */
    #benefitsSection .row {
        flex-direction: column;
    }

    #benefitsSection .row > div {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    /* FAQ */
    .faq-question { font-size: 18px !important; }
    .faq-answer { font-size: 15px !important; }
    .faq-item { padding: 20px 16px; }

    /* Contact */
    .contact-section { padding: 30px 16px; }

    #contactUs .row {
        flex-direction: column;
    }

    .contact-section .img-box {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px;
    }

    .contact-section .img-box img {
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }

    .contact-section .contact-text-col {
        width: 100% !important;
        max-width: 100% !important;
    }

    .contact-title {
        font-size: 22px !important;
    }

    .contact-subtitle {
        font-size: 16px !important;
    }

    .contact-box { padding: 0 !important; }

    /* Footer */
    .custom-footer .row { flex-direction: column; }

    .custom-footer .col-md-3 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 24px;
    }

    .custom-footer .col-md-3 > a > img {
        display: block;
        max-width: 200px !important;
    }

    .custom-footer input {
        width: 100%;
        margin: 0 auto ;
        display: block;
        margin-bottom: 10px;
    }
}
.text-primary { 
    color: #054f6a !important; 
}

/* Small mobile */
@media (max-width: 576px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-content h1 {
        font-size: 36px;
        line-height: 44px;
    }

    .hero-content p { font-size: 16px; }

    .custom-form {
        margin: 16px 10px;
        padding: 1.2rem;
    }

    .custom-form .form-control,
    .custom-form .form-select { height: 54px; }

    .steper-section {
        gap: 0.2rem;
        padding: 0.3rem 0;
    }

    .step-1 h4,
    .step-2 h4,
    .step-3 h4 { font-size: 0.55rem; }

    .step-1 p,
    .step-2 p,
    .step-3 p { font-size: 0.65rem; }

    .form-heading { font-size: 1.4rem; }

    .next-btn,
    .previous-btn,
    .btn-success {
        font-size: 14px;
        padding: 10px 14px;
    }

    .send-btn {
        padding: 7px 10px !important;
        font-size: 16px !important;
    }

    #featureCardsSection .col-lg-4 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    .go-top {
        right: 30px;
    }
    #homeSection, 
    #powerSection .container,
    #benefitsSection .container {
        padding-top: 0px !important;
    } 
    .main-heading {
        font-size: 28px !important;
    }
    #homeSection {
        overflow: hidden;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    #featureCardsSection .col-lg-4 {
        width: 50%;
        max-width: 50%;
        flex: 0 0 50%;
    }

    #featureSection .row .col-4 {
        width: 50%;
        max-width: 50%;
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
}