:root {
    --green: #2f7a3e;
    --light-green: #e6f5ea;
    --dark: #1c1c1c;
    --border: #cce5d2;
    --shadow: rgba(0, 0, 0, 0.1);
    --btn-hover: #256634;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Hind Siliguri', sans-serif;
    background: linear-gradient(to right, #e0f7fa, #e8f5e9);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.logo {
    width: 150px;
    position: absolute;
    left: 100px;
    top: 0px;
    display: none;
}

.logo img {
    width: 100%;
    color: white;
    display: none;
}

.hero {
    position: relative;
    background: linear-gradient(rgba(47, 122, 62, 0.75), rgba(47, 122, 62, 0.75)), url('images/Banner2.png') center/cover no-repeat;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #f0f9f4;
    padding: 0 15px;
    box-shadow: 0 4px 15px var(--shadow);
    border-radius: 5px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    margin: 0;
}

.user-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #2f7a3e;
    background: #e0f4eb;
    font-size: 24px;
    text-decoration: none;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.user-icon:hover {
    background: #c1ebd8;
}

.container {
    max-width: 1280px;
    margin: 40px auto 80px;
    padding: 30px 35px;
    border-radius: 20px;
    border: 3px solid var(--green);
    background: linear-gradient(to bottom right, #e0f7fa, #e8f5e9);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-card {
    border-bottom: 3px solid var(--green);
}

.product-card h2 {
    color: var(--green);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.product-card p {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #333;
}

video {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--green);
}

.form-title {
    margin-top: 40px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
    border-bottom: 3px solid var(--green);
    padding-bottom: 10px;
    margin-bottom: 25px;
}

form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
}

form input[type="text"],
form input[type="number"],
form select,
form textarea {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 1rem;
    padding: 15px 18px;
    border-radius: 12px;
    border: 2px solid var(--border);
    transition: 0.3s;
    width: 100%;
    resize: none;
    color: var(--dark);
}

form textarea {
    grid-column: span 2;
    min-height: 100px;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 8px rgba(47, 122, 62, 0.3);
}

.inline-fields {
    grid-column: span 2;
    display: flex;
    gap: 20px;
    align-items: center;
}

.inline-fields input,
.inline-fields select {
    flex: 1;
    min-width: 0;
}

#total_price {
    grid-column: span 2;
    font-weight: 700;
    color: var(--green);
    font-size: 1.25rem;
    margin: 10px 0;
    display: none;
}

button {
    grid-column: span 2;
    background: var(--green);
    color: white;
    border: none;
    padding: 18px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 5px 12px rgba(47, 122, 62, 0.4);
}

button:hover {
    background: var(--btn-hover);
    box-shadow: 0 8px 20px rgba(37, 102, 52, 0.7);
}

.success {
    grid-column: span 2;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;


}

a {
    grid-column: span 2;
    text-align: center;
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 15px;
    display: inline-block;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--btn-hover);
    text-decoration: underline;
}

/* Angur video section */
.video-section {
    max-width: 1200px;
    margin: 50px auto 10px;
    padding: 0 15px;
    font-family: 'Hind Siliguri', sans-serif;
}

.video-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: -25px;
    letter-spacing: 1px;
}

.video-gallery {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.video-card {
    max-width: 900px;
    margin: 40px auto;
    border-radius: 12px;
    text-align: center;
    background: linear-gradient(to bottom right, #e0f7fa, #e8f5e9);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.video-card video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    outline: none;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(47, 122, 62, 0.3);
}

.video-info {
    padding: 15px 20px 25px;
    text-align: left;
}

.video-info h3 {
    margin: 0 0 8px;
    font-size: 1.3rem;
    color: var(--green);
    font-weight: 700;
}

.video-info p {
    margin: 0;
    font-size: 1rem;
    color: #444;
    line-height: 1.4;
}

/* Gallery section */
h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2e7d32;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery img {
    width: 100%;
    height: 320px;
    border-radius: 10px;
    transition: 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

/* WhatsApp button */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 12px 16px;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-link img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.whatsapp-text {
    white-space: nowrap;
    font-weight: 500;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.whatsapp-link:hover {
    background-color: #1ebe5b;
    transform: scale(1.05);
}

.whatsapp-link:hover img {
    transform: rotate(10deg);
}

/* Responsive styles */
@media only screen and (max-width: 768px) {
    .whatsapp-link {
        padding: 10px;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        justify-content: center;
    }

    .whatsapp-link img {
        margin-right: 0;
    }

    .whatsapp-text {
        display: none;
    }

    .logo {
        width: 130px;
        position: absolute;
        left: 0;
        margin-top: -40px;
    }

    .user-icon {
        top: 0px;
    }

    .video-gallery {
        margin-left: -17px;
    }

    .inline-fields {
        display: block;
    }

    .gallery.angur_image {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        max-width: 1000px;
        margin: 30px auto;
    }

    .gallery.angur_image img {
        width: 150px;
        height: 150px;
        object-fit: cover;
    }
}

@media (max-width: 720px) {
    form {
        grid-template-columns: 1fr;
        display: block;
        width: 100% !important;
        margin-bottom: 10px;
    }

    form input {
        margin-bottom: 10px;
    }

    .order_btn {
        margin-top: 15px;
        text-align: center;
        width: 100%;
    }

    .hero {
        height: 250px;
    }

    .hero h1 {
        font-size: 2rem;
        text-align: center;
        padding: 0 10px;
    }

    .container {
        padding: 20px;
    }



    .image_upper_text {
        box-shadow: 0px 0px 5px;
    }

    .image_upper_text h2 {
        font-size: 18px;
    }

    .order_text_button h2 {
        font-size: 20px;
    }

    .Headlines h1 {
        font-size: 18px;
    }
}

.Headlines {
    display: block;
}

/* Video responsive for mobile */
@media (max-width: 768px) {
    .video-card iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .video-info h3 {
        font-size: 16px;
        padding: 0 10px;
    }
}

/* Index page end */