/* Global Styles */
          @import url('https://fonts.cdnfonts.com/css/zapfino-extra-lt');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        section {
            padding: 80px 0;
        }
        
        h1, h2, h3 {
            font-weight: 600;
        }
        
        /* Colors */
        :root {
            --primary-green: #2e8b57;
            --light-green: #e8f5e9;
            --dark-green: #1b5e20;
            --white: #ffffff;
            --light-gray: #f9f9f9;
            --dark-gray: #222222;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .animate {
            animation: fadeIn 1s ease-out forwards;
        }
        
        .animate-left {
            animation: slideInLeft 1s ease-out forwards;
        }
        
        .animate-right {
            animation: slideInRight 1s ease-out forwards;
        }
        
        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }
        .delay-4 { animation-delay: 0.8s; }
        
        header {
            background-color: var(--white);
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            padding: 10px 0;
            background-color: rgba(255, 255, 255, 0.98);
        }
        
        .header-container {
           display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        }
        
        .logo {
            height: 40px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 100%;
            width: auto;
            max-height: 40px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }
        
        nav ul li {
            margin-left: 25px;
            position: relative;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark-gray);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--primary-green);
        }
        
        nav ul li a.nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary-green);
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }
        
        nav ul li a.nav-link:hover::after {
            width: 100%;
        }
        
       
        
        .mobile-menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark-gray);
            background: none;
            border: none;
            margin-left: auto;
        }
        /* Hero Section - Simplified */
        .hero {
            background-color: var(--light-gray);
            height: auto;
            min-height: 80vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
        }
        
        .hero-content {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero-main-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            color: var(--dark-gray);
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 40px;
            font-weight: 300;
            max-width: 600px;
            color: #555;
        }
        
        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .hero-stat-item {
            font-size: 1.2rem;
            position: relative;
            padding-left: 20px;
            color: #555;
        }
        
        .hero-stat-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 10px;
            background: var(--primary-green);
            border-radius: 50%;
        }
       
        
        .hero-buttons {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            width: 100%;
        }

        .btn {
            display: inline-block;
            background: var(--primary-green);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: 2px solid var(--primary-green);
            letter-spacing: 1px;
            font-size: 16px;
            min-width: 180px;
            text-align: center;
        }
        
        .btn:hover {
            background: transparent;
            color: var(--primary-green);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-green);
            color: var(--primary-green);
        }
        
        .btn-outline:hover {
            background: var(--primary-green);
            color: var(--white);
        }
        
        /* Nav button styles */
        .nav-btn {
            margin-left: 2px;
            padding: 8px 20px;
            font-size: 14px;
            min-width: 120px;
        }
        
        /* Ongoing Projects Section */
        .ongoing-projects {
            background: var(--light-gray);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--dark-gray);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--primary-green);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: #777;
            max-width: 700px;
            margin: 15px auto 0;
            font-size: 1.1rem;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .project-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            background: var(--white);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .project-img {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .project-img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(46, 139, 87, 0.1), rgba(46, 139, 87, 0.3));
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .project-card:hover .project-img::after {
            opacity: 1;
        }
        
        .project-info {
            padding: 25px;
            background: var(--white);
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .project-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--primary-green);
        }
        
        .project-info p {
            color: #666;
            margin-bottom: 15px;
            flex: 1;
        }
        
        .project-meta {
            display: flex;
            justify-content: space-between;
            color: #888;
            font-size: 14px;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        
        .progress-bar {
            height: 6px;
            background: #e0e0e0;
            border-radius: 3px;
            margin-top: 15px;
            overflow: hidden;
        }
        
        .progress {
            height: 100%;
            background: var(--primary-green);
            width: 0;
            transition: width 1.5s ease-out;
        }
        
        .project-card:hover .progress {
            width: var(--progress);
        }
        
        /* Stats Section */
        .stats {
          background: linear-gradient(rgba(0, 0, 0, 0.486), rgba(0, 0, 0, 0.8)), url('../Image/eldeco-sky-walk.jpg');

            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            text-align: center;
            padding: 80px 0;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .stat-item {
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            backdrop-filter: blur(5px);
            transition: all 0.3s;
            min-height: 180px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(46, 139, 87, 0.7);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--white);
        }
        
        .stat-text {
            font-size: 1.1rem;
            font-weight: 300;
            opacity: 0.9;
        }
        
        /* Footer */
        footer {
            background: var(--dark-gray);
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-weight: 600;
            color: var(--primary-green);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--primary-green);
            bottom: 0;
            left: 0;
        }
        
        .footer-column p, .footer-column a {
            color: #bbb;
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-column a:hover {
            color: var(--primary-green);
            transform: translateX(5px);
        }
        
        .social-links {
            display: flex;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            color: var(--white);
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--primary-green);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #888;
            font-size: 14px;
        }
        
         /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero-main-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero-main-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            nav ul li {
                margin-left: 15px;
            }
        }
        
        @media (max-width: 768px) {
            /* Mobile Menu Styles */
            .mobile-menu-toggle {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background: var(--white);
                flex-direction: column;
                align-items: flex-start;
                padding: 30px;
                transition: 0.3s;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }
            
            nav ul.active {
                left: 0;
            }
            
            nav ul li {
                margin: 15px 0;
                width: 100%;
            }
            
            /* Hero Section Mobile */
            .hero {
                padding: 100px 0 60px;
                text-align: center;
                justify-content: center;
            }
            
            .hero-content {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .hero-main-title {
                font-size: 2.2rem;
                text-align: center;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-stats {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .hero-stat-item {
                padding-left: 0;
                text-align: center;
            }
            
            .hero-stat-item:before {
                display: none;
            }
            
            .hero-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
                
            }
        }
        
        @media (max-width: 576px) {
            .hero-main-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .logo {
                height: 35px;
            }
            
            .logo img {
                max-height: 35px;
            }
            
            header {
                padding: 10px 0;
            }
            
            nav ul {
                top: 70px;
                height: calc(100vh - 70px);
            }
            
            .hero {
                min-height: 70vh;
                padding: 80px 0 40px;
            }
        
            
            .btn {
                width: 100%;
                max-width: 250px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
             .logo img {
        height: 30px; /* Reduced from 40px */
    }
    
    header {
        padding: 10px 0;
    }
    
    nav ul {
        top: 70px;
        height: calc(100vh - 70px);
       
    }
        }
        
        @media (max-width: 400px) {
            .hero {
                min-height: 400px;
                padding: 70px 10px 20px;
            }
            
            .hero-buttons .btn {
                padding: 10px 20px;
                min-width: auto;
                width: 100%;
                margin: 5px 0;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
        }
        /* Eldeco Form Styles */
.el-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.el-form-container {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    width: 95%;
    max-width: 600px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    animation: elFadeIn 0.4s ease-out;
    border-bottom: 6px solid #2e8b57;
     background-image: linear-gradient(to right, #ccd3cd79, #b6b0b054), url('../Image/pop-up.png');
    background-position: center center;
    background-repeat: no-repeat;
}

@keyframes elFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* New row styling */
.el-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    
   
}

.half-width {
    flex: 1;
    min-width: 0; /* Prevents overflow issues */
}

.el-form-header {
    text-align: center;
    margin-bottom: 20px;
}

.el-form-header h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 5px;
}

.el-form-header p {
    color: #555;
    font-size: 14px;
}

.el-form-group {
    margin-bottom: 0; /* Now handled by row */
}

.el-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 13px;
}

.el-form-group input,
.el-form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.el-submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #2e8b57;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .el-form-row {
        flex-direction: column;
        gap: 18px;
    }
    
    .el-form-container {
        padding: 25px 20px;
    }
}

.el-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f5f5f5;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}