    /* General Reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }

    body {
        background-color: #f4f4f4;
        color: #333;
        scroll-behavior: smooth;
    }

    /* Fixed Header */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 65px;
        padding: 20px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between; /* Ensures logo stays left and nav stays centered */
        box-shadow: 0 4px 10px rgba(1, 1, 1, 1);
        z-index: 1000;
    }


    /* Shrinking Header Effect */
    header.shrink {
        padding: 15px 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }


    /* Logo - Keep it on the left */
    .logo {
        position: absolute;
        left: 20px; /* Adjust as needed */
    }
        
    .logo img {
        width: 120px;
        transition: width 0.5s ease;
    }

    header.shrink .logo img {
        width: 100px;
    }


    /* Centered Navigation */
    nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    nav ul {
        list-style: none;
        display: flex;
        gap: 20px;
        padding: 0;
    }

    nav ul li {
        margin: 0;
    }


    nav ul li a {
        text-decoration: none;
        color: white;
        font-weight: bold;
        transition: color 0.3s;
    }

    nav ul li a:hover {
        color: #ff6600;
    }

    .hero {
        position: relative;
        width: 100vw; /* Full width */
        height: 80vh; /* Full height */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        justify-content: center; /* Centers horizontally */
        align-items: center; /* Centers vertically */
        text-align: center;
    }

    .hero-text {
        position: absolute;
        top: 40%;
        left: 37%;
        transform: translate(-10%, -10%);
        background: rgba(0, 0, 0, 0.7);
        padding: 30px;
        border-radius: 20px;
        color: rgb(255, 255, 255);
        text-align: center;
        width: auto;
        font-size: larger;
    }

    .hero-text {
        opacity: 1;
        transition: opacity 0.4s ease-out, transform 0.8s ease-out;
    }

    .hero-text.hidden {
        opacity: 0;
    }

    .footer-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-contact p {
  margin: 4px 0;
  color: #ccc;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--accent-color);
}

.footer-copy {
  margin-top: 10px;
  color: #999;
  font-size: 0.85rem;
}



    /* Hero Image Blur & Tint */
    .hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: blur(1px) brightness(80px);
    }


    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(255, 140, 0, 0.5), rgba(34, 139, 34, 0.5));
        mix-blend-mode: multiply;
    }


    .hero {
        background-color: transparent; /* Remove unnecessary color */
    }




    .hero-text.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Content Section (Prevents Overlapping) */
    .content {
        padding: 100px 20px;
        background: white;
    }

    /* Services Section */
    .services {
        display: flex;
        justify-content: space-around;
        padding: 50px 20px;
        background: white;
    }

    .service {
        text-align: center;
        max-width: 300px;
    }

    html, body {
        overflow-x: hidden;
    }
    .service h2 {
        font-size: 24px;
        font-weight: bold;
        color: #ff4500; /* Brighter Orange */
        text-shadow: 2px 2px 4px rgba(245, 177, 109, 0.33);
    }

    .service h3 {
        font-size: 1.5rem;
        margin: 10px 0;
    }

    /* Footer */
    footer {
        text-align: center;
        padding: 20px;
        background: #000000;
        color: white;
    }

    /* Responsive */
    @media (max-width: 768px) {

        .nav-links {
            display: none;
            position:fixed;
            top: 65px;
            left: auto;
            right:0;
            width: 80vw;
            max-width: 300px; /* Prevents menu from being too wide */
            background: #d7d7d7;
            text-align: center;
            flex-direction: column;
            padding: 15px 0;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transform: translateX(100%); /* Moves it off-screen */
            transition: transform 0.3s ease-in-out; /* Smooth animation */
        }
        /* 📌 Show dropdown menu when active */
        .nav-links.active {
            display: flex;
            transform: translateX(0); /* Slides in */
        }
            
        .nav-links ul {
            flex-direction: column;
            width: 100%;
            padding: 0;
            margin: 0;
        }
    
        .nav-links ul li {
            width: 100%;
            padding: 10px 0;
        }
    
        /* 📌 Improve menu text visibility */
        .nav-links ul li a {
            color: rgb(0, 0, 0); /* Darker text for contrast */
            font-size: 18px;
            padding: 12px;
            text-decoration: none;
            display: block;
            transition: background 0.3s ease, color 0.3s ease;
        }
    
        /* 📌 Hover effect for better visibility */
        .nav-links ul li a:hover {
            background: #59e134; /* Slightly darker orange */
        }
    
        /* 📌 Fix the menu toggle button */
        .menu-toggle {
            display: block;
            position: fixed;
            right: 20px;
            top: 15px;
            font-size: 24px;
            cursor: pointer;
            color: white;
            background: none;
            border: none;

        }
    
        /* 📌 Ensure sign-in button is also visible */
        .mobile-sign-in {
            text-align: center;
            margin-top: 10px;
            background-color: none;
        }
    
        .mobile-sign-in a {
            display: inline-block;
            padding: 10px 15px;
            color: white;
            font-weight: bold;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s ease;
            background-color: transparent; /* Remove black background */
        }
    
        .mobile-sign-in a:hover {
            background-color: rgba(255, 255, 255, 0.2); /* Light hover effect */


        }
    
        /* 📌 Hide desktop sign-in button on mobile */
        .sign-in {
            display: none;
        }
    
        /* 📌 Fix Hero Section on Mobile */
        .hero-text {
            width: 85%;
            font-size: 1rem;
            padding: 15px;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }
    
        /* 📌 Fix Services Section Layout */
        .services {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
    
        .service {
            max-width: 90%;
            margin-bottom: 20px;
        }
    
        /* 📌 Fix Service Images */
        .service img {
            width: 100%;
            height: auto;
            max-width: 300px;
            border-radius: 10px;
        }
    
        /* 📌 Fix Footer Padding */
        footer {
            padding: 15px;
            font-size: 0.9rem;
        }
    }


    


    /* Page Banner */
    .page-banner {
        background: rgba(0, 0, 0, 0.8);
        color: white;
        text-align: center;
        padding: 60px 20px;
        font-size: 2rem;
    }

    /* About Section */
    .about-content {
        padding: 40px 20px;
        text-align: center;
        font-size: 1.2rem;
        max-width: 800px;
        margin: auto;
    }

    /* Contact Form */
    .contact-form {
        padding: 40px 20px;
        max-width: 600px;
        margin: auto;
    }

    .contact-form form {
        display: flex;
        flex-direction: column;
    }

    .contact-form label {
        margin-top: 10px;
    }

    .contact-form input, .contact-form textarea {
        padding: 10px;
        margin-top: 5px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .contact-form button {
        margin-top: 20px;
        padding: 10px;
        background: #ff6600;
        color: white;
        border: none;
        cursor: pointer;
    }

    .contact-form button:hover {
        background: #cc5500;
    }

    .nav-links {
        flex: 2;
        text-align: center;
    }
    
    .nav-links ul {
        list-style: none;
        display: flex;
        justify-content: center;
        gap: 2rem;
    }
    
    .nav-links a {
        color: #000000;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s;
    }
    
    .nav-links a:hover {
        color: var(--accent-color);
    }
    
    .nav-links a.active {
        color: var(--accent-color);
    }
    :root {
        --accent-color: #fa8c14;
    }
    
    .service img {
        border-radius: 10px; /* Optional for rounded corners */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }


    /* Sign-in button */
.sign-in {
    margin-left: auto; /* Pushes sign-in to the right */
}

.sign-in-button {
    display: inline-block;
    padding: 8px 15px;
    background-color: #000000;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.sign-in-button:hover {
.sign-in {
    margin-left: auto; /* Pushes sign-in to the right */
}}

.sign-in-button {
    display: inline-block;
    padding: 8px 15px;
    background-color: #000000;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.sign-in-button:hover {
    background-color: #fa8c14;
}


@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
    .mobile-sign-in{
        display: none;
    }
}


        /* Modal Styles */
        .modal {
            display: none;  /* Ensure it's hidden by default */
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.3s ease, transform 0.3s ease;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
        }
        
        .modal.active {
            opacity: 1;
            transform: scale(1);
        }
        
        .modal-content {
            background: #fdf3eb;
            padding: 30px;
            border-radius: 10px;
            width: 60%;
            text-align: center;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center; /* Centers content */
            justify-content: space-between; /* Spreads content nicely */
        }
        
        .modal-content h2 {
            font-size: 26px;
            color: #ff4500;
            margin-bottom: 15px;
        }
        
        .modal-content h3 {
            font-size: 20px;
            color: #333;
            margin-top: 20px;
        }
        
        .modal-content p {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
            max-width: 90%;
        }
        
        .modal-content ul {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
        .modal-content ul li {
            font-size: 16px;
            padding: 8px 0;
            color: #444;
        }
        
        .modal-content .logo {
            width: 120px; /* Adjust size */
            height: auto;
            margin-top: 30px;
            position: relative; /* Remove absolute positioning */
            align-self: center; /* Centers within flexbox */
        }
        
        .close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 20px;
            cursor: pointer;
        }

        .service{
            border: 2px solid #f8f0e9c1; /* Outline */
            border-radius: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 13px rgba(20, 20, 20, 0.899);
            flex-direction: column;
            justify-content: space-between; /* Ensures spacing */
            height: 380px; /* Set a fixed height for uniformity */
            padding: 20px;
            text-align: center;
            position: relative;
            background: #f8f0e9c1;

        }
        .services {
            display: flex;
            justify-content: space-around;
            padding: 20px;
        }

        .service:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.899);

        }
        .service img {
            width: 250px; /* Set a fixed width */
            height: 150px; 
            position: absolute;
            bottom: 30px; /* Keeps images aligned at the bottom */
            left: 50%;
            transform: translateX(-50%);
        
        }   


        @media (max-width: 769px) {
            .modal-content {
                width: 95%; /* Make modals slightly wider on smaller screens */
                max-width: 350px;
                padding: 15px;
                max-height: 80vh; /* Limits modal height to fit the screen */
                overflow-y: auto; /* Allows scrolling inside the modal */
            }
        
            h2 {
                font-size: 1.3em;
            }
        
            h3 {
                font-size: 1.1em;
            }
        
            p, ul li {
                font-size: 0.95em;
            }
        
            .modal-content img {
                width: 70%;
                max-width: 150px;
            }
        }