        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000; /* Ensure the header stays above content */
            background-color: #fff; /* Adjust the header background if needed */
        }

        body {
            font-family: Arial, sans-serif;
            margin-top: 62px; /* Add space for the fixed header */
        }

        .container {
            display: flex;
            height: calc(100vh - 62px);
            width: 100%;
        }

        .left-side {
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
        }

        .left-side h1 {
            font-size: 48px;
            font-weight: bold;
        }

        .left-side p {
            font-size: 20px;
            margin: 10px 0 20px;
            color: gray;
        }

        .order-btn {
            background-color: orange;
            color: white;
            padding: 15px 30px;
            border: none;
            font-size: 18px;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
            text-decoration: none;
        }

        .order-btn:hover {
            background-color: #e67e00;
        }

        .right-side {
            width: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .right-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .highlight {
            color: orange;
        }

        /* Contact Section */
        .contact-section {
            background-color: #fff;
            padding: 50px 20px;
            width: 100%;
            max-width: 1200px;
            margin: 40px auto;
            display: flex;
            flex-direction: column;
            text-align: center;
        }

        /* Main Title */
        .contact-section h2 {
            font-size: 32px;
            font-weight: bold;
            color: #333;
            margin-bottom: 30px;
        }

        .contact-section p {
    font-size: 18px;
    color: gray;
    margin-bottom: 40px;
}

        /* Contact Container */
        .contact-container {
            display: flex;
            justify-content: space-between;
            align-items: stretch; /* Ensure both columns stretch to equal height */
            gap: 30px;
        }

        /* Left Side - Forms */
        .contact-forms {
            width: 60%;
            height: 80%;
            background: #f9f9f9;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
            text-align: left;
            min-height: 400px; /* Ensure both sides have at least 400px height */
        }

        /* Subheadings */
        .contact-forms h3,
        .contact-info h3 {
            font-size: 24px;
            font-weight: bold;
            color: #222;
            margin-bottom: 15px;
        }

        /* Form Styling */
.contact-forms form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
    height: 90%; /* Ensures the form fills the container height */
}

/* Keep inputs and button styles unchanged */
.contact-forms input,
.contact-forms textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-forms textarea {
    resize: vertical;
    flex-grow: 1;
    /* Remove fixed height so that flex-grow takes effect */
    height: auto;
}


.contact-forms button {
    background-color: orange;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-forms button:hover {
    background-color: #e67e00;
}

        .contact-info {
            width: 100%;
            height: 70%;
            background: #f9f9f9;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
            text-align: left;
            min-height: 400px; /* Ensure both sides have at least 400px height */
        }
        /* Right Side - Address & Map */
        .contact-info p {
            font-size: 16px;
            color: #555;
            margin-bottom: 10px;
        }

        .contact-info iframe {
            width: 100%; /* Ensures it fills the width of the container */
            height: 250px; /* Increase the height to make the iframe larger */
            border-radius: 5px;
            border: none;
        }

        /* Full-width Story Section */
        .our-story {
            text-align: center;
            padding: 50px 20px;
            background-color: #f9f9f9;
            width: 100%;
        }

        .our-story h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .our-story p {
            font-size: 18px;
            color: gray;
            margin-bottom: 40px;
        }

        .story-columns {
            display: flex;
            justify-content: center;
            gap: 20px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .story-column {
            flex: 1;
            background: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .story-column img {
            width: 80px;
            height: 80px;
            margin-bottom: 15px;
        }

        .story-column h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }
        .story-column a {
            color: orange;
            text-decoration: none; /* Optional: removes underline */
            font-weight: bold; /* Optional: makes it stand out more */
        }

        .story-column a:hover {
            color: #e67e00; /* Darker orange on hover */
        }

        .story-column p {
            margin: 5px 0; /* Reduce spacing between elements */
            font-size: 16px;
        }

    .hidden {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .visible {
        opacity: 1;
        transform: translateY(0);
    }
    @keyframes spin {
        0% { transform: translate(-50%, -50%) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg); }
    }
    .loading-container {
        position: relative;
        height: auto;
    }

@media (max-width: 900px) {
    .container {
        flex-direction: column;
        height: auto;
    }

    .left-side,
    .right-side {
        width: 100%;
        padding: 30px 20px;
        text-align: center;
    }

    .contact-container {
        flex-direction: column;
        gap: 20px;
    }

    .contact-forms,
    .contact-info {
        width: 100%;
    }

    .contact-forms form {
        padding: 15px;
    }

    .our-story {
        padding: 40px 15px;
    }

    .story-columns {
        flex-direction: column;
        gap: 20px;
    }
}
