
        :root {
            --primary: #C92A2A;
            --secondary: #1A1A1A;
            --light: #F7F7F7;
            --dark: #000;
        }

       
        /* Hero */
        .hero-section {
            padding: 80px 0;
        }

        video {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Counter Section */
        .counter-box {
            background: var(--light);
            padding: 40px 20px;
            border-radius: 15px;
            text-align: center;
            transition: 0.4s;
            border: 2px solid transparent;
        }

        .counter-box:hover {
            background: #fff;
            border-color: var(--primary);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transform: translateY(-8px);
        }

        .count {
            font-size: 42px;
            font-weight: bold;
            color: var(--primary);
        }

        /* Amenities */
        .amen-box {
            padding: 25px;
            text-align: center;
            border: 1px solid #ddd;
            border-radius: 12px;
            transition: 0.4s;
            font-weight: 600;
        }

        .amen-box:hover {
            background: var(--primary);
            color: #fff;
            transform: scale(1.05);
            box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
        }

        /* Project Cards */
        .project-card {
            overflow: hidden;
            border-radius: 12px;
            transition: 0.4s;
            border: 1px solid #ddd;
        }

        .project-card img {
            transition: 0.5s;
        }

        .project-card:hover img {
            transform: scale(1.1);
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
        }

        /* Gallery */
        .gallery img {
            width: 100%;
            border-radius: 12px;
            transition: 0.4s;
        }

        .gallery img:hover {
            transform: scale(1.08);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
        }

        /* Footer */
        footer {
            background: var(--secondary);
            color: #fff;
            padding: 50px 0;
        }

        footer a {
            color: #fff;
            text-decoration: none;
        }

        footer h5 {
            color: var(--primary);
        }
     


    :root {
      --overlay-gradient: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.35));
      --title-size-desktop: 3.2rem;
      --title-size-mobile: 1.9rem;
    }

   /* REMOVE ANY HORIZONTAL SCROLL BUG */
html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth; /* smooth scrolling */
    margin: 0;
    padding: 0;
}

/* FIX BOOTSTRAP ROW OVERFLOW */
.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* HERO CAROUSEL FIX */
.hero-carousel img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

/* OVERLAY FIX */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* VIDEO RESPONSIVE FIX */
.hero-section video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* GALLERY FIX — prevent overflow */
.gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* PROJECT CARD FIX */
.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .hero-carousel img {
        height: 60vh;
    }

    .overlay-title {
        font-size: 1.8rem;
    }

    .overlay-subtitle {
        font-size: 1rem;
    }
}
/* Overlay design */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.5));
}

/* Title animation */
.animated-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    opacity: 0;
    animation: slideDown 1.2s ease forwards;
    letter-spacing: 2px;
}

/* Subtitle animation */
.animated-subtitle {
    color: #f8f8f8;
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0;
    animation: fadeIn 1.6s ease forwards;
}

/* Buttons animation */
.fade-up {
    opacity: 0;
    animation: fadeUp 1.8s ease forwards;
    margin-top: 20px;
}

/* Buttons styling */
.animated-btn-light {
    background: #ffffff;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 6px;
    margin-right: 10px;
    transition: 0.3s;
}

.animated-btn-light:hover {
    background: #e6e6e6;
    transform: translateY(-3px);
}

.animated-btn-red {
    background: #e63946;
    padding: 12px 25px;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
}

.animated-btn-red:hover {
    background: #c92e3a;
    transform: translateY(-3px);
}

/* Animation keyframes */
@keyframes slideDown {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 768px) {
    .animated-title {
        font-size: 2rem;
    }
    .animated-subtitle {
        font-size: 1rem;
    }
}
/* HERO SECTION */
.hero-section {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.hero-section .row {
    margin-top: 20px !important;
}


.hero-section h1,
.hero-section p,
.hero-section .hero-desc {
    color: #000 !important; /* Force black text */
}

/* VIDEO FIX */
.video-wrapper {
    width: 100%;
    height: 550px;          /* Perfect balanced height */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 5px 25px rgba(0,0,0,0.25);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* Crops cleanly without stretching */
    border-radius: 15px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .video-wrapper {
        height: 350px;
    }

    .hero-section h1 {
        font-size: 30px;
    }
}
.stats-section {
    padding: 70px 0;
}

.stat-card {
    text-align: center;
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 4px solid #ff6600;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-card h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ff6600;
}

.stat-card p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: #333;
}
/* Dark Section */
.counter-section {
    background: #0d0d0d;
    padding: 80px 0;
}





.counter-section {
    background: #f8f9fa;
}

.counter-box {
    background: #ffffff;
    transition: 0.4s;
    border: 1px solid #eee;
}

.counter-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.counter-icon {
    color: #0d6efd;
}

.counter {
    font-size: 40px;
    color: #0d6efd;
}

.counter-box p {
    font-size: 15px;
    color: #444;
    letter-spacing: 0.5px;
    font-weight: 500;
}


.amenities-section {
    background: url('images/aminitiesbg.jpg') center/cover no-repeat;
    padding: 80px 0;
    position: relative;
}

.amenities-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}

.amenities-section .container {
    position: relative;
    z-index: 2;
}

.amenity-icon {
    font-size: 42px;
    color: #fff;
    margin-bottom: 10px;
}

.amenities-section p {
    color: #fff;
    font-size: 15px;
    margin: 0;
}
/* Hover animation for icons */
.amenity-icon {
    font-size: 42px;
    color: #fff;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.amenity-icon:hover {
    transform: scale(1.2);
    color: #00eaff;
    filter: drop-shadow(0 0 8px #00eaff);
}

/* Text animation on hover */
.amenities-section p {
    color: #fff;
    font-size: 15px;
    margin: 0;
    transition: 0.3s ease;
}

.amenities-section .col-md-3:hover p {
    transform: translateY(-3px);
    color: #00eaff;
}

/* Smooth fade-in animation on entire box */
.amenities-section .col-md-3 {
    transition: transform 0.3s ease;
}

.amenities-section .col-md-3:hover {
    transform: translateY(-5px);
}

.footer-section {
    background: #1c2a32;
    color: #d2d8dc;
}

.footer-logo {
    width: 150px;
}

.footer-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-text {
    color: #d2d8dc;
    font-size: 15px;
}

.footer-social i {
    font-size: 20px;
    margin-right: 12px;
    padding: 8px 10px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    transition: 0.3s;
}

.footer-social i:hover {
    background: #ffffff;
    color: #000;
}

.rera-code {
    color: #b9c4c8;
    font-size: 14px;
    margin-top: 10px;
}


.launchers-marquee {
  background: #0b1220;
  padding: 24px 0;
}
.launchers-marquee h3 {
  color: #fff;
}
.launcher-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-right: 36px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transition: transform .3s;
}
.launcher-img:hover {
  transform: scale(1.08);
}
/* Floating Icon Container */
.floating-icons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* WhatsApp Button */
.float-whatsapp i {
    background: #25D366;
    color: #fff;
    font-size: 28px;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

/* Call Button */
.float-call i {
    background: #C1272D;
    color: #fff;
    font-size: 28px;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

/* Hover Effect */
.float-whatsapp i:hover,
.float-call i:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}
.partners-section h2 {
    font-weight: bold;
    color: #222;
}

/* Slider Wrapper */
.logo-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

/* Track */
.logo-track {
    display: flex;
    width: calc(200px * 10); /* width = logo width × number of logos */
    animation: slide 25s linear infinite;
}

/* Logo Item */
.logo-item {
    width: 200px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.logo-item img {
    width: 100%;
    height: auto;
    filter: grayscale(20%);
    transition: 0.3s;
}

.logo-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Animation */
@keyframes slide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

