      
        .footer-section {
            margin-bottom: 10px;
        }
        .footer-section p {
            margin: 5px 0;
        }
        .footer-section i {
            margin-right: 8px;
            color: #007bff;
        }
        
         
    .company-history {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    position: relative; /* For pseudo-element positioning */
    overflow: hidden; /* To contain the pseudo-element */
}

.company-history::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.1); /* Light blue overlay */
    border-radius: 10px;
    z-index: 0; /* Behind the content */
    transition: opacity 0.5s;
}

.company-history:hover::before {
    opacity: 0.5; /* Fade effect on hover */
}

.company-history h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #007bff; /* Accent color */
    margin-bottom: 20px;
    position: relative; /* For text shadow */
    z-index: 1; /* Bring text above pseudo-element */
}

.company-history p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 10px 0;
    text-align: center;
    color: #333; /* Dark text for readability */
    position: relative; /* For text shadow */
    z-index: 1; /* Bring text above pseudo-element */
}

/* Adding a subtle animation for the text */
.company-history p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation delay for each paragraph */
.company-history p:nth-child(2) {
    animation-delay: 0.2s;
}

.company-history p:nth-child(3) {
    animation-delay: 0.4s;
}

select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s;
}

    /*starting header*/
body {
            font-family: 'Times New Roman', Times, serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }
        .header {
            background-color: white;
            color: black;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        
        .nav-links {
            display: flex;
            gap: 20px;
        }
        .nav-links a {
            color: black;
            text-decoration: none;
            padding: 10px 15px;
            transition: background-color 0.3s;
        }
        .nav-links a:hover {
            background-color: #004494;
            border-radius: 5px;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
        }
        .sidebar {
            position: fixed;
            top: 0;
            left: -250px;
            height: 100%;
            width: 250px;
            background-color: #2c3e50;
            padding-top: 60px;
            transition: 0.3s;
            z-index: 1;
        }
        .sidebar a {
            padding: 15px;
            text-decoration: none;
            color: white;
            display: block;
            transition: background-color 0.3s;
        }
        .sidebar a:hover {
            background-color: #004494;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .hamburger {
                display: block;
            }
        }


            .logo {
    display: flex;
    align-items: center;
    font-size: 30px; /* Base font size */
    color: green; /* Text color */
    padding: 10px 20px; /* Padding around the logo */
    transition: all 0.3s ease; /* Smooth transitions for hover effects */
    text-align: center;
}

.logo img {
    height: 65px; /* Logo height */
    width: auto; /* Maintain aspect ratio */
    margin-right: 150px; /* Space between logo and text */
    transition: transform 0.3s ease; /* Smooth scaling on hover */
}

.logo:hover img {
    transform: scale(1.1); /* Scale effect on hover */
}

.logo:hover {
    color: #ffcc00; /* Change text color on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        font-size: 30px; /* Smaller font size on mobile */
        padding: 5px; /* Reduced padding */
        
    }
    .logo img {
        height: 60px; /* Smaller logo height on mobile */
        margin-right: 28px; /* Space between logo and text */
    }
}

.image-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
}

.left-image {
    flex: 1; /* Takes up 1 part of the space */
    margin-right: 20px; /* Space between left and right images */
}

.right-images {
    flex: 1; /* Takes up 1 part of the space */
    display: flex;
    flex-direction: column; /* Stack images vertically */
}

.right-images img {
    margin-bottom: 10px; /* Space between the images */
    width: 100%; /* Make images responsive */
    height: auto; /* Maintain aspect ratio */
}

.left-image img {
    width: 100%; /* Make image responsive */
    height: auto; /* Maintain aspect ratio */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .image-container {
        flex-direction: column; /* Stack images vertically on small screens */
    }

    .left-image {
        margin-right: 0; /* Remove right margin */
        margin-bottom: 20px; /* Space below the left image */
    }
}


   /* General Styles */
body {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f0ad4e;
}

.hero {
    background: #e9ecef;
    color: #495057;
    text-align: center;
    padding: 50px 20px;
}

.button-container {
    margin-top: 20px;
}

.button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin: 0 10px;
}

.button:hover {
    background-color: #0056b3;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

h1, h2, h3 {
    color: #35424a;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.menu-item {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* FAQ Accordion */
.accordion-container {
    margin-top: 10px;
}

.accordion {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-button {
    background-color: #f8f9fa;
    color: #333;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: background-color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-button:hover {
    background-color: #e9ecef;
}

.accordion-content {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        display: none;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        width: 100%;
    }
}


 .footer {
    background-color: #35424a; /* Dark background for the footer */
    color: white; /* Text color */
    padding: 40px 20px; /* Padding for the footer */
}

.footer-container {
    max-width: 12000px; /* Max width for the footer */
    margin: auto; /* Center the footer */
    display: flex; /* Flexbox layout */
    flex-wrap: wrap; /* Allow wrapping */
    justify-content: space-between; /* Space between sections */
}

.footer-section {
    flex: 1; /* Flex-grow for equal distribution */
    min-width: 250px; /* Minimum width for sections */
    margin: 10px; /* Margin between sections */
}

.footer-section h4 {
    font-size: 1.5em; /* Heading size */
    margin-bottom: 15px; /* Space below headings */
    border-bottom: 2px solid #e74c3c; /* Underline effect */
    padding-bottom: 10px; /* Space below the heading */
}

.footer-section p,
.footer-section ul {
    font-size: 1em; /* Font size for text */
    margin-bottom: 10px; /* Space between paragraphs */
    line-height: 1.6; /* Line height for readability */
}

.footer-section a {
    color: #e74c3c; /* Link color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s; /* Smooth transition for link color */
}

.footer-section a:hover {
    color: #ffffff; /* Change color on hover */
    text-decoration: underline; /* Underline on hover */
}

.footer-section ul {
    list-style-type: none; /* Remove default list styles */
    padding: 0; /* Remove padding */
}

.footer-section ul li {
    margin: 5px 0; /* Space between list items */
}

.footer form {
    display: flex; /* Flexbox for the form */
    flex-direction: column; /* Stack elements vertically */
}

.footer input[type="email"] {
    padding: 10px; /* Padding for input */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    margin-bottom: 10px; /* Space below input */
}

.footer button {
    padding: 10px; /* Padding for button */
    background-color: #e74c3c; /* Button background color */
    color: white; /* Button text color */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s; /* Smooth transition */
}

.footer button:hover {
    background-color: #35424a; /* Darken button on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack sections on small screens */
        align-items: center; /* Center align sections */
    }
    .footer-section {
        text-align: center; /* Center text on small screens */
    }
}