body {
    margin: 0;
    padding: 0;
    font-family: "Marcellus", serif;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #6F9A37;
    color: white;
    position: relative;
 }

 .header .logo img {
    height: 50px;
}
        .logo {
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fcfcfc; /* Match with the overall theme */
 
    line-height: 1.1; /* Ensures the text is evenly spaced vertically */
   
    align-items: center; /* Vertically centers the text if there's only one line */
    padding-top: 5px; /* Optional: Adds extra top spacing for perfect balance */
    padding-bottom: 5px; /* Optional: Adds extra bottom spacing for perfect balance */
}

        /* Menu styling */
        .menu {
            display: flex;
            gap: 20px;
            list-style: none;
        }

        .menu li {
            position: relative;
        }

        .menu a {
            text-decoration: none;
            color: white;
            font-size: 18px;
            padding: 5px 10px;
            transition: background-color 0.3s ease;
        }

        .menu a:hover {
            background-color: #6F9A37;
            border-radius: 4px;
        }

        /* Submenu styling */
        .menu .submenu {
            display: none;
            list-style: none;
            background-color: #6f9a37;
            color: black;
            position: absolute;
            top: 100%;
            left: 0;
            padding: 10px;
            z-index: 1000;
            width: 200px;
        }

        .menu .submenu li {
            white-space: nowrap;
        }

        .menu .submenu a {
            color: white;
            padding: 5px 15px;
            display: block;
        }

        .menu .submenu a:hover {
            background-color: #6F9A37;
        }

        /* Show submenu on hover (desktop view) */
        .menu li:hover .submenu {
            display: block;
        }

        /* Hamburger menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger div {
            background-color: white;
            height: 3px;
            width: 25px;
            margin: 3px 0;
        }

        /* Mobile menu toggle */
        #menu-toggle {
            display: none;
        }

        @media (max-width: 768px) {
            .menu {
                display: none;
                flex-direction: column;
                background-color: #6F9A37;
                position: absolute;
                top: 100%;
                right: 0;
                width: 250px;
                padding: 20px 0;
                animation: slideIn 0.3s ease-in-out;
            }

            .menu li {
                margin: 10px 0;
                text-align: center;
            }

            .menu .submenu {
                display: none;
                position: relative;
                background-color: #8FBF4D;
                width: 100%;
                left: 0;
                top: 0;
            }

            /* Show menu when checked */
            #menu-toggle:checked + .hamburger + .menu {
                display: flex;
                z-index: 1000;
                margin-top: -1px;
            }

            .hamburger {
                display: flex;
            }

            /* Show submenu on click in mobile */
            .menu li.active .submenu {
                display: block;
            }
        }

        /* Animation */
        @keyframes slideIn {
            from {
                transform: translateX(100%);
            }
            to {
                transform: translateX(0);
            }
        }
.contact-section {
    background: url('con2.jpg') no-repeat center left/cover;
    height: 120vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.contact-form-container {
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 40%; /* Reduced width */
    max-width: 500px; /* Max width of form */
    text-align: left;
    margin-left: 500px; /* Default for desktop */
}

.contact-form-container h2 {
    font-size: 1.5rem; /* Smaller heading */
    margin-bottom: 15px;
    color: #333;
}

.contact-form input,
.contact-form select {
    padding: 10px;
    font-size: 1rem;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: "Marcellus", serif;
    margin-bottom: 10px;
    background-color: transparent;
}

.contact-form input:focus,
.contact-form select:focus {
    border-color: #6f9a378f;
    outline: none;
}

.contact-form button {
    background-color:  #fefffc;
    color: rgb(41, 37, 37);
    padding: 10px 15px; /* Reduced padding */
    border-color:  #6f9a37;
    margin-top: 10px;
    border-radius: 79px;
    font-size: 1rem;
cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.contact-form button:hover {
    background-color:  #6f9a37;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-container input {
    margin: -252px;
}

.checkbox-container label {
    font-size: 0.9rem;
    font-family: "Marcellus", serif;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .contact-form-container {
        width: 80%;
        padding: 15px;
        margin-left: 0; /* Remove margin-left on mobile */
    }

    .contact-form button {
        font-size: 0.9rem;
    }
}

/* FootFooter styling*/ .footer {
    /* background-image: url('footer.png'); */
    background-color: #79a232;
    /* Match the green color */
    color: #fff;
    padding: 5px 20px;
    overflow-x: hidden;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-left: 33px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    color: #fff;
}

.footer-column ul li a {
    text-decoration: none;
    color: #fff;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-column p {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-column form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-column input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    flex: 1;
}

.footer-column button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #c2a583;
    /* Match the beige color */
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.footer-column button:hover {
    background-color: #b39572;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    border-top: 1px solid #fff;
    padding-top: 10px;
}

.footer-bottom p {
    font-size: 12px;
    margin-bottom: 0px;
}

.social-icons {
    margin-top: 20px;
    /* display: inline-block; */
}

.social-icons a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #00aced;
    /* Change to desired hover color */
}

.social-icons img {
    width: 20px;
    height: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        margin-bottom: 10px;
        /* gap: 10px; */
    }

    .footer-column {
        min-width: 100%;
        margin-left: 0px;
        justify-items: center;
    }

}
a {
    text-decoration: none;
}
/* extraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa */
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Contact Form Container */
.contact-form-container {
    width: 100%;
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Form Heading */
.contact-form-container h2 {
    font-family: 'Marcellus', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

/* Input and Textarea Styles */
input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    /* font-family: 'Corinthia', sans-serif; */
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s ease;
}

/* Input Focus */
input:focus, textarea:focus {
    border-color: #007bff;
    outline: none;
}

/* Button Styles */
button {
    width: 100%;
    padding: 14px;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

/* Checkbox Container */
.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}



/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 20px;
        margin: 20px;
    }

    .contact-form-container h2 {
        font-size: 1.8rem;
    }

    input, textarea, button {
        font-size: 1rem;
        padding: 10px;
    }
    
    /* reCAPTCHA Mobile Optimization */
    .recaptcha-container {
        display: flex;
        justify-content: center;
        margin: 15px 0;
        overflow-x: auto;
    }
    
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
        margin-left: -15px;
    }
    
    /* .checkbox-container input {
    margin-right: 10px;
    } */
.checkbox-container input {
    margin: -144px;
   }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 15px;
    }

    .contact-form-container h2 {
        font-size: 1.6rem;
    }

    input, textarea, button {
        font-size: 0.95rem;
        padding: 8px;
    }
    
    /* reCAPTCHA Extra Small Mobile Optimization */
    .recaptcha-container {
        display: flex;
        justify-content: center;
        margin: 10px 0;
        overflow-x: auto;
    }
    
    .g-recaptcha {
        transform: scale(0.75);
        transform-origin: 0 0;
        margin-left: -25px;
    }
}

/* Compact reCAPTCHA styling - minimal space occupation */
.recaptcha-container {
    display: flex;
    justify-content: left;
    align-items: center;
    margin: 10px 0;
    padding: 0;
    line-height: 1;
}

.recaptcha-container .g-recaptcha {
    transform: scale(0.9);
    transform-origin: left center;
    margin: 0;
}

/* Responsive reCAPTCHA for smaller screens */
@media (max-width: 768px) {
    .recaptcha-container {
        justify-content: center;
    }
    
    .recaptcha-container .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
}

@media (max-width: 480px) {
    .recaptcha-container .g-recaptcha {
        transform: scale(0.8);
    }
}

@media (max-width: 320px) {
    .recaptcha-container .g-recaptcha {
        transform: scale(0.75);
        transform-origin: left center;
    }
}

/* General reCAPTCHA Container Styling */
/* .recaptcha-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
    padding: 10px 0;
} */

/* Ensure reCAPTCHA doesn't overflow on very small screens */
/* @media (max-width: 320px) {
    .g-recaptcha {
        transform: scale(0.65);
        transform-origin: 0 0;
        margin-left: -35px;
    }
} */

/* reCAPTCHA compact styling for better integration */
/* .recaptcha-container {
    display: flex;
    justify-content: left;
    margin: 8px 0;
    padding: 7px;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.recaptcha-container .g-recaptcha {
    transform: scale(0.9);
    transform-origin: center;
} */

/* Responsive reCAPTCHA for mobile */
/* @media (max-width: 280px) {
    .recaptcha-container .g-recaptcha {
        transform: scale(0.8);
    }
} */

/* ======================= Scroll to Top Button Styling ======================= */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: none;
    background-color: #1beb08;
    color: white;
    border: none;
    border-radius: 45%;
    width: 45px;
    height: 45px;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    outline: none;
    opacity: 0.9;
}

.scroll-to-top:hover {
    background-color: #3af700;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.scroll-to-top:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Mobile responsiveness for scroll-to-top button */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 75px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

.footer-column button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #c2a583;
    /* Match the beige color */
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 94px;
}

/* Sticky WhatsApp Icon Styling */
.whatsapp-icon {
  position: fixed;
  bottom: 80px; /* Increased distance from bottom for better spacing */
  right: 20px; /* Distance from right */
  z-index: 1000;
  border-radius: 50%; 
  padding: 0px;
  transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

.whatsapp-icon img {
  width: 60px; /* Default size for the logo */
  height: 60px;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .whatsapp-icon {
    bottom: 150px; /* Increased spacing for smaller screens */
    right: 15px;
    padding: 6px; /* Adjust padding */
  }

  .whatsapp-icon img {
    width: 55px; /* Smaller logo for mobile */
    height: 55px;
  }
}

@media (max-width: 480px) {
  .whatsapp-icon {
    bottom: 60px; /* Increased spacing for very small screens */
    right: 10px;
    padding: 2px;
  }

  .whatsapp-icon img {
    width: 40px; /* Adjust logo size */
    height: 40px;
  }
}

/* ======================= hover effect of redirecting to Xlmanagment services from copyrights=========== */

        .xl-credit {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            /* No underline */
            color: #f2f2f2;
            /* Default color */
            font-size: 12px;
            font-family: 'Marcellus', serif;
            transition: color 0.3s ease;
        }
    
        .xl-credit:hover {
            color: #385210;
            /* Hover color (adjust to match your design) */
        }
    
        .xl-logo {
            height: 22px;
            /* ✅ Fixes giant size */
            width: auto;
            max-width: 100%;
            /* Prevents overflow */
            object-fit: contain;
            display: inline-block;
        }

/* Phone link behavior - disable on desktop, enable on mobile */
@media (min-width: 768px) {
    .phone-link {
        pointer-events: none;
        cursor: default;
    }
}

@media (max-width: 767px) {
    .phone-link {
        pointer-events: auto;
        cursor: pointer;
    }
}