/* =============================== */
/* HERO SECTION LAYOUT             */
/* =============================== */
.hero-content .heading-section{font-size:16px;
letter-spacing:3px;margin-bottom:20px;}
.comparison-content .heading-section{font-size:20px;
letter-spacing:3px;margin-bottom:20px;}
.comparison-content .heading-section-two{font-size:16px;
letter-spacing:0px;margin-bottom:20px; font-weight:400;}
.hero-section {
    position: relative;
    width: 100%;
    min-height: 70vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px;
    box-sizing: border-box;
}

/* =============================== */
/* BACKGROUND LAYERS               */
/* =============================== */

.hero-video-bg,
.hero-fallback-bg,
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video-bg {
    object-fit: cover;
    z-index: 1;
}

.hero-fallback-bg {
    background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=80') center/cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

/* =============================== */
/* HERO CONTENT                    */
/* =============================== */

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
    color: #38BDF8;
}

.hero-content p {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 10px;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.8;
}

/* =============================== */
/* CTA BUTTONS                     */
/* =============================== */

.button-section {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 100%);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.45);
}

/* =============================== */
/* RESPONSIVE - TABLET             */
/* =============================== */

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 40px;
    }
}

/* =============================== */
/* RESPONSIVE - MOBILE             */
/* =============================== */

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 15px;
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .button-section {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* =============================== */
/* RESPONSIVE - SMALL MOBILE       */
/* =============================== */

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }
}

/* ================================ */
        /* SECTION 13: COMPARISON CTA        */
        /* ================================ */
        .comparison-section {
        padding: 100px 0 30px 0;
            background: #fff;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .comparison-content h2 {
            font-size: 40px;
            color: #000;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .comparison-content h2 span {
            color: #38BDF8;
        }

        .comparison-content p {
            font-size: 15px;
            color: #666;
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .comparison-content ul {
            margin-bottom: 30px;
        }

        .comparison-content ul li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #555;
            padding: 8px 0;
        }

        .comparison-content ul li i {
            color: #38BDF8;
            font-size: 16px;
        }

        .comparison-image img {
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            width: 100%;
        }

        @media (max-width: 768px) {
			.comparison-section{
				padding: 40px 0px;
			}
            .comparison-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .comparison-content h2 {
                font-size: 30px;
            }
        }
.whychoose-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        .whychoose-feature {
            display: flex;
            gap: 15px;
            align-items: Center;

        }

        .whychoose-feature .wf-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: rgba(56, 189, 248, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #38BDF8;
            font-size: 20px;
        }

        .whychoose-feature h5 {
            font-size: 15px;
            color: #000;
            margin-bottom: 4px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        .whychoose-feature p {
            font-size: 13px;
            color: #888;
        }

        @media (max-width: 1024px) {
            .whychoose-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .whychoose-images {
                height: 400px;
                max-width: 600px;
                margin: 0 auto;
            }

            .whychoose-content h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 600px) {
            .whychoose-features {
                grid-template-columns: 1fr;
			}}










#stat-reviews-section.stat-reviews-section {
    width: 100%;
}

#stat-reviews-grid.stat-reviews-grid {
    columns: 3;
    column-gap: 24px;
}

.stat-card {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    padding: 24px;
    margin-bottom: 24px;
    display: inline-block;
    width: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.stat-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #111827;
}

.stat-stars {
    font-size: 18px;
    color: #f4b400;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.stat-date {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.stat-review {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

@media (max-width: 991px) {
    #stat-reviews-grid.stat-reviews-grid {
        columns: 2;
    }
}

@media (max-width: 767px) {
    #stat-reviews-grid.stat-reviews-grid {
        columns: 1;
    }
}