/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
}

/* Header Styles */
header {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    animation: fadeInDown 1s ease-in-out;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    height: 50px;
    margin-right: 10px;
}

header .logo span {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

header .nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

header nav {
    display: flex;
}

header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    transition: background-color 0.3s ease;
}

header nav ul li a:hover {
    background-color: #555;
    border-radius: 5px;
}

/* Banner Styles */
.banner {
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
    overflow: hidden;
    /* Ensure video doesn't overflow */
}

.banner video {
    width: 100%;
    height: auto;
    max-height: 924px;
    /* Adjust if necessary */
    object-fit: cover;
    display: block;
    /* Ensure the video is displayed */
}

/* Hero Section Styles */
#hero {
    background-color: #444;
    color: white;
    padding: 50px 20px;
    text-align: center;
    animation: slideIn 1s ease-in-out;
}

#hero .hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-in-out;
}

#hero .hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1.5s ease-in-out;
}

#hero .hero-content button {
    background-color: #ff6f61;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    animation: fadeInUp 2s ease-in-out;
}

#hero .hero-content button:hover {
    background-color: #ff8c7a;
}

/* Famous Indian Websites Section Styles */
#famous-websites {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

#famous-websites h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
    animation: fadeInUp 1s ease-in-out;
}

.websites-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.website {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.website img {
    width: 80px;
    /* Adjust width as needed */
    height: auto;
    margin-right: 10px;
}

.website:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Services Section Styles */
#services {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

#services h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
    animation: fadeInUp 1s ease-in-out;
}

#services .services-container {
    display: flex;
    justify-content: center;
    gap: 40px;
}

#services .service {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1.5s ease-in-out;
}

#services .service h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #444;
}

#services .service p {
    font-size: 16px;
    color: #666;
}

#services .service:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* How to Order Section Styles */
#how-to-order {
    background-color: #f7f7f7;
    padding: 60px 20px;
    text-align: center;
}

#how-to-order h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
    animation: fadeInUp 1s ease-in-out;
}

#how-to-order .order-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

#how-to-order .step {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1.5s ease-in-out;
}

#how-to-order .step h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #444;
}

#how-to-order .step p {
    font-size: 16px;
    color: #666;
}

#how-to-order .step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* About Section Styles */
#about {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

#about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    animation: fadeInUp 1s ease-in-out;
}

#about p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    animation: fadeInUp 1.5s ease-in-out;
}

/* Contact Section Styles */
#contact {
    background-color: #444;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

#contact h2 {
    font-size: 36px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-in-out;
}

#contact p {
    font-size: 18px;
    margin-bottom: 20px;
    animation: fadeInUp 1.5s ease-in-out;
}

#contact a {
    color: #ff6f61;
    text-decoration: none;
    font-weight: bold;
    animation: fadeInUp 2s ease-in-out;
}

#contact button {
    background-color: #ff6f61;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    animation: fadeInUp 2.5s ease-in-out;
}

#contact button:hover {
    background-color: #ff8c7a;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    animation: fadeInUp 3s ease-in-out;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff6f61;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    display: none;
}

#backToTop:hover {
    background-color: #ff8c7a;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    position: relative;
    animation: fadeIn 0.5s ease-in-out;
}

.modal .close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.modal .close:hover {
    color: #333;
}

.modal form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.modal form input,
.modal form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.modal form button {
    background-color: #ff6f61;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.modal form button:hover {
    background-color: #ff8c7a;
}

/* Navigation Menu Toggle Button Styles */
.nav-toggle {
    display: none;
}

#navbar {
    display: flex;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    nav {
        display: none;
    }

    nav.active {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        /* Adjust if needed */
        left: 0;
        background-color: #333;
        padding: 10px;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    nav ul li {
        text-align: center;
    }

    nav ul li a {
        padding: 10px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}