.rating-badge {
    background: rgba(255, 193, 7, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    width: 187px;
    align-items: center;
    gap: 0.5rem;
}

.field-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.field-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f89f37;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.field-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
}

.field-icon {
    background: #f89f37;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}
.form-control,
.form-select {
    font-family: "Lexend";
}

.field-title h3 {
    margin: 0;
    font-size: 18px;
    font-family: "Lexend";
    font-weight: 600;
    color: #2d3748;
}

.required-asterisk {
    color: #e53e3e;
    font-weight: bold;
    margin-left: 0.5rem;
}

.custom-select-wrapper {
    position: relative;
}

.sticky-image {
    position: sticky;
    top: 120px;
    z-index: 10;
    transition: all 0.3s ease;
}

/* Mobile responsive sticky behavior */
@media (max-width: 767.98px) {
    .sticky-image {
        position: relative;
        top: auto;
    }
}
.work-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

.icon-wrapper:hover {
    transform: scale(1.1) rotate(5deg);
}

.btn-zinc-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.3) !important;
}

.btn-zinc-glow:hover span {
    opacity: 1;
}

.timeline {
    position: relative;
    padding: 20px 0;
    max-width: 1000px;
}

/* Center line */
.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 5%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: white;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}

/* Step content boxes */
.timeline-content {
    position: relative;
    padding: 25px 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    max-width: 100%;
    width: calc(100% - 60px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.timeline-item.right .timeline-content {
    left: 0;
    right: auto;
    text-align: left;
    margin-left: 80px;
}

/* Number dots */
.timeline-dot {
    position: absolute;
    top: 20px;
    left: 5%;
    transform: translateX(-50%);
    background: white;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 8px solid #fff;
    box-shadow: 0 0 0 4px #0c0f3f;
}

.timeline-dot.active {
    background: #f39c37;
    /* active green */
    color: #fff;
}

/* Titles */
.timeline-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0c0f3f;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Small icon inside titles */
.timeline-title i {
    color: #f39c37;
    font-size: 1.4rem;
}

/* Description text */
.timeline-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Responsive Styles */
@media (max-width: 875px) {
    .timeline::before {
        left: 8px;
        transform: none;
        width: 3px;
        height: 100%;
    }

    .timeline-dot {
        top: 14px;
        left: 8px;
        transform: none;
        width: 36px;
        height: 36px;
        font-size: 14px;
        border-width: 3px;
        box-shadow: 0 0 0 3px #0c0f3f;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 50px;
    }

    .timeline-content {
        width: 93% !important;
        margin: 0 0 0 20px !important;
        text-align: left !important;
        padding: 20px 20px 20px 30px;
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
    }

    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        right: auto;
        left: 0;
        text-align: left;
        margin-left: 60px;
    }
}

@media (max-width: 480px) {
    .timeline-dot {
        width: 26px;
        height: 26px;
        font-size: 12px;
        border-width: 2px;
        top: 12px;
        left: 6px;
        box-shadow: 0 0 0 2px #0c0f3f;
    }

    .timeline-content {
        padding: 18px 15px 18px 25px !important;
    }

    .timeline-title {
        font-size: 1.12rem;
    }

    .timeline-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}
.benefits-list .benefit-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px 30px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease,
        border-color 0.2s ease;
    height: 100%;
}

.benefits-list .benefit-card:hover {
    transform: translateY(-4px);
    border-color: #f39c37;
    background: #ffffff;
}

.benefits-list .benefit-title {
    color: #0c0f3f;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 14px;
}

.sticky-header {
    position: sticky;
    top: 120px;
}
.option-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    border: 2px solid; /* default grey border */
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    background: #fff;
    transition: all 0.2s ease-in-out;
}

.btn-check:checked + .option-card {
    border-color: #f89f37; /* active border color */
    background-color: #f89f3729;
}
.accordion-button:not(.collapsed) {
    font-weight: 300 !important;
    border-bottom-left-radius: 30px !important  ;
    border-bottom-right-radius: 30px !important;
    border-top-left-radius: 30px !important;
    border-top-right-radius: 30px !important;
    border: none !important;
    box-shadow: none !important;
    background: #fdf2e5 !important;
    color: black !important;
}
input:focus-visible {
    outline: none !important;
}
textarea:focus-visible {
    outline: none !important;
}
select:focus-visible {
    outline: none !important;
}
.accordion-item {
    border-radius: 30px !important;
    margin-bottom: 20px !important;
    border: none !important;
}
.accordion-body {
    margin-top: 8px;
    border: 1px solid #dfe3e780 !important;
    border-radius: 40px !important;
}
.accordion-button {
    background: #fdf2e5 !important;
    border-bottom-left-radius: 30px !important  ;
    border-bottom-right-radius: 30px !important;
    border-top-left-radius: 30px !important;
    border-top-right-radius: 30px !important;
}

/* Accordion completed state with edit icon */
.accordion-button.completed::after {
    content: "\f044"; /* Font Awesome edit icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    background-image: none;
    transform: none;
    width: auto;
    height: auto;
}

.accordion-button::after {
    content: "\f078"; /* Font Awesome chevron-down icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    background-image: none;
    transform: none;
    width: auto;
    height: auto;
}
.accordion-button:not(.collapsed)::after {
    background-image: none !important;
}
.file-upload-area {
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
    background: #f8fafc;
    position: relative;
}
.file-upload-area:hover {
    border-color: #667eea;
    background: #edf2f7;
}
.file-upload-icon {
    font-size: 2rem;
    color: #a0aec0;
    margin-bottom: 1rem;
}
.file-upload-text {
    color: #4a5568;
    font-weight: 500;
}
.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.benefit-card img {
    width: 100%;
}
@media (max-width: 767.98px) {
    .benefits-list .benefit-card {
        padding: 16px;
    }
    .benefit-card .row {
        flex-direction: column-reverse;
        text-align: center;
    }
    .benefits-list .benefit-title {
        font-size: 1rem;
    }
    .benefit-card img {
        width: 25% !important;
    }
    .responsive-height {
        height: auto !important;
    }
}
.responsive-height {
    height: 200px;
}

.lead-text {
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.review-card {
    background: #ffffff;
    border-radius: 24px;

    border: 1px solid #0c0f3f;
    overflow: hidden;
    position: relative;
}

.card-title {
    font-family: "Figtree", sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--primary-dark-blue);
    margin-bottom: 2rem;
    text-align: center;
}
.product-card {
    height: 350px;

    border-radius: 12px;
    overflow: hidden;
}

.form-label {
    font-family: "figtree";
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 18px;
    color: #0b0f3f;
}

.form-controls {
    width: 100%;
    font-family: "figtree    ";
    border: 1px solid #0b0f3f;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 18px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-controls:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.15);
    background: #ffffff;
}

.form-controls::placeholder {
    color: #9ca3af;
    font-weight: 300;
}

.rating-section {
    background: #f1f5f9;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid #0b0f3f;
}
.rating-stars {
    display: flex;
    gap: 6px;
    justify-content: center;
}
.rating-stars .btn-check {
    display: none;
}
.rating-stars .star-btn {
    background: none;
    border: none;
    font-size: 32px;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
}
.rating-stars .star-btn.active {
    color: #f6da10;
}
.text-danger {
    color: #ef4444 !important;
}

.invalid-feedback {
    font-family: "Lexend", sans-serif;
    font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-heading {
        font-size: 2rem;
    }

    .section-wrap {
        padding: 40px 0 60px;
    }

    .rating-stars {
        justify-content: flex-start;
    }
}
/* Swiper Custom Styles */
.productSwiper {
    width: 100%;
    padding: 20px 50px 50px 50px;
}

/* Ensure Swiper doesn't clip arrows even if Swiper CSS loads after this file */

/* Wrapper to anchor arrows outside the swiper */
.product-swiper-wrap {
    position: relative;
    overflow: visible; /* make sure wrapper doesn't clip */
}

.swiper-slide {
    height: auto;
}

/* Navigation buttons styling */
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    color: #fff !important;
    background: #0c0f3f !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    /* no margin-top needed when using top:50% */
}

/* Place arrows outside of the swiper */
.product-swiper-wrap .swiper-button-prev {
    left: -28px;
}
.product-swiper-wrap .swiper-button-next {
    right: -28px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: #fff !important; /* fixed invalid value */
    border-radius: 50%;
    padding: 8px;
    font-size: 18px !important;
    font-weight: bold !important;
}

/* Pagination styling */
.swiper-pagination-bullet {
    background: #009384;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #009384;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .productSwiper {
        padding: 20px 20px 50px 20px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* Hide product arrows on very small screens */
@media (max-width: 576px) {
    .product-swiper-wrap .swiper-button-prev,
    .product-swiper-wrap .swiper-button-next {
        display: none !important;
    }
    .productSwiper {
        padding: 10px 0 30px;
    }
}
.reviews-section {
    background: #f1f1f1;
}
.reviews-swiper-wrap {
    position: relative;
    overflow: visible;
}
.reviewsSwiper {
    width: 100%;
    padding: 10px 40px 40px 40px;
    overflow: visible;
}
.reviewsSwiper .swiper-slide {
    height: auto;
}
.customer-review-card {
    border: 1px solid #0c0f3f;
    border-radius: 16px;
    
    background: #fff !important;
}

.reviews-swiper-wrap .reviews-button-prev,
.reviews-swiper-wrap .reviews-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0c0f3f;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Button positions */
.reviews-swiper-wrap .reviews-button-prev {
    left: -22px;
}
.reviews-swiper-wrap .reviews-button-next {
    right: -22px;
}

/* Responsive */
@media (max-width: 576px) {
    .reviewsSwiper {
        padding: 10px 0 30px;
    }
}

/* Arrows */
.reviews-swiper-wrap .reviews-button-prev::after,
.reviews-swiper-wrap .reviews-button-next::after {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

/* Left arrow */
.reviews-swiper-wrap .reviews-button-prev::after {
    content: '\276E'; /* ‹ */
}

/* Right arrow */
.reviews-swiper-wrap .reviews-button-next::after {
    content: '\276F'; /* › */
}
