html, body {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
}

/* HEADER */
header {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
}

/* RESPONSIVE VIDEO */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* SECTIONS */
section {
    padding: 50px 20px;
    text-align: center;
}

/* SERVICES */
.services {
    padding: 50px 20px;
    text-align: center;
}

.product-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product {
    width: 300px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product:hover {
    transform: translateY(-5px);
}

.product img {
    width: 100%;
    border-radius: 8px;
}

.product h3 {
    margin-top: 15px;
    font-size: 18px;
}

.description {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
    line-height: 1.5;
}

/* GALLERY AUTO SLIDER*/
.gallery-slider {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.gallery-slider img {
    min-width: 300px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

/* Make images clickable */
.slides img {
    cursor: pointer;
}

/* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

/* Modal Image */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    border-radius: 8px;
}

/* Close Button */
.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 35px;
    cursor: pointer;
}

/* ENQUIRY SECTION */
.enquiry {
    padding: 80px 20px;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
}

.enquiry-container {
    width: 100%;
    max-width: 800px;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.enquiry h2 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 28px;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border 0.3s ease;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-color: #2e7d32;
}

.enquiry-form textarea {
    min-height: 160px;
    resize: none;
}

.enquiry-form button {
    padding: 16px;
    background-color: #2e7d32;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.enquiry-form button:hover {
    background-color: #1b5e20;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .enquiry-form button {
        padding: 14px;
        font-size: 16px;
    }
}

/* CONTACT */
.contact {
    background: #f4f4f4;
    padding: 40px 20px;
}

.social-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: bold;
    margin: 0 5px;
}

/* FOOTER */
footer {
    background: #2c3e50;
    color: white;
    padding: 15px;
}

/* --------------------- */
/* MOBILE RESPONSIVENESS */
/* --------------------- */

@media (max-width: 768px) {

    header h1 {
        font-size: 22px;
    }

    .services .product-container {
        flex-direction: column;
        align-items: center;
    }

    .product {
        width: 90%;
    }

    .gallery img {
        width: 200px;
    }

    section {
        padding: 30px 15px;
    }

    .enquiry form {
        width: 100%;
    }

}

@media (max-width: 480px) {

    header {
        padding: 15px;
    }

    header h1 {
        font-size: 18px;
    }

    .gallery img {
        width: 160px;
    }

}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s ease;
}

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

/* Better Mobile Position */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Google Map */
.map-container {
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    border: 0;
}

/* Social Media Icons */
.social-icons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 10px;              /* space between icons */
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:nth-child(1) { background:#25D366; }
.social-icons a:nth-child(2) { background:#1877F2; }
.social-icons a:nth-child(3) { background:#E1306C; }
.social-icons a:nth-child(4) { background:#FF0000; }
.social-icons a:nth-child(5) { background:#2c3e50; }

.social-icons a:hover {
    transform: scale(1.1);
}

.video-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.video-box{
    flex: 1 1 300px;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 16 / 9;   /* Force same shape */
    overflow: hidden;
    border-radius: 10px;
    background: #000;
    cursor: pointer;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* Crop nicely */
}

@media (min-width: 992px) {
    .video-box {
        flex: 0 0 30%;
    }
}

.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

.video-modal video {
    width: 80%;
    max-width: 900px;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.pdf-section {
    text-align: center;
    padding: 40px 20px;
}

.pdf-box {
    display: inline-block;
    padding: 20px 30px;
    background: #f44336;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.pdf-box i {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

.pdf-box:hover {
    background: #d32f2f;
}

/* Modal */
.pdf-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

.pdf-content {
    width: 90%;
    max-width: 900px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.pdf-content iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.download-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}