/* =============================== */
/* HERO SECTION LAYOUT             */
/* =============================== */
.hero-content .heading-section{font-size:18px;
margin-bottom:20px; font-weight:500;letter-spacing:1px;}
.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: 100vh;
    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: 100vh;
    }

    .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;
            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: 10px;
            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: 10px;
        }

        .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-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;
			}}
/* ========================== */
        /* SECTION 16: BLOG POSTS     */
        /* ========================== */
.section-header .heading-section{font-size:16px;
letter-spacing:3px;margin-bottom:5px;}
        .blog-section {
            padding: 100px 0;
            background: #F8FAFC;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .blog-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .blog-card-image {
            height: 220px;
            overflow: hidden;
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-card-image img {
            transform: scale(1.08);
        }

        .blog-card-body {
            padding: 25px;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 12px;
        }

        .blog-category {
            background: rgba(56, 189, 248, 0.1);
            color: #38BDF8;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
        }

        .blog-date {
            font-size: 13px;
            color: #999;
        }

        .blog-card-body h3 {
            font-size: 20px;
            color: #000;
            margin-bottom: 12px;
            font-weight: 700;
            line-height: 1.4;
        }

        .blog-card-body h3 a:hover {
            color: #38BDF8;
        }

        .blog-card-body .blog-excerpt {
            font-size: 14px;
            color: #777;
            line-height: 1.7;
            margin-bottom: 18px;
        }

        .blog-read-more {
            color: #38BDF8;
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .blog-read-more:hover {
            color: #0EA5E9;
            gap: 10px;
        }

        @media (max-width: 1024px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }
/* ========================== */
/* SECTION 8: COUNTER/STATS   */
/* ========================== */
.counter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: rgba(56, 189, 248, 0.05);
    border-radius: 50%;
}

.counter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(56, 189, 248, 0.05);
    border-radius: 50%;
}

/* Counter Header */
.counter-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.counter-subtitle {
    display: inline-block;
    font-size: 13px;
    color: #38BDF8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 6px 16px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.counter-header h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.counter-header h2 span {
    color: #38BDF8;
}

.counter-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.counter-header-line {
    width: 80px;
    height: 4px;
    background: #38BDF8;
    margin: 25px auto 0;
    border-radius: 2px;
}

/* Counter Grid */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.counter-item {
    text-align: center;
    padding: 30px;
}

.counter-item .counter-icon {
    font-size: 40px;
    color: #38BDF8;
    margin-bottom: 15px;
}

.counter-item .counter-number {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.counter-item .counter-number span {
    color: #38BDF8;
}

.counter-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}


/* ===================== */
/* RESPONSIVE - TABLET    */
/* ===================== */
@media (max-width: 768px) {
    .counter-section {
        padding: 70px 0;
    }

    .counter-header {
        margin-bottom: 45px;
    }

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

    .counter-header p {
        font-size: 14px;
    }

    .counter-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .counter-item {
        padding: 20px 15px;
    }

    .counter-item .counter-number {
        font-size: 38px;
    }

    .counter-item .counter-icon {
        font-size: 34px;
    }
}


/* ===================== */
/* RESPONSIVE - MOBILE    */
/* ===================== */
@media (max-width: 480px) {
    .counter-section {
        padding: 60px 0;
    }

    .counter-header h2 {
        font-size: 24px;
    }

    .counter-header p {
        font-size: 13px;
    }

    .counter-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .counter-item {
        padding: 25px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .counter-item:last-child {
        border-bottom: none;
    }

    .counter-item .counter-number {
        font-size: 42px;
    }
}

	/* ========================== */
        /* SECTION 7: WHY CHOOSE US   */
        /* ========================== */
.whychoose-content .heading-section{font-size:16px;
letter-spacing:3px;margin-bottom:5px;}
        .whychoose-section {
            padding: 100px 0;
            background: #F8FAFC;
        }

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

        .whychoose-images {
            position: relative;
            height: 500px;
        }

        .whychoose-images .img-main {
            width: 75%;
            height: 400px;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .whychoose-images .img-secondary {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 55%;
            height: 280px;
            object-fit: cover;
            border-radius: 16px;
            border: 5px solid #fff;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

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

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

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

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

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

        .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;
            }

            .whychoose-images {
                height: 300px;
            }

            .whychoose-images .img-main {
                height: 300px;
            }

            .whychoose-images .img-secondary {
                height: 180px;
                width: 50%;
            }
        }

  /* ========================== */
        /* SECTION 14: TESTIMONIALS   */
        /* ========================== */
        .testimonials-section {
            padding: 100px 0;
            background: #F8FAFC !important;
        }

        .testimonial-slider {
            position: relative;
           
            margin: 0 auto;
            overflow: hidden;
        }

        .testimonial-slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-slide {
            min-width: 100%;
            text-align: center;
            padding: 40px 30px;
        }

        .testimonial-quote-icon {
            font-size: 50px;
            color: #38BDF8;
            margin-bottom: 25px;
            opacity: 0.3;
        }

        .testimonial-slide .testi-text {
            font-size: 18px;
            color: #444;
            line-height: 1.9;
            font-style: italic;
            margin-bottom: 30px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        .testimonial-slide .testi-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 15px;
            border: 3px solid #38BDF8;
        }

        .testimonial-slide .testi-name {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            color: #000;
            margin-bottom: 5px;
        }

        .testimonial-slide .testi-role {
            font-size: 13px;
            color: #888;
            margin-bottom: 10px;
        }

        .testi-stars {
            color: #f59e0b;
            font-size: 16px;
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .testimonial-dots .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dots .dot.active {
            background: #38BDF8;
            transform: scale(1.2);
        }
.featured-properties .container{
	    padding: 100px 0;

}
/* ========================== */
        /* SECTION 19: SELL CTA       */
        /* ========================== */
        .sellcta-section {
            position: relative;
            padding: 120px 0;
            background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&q=80') center/cover no-repeat fixed;
        }

        .sellcta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.65);
        }

        .sellcta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
        }

        .sellcta-content h2 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .sellcta-content p {
            font-size: 17px;
            max-width: 900px;
            margin: 0 auto 40px;
            opacity: 0.9;
            line-height: 1.8;
        }

        .sellcta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        @media (max-width: 768px) {
            .sellcta-content h2 {
                font-size: 32px;
            }
        }

@media (max-width: 768px) {
	.container-homesmove{
		padding:40px 0px;
	}
}