/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

header {
    background-color: #000;
    color: #fff;
    padding: 1rem;
    text-align: center;
    position: relative;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
}
.title{
    width: 120px;
}


nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #01c4a7;
}

.hero {
    padding: 3rem 0;
}

.title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: fadeIn 1.2s ease;
}

.cta-button {
    background-color: #01c4a7;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #019f89;
}

section {
    padding: 2rem 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}


.slider {
    position: relative;
    max-width: 900px; /* Adjust width */
    margin: 0 auto; /* Center the slider */
    overflow: hidden;
    border-radius: 10px; /* Optional */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional */
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
    width: 200%; /* Adjust based on the number of slides */
}

.slide {
    width: 100%; /* Each slide takes full width */
    flex: 0 0 100%; /* Ensure each slide is the same width */
}

.slide img {
    width: 50%;
    height: 300px; /* Fixed height for the images */
    object-fit: cover; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional */
}

input[type="radio"] {
    display: none; /* Hide radio buttons */
}

.navigation {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.bar {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

#slide1:checked ~ .slides {
    transform: translateX(0);
}

#slide2:checked ~ .slides {
    transform: translateX(-100%);
}

#slide3:checked ~ .slides {
    transform: translateX(-200%);
}



input[type="radio"] {
    display: none; /* Hide radio buttons */
}

.navigation {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.bar {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

#slide1:checked ~ .slides {
    transform: translateX(0);
}

#slide2:checked ~ .slides {
    transform: translateX(-100%);
}

#slide3:checked ~ .slides {
    transform: translateX(-200%);
}


.section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 2rem;
    justify-content: center;
    padding: 1rem;
}

.product-item {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: scale(1.05); /* Slight scale up on hover */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.product-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover; /* Ensures image fits within its container */
    border-radius: 0; /* Optional: Remove rounded corners */
    transition: transform 0.3s ease; /* Smooth hover effect */
    background-color: transparent; /* Remove any background color */
}

/* Responsive for tablets */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

/* Responsive for mobile */
@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }

    nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 22px;
        justify-content: space-evenly;
        
    }
    .title{
        width: 120px;
    }
    
    
    nav ul li {
        margin: 0 15px;
    }
}


form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

form input, form textarea {
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

form button {
    padding: 0.8rem;
    background-color: #000;
    color: #fff;
    border: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #333;
}

footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

footer h2, footer p {
    margin: 0.5rem 0;
}
footer iframe {
    width: 100%;
    height: 300px; /* Adjust height as needed */
    border: 0;
    margin-top: 1rem;
}

footer p:last-of-type {
    font-size: 0.9rem;
    color: #ccc; /* You can change the color as needed */
    margin-top: 1rem;
}



@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }

    .cta-button {
        padding: 0.5rem 1rem;
    }


    .title>img{
        width: 50%;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Modern Form Styles */
.modern-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.modern-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.modern-form input,
.modern-form textarea {
    
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    box-shadow: none;
}

.modern-form input:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: #01c4a7;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modern-form label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    background-color: #fff;
    padding: 0 0.2rem;
    color: #888;
    font-size: 0.9rem;
    transition: 0.3s;
    pointer-events: none;
}

.modern-form input:focus + label,
.modern-form input:not(:placeholder-shown) + label,
.modern-form textarea:focus + label,
.modern-form textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 0.75rem;
    color: #01c4a7;
}

.modern-form textarea {
    min-height: 150px;
    resize: vertical;
}

.modern-form .submit-btn {
    background-color: #000;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
    text-align: center;
}

.modern-form .submit-btn:hover {
    background-color: #333;
}

/* Placeholder adjustments for floating labels */
input::placeholder,
textarea::placeholder {
    color: transparent;
}

input:focus::placeholder,
textarea:focus::placeholder {
    color: #ccc;
}

/* Responsive Design for Form */
@media (max-width: 768px) {
    .modern-form {
        padding: 1.5rem;
    }
}

/* Optional: Icons for inputs (requires external icon font library) */
.form-group input[type="text"]:before {
    content: "\f007"; /* FontAwesome user icon for example */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #dce4df; /* WhatsApp green color */
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s;
}

.whatsapp-icon img {
    width: 40px;
    height: 40px;
}

.whatsapp-icon:hover {
    background-color: #e1eeec; /* Darker green on hover */
}


#enquiry-form {
    max-width: 400px; /* Set a max width for the form */
    margin: 0 auto; /* Center the form */
    padding: 20px;
    background-color: #fff; /* Background color */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

h2 {
    text-align: center; /* Center the heading */
}

p {
    text-align: center; /* Center the paragraph */
}

.form-group {
    position: relative; /* Positioning for label */
    margin-bottom: 15px; /* Space between fields */
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%; /* Full width of the form */
    padding: 10px; /* Padding for input fields */
    border: 1px solid #ccc; /* Border color */
    border-radius: 5px; /* Rounded corners */
    box-sizing: border-box; /* Include padding in width */
    font-size: 14px; /* Font size */
}

textarea {
    resize: none; /* Prevent resizing of the textarea */
}

label {
    position: absolute; /* Position the label */
    top: 10px; /* Positioning for label */
    left: 10px; /* Positioning for label */
    font-size: 14px; /* Font size */
    color: #999; /* Label color */
    transition: 0.2s ease all; /* Animation for label */
}

input:focus + label,
textarea:focus + label,
input:not(:placeholder-shown) + label,
textarea:not(:placeholder-shown) + label {
    top: -10px; /* Move label up */
    left: 10px; /* Keep it aligned */
    font-size: 12px; /* Smaller font size */
    color: #4e82ab; /* Change label color on focus */
}

.submit-btn {
    background-color: #4e82ab; /* Button color */
    color: #fff; /* Text color */
    padding: 10px 15px; /* Padding for button */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor */
    width: 100%; /* Full width of the button */
    font-size: 16px; /* Font size */
}

.submit-btn:hover {
    background-color: #01c4a7; /* Change color on hover */
}






@media (max-width: 768px) {
    .navbar {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }

    .content {
        padding: 10px;
    }

    h1 {
        font-size: 15px;
    }

    button {
        width: 100%;
        margin: 10px 0;
    }
}
body, html {
    overflow-x: hidden;
}
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}




