.body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Header with logo, call button, and about button */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px; /* Adjusted padding */
    background: linear-gradient(35deg, #003d33, #004d40, #005d50, #006d60);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    height: 30px; /* Reduced height */
}

.header .logo {
    display: flex;
    align-items: center;
    margin-right: auto; /* Pushes logo to the left */
}

.header .logo img {
    height: 25px; /* Adjusted height */
    object-fit: contain; /* Maintain aspect ratio */
}

.header .buttons {
    display: flex;
    align-items: center;
}

.header .buttons a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-left: 10px; /* Adjusted margin */
    padding: 6px 12px; /* Adjusted padding */
    border-radius: 20px;
    background-color: transparent;
    transition: background-color 0.3s;
}

.header .buttons a:hover {
    background-color: #003d80;
}

.header .buttons i {
    margin-right: 5px; /* Adjusted margin */
    font-size: 16px; /* Adjusted icon size */
    color: white; /* Call icon color */
}

.header .phone-number {
    margin-left: 5px; /* Adjusted margin */
    font-size: 14px; /* Adjusted font size */
}






/* Slider */
.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-color: #f4f4f4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 20px;
}

.slides {
    display: flex;
    transition: transform 1s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Desktop Slider */
.desktop-slider {
    display: none;
    height: 600px; /* Increased height for desktop slider */
}

.desktop-slider .arrow {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 30px;
    line-height: 50px;
    text-align: center;
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 1000;
}

.desktop-slider .arrow.left {
    left: 15px;
}

.desktop-slider .arrow.right {
    right: 15px;
}

.desktop-slider .arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Mobile Slider */
.mobile-slider {
    display: none;
    height: 400px; /* Set to previous mobile height */
}

.mobile-slider .arrow {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 1000;
}

.mobile-slider .arrow.left {
    left: 10px;
}

.mobile-slider .arrow.right {
    right: 10px;
}

.mobile-slider .arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

@media (min-width: 769px) {
    .mobile-slider {
        display: none; /* Hide mobile slider on desktop */
    }
    .desktop-slider {
        display: block; /* Show desktop slider on larger screens */
    }
}

@media (max-width: 768px) {
    .desktop-slider {
        display: none; /* Hide desktop slider on mobile */
    }
    .mobile-slider {
        display: block; /* Show mobile slider on smaller screens */
    }
}

/* Content */
.content {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.content h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #003d33, #004d40, #005d50, #006d60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content p {
    font-size: 1.1em;
    line-height: 1.6;
}

.video-wrapper {
    margin: 20px 0;
    text-align: center;
}

.video-wrapper iframe {
    width: 80%;
    height: 450px;
    border: 0;
}

@media (max-width: 768px) {
    .video-wrapper iframe {
        width: 100%;
        height: 250px;
    }
}

/* Testimonials */
.testimonials {
    background-color: #eaeaea;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.testimonials h2 {
    margin-top: 0;
    font-size: 2em;
    background: linear-gradient(45deg, #003d33, #004d40, #005d50, #006d60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-item {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent; /* Initial border color */
    transition: background-color 0.3s, border-color 0.3s; /* Smooth transitions */
}

.testimonial-item:hover {
    background-color: #f0f0f0; /* Light gray background on hover */
    border-color: #004d40; /* Dark green border color on hover */
}

.testimonial-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-item p {
    font-style: italic;
    margin: 0;
    flex: 1;
}

.testimonial-item h3 {
    margin: 5px 0 0 0;
    font-size: 1.1em;
    background: linear-gradient(45deg, #003d33, #004d40, #005d50, #006d60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background 0.3s;
}



/* Footer Fixed Styling */
.footer-fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px; /* Fixed height for footer */
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    z-index: 1000; /* Ensures it stays on top */
    display: flex;
    align-items: center; /* Center items vertically */
    background: linear-gradient(to right, #003d33 30%, #004d40 30%); /* Gradient background */
    overflow: hidden; /* Prevents content overflow affecting height */
    box-sizing: border-box; /* Ensures padding/margin does not affect height */
}

.footer-fixed .icon {
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 100%; /* Ensure the button takes up full width of the footer */
    color: white; /* Default color */
    height: 100%; /* Ensure it takes up the full height of the footer */
    box-sizing: border-box; /* Ensures padding/margin does not affect height */
    border: none; /* Remove default border */
    background: inherit; /* Inherit the gradient background */
}

.footer-fixed .icon i {
    font-size: 30px; /* Increase icon size */
    flex: 0 0 30%; /* Icon takes 30% of the width */
    text-align: center; /* Center the icon horizontally within its space */
    color: #ffcc00; /* Set icon color */
}

.footer-fixed .icon span {
    font-size: 24px; /* Increase text size */
    flex: 0 0 70%; /* Text takes 70% of the width */
    text-align: center; /* Center the text horizontally within its space */
    color: #ffffff; /* Set text color */
    background: #004d40; /* Background color for text section */
}

/* Popup Overlay Styling */
.popup-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 999; /* Ensure it’s above other content */
    justify-content: center;
    align-items: center;
}

.form-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.form-section h2 {
    margin-top: 0;
    font-size: 2em;
    color: #333;
}

.form-section input {
    width: calc(100% - 22px);
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    box-sizing: border-box;
}

.form-section input[type="submit"] {
    background: linear-gradient(45deg, #003d33, #004d40, #005d50, #006d60);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    padding: 12px;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.form-section input[type="submit"]:hover {
    background: linear-gradient(45deg, #003d33, #004d40, #005d50, #006d60);
    transform: scale(1.05);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff0000;
    color: white;
    border: none;
    width: 40px; /* Fixed width */
    height: 40px; /* Fixed height */
    border-radius: 8px; /* Square shape with rounded corners */
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}








/* Gallery */
.gallery-wrap {
    background: linear-gradient(45deg, #003d33, #004d40, #005d50, #006d60);
    padding: 20px;
    color: white;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5em;
    text-align: center;
    margin: 0;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px; /* Adjust as needed */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery {
        flex-direction: column;
        align-items: center;
    }

    .footer-fixed .icon i {
        font-size: 25px; /* Adjust icon size for mobile */
    }

    .footer-fixed .icon span {
        font-size: 20px; /* Adjust text size for mobile */
    }
}

/* Form Section */
.form-section {
    margin: 20px 0;
    padding: 20px;
    background-color: #fff; /* White background for form section */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.form-section h2 {
    margin-top: 0;
    font-size: 2em;
    color: #333;
    background: linear-gradient(45deg, #003d33, #004d40, #005d50, #006d60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-section input {
    width: calc(100% - 22px);
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 6px; /* Slightly rounded corners */
    font-size: 1em;
    box-sizing: border-box;
}

.form-section input[type="submit"] {
    background: linear-gradient(45deg, #003d33, #004d40, #005d50, #006d60);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    padding: 12px;
    border-radius: 6px; /* Slightly rounded corners */
    transition: background-color 0.3s, transform 0.2s;
}

.form-section input[type="submit"]:hover {
    background: linear-gradient(45deg, #003d33, #004d40, #005d50, #006d60); /* Inverse gradient on hover */
    transform: scale(1.05); /* Slight zoom effect */
}

/* footer code start with popup */
        @keyframes vibrate {
            0% {
                transform: translateX(0);
            }
            20% {
                transform: translateX(-2px);
            }
            40% {
                transform: translateX(2px);
            }
            60% {
                transform: translateX(-2px);
            }
            80% {
                transform: translateX(2px);
            }
            100% {
                transform: translateX(0);
            }
        }

        /* Vibrate Effect Class */
        .vibrate {
            animation: vibrate 0.5s infinite;
        }

/* FAQ Section */
.faq-section {
    background-color: white; /* Fixed property name */
    padding: 40px 20px;
    color: black; /* Updated to match text color visibility */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin: 40px auto;
}


.faq-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #003d33, #004d40, #005d50, #006d60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-container {
    margin-top: 20px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
}

.faq-question {
    background: #004d40;
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    outline: none;
    transition: background-color 0.3s;
    position: relative; /* For positioning the arrow */
}

.faq-question:hover {
    background: #005d50;
}

.faq-answer {
    display: none;
    padding: 15px;
    background-color: #003d33;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0 0 8px 8px;
}

.faq-answer p {
    margin: 0;
    color: white;
}

.faq-question .arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: white; /* Arrow color */
    transition: transform 0.3s ease;
}

.faq-item.open .arrow {
    transform: translateY(-50%) rotate(180deg); /* Rotate the arrow when open */
}

.extra-faqs {
    display: none; /* Hide the second set of FAQ items by default */
}

.view-more-btn {
    display: block;
    width: auto; /* Set width to auto for centering */
    background: #004d50; /* WhatsApp green color */
    color: white;
    padding: 10px 20px; /* Add some horizontal padding for better appearance */
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin: 20px auto; /* Center the button */
    transition: background-color 0.3s;
}

.view-more-btn:hover {
    background: #128C7E; /* Darker shade of WhatsApp green for hover */
}




 .highlight {
            color: #004d40;
            font-weight: bold;
        }
        
        
         h2 {
            color: #003d33; /* Set the color */
        }
        
        
        
        
        
        
.footer {
    background-color: #128C7E;
    color: #fff;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    margin-right: 20px;
    margin-bottom: 20px;
}

.footer-section h3 {
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.footer-section p, .footer-section ul {
    font-size: 0.9em;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ff5722;
}

.social-media {
    display: flex;
}

.social-icon {
    margin-right: 10px;
    color: #fff;
    font-size: 1.5em;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #ff5722;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-right: 10px;
}

.newsletter-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #ff5722;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #e64a19;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #444;
    margin-top: 20px;
}
.logos {
    height: 80px !important; /* Check for any height rules like this */
    width : 120px !important;
}
 .whatsapp-button {
            position: fixed;
            bottom: 60px;
            right: 20px;
            z-index: 1000;
            cursor: pointer;
        }

        .whatsapp-button img {
            width: 53px;
            height: 53px;
        }
        
        .blinking-text {
    animation: blink 1s infinite; /* Blink animation for 1 second infinitely */
}

@keyframes blink {
    0% { opacity: 1; } /* Start with fully visible */
    50% { opacity: 0; } /* Fade out to invisible */
    100% { opacity: 1; } /* Fade in to fully visible */
}
