                                                                                                                                                                                                                                                                                                * {
                                                                                                                                                                                                                                                                                                    margin: 0;
                                                                                                                                                                                                                                                                                                    padding: 0;
                                                                                                                                                                                                                                                                                                    box-sizing: border-box;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                h1,
                                                                                                                                                                                                                                                                                                h2,
                                                                                                                                                                                                                                                                                                h3,
                                                                                                                                                                                                                                                                                                h4,
                                                                                                                                                                                                                                                                                                h5,
                                                                                                                                                                                                                                                                                                h6 {
                                                                                                                                                                                                                                                                                                    font-family: 'Poppins', sans-serif;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                p,
                                                                                                                                                                                                                                                                                                li,
                                                                                                                                                                                                                                                                                                a,
                                                                                                                                                                                                                                                                                                span {
                                                                                                                                                                                                                                                                                                    font-family: sans-serif;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                body {
                                                                                                                                                                                                                                                                                                    font-family: 'Segoe UI', sans-serif;
                                                                                                                                                                                                                                                                                                    background-color: #ffffff;
                                                                                                                                                                                                                                                                                                    color: #1a1a1a;
                                                                                                                                                                                                                                                                                                    line-height: 1.6;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .navbar nav ul li a.active,
                                                                                                                                                                                                                                                                                                .navbar nav ul li a:hover {
                                                                                                                                                                                                                                                                                                    color: #3b9946;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .hero {
                                                                                                                                                                                                                                                                                                    position: relative;
                                                                                                                                                                                                                                                                                                    height: 100vh;
                                                                                                                                                                                                                                                                                                    overflow: hidden;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                #heroVideo {
                                                                                                                                                                                                                                                                                                    position: absolute;
                                                                                                                                                                                                                                                                                                    top: 0;
                                                                                                                                                                                                                                                                                                    left: 0;
                                                                                                                                                                                                                                                                                                    width: 100%;
                                                                                                                                                                                                                                                                                                    height: 100%;
                                                                                                                                                                                                                                                                                                    object-fit: cover;
                                                                                                                                                                                                                                                                                                    z-index: 1;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .hero-content {
                                                                                                                                                                                                                                                                                                    position: absolute;
                                                                                                                                                                                                                                                                                                    z-index: 2;
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    top: 50%;
                                                                                                                                                                                                                                                                                                    left: 50%;
                                                                                                                                                                                                                                                                                                    transform: translate(-50%, -50%);
                                                                                                                                                                                                                                                                                                    width: 100%;
                                                                                                                                                                                                                                                                                                    padding: 20px;
                                                                                                                                                                                                                                                                                                    color: white;
                                                                                                                                                                                                                                                                                                    pointer-events: auto;
                                                                                                                                                                                                                                                                                                    /* make hover work again */
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .hero-content h1 {
                                                                                                                                                                                                                                                                                                    font-size: 3rem;
                                                                                                                                                                                                                                                                                                    margin-bottom: 20px;
                                                                                                                                                                                                                                                                                                    color: white;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .btn {
                                                                                                                                                                                                                                                                                                    padding: 12px 28px;
                                                                                                                                                                                                                                                                                                    background-color: #3b9946;
                                                                                                                                                                                                                                                                                                    color: white;
                                                                                                                                                                                                                                                                                                    text-decoration: none;
                                                                                                                                                                                                                                                                                                    border-radius: 6px;
                                                                                                                                                                                                                                                                                                    font-weight: bold;
                                                                                                                                                                                                                                                                                                    transition: opacity 0.3s ease, transform 0.3s ease;
                                                                                                                                                                                                                                                                                                    opacity: 0.6;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .btn:hover {
                                                                                                                                                                                                                                                                                                    opacity: 1;
                                                                                                                                                                                                                                                                                                    transform: scale(1.05);
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .features {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    flex-wrap: wrap;
                                                                                                                                                                                                                                                                                                    gap: 20px;
                                                                                                                                                                                                                                                                                                    justify-content: center;
                                                                                                                                                                                                                                                                                                    padding: 60px 20px;
                                                                                                                                                                                                                                                                                                    background-color: #ffffff;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .features .container {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    gap: 20px;
                                                                                                                                                                                                                                                                                                    flex-wrap: wrap;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .cta-section {
                                                                                                                                                                                                                                                                                                    background-color: #000000;
                                                                                                                                                                                                                                                                                                    color: white;
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    padding: 80px 20px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .cta-section h2 {
                                                                                                                                                                                                                                                                                                    margin-bottom: 20px;
                                                                                                                                                                                                                                                                                                    font-size: 2rem;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .cta-section p {
                                                                                                                                                                                                                                                                                                    font-size: 1.1rem;
                                                                                                                                                                                                                                                                                                    margin-bottom: 30px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .highlights {
                                                                                                                                                                                                                                                                                                    background-color: #ffffff;
                                                                                                                                                                                                                                                                                                    padding: 60px 20px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .highlight-grid {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    gap: 20px;
                                                                                                                                                                                                                                                                                                    flex-wrap: wrap;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .highlight-item {
                                                                                                                                                                                                                                                                                                    flex: 1;
                                                                                                                                                                                                                                                                                                    background-color: #f9f9f9;
                                                                                                                                                                                                                                                                                                    padding: 25px;
                                                                                                                                                                                                                                                                                                    border-radius: 8px;
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    min-width: 260px;
                                                                                                                                                                                                                                                                                                    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .footer {
                                                                                                                                                                                                                                                                                                    background-color: #000000;
                                                                                                                                                                                                                                                                                                    color: #ffffff;
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    padding: 20px 0;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .btn-container {
                                                                                                                                                                                                                                                                                                    margin-top: 20px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .feature-box {
                                                                                                                                                                                                                                                                                                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .feature-box:hover {
                                                                                                                                                                                                                                                                                                    transform: translateY(-10px);
                                                                                                                                                                                                                                                                                                    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .navbar nav ul li a:hover {
                                                                                                                                                                                                                                                                                                    transform: translateY(-5px);
                                                                                                                                                                                                                                                                                                    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .portfolio-page {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    flex-direction: column;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .section-title {
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    font-size: 2.5rem;
                                                                                                                                                                                                                                                                                                    margin-bottom: 10px;
                                                                                                                                                                                                                                                                                                    font-weight: bold;
                                                                                                                                                                                                                                                                                                    color: #1a1a1a;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .section-subtitle {
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    font-size: 1.2rem;
                                                                                                                                                                                                                                                                                                    margin-bottom: 40px;
                                                                                                                                                                                                                                                                                                    color: #555;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .container {
                                                                                                                                                                                                                                                                                                    max-width: 1200px;
                                                                                                                                                                                                                                                                                                    margin: 0 auto;
                                                                                                                                                                                                                                                                                                    padding: 0 30px;
                                                                                                                                                                                                                                                                                                    width: 100%;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .filter-buttons {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    justify-content: center;
                                                                                                                                                                                                                                                                                                    gap: 15px;
                                                                                                                                                                                                                                                                                                    margin-bottom: 30px;
                                                                                                                                                                                                                                                                                                    flex-wrap: wrap;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .filter-btn {
                                                                                                                                                                                                                                                                                                    padding: 10px 20px;
                                                                                                                                                                                                                                                                                                    background-color: #eee;
                                                                                                                                                                                                                                                                                                    border: none;
                                                                                                                                                                                                                                                                                                    border-radius: 5px;
                                                                                                                                                                                                                                                                                                    cursor: pointer;
                                                                                                                                                                                                                                                                                                    font-weight: 500;
                                                                                                                                                                                                                                                                                                    transition: all 0.3s ease;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .filter-btn:hover,
                                                                                                                                                                                                                                                                                                .filter-btn.active {
                                                                                                                                                                                                                                                                                                    background-color: #3b9946;
                                                                                                                                                                                                                                                                                                    color: white;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .portfolio-grid {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    flex-wrap: wrap;
                                                                                                                                                                                                                                                                                                    justify-content: space-between;
                                                                                                                                                                                                                                                                                                    gap: 20px;
                                                                                                                                                                                                                                                                                                    margin-top: 40px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .portfolio-card {
                                                                                                                                                                                                                                                                                                    width: 48%;
                                                                                                                                                                                                                                                                                                    background-color: #f5f5f5;
                                                                                                                                                                                                                                                                                                    border-radius: 15px;
                                                                                                                                                                                                                                                                                                    padding: 30px;
                                                                                                                                                                                                                                                                                                    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
                                                                                                                                                                                                                                                                                                    transition: transform 0.3s ease;
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    flex-direction: column;
                                                                                                                                                                                                                                                                                                    justify-content: center;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .portfolio-card:hover {
                                                                                                                                                                                                                                                                                                    transform: translateY(-5px);
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .portfolio-card h3 {
                                                                                                                                                                                                                                                                                                    margin-top: 15px;
                                                                                                                                                                                                                                                                                                    font-size: 1.2rem;
                                                                                                                                                                                                                                                                                                    font-weight: 600;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .portfolio-card p {
                                                                                                                                                                                                                                                                                                    font-size: 0.95rem;
                                                                                                                                                                                                                                                                                                    color: #333;
                                                                                                                                                                                                                                                                                                    margin: 10px 0 15px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .tags {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    justify-content: center;
                                                                                                                                                                                                                                                                                                    flex-wrap: wrap;
                                                                                                                                                                                                                                                                                                    gap: 8px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .tag {
                                                                                                                                                                                                                                                                                                    background-color: #3b9946;
                                                                                                                                                                                                                                                                                                    color: white;
                                                                                                                                                                                                                                                                                                    padding: 5px 12px;
                                                                                                                                                                                                                                                                                                    border-radius: 20px;
                                                                                                                                                                                                                                                                                                    font-size: 0.8rem;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .portfolio-page {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    flex-direction: column;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .portfolio-grid {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    flex-wrap: wrap;
                                                                                                                                                                                                                                                                                                    gap: 20px;
                                                                                                                                                                                                                                                                                                    justify-content: space-between;
                                                                                                                                                                                                                                                                                                    margin-top: 30px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .portfolio-grid .feature-box {
                                                                                                                                                                                                                                                                                                    width: 48%;
                                                                                                                                                                                                                                                                                                    border-radius: 15px;
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .section-subtitle {
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    margin-top: 10px;
                                                                                                                                                                                                                                                                                                    font-size: 1.1rem;
                                                                                                                                                                                                                                                                                                    color: #555;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                html {
                                                                                                                                                                                                                                                                                                    scroll-behavior: smooth;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .navbar.visible {
                                                                                                                                                                                                                                                                                                    transform: translateY(0);
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .reveal {
                                                                                                                                                                                                                                                                                                    opacity: 0;
                                                                                                                                                                                                                                                                                                    transform: translateY(40px);
                                                                                                                                                                                                                                                                                                    transition: all 0.6s ease-out;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .reveal.active {
                                                                                                                                                                                                                                                                                                    opacity: 1;
                                                                                                                                                                                                                                                                                                    transform: translateY(0);
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .btn-dark {
                                                                                                                                                                                                                                                                                                    background-color: #3b9946;
                                                                                                                                                                                                                                                                                                    color: white;
                                                                                                                                                                                                                                                                                                    opacity: 1;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .btn-explore {
                                                                                                                                                                                                                                                                                                    opacity: 0.6;
                                                                                                                                                                                                                                                                                                    transition: opacity 0.3s ease;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .btn-explore:hover {
                                                                                                                                                                                                                                                                                                    opacity: 1;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .video-section {
                                                                                                                                                                                                                                                                                                    padding: 60px 20px;
                                                                                                                                                                                                                                                                                                    background-color: #f5f5f5;
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .video-wrapper {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    justify-content: center;
                                                                                                                                                                                                                                                                                                    gap: 30px;
                                                                                                                                                                                                                                                                                                    flex-wrap: wrap;
                                                                                                                                                                                                                                                                                                    margin-top: 20px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .video-wrapper video {
                                                                                                                                                                                                                                                                                                    width: 480px;
                                                                                                                                                                                                                                                                                                    border-radius: 10px;
                                                                                                                                                                                                                                                                                                    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .video-section {
                                                                                                                                                                                                                                                                                                    padding: 60px 20px;
                                                                                                                                                                                                                                                                                                    background-color: #f9f9f9;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .video-wrapper {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    flex-direction: column;
                                                                                                                                                                                                                                                                                                    gap: 30px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .video-wrapper video {
                                                                                                                                                                                                                                                                                                    border-radius: 10px;
                                                                                                                                                                                                                                                                                                    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .hero-slide.active {
                                                                                                                                                                                                                                                                                                    display: block;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .hero-content {
                                                                                                                                                                                                                                                                                                    position: relative;
                                                                                                                                                                                                                                                                                                    z-index: 1;
                                                                                                                                                                                                                                                                                                    color: white;
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    padding-top: 30vh;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                html {
                                                                                                                                                                                                                                                                                                    scroll-behavior: smooth;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .navbar nav ul li a.active,
                                                                                                                                                                                                                                                                                                .navbar nav ul li a:hover {
                                                                                                                                                                                                                                                                                                    color: #3b9946;
                                                                                                                                                                                                                                                                                                    transform: translateY(-5px);
                                                                                                                                                                                                                                                                                                    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .hero-gallery {
                                                                                                                                                                                                                                                                                                    position: relative;
                                                                                                                                                                                                                                                                                                    width: 100%;
                                                                                                                                                                                                                                                                                                    height: 100vh;
                                                                                                                                                                                                                                                                                                    overflow: hidden;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .hero-slide.active {
                                                                                                                                                                                                                                                                                                    display: block;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                #heroVideo {
                                                                                                                                                                                                                                                                                                    display: block !important;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .hero-content {
                                                                                                                                                                                                                                                                                                    position: relative;
                                                                                                                                                                                                                                                                                                    z-index: 1;
                                                                                                                                                                                                                                                                                                    color: white;
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    padding-top: 30vh;
                                                                                                                                                                                                                                                                                                    pointer-events: none;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .hero-content h1 {
                                                                                                                                                                                                                                                                                                    font-size: 3rem;
                                                                                                                                                                                                                                                                                                    margin-bottom: 20px;
                                                                                                                                                                                                                                                                                                    color: white;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .btn {
                                                                                                                                                                                                                                                                                                    padding: 12px 28px;
                                                                                                                                                                                                                                                                                                    background-color: #3b9946;
                                                                                                                                                                                                                                                                                                    color: white;
                                                                                                                                                                                                                                                                                                    text-decoration: none;
                                                                                                                                                                                                                                                                                                    border-radius: 6px;
                                                                                                                                                                                                                                                                                                    font-weight: bold;
                                                                                                                                                                                                                                                                                                    opacity: 0.6;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .btn-dark {
                                                                                                                                                                                                                                                                                                    background-color: #3b9946;
                                                                                                                                                                                                                                                                                                    color: white;
                                                                                                                                                                                                                                                                                                    opacity: 1;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .btn-explore {
                                                                                                                                                                                                                                                                                                    opacity: 0.6;
                                                                                                                                                                                                                                                                                                    transition: opacity 0.3s ease;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .btn-explore:hover {
                                                                                                                                                                                                                                                                                                    opacity: 1;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .features .container {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    gap: 20px;
                                                                                                                                                                                                                                                                                                    flex-wrap: wrap;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .feature-box {
                                                                                                                                                                                                                                                                                                    background-color: #f0f0f0;
                                                                                                                                                                                                                                                                                                    padding: 20px;
                                                                                                                                                                                                                                                                                                    border-radius: 20px;
                                                                                                                                                                                                                                                                                                    flex: 0 0 calc(50% - 20px);
                                                                                                                                                                                                                                                                                                    /* 2 in a row with gap */
                                                                                                                                                                                                                                                                                                    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
                                                                                                                                                                                                                                                                                                    transition: transform 0.4s ease, box-shadow 0.4s ease;
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    height: auto;
                                                                                                                                                                                                                                                                                                    /* optional square shape */
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    flex-direction: column;
                                                                                                                                                                                                                                                                                                    justify-content: center;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .feature-box:hover {
                                                                                                                                                                                                                                                                                                    transform: translateY(-10px) scale(1.02);
                                                                                                                                                                                                                                                                                                    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .cta-section {
                                                                                                                                                                                                                                                                                                    background-color: #000000;
                                                                                                                                                                                                                                                                                                    color: white;
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    padding: 80px 20px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .cta-section h2 {
                                                                                                                                                                                                                                                                                                    margin-bottom: 20px;
                                                                                                                                                                                                                                                                                                    font-size: 2rem;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .cta-section p {
                                                                                                                                                                                                                                                                                                    font-size: 1.1rem;
                                                                                                                                                                                                                                                                                                    margin-bottom: 30px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .highlights {
                                                                                                                                                                                                                                                                                                    background-color: #ffffff;
                                                                                                                                                                                                                                                                                                    padding: 60px 20px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .highlight-grid {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    gap: 20px;
                                                                                                                                                                                                                                                                                                    flex-wrap: wrap;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .highlight-item {
                                                                                                                                                                                                                                                                                                    flex: 1;
                                                                                                                                                                                                                                                                                                    background-color: #f9f9f9;
                                                                                                                                                                                                                                                                                                    padding: 25px;
                                                                                                                                                                                                                                                                                                    border-radius: 8px;
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    min-width: 260px;
                                                                                                                                                                                                                                                                                                    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .footer {
                                                                                                                                                                                                                                                                                                    background-color: #000000;
                                                                                                                                                                                                                                                                                                    color: #ffffff;
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    padding: 20px 0;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .video-section {
                                                                                                                                                                                                                                                                                                    padding: 60px 20px;
                                                                                                                                                                                                                                                                                                    background-color: #f9f9f9;
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .video-wrapper {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    flex-direction: column;
                                                                                                                                                                                                                                                                                                    gap: 30px;
                                                                                                                                                                                                                                                                                                    margin-top: 20px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .video-wrapper video {
                                                                                                                                                                                                                                                                                                    width: 480px;
                                                                                                                                                                                                                                                                                                    border-radius: 10px;
                                                                                                                                                                                                                                                                                                    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .section-title {
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    font-size: 2.5rem;
                                                                                                                                                                                                                                                                                                    margin-bottom: 10px;
                                                                                                                                                                                                                                                                                                    font-weight: bold;
                                                                                                                                                                                                                                                                                                    color: #1a1a1a;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .section-subtitle {
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    font-size: 1.2rem;
                                                                                                                                                                                                                                                                                                    margin-bottom: 40px;
                                                                                                                                                                                                                                                                                                    color: #555;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .section-subtitle {
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    margin-top: 10px;
                                                                                                                                                                                                                                                                                                    font-size: 1.1rem;
                                                                                                                                                                                                                                                                                                    color: #555;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .filter-buttons {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    justify-content: center;
                                                                                                                                                                                                                                                                                                    gap: 15px;
                                                                                                                                                                                                                                                                                                    margin-bottom: 30px;
                                                                                                                                                                                                                                                                                                    flex-wrap: wrap;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .filter-btn {
                                                                                                                                                                                                                                                                                                    padding: 10px 20px;
                                                                                                                                                                                                                                                                                                    background-color: #eee;
                                                                                                                                                                                                                                                                                                    border: none;
                                                                                                                                                                                                                                                                                                    border-radius: 5px;
                                                                                                                                                                                                                                                                                                    cursor: pointer;
                                                                                                                                                                                                                                                                                                    font-weight: 500;
                                                                                                                                                                                                                                                                                                    transition: all 0.3s ease;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .filter-btn:hover,
                                                                                                                                                                                                                                                                                                .filter-btn.active {
                                                                                                                                                                                                                                                                                                    background-color: #3b9946;
                                                                                                                                                                                                                                                                                                    color: white;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .portfolio-page {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    flex-direction: column;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .portfolio-grid {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    flex-wrap: wrap;
                                                                                                                                                                                                                                                                                                    justify-content: space-between;
                                                                                                                                                                                                                                                                                                    gap: 20px;
                                                                                                                                                                                                                                                                                                    margin-top: 40px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .portfolio-card {
                                                                                                                                                                                                                                                                                                    width: 48%;
                                                                                                                                                                                                                                                                                                    background-color: #f5f5f5;
                                                                                                                                                                                                                                                                                                    border-radius: 15px;
                                                                                                                                                                                                                                                                                                    padding: 30px;
                                                                                                                                                                                                                                                                                                    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
                                                                                                                                                                                                                                                                                                    transition: transform 0.3s ease;
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    flex-direction: column;
                                                                                                                                                                                                                                                                                                    justify-content: center;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .portfolio-card:hover {
                                                                                                                                                                                                                                                                                                    transform: translateY(-5px);
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .portfolio-card h3 {
                                                                                                                                                                                                                                                                                                    margin-top: 15px;
                                                                                                                                                                                                                                                                                                    font-size: 1.2rem;
                                                                                                                                                                                                                                                                                                    font-weight: 600;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .portfolio-card p {
                                                                                                                                                                                                                                                                                                    font-size: 0.95rem;
                                                                                                                                                                                                                                                                                                    color: #333;
                                                                                                                                                                                                                                                                                                    margin: 10px 0 15px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .tags {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    justify-content: center;
                                                                                                                                                                                                                                                                                                    flex-wrap: wrap;
                                                                                                                                                                                                                                                                                                    gap: 8px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .tag {
                                                                                                                                                                                                                                                                                                    background-color: #3b9946;
                                                                                                                                                                                                                                                                                                    color: white;
                                                                                                                                                                                                                                                                                                    padding: 5px 12px;
                                                                                                                                                                                                                                                                                                    border-radius: 20px;
                                                                                                                                                                                                                                                                                                    font-size: 0.8rem;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .hero-gallery {
                                                                                                                                                                                                                                                                                                    position: relative;
                                                                                                                                                                                                                                                                                                    width: 100%;
                                                                                                                                                                                                                                                                                                    height: 100vh;
                                                                                                                                                                                                                                                                                                    overflow: hidden;
                                                                                                                                                                                                                                                                                                    background-color: black;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .hero-slide.active {
                                                                                                                                                                                                                                                                                                    display: block;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                #heroVideo {
                                                                                                                                                                                                                                                                                                    display: block !important;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .hero-content {
                                                                                                                                                                                                                                                                                                    position: absolute;
                                                                                                                                                                                                                                                                                                    z-index: 10;
                                                                                                                                                                                                                                                                                                    /* Make sure it's above video and image */
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    top: 50%;
                                                                                                                                                                                                                                                                                                    left: 50%;
                                                                                                                                                                                                                                                                                                    transform: translate(-50%, -50%);
                                                                                                                                                                                                                                                                                                    width: 100%;
                                                                                                                                                                                                                                                                                                    padding: 20px;
                                                                                                                                                                                                                                                                                                    color: white;
                                                                                                                                                                                                                                                                                                    pointer-events: auto;
                                                                                                                                                                                                                                                                                                    /* Required for buttons to be clickable */
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .hero-slide {
                                                                                                                                                                                                                                                                                                    display: none;
                                                                                                                                                                                                                                                                                                    position: absolute;
                                                                                                                                                                                                                                                                                                    top: 0;
                                                                                                                                                                                                                                                                                                    left: 0;
                                                                                                                                                                                                                                                                                                    width: 100%;
                                                                                                                                                                                                                                                                                                    height: 100vh;
                                                                                                                                                                                                                                                                                                    object-fit: cover;
                                                                                                                                                                                                                                                                                                    z-index: 1;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .hero-slide.active {
                                                                                                                                                                                                                                                                                                    display: block;
                                                                                                                                                                                                                                                                                                    z-index: 10;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .hero-gallery video {
                                                                                                                                                                                                                                                                                                    position: absolute;
                                                                                                                                                                                                                                                                                                    top: 0;
                                                                                                                                                                                                                                                                                                    left: 0;
                                                                                                                                                                                                                                                                                                    width: 100%;
                                                                                                                                                                                                                                                                                                    height: 100vh;
                                                                                                                                                                                                                                                                                                    object-fit: cover;
                                                                                                                                                                                                                                                                                                    z-index: 1;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .feature-box {
                                                                                                                                                                                                                                                                                                    position: relative;
                                                                                                                                                                                                                                                                                                    padding-top: 60px;
                                                                                                                                                                                                                                                                                                    /* space for icon */
                                                                                                                                                                                                                                                                                                    padding-left: 60px;
                                                                                                                                                                                                                                                                                                    /* space for icon */
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .icon-top-left {
                                                                                                                                                                                                                                                                                                    position: absolute;
                                                                                                                                                                                                                                                                                                    top: 20px;
                                                                                                                                                                                                                                                                                                    left: 20px;
                                                                                                                                                                                                                                                                                                    width: 40px;
                                                                                                                                                                                                                                                                                                    height: 40px;
                                                                                                                                                                                                                                                                                                    object-fit: contain;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                #backToTop {
                                                                                                                                                                                                                                                                                                    position: fixed;
                                                                                                                                                                                                                                                                                                    bottom: 30px;
                                                                                                                                                                                                                                                                                                    left: 30px;
                                                                                                                                                                                                                                                                                                    /* Move to left */
                                                                                                                                                                                                                                                                                                    background-color: #3b9946;
                                                                                                                                                                                                                                                                                                    color: white;
                                                                                                                                                                                                                                                                                                    border: none;
                                                                                                                                                                                                                                                                                                    border-radius: 50%;
                                                                                                                                                                                                                                                                                                    /* Make it circular */
                                                                                                                                                                                                                                                                                                    width: 50px;
                                                                                                                                                                                                                                                                                                    height: 50px;
                                                                                                                                                                                                                                                                                                    font-size: 20px;
                                                                                                                                                                                                                                                                                                    cursor: pointer;
                                                                                                                                                                                                                                                                                                    display: none;
                                                                                                                                                                                                                                                                                                    align-items: center;
                                                                                                                                                                                                                                                                                                    justify-content: center;
                                                                                                                                                                                                                                                                                                    z-index: 1000;
                                                                                                                                                                                                                                                                                                    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
                                                                                                                                                                                                                                                                                                    transition: opacity 0.3s ease, transform 0.3s ease;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                #backToTop:hover {
                                                                                                                                                                                                                                                                                                    transform: scale(1.1);
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                /* === Responsive Navbar Fixes === */
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .navbar nav {
                                                                                                                                                                                                                                                                                                    flex: 1;
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    justify-content: flex-end;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .nav-links ul {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    list-style: none;
                                                                                                                                                                                                                                                                                                    gap: 30px;
                                                                                                                                                                                                                                                                                                    margin: 0;
                                                                                                                                                                                                                                                                                                    padding: 0;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .nav-links ul li a {
                                                                                                                                                                                                                                                                                                    text-decoration: none;
                                                                                                                                                                                                                                                                                                    color: #000;
                                                                                                                                                                                                                                                                                                    font-weight: 500;
                                                                                                                                                                                                                                                                                                    transition: color 0.3s ease;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                /* Navbar container */
                                                                                                                                                                                                                                                                                                /* Logo */
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .navbar .logo {
                                                                                                                                                                                                                                                                                                    height: 50px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                /* Nav items aligned horizontally */
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .navbar nav ul {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    flex-direction: row;
                                                                                                                                                                                                                                                                                                    /* ✅ this keeps the links in one horizontal row */
                                                                                                                                                                                                                                                                                                    gap: 30px;
                                                                                                                                                                                                                                                                                                    /* spacing between items */
                                                                                                                                                                                                                                                                                                    list-style: none;
                                                                                                                                                                                                                                                                                                    margin: 0;
                                                                                                                                                                                                                                                                                                    padding: 0;
                                                                                                                                                                                                                                                                                                    align-items: center;
                                                                                                                                                                                                                                                                                                    justify-content: flex-end;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                /* Nav links */
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .navbar nav ul li a {
                                                                                                                                                                                                                                                                                                    text-decoration: none;
                                                                                                                                                                                                                                                                                                    color: black;
                                                                                                                                                                                                                                                                                                    font-weight: 500;
                                                                                                                                                                                                                                                                                                    transition: color 0.3s ease;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .navbar nav ul li a:hover,
                                                                                                                                                                                                                                                                                                .navbar nav ul li a.active {
                                                                                                                                                                                                                                                                                                    color: #3b9946;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                /* Navbar layout */
                                                                                                                                                                                                                                                                                                /* Logo */
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .logo-container .logo {
                                                                                                                                                                                                                                                                                                    height: 50px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                /* Nav links */
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .hero-content p {
                                                                                                                                                                                                                                                                                                    font-size: 1.2rem;
                                                                                                                                                                                                                                                                                                    margin-bottom: 30px;
                                                                                                                                                                                                                                                                                                    padding: 8px 16px;
                                                                                                                                                                                                                                                                                                    display: inline-block;
                                                                                                                                                                                                                                                                                                    color: white;
                                                                                                                                                                                                                                                                                                    background-color: transparent;
                                                                                                                                                                                                                                                                                                    /* ✅ Remove dark background */
                                                                                                                                                                                                                                                                                                    border-radius: 0;
                                                                                                                                                                                                                                                                                                    /* Optional: remove rounding */
                                                                                                                                                                                                                                                                                                    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
                                                                                                                                                                                                                                                                                                    /* Optional: make text readable */
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .service-section {
                                                                                                                                                                                                                                                                                                    margin-bottom: 40px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                h1 {
                                                                                                                                                                                                                                                                                                    font-size: 36px;
                                                                                                                                                                                                                                                                                                    margin-bottom: 20px;
                                                                                                                                                                                                                                                                                                    font-weight: 700;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                h2 {
                                                                                                                                                                                                                                                                                                    font-size: 24px;
                                                                                                                                                                                                                                                                                                    color: #222;
                                                                                                                                                                                                                                                                                                    margin-bottom: 10px;
                                                                                                                                                                                                                                                                                                    font-weight: 600;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                p {
                                                                                                                                                                                                                                                                                                    font-size: 16px;
                                                                                                                                                                                                                                                                                                    color: #444;
                                                                                                                                                                                                                                                                                                    line-height: 1.6;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                h1::after {
                                                                                                                                                                                                                                                                                                    content: "";
                                                                                                                                                                                                                                                                                                    display: block;
                                                                                                                                                                                                                                                                                                    width: 60px;
                                                                                                                                                                                                                                                                                                    height: 4px;
                                                                                                                                                                                                                                                                                                    background-color: #3b9946;
                                                                                                                                                                                                                                                                                                    margin-top: 10px;
                                                                                                                                                                                                                                                                                                    border-radius: 2px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                body {
                                                                                                                                                                                                                                                                                                    background-color: #f8f8f8;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                /* Make services section look modern and clean */
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .services-page {
                                                                                                                                                                                                                                                                                                    padding: 60px 20px;
                                                                                                                                                                                                                                                                                                    max-width: 1200px;
                                                                                                                                                                                                                                                                                                    margin: 0 auto;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .services-hero {
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    margin-bottom: 40px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .services-hero h1 {
                                                                                                                                                                                                                                                                                                    font-size: 2.5em;
                                                                                                                                                                                                                                                                                                    color: #3b9946;
                                                                                                                                                                                                                                                                                                    margin-bottom: 10px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .services-hero p {
                                                                                                                                                                                                                                                                                                    font-size: 1.1em;
                                                                                                                                                                                                                                                                                                    color: #555;
                                                                                                                                                                                                                                                                                                    max-width: 700px;
                                                                                                                                                                                                                                                                                                    margin: 0 auto;
                                                                                                                                                                                                                                                                                                    line-height: 1.6;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .service-item {
                                                                                                                                                                                                                                                                                                    background: #f9f9f9;
                                                                                                                                                                                                                                                                                                    border-radius: 12px;
                                                                                                                                                                                                                                                                                                    padding: 30px;
                                                                                                                                                                                                                                                                                                    margin: 20px auto;
                                                                                                                                                                                                                                                                                                    max-width: 900px;
                                                                                                                                                                                                                                                                                                    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
                                                                                                                                                                                                                                                                                                    transition: 0.3s ease;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .service-item:hover {
                                                                                                                                                                                                                                                                                                    transform: translateY(-3px);
                                                                                                                                                                                                                                                                                                    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .service-item h2 {
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    font-size: 1.5em;
                                                                                                                                                                                                                                                                                                    color: #3b9946;
                                                                                                                                                                                                                                                                                                    margin-bottom: 12px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .service-item p {
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    font-size: 1em;
                                                                                                                                                                                                                                                                                                    color: #444;
                                                                                                                                                                                                                                                                                                    line-height: 1.6;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                /* Responsive Tweaks */
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                html {
                                                                                                                                                                                                                                                                                                    scroll-behavior: smooth;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                /* Navbar */
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .navbar {
                                                                                                                                                                                                                                                                                                    position: fixed;
                                                                                                                                                                                                                                                                                                    top: 0;
                                                                                                                                                                                                                                                                                                    width: 100%;
                                                                                                                                                                                                                                                                                                    height: 70px;
                                                                                                                                                                                                                                                                                                    background-color: transparent;
                                                                                                                                                                                                                                                                                                    z-index: 1000;
                                                                                                                                                                                                                                                                                                    transition: background-color 0.3s ease, box-shadow 0.3s ease;
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    align-items: center;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .navbar.scrolled {
                                                                                                                                                                                                                                                                                                    background-color: #fff;
                                                                                                                                                                                                                                                                                                    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .logo {
                                                                                                                                                                                                                                                                                                    height: 45px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .nav-links .nav-list {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    gap: 30px;
                                                                                                                                                                                                                                                                                                    list-style: none;
                                                                                                                                                                                                                                                                                                    margin: 0;
                                                                                                                                                                                                                                                                                                    padding: 0;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .nav-links .nav-list li a {
                                                                                                                                                                                                                                                                                                    text-decoration: none;
                                                                                                                                                                                                                                                                                                    color: #000;
                                                                                                                                                                                                                                                                                                    font-weight: 500;
                                                                                                                                                                                                                                                                                                    font-size: 16px;
                                                                                                                                                                                                                                                                                                    transition: color 0.3s ease;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .nav-links .nav-list li a:hover,
                                                                                                                                                                                                                                                                                                .nav-links .nav-list li a.active {
                                                                                                                                                                                                                                                                                                    color: #3b9946;
                                                                                                                                                                                                                                                                                                    transform: translateY(-3px);
                                                                                                                                                                                                                                                                                                    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                @media (min-width: 769px) {
                                                                                                                                                                                                                                                                                                    .navbar-container {
                                                                                                                                                                                                                                                                                                        padding: 0 40px;
                                                                                                                                                                                                                                                                                                        justify-content: space-between;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .nav-links .nav-list {
                                                                                                                                                                                                                                                                                                        flex-direction: row;
                                                                                                                                                                                                                                                                                                        gap: 30px;
                                                                                                                                                                                                                                                                                                        justify-content: flex-end;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                @media (max-width: 768px) {
                                                                                                                                                                                                                                                                                                    .navbar {
                                                                                                                                                                                                                                                                                                        position: fixed;
                                                                                                                                                                                                                                                                                                        top: 0;
                                                                                                                                                                                                                                                                                                        width: 100%;
                                                                                                                                                                                                                                                                                                        height: 70px;
                                                                                                                                                                                                                                                                                                        background-color: transparent;
                                                                                                                                                                                                                                                                                                        z-index: 1000;
                                                                                                                                                                                                                                                                                                        display: flex;
                                                                                                                                                                                                                                                                                                        align-items: center;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .logo-container {
                                                                                                                                                                                                                                                                                                        display: flex;
                                                                                                                                                                                                                                                                                                        align-items: center;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .logo-container .logo {
                                                                                                                                                                                                                                                                                                        height: 45px;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .nav-links {
                                                                                                                                                                                                                                                                                                        display: flex;
                                                                                                                                                                                                                                                                                                        justify-content: flex-end;
                                                                                                                                                                                                                                                                                                        align-items: center;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .nav-list {
                                                                                                                                                                                                                                                                                                        display: flex;
                                                                                                                                                                                                                                                                                                        gap: 30px;
                                                                                                                                                                                                                                                                                                        list-style: none;
                                                                                                                                                                                                                                                                                                        margin: 0;
                                                                                                                                                                                                                                                                                                        padding: 0;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .nav-links .nav-list {
                                                                                                                                                                                                                                                                                                        flex-direction: column;
                                                                                                                                                                                                                                                                                                        gap: 15px;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .hero-content h1 {
                                                                                                                                                                                                                                                                                                        font-size: 1.8rem;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .btn {
                                                                                                                                                                                                                                                                                                        padding: 10px 20px;
                                                                                                                                                                                                                                                                                                        font-size: 14px;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .feature-box,
                                                                                                                                                                                                                                                                                                    .portfolio-card {
                                                                                                                                                                                                                                                                                                        width: 100% !important;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .section-title {
                                                                                                                                                                                                                                                                                                        font-size: 2rem;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .section-subtitle {
                                                                                                                                                                                                                                                                                                        font-size: 1rem;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .container {
                                                                                                                                                                                                                                                                                                        padding: 0 15px;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                @media (max-width: 992px) {
                                                                                                                                                                                                                                                                                                    .navbar {
                                                                                                                                                                                                                                                                                                        position: fixed;
                                                                                                                                                                                                                                                                                                        top: 0;
                                                                                                                                                                                                                                                                                                        width: 100%;
                                                                                                                                                                                                                                                                                                        height: 70px;
                                                                                                                                                                                                                                                                                                        background-color: transparent;
                                                                                                                                                                                                                                                                                                        z-index: 1000;
                                                                                                                                                                                                                                                                                                        display: flex;
                                                                                                                                                                                                                                                                                                        align-items: center;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .logo-container {
                                                                                                                                                                                                                                                                                                        display: flex;
                                                                                                                                                                                                                                                                                                        align-items: center;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .logo-container .logo {
                                                                                                                                                                                                                                                                                                        height: 45px;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .nav-links {
                                                                                                                                                                                                                                                                                                        display: flex;
                                                                                                                                                                                                                                                                                                        justify-content: flex-end;
                                                                                                                                                                                                                                                                                                        align-items: center;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .nav-list {
                                                                                                                                                                                                                                                                                                        display: flex;
                                                                                                                                                                                                                                                                                                        gap: 30px;
                                                                                                                                                                                                                                                                                                        list-style: none;
                                                                                                                                                                                                                                                                                                        margin: 0;
                                                                                                                                                                                                                                                                                                        padding: 0;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .hero-content h1 {
                                                                                                                                                                                                                                                                                                        font-size: 2.2rem;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .navbar-container {
                                                                                                                                                                                                                                                                                                        padding: 10px 20px;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .feature-box,
                                                                                                                                                                                                                                                                                                    .portfolio-card {
                                                                                                                                                                                                                                                                                                        flex: 0 0 48%;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                @media (max-width: 1200px) {
                                                                                                                                                                                                                                                                                                    .navbar {
                                                                                                                                                                                                                                                                                                        position: fixed;
                                                                                                                                                                                                                                                                                                        top: 0;
                                                                                                                                                                                                                                                                                                        width: 100%;
                                                                                                                                                                                                                                                                                                        height: 70px;
                                                                                                                                                                                                                                                                                                        background-color: transparent;
                                                                                                                                                                                                                                                                                                        z-index: 1000;
                                                                                                                                                                                                                                                                                                        display: flex;
                                                                                                                                                                                                                                                                                                        align-items: center;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .navbar-container {
                                                                                                                                                                                                                                                                                                        max-width: 1200px;
                                                                                                                                                                                                                                                                                                        margin: 0 auto;
                                                                                                                                                                                                                                                                                                        padding: 0 30px;
                                                                                                                                                                                                                                                                                                        width: 100%;
                                                                                                                                                                                                                                                                                                        display: flex;
                                                                                                                                                                                                                                                                                                        justify-content: space-between;
                                                                                                                                                                                                                                                                                                        align-items: center;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .logo-container {
                                                                                                                                                                                                                                                                                                        display: flex;
                                                                                                                                                                                                                                                                                                        align-items: center;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .logo-container .logo {
                                                                                                                                                                                                                                                                                                        height: 45px;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .nav-links {
                                                                                                                                                                                                                                                                                                        display: flex;
                                                                                                                                                                                                                                                                                                        justify-content: flex-end;
                                                                                                                                                                                                                                                                                                        align-items: center;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .nav-list {
                                                                                                                                                                                                                                                                                                        display: flex;
                                                                                                                                                                                                                                                                                                        gap: 30px;
                                                                                                                                                                                                                                                                                                        list-style: none;
                                                                                                                                                                                                                                                                                                        margin: 0;
                                                                                                                                                                                                                                                                                                        padding: 0;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .container {
                                                                                                                                                                                                                                                                                                        max-width: 1000px;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .nav-links .nav-list {
                                                                                                                                                                                                                                                                                                        gap: 20px;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                    .hero-content h1 {
                                                                                                                                                                                                                                                                                                        font-size: 2.6rem;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                /* UNIVERSAL NAVBAR LAYOUT — WORKS ON ALL SCREEN SIZES */
                                                                                                                                                                                                                                                                                                /* === FIXED NAVBAR ALIGNMENT FOR ALL SCREENS === */
                                                                                                                                                                                                                                                                                                /* Force full-width edge-to-edge alignment */
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .navbar {
                                                                                                                                                                                                                                                                                                    position: fixed;
                                                                                                                                                                                                                                                                                                    top: 0;
                                                                                                                                                                                                                                                                                                    width: 100%;
                                                                                                                                                                                                                                                                                                    height: 70px;
                                                                                                                                                                                                                                                                                                    background-color: transparent;
                                                                                                                                                                                                                                                                                                    z-index: 1000;
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    justify-content: space-between;
                                                                                                                                                                                                                                                                                                    /* spread left and right */
                                                                                                                                                                                                                                                                                                    align-items: center;
                                                                                                                                                                                                                                                                                                    padding: 0 40px;
                                                                                                                                                                                                                                                                                                    /* control spacing from edge */
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .logo-container {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    align-items: center;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .logo {
                                                                                                                                                                                                                                                                                                    height: 50px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .nav-links {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    align-items: center;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .nav-list {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    list-style: none;
                                                                                                                                                                                                                                                                                                    gap: 30px;
                                                                                                                                                                                                                                                                                                    margin: 0;
                                                                                                                                                                                                                                                                                                    padding: 0;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .nav-list li a {
                                                                                                                                                                                                                                                                                                    text-decoration: none;
                                                                                                                                                                                                                                                                                                    color: black;
                                                                                                                                                                                                                                                                                                    font-size: 16px;
                                                                                                                                                                                                                                                                                                    font-weight: 500;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-section {
                                                                                                                                                                                                                                                                                                    padding: 60px 20px;
                                                                                                                                                                                                                                                                                                    background-color: #f7f7f7;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-header {
                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                    margin-bottom: 40px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-header h2 {
                                                                                                                                                                                                                                                                                                    font-size: 32px;
                                                                                                                                                                                                                                                                                                    font-weight: 700;
                                                                                                                                                                                                                                                                                                    margin-bottom: 10px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-header p {
                                                                                                                                                                                                                                                                                                    font-size: 16px;
                                                                                                                                                                                                                                                                                                    color: #555;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-grid {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    gap: 30px;
                                                                                                                                                                                                                                                                                                    flex-wrap: wrap;
                                                                                                                                                                                                                                                                                                    justify-content: center;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .card {
                                                                                                                                                                                                                                                                                                    background: #fff;
                                                                                                                                                                                                                                                                                                    padding: 30px;
                                                                                                                                                                                                                                                                                                    border-radius: 12px;
                                                                                                                                                                                                                                                                                                    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
                                                                                                                                                                                                                                                                                                    flex: 1 1 400px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-info .info-item {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    align-items: flex-start;
                                                                                                                                                                                                                                                                                                    gap: 12px;
                                                                                                                                                                                                                                                                                                    margin-bottom: 16px;
                                                                                                                                                                                                                                                                                                    /* Tighter but clean spacing */
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-info .info-item i {
                                                                                                                                                                                                                                                                                                    color: #3b9946;
                                                                                                                                                                                                                                                                                                    font-size: 20px;
                                                                                                                                                                                                                                                                                                    margin-right: 10px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-info .info-item h4 {
                                                                                                                                                                                                                                                                                                    margin: 0 0 4px 0;
                                                                                                                                                                                                                                                                                                    font-weight: 600;
                                                                                                                                                                                                                                                                                                    font-size: 16px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-form h3 {
                                                                                                                                                                                                                                                                                                    margin-bottom: 20px;
                                                                                                                                                                                                                                                                                                    font-size: 24px;
                                                                                                                                                                                                                                                                                                    font-weight: 600;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-form form input,
                                                                                                                                                                                                                                                                                                .contact-form form textarea {
                                                                                                                                                                                                                                                                                                    width: 100%;
                                                                                                                                                                                                                                                                                                    padding: 12px 15px;
                                                                                                                                                                                                                                                                                                    margin-bottom: 15px;
                                                                                                                                                                                                                                                                                                    border: 1px solid #ccc;
                                                                                                                                                                                                                                                                                                    border-radius: 8px;
                                                                                                                                                                                                                                                                                                    font-family: inherit;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-form form button {
                                                                                                                                                                                                                                                                                                    width: 100%;
                                                                                                                                                                                                                                                                                                    background-color: #3b9946;
                                                                                                                                                                                                                                                                                                    color: white;
                                                                                                                                                                                                                                                                                                    padding: 14px;
                                                                                                                                                                                                                                                                                                    border: none;
                                                                                                                                                                                                                                                                                                    border-radius: 8px;
                                                                                                                                                                                                                                                                                                    font-size: 16px;
                                                                                                                                                                                                                                                                                                    cursor: pointer;
                                                                                                                                                                                                                                                                                                    font-weight: 600;
                                                                                                                                                                                                                                                                                                    transition: background 0.3s;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-form form button:hover {
                                                                                                                                                                                                                                                                                                    background-color: #2f7f39;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                /* Responsive */
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                @media (max-width: 768px) {
                                                                                                                                                                                                                                                                                                    .contact-grid {
                                                                                                                                                                                                                                                                                                        flex-direction: column;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-info .info-item p {
                                                                                                                                                                                                                                                                                                    margin: 0;
                                                                                                                                                                                                                                                                                                    font-size: 15px;
                                                                                                                                                                                                                                                                                                    color: #555;
                                                                                                                                                                                                                                                                                                    line-height: 1.4;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-info .info-item:last-child {
                                                                                                                                                                                                                                                                                                    margin-bottom: 0;
                                                                                                                                                                                                                                                                                                    /* Remove extra space after the last item */
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-info-box {
                                                                                                                                                                                                                                                                                                    background: #fff;
                                                                                                                                                                                                                                                                                                    padding: 24px;
                                                                                                                                                                                                                                                                                                    border-radius: 12px;
                                                                                                                                                                                                                                                                                                    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
                                                                                                                                                                                                                                                                                                    max-width: 380px;
                                                                                                                                                                                                                                                                                                    /* shortened width */
                                                                                                                                                                                                                                                                                                    font-family: 'Poppins', sans-serif;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-info-box h3 {
                                                                                                                                                                                                                                                                                                    font-size: 20px;
                                                                                                                                                                                                                                                                                                    font-weight: 700;
                                                                                                                                                                                                                                                                                                    margin-bottom: 24px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .info-item {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    align-items: flex-start;
                                                                                                                                                                                                                                                                                                    gap: 12px;
                                                                                                                                                                                                                                                                                                    margin-bottom: 16px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .info-item:last-child {
                                                                                                                                                                                                                                                                                                    margin-bottom: 0;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .info-item .icon {
                                                                                                                                                                                                                                                                                                    font-size: 18px;
                                                                                                                                                                                                                                                                                                    color: #3b9946;
                                                                                                                                                                                                                                                                                                    margin-top: 3px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .info-item h4 {
                                                                                                                                                                                                                                                                                                    font-size: 15px;
                                                                                                                                                                                                                                                                                                    font-weight: 600;
                                                                                                                                                                                                                                                                                                    margin: 0 0 4px 0;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .info-item p {
                                                                                                                                                                                                                                                                                                    font-size: 14px;
                                                                                                                                                                                                                                                                                                    margin: 0;
                                                                                                                                                                                                                                                                                                    line-height: 1.4;
                                                                                                                                                                                                                                                                                                    color: #444;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-container {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    flex-wrap: wrap;
                                                                                                                                                                                                                                                                                                    gap: 30px;
                                                                                                                                                                                                                                                                                                    max-width: 1100px;
                                                                                                                                                                                                                                                                                                    margin: 0 auto;
                                                                                                                                                                                                                                                                                                    justify-content: center;
                                                                                                                                                                                                                                                                                                    align-items: flex-start;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-form-box {
                                                                                                                                                                                                                                                                                                    flex: 1 1 350px;
                                                                                                                                                                                                                                                                                                    background: #fff;
                                                                                                                                                                                                                                                                                                    padding: 24px;
                                                                                                                                                                                                                                                                                                    border-radius: 12px;
                                                                                                                                                                                                                                                                                                    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
                                                                                                                                                                                                                                                                                                    font-family: 'Poppins', sans-serif;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                /* Title styles */
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-info-box h3,
                                                                                                                                                                                                                                                                                                .contact-form-box h3 {
                                                                                                                                                                                                                                                                                                    font-size: 20px;
                                                                                                                                                                                                                                                                                                    font-weight: 700;
                                                                                                                                                                                                                                                                                                    margin-bottom: 24px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                /* Info items (already added previously) */
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .info-item {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    align-items: flex-start;
                                                                                                                                                                                                                                                                                                    gap: 12px;
                                                                                                                                                                                                                                                                                                    margin-bottom: 16px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .info-item:last-child {
                                                                                                                                                                                                                                                                                                    margin-bottom: 0;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .info-item .icon {
                                                                                                                                                                                                                                                                                                    font-size: 18px;
                                                                                                                                                                                                                                                                                                    color: #3b9946;
                                                                                                                                                                                                                                                                                                    margin-top: 3px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .info-item h4 {
                                                                                                                                                                                                                                                                                                    font-size: 15px;
                                                                                                                                                                                                                                                                                                    font-weight: 600;
                                                                                                                                                                                                                                                                                                    margin: 0 0 4px 0;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .info-item p {
                                                                                                                                                                                                                                                                                                    font-size: 14px;
                                                                                                                                                                                                                                                                                                    margin: 0;
                                                                                                                                                                                                                                                                                                    line-height: 1.4;
                                                                                                                                                                                                                                                                                                    color: #444;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                /* Form fields */
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-form-box form {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                    flex-direction: column;
                                                                                                                                                                                                                                                                                                    gap: 15px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-form-box input,
                                                                                                                                                                                                                                                                                                .contact-form-box textarea {
                                                                                                                                                                                                                                                                                                    padding: 12px;
                                                                                                                                                                                                                                                                                                    border: 1px solid #ddd;
                                                                                                                                                                                                                                                                                                    border-radius: 8px;
                                                                                                                                                                                                                                                                                                    font-size: 14px;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-form-box button {
                                                                                                                                                                                                                                                                                                    background-color: #3b9946;
                                                                                                                                                                                                                                                                                                    color: white;
                                                                                                                                                                                                                                                                                                    padding: 12px;
                                                                                                                                                                                                                                                                                                    font-size: 16px;
                                                                                                                                                                                                                                                                                                    border: none;
                                                                                                                                                                                                                                                                                                    border-radius: 8px;
                                                                                                                                                                                                                                                                                                    cursor: pointer;
                                                                                                                                                                                                                                                                                                    transition: background 0.3s;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                .contact-form-box button:hover {
                                                                                                                                                                                                                                                                                                    background-color: #34893e;
                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                /* Responsive stacking */
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                @media (max-width: 768px) {
                                                                                                                                                                                                                                                                                                    .contact-container {
                                                                                                                                                                                                                                                                                                        flex-direction: column;
                                                                                                                                                                                                                                                                                                        gap: 20px;
                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                }