  /* <style> */


        /* :root {
            --primary: #002855;
            --secondary: #c29a5c;
            --accent: #e8c785;
            --light: #f8f9fa;
            --dark: #1a1a1a;
            --gray: #6c757d;
            --transition: all 0.3s ease;
        } */


/* :root {
    --primary: #005F73;        
    --secondary: #0A9396;     
    --accent: #E9B44C;         
    
    --light: #FCFCFC;          
    --dark: #1A1A1A;           
    
    --gray: #8A8F94;
    --light-gray: #E7EBEF;

    --transition: all 0.3s ease;
} */

:root {
    --primary: #001F3F;        /* Dark midnight navy */
    --secondary: #003F63;      /* Clean modern blue */
    --accent: #C9A86A;         /* Champagne Gold (Dubai luxury) */
    
    --light: #F4F6F8;
    --dark: #0C0F14;
    
    --gray: #88919C;
    --light-gray: #E2E6EB;
      --white:#fff;
    --transition: all 0.3s ease;
}



        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
        }
        
        /* Header Styles */
        .main-header {
            background: rgba(0, 40, 85, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .main-header.scrolled {
            background: rgba(0, 40, 85, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.8rem;
            letter-spacing: 1px;
        }
        
        .navbar-brand span {
            color: var(--accent);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            transition: var(--transition);
            border-radius: 5px;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: white !important;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .cta-button {
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            border: none;
            color: white;
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 8px;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(194, 154, 92, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(194, 154, 92, 0.4);
        }
        
        .section-padding {
            padding: 100px 0;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 25px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            border-radius: 3px;
        }
        
        .section-title.center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-subtitle {
            font-size: 1.3rem;
            color: var(--gray);
            margin-bottom: 50px;
            max-width: 700px;
        }
        
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            border: none;
            color: white;
            padding: 16px 35px;
            font-weight: 600;
            border-radius: 10px;
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(194, 154, 92, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-primary-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent), var(--secondary));
            transition: var(--transition);
            z-index: -1;
        }
        
        .btn-primary-custom:hover::before {
            left: 0;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(194, 154, 92, 0.4);
            color: white;
        }
        
        .btn-secondary-custom {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 16px 35px;
            font-weight: 600;
            border-radius: 10px;
            transition: var(--transition);
        }
        
        .btn-secondary-custom:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 40, 85, 0.2);
        }
        
        .highlight {
            color: var(--white);
            font-weight: 600;
        }
        
        .phase-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(194, 154, 92, 0.3);
        }
        
        /* Hero Section */
        /* .hero-section {
            background: linear-gradient(135deg, rgba(0, 40, 85, 0.85) 0%, rgba(0, 20, 43, 0.9) 100%), 
                        url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        } */

           /* .hero-section {
            background: linear-gradient(135deg, rgba(0, 40, 85, 0.85) 0%, rgba(0, 20, 43, 0.9) 100%), 
                        url('../images/banners/DAMAC_Islands_2-Homepage_Hero_16x9.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        } */

        .hero-section {
    background: linear-gradient(135deg, rgb(0 40 85 / 46%) 0%, rgb(0 20 43 / 93%) 100%), url(../images/banners/DAMAC_Islands_2-Amenities-01-TRANQUIL_LAKE___ECO_PARK.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
        
        .hero-content {
            position: relative;
            z-index: 2;
            margin-top: 80px;
        }
        
        .hero-logo h1 {
            font-size: 5rem;
            font-weight: 800;
            letter-spacing: 3px;
            margin-bottom: 10px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }
        
        .hero-logo h2 {
            font-size: 3.2rem;
            font-weight: 300;
            letter-spacing: 8px;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
        
        .hero-logo h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
        }
        
        .hero-tagline {
            font-size: 1.8rem;
            margin-bottom: 40px;
            font-weight: 300;
            line-height: 1.8;
        }
        
        .hero-features {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .hero-feature {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .hero-feature i {
            color: var(--accent);
            font-size: 1.3rem;
        }
        
        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            backdrop-filter: blur(5px);
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }
        
        /* Form Styling */
        .form-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            color: var(--dark);
            position: relative;
            overflow: hidden;
            margin-top:50px;
            margin-bottom:15px;
        }
        
        .form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
        }
        
        .form-title {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .form-subtitle {
            color: var(--gray);
            font-size: 1rem;
            margin-bottom: 30px;
        }
        
        .form-control, .form-select {
            padding: 15px 20px;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            transition: var(--transition);
            margin-bottom: 20px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 0.25rem rgba(194, 154, 92, 0.25);
        }
        
        /* Phone Input Styling */
        .phone-input-group {
            display: flex;
            gap: 10px;
        }
        
        .country-code {
            flex: 0 0 130px;
        }
        
        .phone-number {
            flex: 1;
        }
        
        /* Cards */
        .price-card {
            background: white;
            border-radius: 20px;
            padding: 35px 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            border: 1px solid #f0f0f0;
            transition: var(--transition);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .price-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            transform: scaleX(0);
            transition: var(--transition);
        }
        
        .price-card:hover::before {
            transform: scaleX(1);
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
        }
        
        .price-card.featured {
            border: 2px solid var(--secondary);
        }
        
        .price-amount {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 5px;
            line-height: 1;
        }
        
        .payment-badge {
            background: var(--primary);
            color: white;
            padding: 8px 15px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .down-payment-card {
            background: linear-gradient(135deg, rgba(194, 154, 92, 0.1), rgba(232, 199, 133, 0.1));
            border-radius: 15px;
            padding: 25px;
            border-left: 5px solid var(--secondary);
        }
        
        .down-payment-icon {
            width: 60px;
            height: 60px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        /* Floating Cards for Phase 2 Section - Mobile Optimized */
        .floating-card {
            position: absolute;
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
            border: 1px solid #eaeaea;
            animation: float 6s ease-in-out infinite;
            z-index: 10;
        }
        
        .card-1 {
            top: 10%;
            right: -5%;
            width: 220px;
            animation-delay: 0s;
        }
        
        .card-2 {
            bottom: 15%;
            left: -5%;
            width: 250px;
            animation-delay: 2s;
        }
        
        /* Unit Cards */
        .unit-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            height: 100%;
        }
        
        .unit-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .unit-image {
            height: 280px;
            overflow: hidden;
        }
        
        .unit-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .unit-card:hover .unit-image img {
            transform: scale(1.1);
        }
        
        .unit-content {
            padding: 30px;
        }
        
        .unit-title {
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .unit-code {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .unit-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .unit-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            color: var(--gray);
        }
        
        .unit-feature i {
            color: var(--secondary);
        }
        
        /* About Section Features */
        .about-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .about-feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(194, 154, 92, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 1.5rem;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .about-feature-content h4 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 8px;
        }
        
        .about-feature-content p {
            color: var(--gray);
            margin-bottom: 0;
        }
        
        /* Gallery */
        .gallery-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            height: 280px;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 25px;
            color: white;
            transform: translateY(100%);
            transition: var(--transition);
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        /* Location Section */
        .location-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: var(--transition);
        }
        
        .location-item:hover {
            background: rgba(194, 154, 92, 0.05);
            padding-left: 15px;
            border-radius: 10px;
        }
        
        .location-item:last-child {
            border-bottom: none;
        }
        
        .location-icon {
            width: 50px;
            height: 50px;
            background: rgba(194, 154, 92, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .location-name {
            font-size: 1.2rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .location-time {
            font-size: 1rem;
            color: var(--gray);
        }
        
        .location-map {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            height: 550px;
        }
        
        .location-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Footer */
        .footer-section {
            background: var(--primary);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
        }
        
        .footer-logo h2 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        
        .footer-logo h3 {
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 5px;
            margin-bottom: 25px;
            color: var(--accent);
        }
        
        .footer-tagline {
            font-size: 1.4rem;
            margin-bottom: 30px;
            font-weight: 300;
            line-height: 1.6;
        }
        
        /* Modal */
        .modal-content {
            border-radius: 20px;
            border: none;
            overflow: hidden;
        }
        
        .modal-header {
            background: var(--primary);
            color: white;
            border-bottom: none;
            padding: 25px 30px;
        }
        
        .modal-body {
            padding: 30px;
        }

        /* ------cust start------------ */
            .rowFloorsleft{
              display:flex;
              justify-content:space-around;
              gap:20px;
              /* flex-wrap:wrap; */
            }

            /*-------------- projecs home page start-------------------*/

          .projectWrapimg img{
            border-radius:10px;
          }

          .price-card.featured.projectsWrapmain {
                padding: 0px;
                border: navajowhite;
            }
            .wrap-pro01{
                padding:20px 20px;
            }
            .project-description{
                display:flex;
                gap:5px;
            }

            .row-inPriject {
                display: flex;
                gap: 5px;
            }

            .project-title h2,h3,h4,h5,h6 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 5px;
            line-height: 1;
        }

        .price-amount-home{
            font-size:1.3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 5px;
            line-height: 8px;
        }


       .pj-honme span {
    width: 50%;
}

#whydnac h4,
.whydnacInvest-items h4{
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1;
    text-transform: capitalize;
}





.whydnac-items {
    padding: 15px 15px;
    border: 1px solid #a9986980;
    border-radius: 10px;
    border-left: 4px solid #bfa36a;
}


.whydnacInvest-items {
    padding: 15px 15px;
    border: 1px solid #a9986938;
    border-radius: 10px;
    background: #ffffff;
}

.amenity-icon i {
    color: #c0a56d;
    font-size: 28px;
    /* margin-bottom: 15px; */
}


 .whydnac-items .amenity-icon{
    width: 60px;
    height: 60px;
    background: rgba(194, 154, 92, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    margin-bottom:12px;
}



        /* #faq .section-title::after,#amenities .section-title::after{
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 3px;
    right: 0px;
    margin: auto;
} */
            
        
        /* Responsive */
        @media (max-width: 1199.98px) {
            .hero-logo h1 {
                font-size: 4rem;
            }
            
            .hero-logo h2 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .card-1, .card-2 {
                display: none; /* Hide floating cards on medium screens */
            }
        }
        
        @media (max-width: 991.98px) {
            .section-padding {
                padding: 80px 0;
            }
            
            .hero-logo h1 {
                font-size: 3.5rem;
            }
            
            .hero-logo h2 {
                font-size: 2.2rem;
                letter-spacing: 5px;
            }
            
            .hero-tagline {
                font-size: 1.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .hero-features {
                flex-direction: column;
                gap: 15px;
            }
            
            .phone-input-group {
                flex-direction: column;
                gap: 15px;
            }
            
            .country-code {
                flex: 1;
            }
            
            .navbar-collapse {
                background: rgba(0, 40, 85, 0.98);
                padding: 20px;
                border-radius: 0 0 10px 10px;
                margin-top: 10px;
            }
        }
        
        @media (max-width: 767.98px) {
            .section-padding {
                padding: 60px 0;
            }
            
            .hero-logo h1 {
                font-size: 2.8rem;
            }
            
            .hero-logo h2 {
                font-size: 1.8rem;
                letter-spacing: 3px;
            }
            
            .hero-tagline {
                font-size: 1.3rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .form-container {
                padding: 30px 25px;
            }
            
            .price-amount {
                font-size: 2.2rem;
            }
            
            .about-feature {
                flex-direction: column;
                text-align: center;
            }
            
            .about-feature-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .hero-content {
                margin-top: 70px;
            }
        }
        
        @media (max-width: 575.98px) {
            .hero-logo h1 {
                font-size: 2.5rem;
            }
            
            .hero-logo h2 {
                font-size: 1.5rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .btn-primary-custom, .btn-secondary-custom {
                padding: 14px 25px;
                font-size: 0.9rem;
            }
            
            .form-container {
                padding: 25px 20px;
            }
            
            .navbar-brand {
                font-size: 1.5rem;
            }
        }


    /* </style> */