﻿
/* =========================
   GLOBAL
========================= */
.section {
    background: #fff;
}

img {
    border-radius: 10px;
    filter: brightness(0.95) contrast(1.05);
}

/* =========================
   CARDS (SHARED STYLE)
========================= */
.review-card,
.why-card,
.service-card,
.about-card,
.calc-card,
.info-panel,
.vmv-card {
    background: #ffffff;
    border: 1px solid #e0e6ed;
    border-radius: 14px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

    /* HOVER (UNIFIED) */
    .review-card:hover,
    .why-card:hover,
    .service-card:hover,
    .about-card:hover,
    .calc-card:hover,
    .info-panel:hover,
    .vmv-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    }

/* =========================
   ICONS
========================= */
.service-icon,
.icon-box {
    font-size: 40px;
    margin-bottom: 15px;
}

/* =========================
   WHY CARD ICON
========================= */
.why-card .icon {
    font-size: 30px;
    margin-bottom: 10px;
}

/* =========================
   CTA + FOOTER
========================= */
.cta-banner {
    background: linear-gradient(45deg, #1a1f36, #2b3358);
}

.cta-dark {
    background: #1a1f36;
}

.contact-footer {
    background: #0f172a;
    color: #fff;
}

/* =========================
   HERO SLIDER (ONLY ONE VERSION)
========================= */
.hero-slider {
    position: relative;
    height: 55vh;
    overflow: hidden;
}

    .hero-slider .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transform: scale(1.05);
        transition: all 1s ease-in-out;
    }

        .hero-slider .slide.active {
            opacity: 1;
            transform: scale(1);
        }

    .hero-slider .overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.55);
        z-index: 1;
    }

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

/* =========================
   SLIDER BUTTONS
========================= */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0,0,0,0.4);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

    .slider-btn:hover {
        background: rgba(0,0,0,0.7);
    }

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

/* =========================
   DOTS (ONLY ONE VERSION)
========================= */
.dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    z-index: 3;
}

    .dots span {
        width: 10px;
        height: 10px;
        display: inline-block;
        margin: 0 5px;
        border-radius: 50%;
        background: rgba(255,255,255,0.4);
        cursor: pointer;
    }

        .dots span.active {
            background: white;
        }

/* =========================
   ABOUT STATS (MERGED)
========================= */
.about-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

    .about-stats h4 {
        margin: 0;
        font-weight: bold;
        color: #1a1f36;
    }

    .about-stats small {
        color: #777;
    }

/* =========================
   POINTS
========================= */
.point,
.about-points .point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

    .point span,
    .about-points .point span {
        color: #28a745;
        font-weight: bold;
        margin-right: 10px;
    }

    .point p,
    .about-points .point p {
        margin: 0;
        color: #555;
    }

/* =========================
   IMAGE DIVIDER
========================= */
.image-divider {
    width: 100%;
    overflow: hidden;
    background: #0f172a;
    padding: 10px 0;
}

.scroll-track {
    display: flex;
    width: calc(250px * 10);
    animation: scrollMove 20s linear infinite;
}

.scroll-item {
    width: 250px;
    height: 80px;
    background-size: cover;
    background-position: center;
    margin-right: 10px;
    border-radius: 8px;
    flex-shrink: 0;
}

/* =========================
   CALCULATOR RESULT
========================= */
.result-box {
    margin-top: 15px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

    .result-row h4 {
        margin: 0;
        color: #1a1f36;
    }

.cta-contact-section {
    background: linear-gradient(45deg, #1a1f36, #2b3358);
}

/* CONTACT CARD */
.contact-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    padding: 20px;
    backdrop-filter: blur(8px);
    transition: 0.3s;
}

    .contact-card:hover {
        transform: translateY(-5px);
        background: rgba(255,255,255,0.15);
    }

/* CONTACT ITEMS */
.contact-item {
    padding: 8px 0;
    font-size: 14px;
    opacity: 0.95;
}

/* CTA TEXT */
.cta-contact-section h2 {
    font-size: 2rem;
}

.cta-contact-section p {
    opacity: 0.9;
}
/* =========================
   KEYFRAMES (RAZOR SAFE)
========================= */
@@keyframes scrollMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero-slider {
    position: relative;
    height: 55vh;
    overflow: hidden;
}

    .hero-slider .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transform: scale(1.1);
        transition: all 1.2s ease-in-out;
    }

        .hero-slider .slide.active {
            opacity: 1;
            transform: scale(1);
        }

    .hero-slider .overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.55);
        z-index: 1;
    }

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 24px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 999;
    transition: 0.3s;
}


.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

.sticky-apply {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #1a1f36;
    color: white;
    padding: 12px 18px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.3s;
}

    .sticky-apply:hover {
        background: #2b3358;
        transform: scale(1.05);
    }

.whatsapp-float:hover {
    transform: scale(1.1);
}

.hero-text {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 520px;
    color: white;
    animation: fadeUp 1s ease forwards;
}

@@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}
