
  
        :root {
            --primary: #ff6801;
            --primary-dark: #ff6801;
            --secondary: #2c3e50;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --shadow: 0 10px 30px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            color: var(--dark);
            background-color: #fff;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 3rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        .section-title h2 span {
            color:#ff6801;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .btn-primary {
            background: #ff6801 ;
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #fff !important;
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
            text-decoration: none;
            color: #fff !important;
        }
        
        .btn-outline-primary {
            border: 2px solid #ff6801;
            color: #ff6801;
            padding: 10px 28px;
            font-weight: 600;
            border-radius: 30px;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn-outline-primary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
               text-decoration: none;
            color: #fff !important;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        
        .navbar-brand img {
            height: 120px;
        }
        
        .nav-link {
            color: var(--secondary) !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: var(--transition);
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary) !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }
        
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
            box-shadow: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .cta-button {
            background: #ff6801;

            color: #fff !important;
            border-radius: 30px;
            padding: 10px 25px !important;
            margin-left: 10px;
            text-decoration: none !important;
        }
        
        .cta-button:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            text-decoration: none !important;
            color: #fff !important;
        }
        
        /* Hero Section */
        .hero-section {
            height: 130vh;
            background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('/bg-box.jpeg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
          
            z-index: 1;
        }
        
        .hero-content {
            color: white;
            z-index: 2;
            position: relative;
        }
        
        .hero-content h1 {
            font-size: 4.5rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            line-height: 1.2;
        }
        
        .hero-content h1 span {
            color: #ff6801;

        }
        
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 700px;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(255, 107, 0, 0.2);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        /* About Sections */
        .about-section {
            padding: 100px 0;
        }
        
        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 500px;
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .about-content {
            padding: 20px 0 20px 40px;
        }
        
        .about-content h3 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .about-content h3 span {
            color: #ff6801;
        }
        
        .about-content p {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        .features-list {
            list-style: none;
            padding: 0;
        }
        
        .features-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .features-list li i {
            color: #ff6801;
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: var(--light);
        }
        
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }

        
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 107, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
        }
        
        .feature-icon i {
            font-size: 2.5rem;
            color: #ff6801;
        }
        
        .feature-card h4 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .feature-card p {
            color: var(--gray);
            line-height: 1.7;
        }
        
        /* Construction Updates */
        .construction-section {
            padding: 100px 0;
        }
        
        .update-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }
        
        .update-card:hover {
            transform: translateY(-10px);
        }
        
        .update-image {
            height: 250px;
            overflow: hidden;
        }
        
        .update-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .update-card:hover .update-image img {
            transform: scale(1.1);
        }
        
        .update-content {
            padding: 25px;
            background: white;
        }
        
        .update-content h5 {
            color: #ff6801;
            margin-bottom: 10px;
        }
        
        .update-content p {
            color: var(--gray);
            margin-bottom: 0;
        }
        
        /* Testimonials */
        .testimonials-section {
            padding: 100px 0;
            background: var(--light);
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
            margin: 15px;
            height: 100%;
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .client-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
        }
        
        .client-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .client-info h5 {
            margin-bottom: 5px;
            color: var(--secondary);
        }
        
        .client-info span {
            color: #ff6801;
            font-size: 0.9rem;
        }
        
        .testimonial-text {
            color: var(--gray);
            font-style: italic;
            line-height: 1.7;
        }
        
        .quote-icon {
            color: var(--primary);
            opacity: 0.2;
            font-size: 3rem;
            position: absolute;
            top: 20px;
            right: 20px;
        }
        
        /* Brands Section */
        .brands-section {
            padding: 80px 0;
        }
        
        .brand-logo {
            /* height: 80px; */
            display: flex;
            align-items: center;
            justify-content: center;
            /* filter: grayscale(100%); */
            opacity: 0.7;
            transition: var(--transition);
        }
        
        .brand-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.1);
        }
        
        .brand-logo img {
            max-width: 100%;
            max-height: 100%;
        }
        
        /* Footer */
        footer {
            background: var(--secondary);
            color: white;
            padding-top: 80px;
        }
        
        .footer-section {
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-section h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #ff6801;
        }
        
        .footer-section p, .footer-section li {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }
        
        .footer-section ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-section ul li a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .social-icons {
            display: flex;
            padding: 0;
        }
        
        .social-icons li {
            margin-right: 15px;
        }
        
        .social-icons li a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
        }
        
        .social-icons li a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 60px;
        }
        
        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 100;
        }
        
        .whatsapp-float a {
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
            transition: var(--transition);
            text-decoration: none;
        }
        
        .whatsapp-float a:hover {
            background: #128c7e;
            transform: scale(1.1);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 3.5rem;
            }
            
            .about-content {
                padding-left: 0;
                margin-top: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .navbar-nav {
                text-align: center;
                padding: 20px 0;
            }
            
            .cta-button {
                margin-left: 0;
                margin-top: 10px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .feature-card, .testimonial-card {
                padding: 25px 20px;
            }
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Stats Counter */
        .stats-section {
            padding: 80px 0;
            background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('img/stats-bg.jpg');
            background-size: cover;
            background-attachment: fixed;
            color: white;
        }
        
        .stat-item {
            text-align: center;
            padding: 30px;
        }
        
        .stat-item i {
            font-size: 3rem;
            color: #ff6801;
            margin-bottom: 20px;
        }
        
        .stat-item h3 {
            font-size: 3rem;
            margin-bottom: 10px;
        }
        
        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.8;
        }
.mall-feature-section {
    padding: 60px 0;
}

.feature-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 4px;
}

.feature-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #000;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: 0.3s;
}

.feature-btn:hover {
    background: #000;
    color: #fff;
}
.mall-feature-section {
    padding: 60px 0;
    background: #ffffff;
}

.feature-row {
    margin-bottom: 60px;
}

/* Full-width image */
.feature-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content */
.feature-content {
    padding: 60px;
}

.feature-content h3 {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.feature-content p {
    font-size: 17px;
    line-height: 28px;
}

.feature-btn {
    display: inline-block;
    margin-top: 18px;
    background: #ff6801;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.feature-btn:hover {
    background: #e45e00;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .feature-content {
        padding: 30px;
        text-align: center;
    }
}


.feature-content h3 {
      font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary) !important;
 
}


.feature-content h3 span {
    color: #ff6801;
}
 