/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5; /* Adjust opacity to make content more readable */
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header Section */
header {
    color: #333;
    text-align: center;
    padding: 60px 10px;
}

header .logo {
    width: 150px;
    margin-bottom: 20px;
}

header .branding h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

header .branding p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

header .whatsapp-btn {
    background-color: #25d366;
    color: white;
    padding: 14px 25px;
    border-radius: 30px;
    font-size: 1.1em;
    text-decoration: none;
    transition: 0.3s ease;
}

header .whatsapp-btn:hover {
    background-color: #128C7E;
}

/* Content Section */
.content {
    padding: 50px 10%;
    text-align: center;
    background-color: white;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

a {
  text-decoration: none; /* Remove underline from the entire anchor */
}

a h4 {
  text-decoration: none; /* Ensure no underline on h4 specifically */
  color: darkslategray; /* Set text color to black */
}


.content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.content h3 {
    font-size: 1.8em;
    margin-top: 20px;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-card h4 {
    margin-top: 10px;
    font-size: 1.4em;
}

/* Registration Form */
.registration-form {
    background-color: white;
    padding: 40px;
    max-width: 600px;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.registration-form h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.label-container {
            display: flex;
            align-items: center;
    }

 .label-container img {
            width: 150px; /* Adjust the image size here */
            height: auto;
            margin-left: 10px; /* Space between label and image */
        }

.input-container {
            display: flex;
            align-items: center;
        }

        .input-container input {
            flex: 1;
        }

        .input-container img {
            width: 100px; /* Small preview image */
            height: auto;
            margin-left: 10px;
            display: none; /* Hidden by default */
        }


.form-group label {
    font-size: 1.1em;
    margin-bottom: 8px;
    display: block;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1.1em;
    margin-top: 8px;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #4CAF50;
    outline: none;
}

button.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.3em;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.submit-btn:hover {
    background-color: #45a049;
}

/* Footer Section */
footer {
    background-color: #333;
    color: white;
    padding: 20px 10px;
    text-align: center;
}

footer p {
    font-size: 1.1em;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .content {
        padding: 20px 10%;
    }

    .product-cards {
        grid-template-columns: 1fr 1fr;
    }

    .registration-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 20px;
    }

    .product-cards {
        grid-template-columns: 1fr;
    }

    header .branding h1 {
        font-size: 2.2em;
    }

    header .branding p {
        font-size: 1em;
    }

    header .whatsapp-btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    button.submit-btn {
        font-size: 1.1em;
    }
}

.form-group.row {
    display: flex;
    justify-content: space-between;
}

.form-group .col-sm-6 {
    flex: 0 0 48%; /* Ensures they are side by side */
}

.form-group label {
    font-weight: bold;
}

.error {
    color: red;
    font-size: 0.875em;
    margin-top: 5px;
}
   .error-message {
            color: red;
            font-size: 0.875em;
            margin-top: 5px;
        }

