/* Add hover effect on cards */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05); /* Slightly enlarge the card */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1); /* Add shadow on hover */
}


/* Optional: Add smooth hover effect on buttons */
.product-card .btn {
    transition: background-color 0.3s ease;
    background-color: #339e38;
}

.product-card .btn:hover {
    background-color: orange; /* Change button color on hover */
}

/* Responsive design for small screen sizes */
@media (max-width: 992px) {
    .col-md-4 {
        flex: 0 0 50%; /* Two columns on medium screens */
    }
}

@media (max-width: 576px) {
    .col-md-3, .col-sm-6 {
        flex: 0 0 100%; /* One column on small screens */
    }
}
.form-control:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

.btn-primary:hover {
    background-color: #45a049;
    border-color: #45a049;
}/* Loader CSS removed */


html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: #d3e0ec;
    font-family: Arial, sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s, color 0.3s;
}

header {
    background-color: rgb(106, 26, 163);
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
}

nav {
    margin-top: 10px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.2em;
}

nav a:hover {
    text-decoration: underline;
    color: red;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 70%;
    border: 2px solid white;
}

.dropdown {
    text-align: center;
    margin: none;
}

.cover {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.cover-content {
    position: relative;
    z-index: 2;
    color: white;
}

.cover-content form {
    margin-top: none;
    background-color: rgba(255, 255, 255, 0.582);
    border-radius: 40px;
    display: inline-flex;
    overflow: hidden;
    width: 300px;
}

.cover-content input[type="text"] {
    padding: 5px;
    font-size: 1.2em;
    width: 300px;
    border: none;
    flex: 1;
    outline: none;
}

.cover-content h2 {
    font-size: 3em;
    margin: 0;
}

.cover-content button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1.1em;
    cursor: pointer;
    margin: 10px;
}

.cover-content button:hover {
    background-color: #45a049;
}

#products {
    padding: 30px 10%;
}

footer {
    background-color: #2b2b2b;
    color: white;
    padding: 50px 10%;
    text-align: center;
    position: relative;
    margin-top: 30px;
    font-family: Arial, sans-serif;
    border-top: 2px solid #f44336;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    flex: 1;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.footer-logo h3 {
    font-size: 1.5em;
    font-family: 'Georgia', serif;
    margin: 0;
}

.footer-links {
    flex: 2;
    text-align: left;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 10px 0;
}

.footer-links a {
    color: #f44336;
    text-decoration: none;
    font-size: 1.1em;
}

.footer-links a:hover {
    color: #f1f1f1;
    text-decoration: underline;
}

.footer-social {
    flex: 1;
    text-align: right;
}

.social-icon {
    font-size: 2em;
    color: #f44336;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ffffff;
}

.footer-text {
    margin-top: 20px;
    font-size: 0.9em;
    color: #bbb;
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: #121212;
    color: rgb(187, 173, 173);
}

header.dark-mode {
    background-color: #1f1f1f;
    color: white;
}

footer.dark-mode {
    background-color: #333;
    color: white;
}

/* Dark Mode Toggle Icon */
#theme-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s;
}

#theme-toggle:hover {
    background-color: rgba(0, 0, 0, 0.2);
}


/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1b1d1b;
    color: white;
    border: none;
    border-radius: 7%;
    font-size: 10px;
    padding: 15px;
    cursor: pointer;
    display: none;
    z-index: 1000;
}

#back-to-top:hover {
    background-color: #4f574f;
}

/* Registration Form Styles */
.registration-form {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.registration-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.registration-form .form-group {
    margin-bottom: 15px;
}

.registration-form label {
    font-weight: bold;
    color: #333;
}

.registration-form .form-control {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
}

.registration-form .form-control:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

.registration-form .btn-primary {
    width: 100%;
    padding: 10px;
    font-size: 1.2em;
    border-radius: 5px;
    background-color: #339e38;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.registration-form .btn-primary:hover {
    background-color: orange;
}

/* Make sure buttons and links inside the form don’t inherit global styles */
.registration-form a {
    color: #339e38;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 10px;
}

.registration-form a:hover {
    color: orange;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 576px) {
    .registration-form {
        max-width: 90%;
        padding: 15px;
    }
}
/* Input fields styling */
.input-group {
    border-radius: 8px;
    overflow: hidden;
}

.input-group-text {
    background: #f8f9fa;
    border-right: none;
    color: #6c757d;
    padding: 10px 15px;
}

.form-control {
    border-left: none;
    padding: 12px;
    height: 45px;
    font-size: 1rem;
    background: #f8f9fa;
}

.form-control:focus {
    box-shadow: none;
    border-color: #007bff;
}

/* Card animations */
.animate-card {
    animation: fadeInUp 0.5s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button styling */
.btn-primary {
    background: #007bff;
    border: none;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}













