/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #fff;
   max-width: 100%;

}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    flex-wrap: wrap;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffa500;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.navbar .nav-links li {
    margin: 0 15px;
}

.navbar .nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

.navbar .btn {
    padding: 10px 20px;
    background-color: #ffa500;
    color: #222;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px;
    background: url('img/4.jpg') center/cover;
    color: #fff;
    flex-wrap: wrap;
    min-height: 100vh; /* Ensures the hero section takes the full height of the screen */
    padding-left: 200px;
    
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 30px;
    margin-bottom: 20px;
   
  
}

.hero-btn {
    padding: 10px 20px;
    background-color: #ffa500;
    color: #222;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
 
}


/* Define the spin animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Apply the animation to the image */
.hero-image img {
    width: 600px;
    border-radius: 10px;
    animation: spin 10s linear infinite; /* 2s duration, linear timing, infinite iterations */
}

@media (max-width: 768px) {
    .navbar .btn {
        display: none;
    }
}
/* Responsive Styles */
@media (max-width: 768px) {
    .navbar .nav-links {
        flex-direction: column;
        text-align: center;
        width: 100%;
        display: none;
    }

    .navbar .nav-links.show {
        display: flex;
    }

    .navbar .btn {
        width: 100%;
        text-align: center;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 50px;
    }

    .hero-image img {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .navbar .logo {
        font-size: 20px;
    }

    .navbar .btn {
        font-size: 14px;
        padding: 8px 16px;
      
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}
.toggle-btn {
    padding-right: 150px;
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: #ffa500;
    cursor: pointer;
}

@media (max-width: 768px) {
    .toggle-btn {
        display: inline-block;
        margin-left: auto;
    }
}


.container {
    background-color: #fff;
    display: flex;
    flex-wrap: wrap; /* Allow cards to wrap onto the next line */
    justify-content: space-between; /* Distribute space between cards */
    align-items: center; /* Center items vertically */
    width: 80%;
    margin: 0 auto; /* Center the container itself within the parent */
    padding-top: 100px;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    align-items: center; /* Center content inside the card */
    width: calc(25% - 20px); /* Responsive width for 4 cards per row, adjust for spacing */
    height: 200px; /* Set the desired height */
    margin: 10px; /* Add some margin for spacing */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition for hover effects */
}

/* Hover effect */
.card:hover {
    transform: scale(1.05); /* Slightly scale up the card */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
    background-color: #ffb400; /* Change background color to yellow on hover */
}
/* Media queries for responsiveness */
@media (max-width: 1200px) {
    .card {
        width: calc(33.33% - 20px); /* 3 cards per row */
    }
}

@media (max-width: 800px) {
    .card {
        width: calc(50% - 20px); /* 2 cards per row */
    }
}

@media (max-width: 600px) {
    .card {
        width: calc(100% - 20px); /* 1 card per row */
    }
}

.card i {
    font-size: 40px;
    color: #ffb400;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #6c757d;
}


/* Container for the main layout */
.container1 {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 50%;
padding-left: 100px;
}

.image-gallery img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

/* Content Section */
.content {
    width: 50%;
    padding-left: 20px;
    padding-top: 60px;
}

.content h2 {
    color: #ffb400;
    font-size: 24px;
    margin-bottom: 10px;
}

.content h1 {
    font-size: 40px;
    color: #222;
    margin-bottom: 20px;
}

.highlight {
    color: #ffb400;
}

.content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Stats Section */
.stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat-item h3 {
    font-size: 36px;
    color: #ffb400;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: #333;
}

/* Button */
.read-more {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #ffb400;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
}

.read-more:hover {
    background-color: #e6a700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 20px;
    }

    .image-gallery, .content {
        width: 100%;
        padding: 0;
    }

    .stats {
        flex-direction: column;
    }
}





/* Menu Section */
.menu-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}

/* Header Section */
header h2 {
    color: #ffb400;
    font-size: 24px;
    margin-bottom: 10px;
}

header h1 {
    font-size: 36px;
    color: #222;
    margin-bottom: 20px;
}

.menu-categories {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 15px;
}

.category {
    font-size: 16px;
    color: #6c757d;
    cursor: pointer;
    padding: 5px 10px;
    border-bottom: 2px solid transparent;
}

.category.active {
    color: #ffb400;
    border-color: #ffb400;
}

/* Menu List for responsive layout */
.menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%; /* Three columns */
    max-width: 400px; /* Optional: Limit max width if desired */
    margin-bottom: 20px;
}


.menu-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.item-info {
    flex: 1;
    margin-left: 15px;
    text-align: left;
}

.item-info h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 5px;
    padding-left: 50px;
}

.item-info p {
    font-size: 14px;
    color: #6c757d;
}

.item-price {
    font-size: 20px;
    color: #ffb400;
    font-weight: bold;
    margin-left: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .menu-item {
        width: 100%; /* Stack items in a single column */
    }

    header h1 {
        font-size: 28px; /* Adjust header size for smaller screens */
    }

    .menu-categories {
        flex-wrap: wrap; /* Allow categories to wrap if they don’t fit */
        gap: 10px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 24px; /* Further adjust header for small screens */
    }

    .menu-item img {
        width: 60px; /* Reduce image size on very small screens */
        height: 60px;
    }

    .item-info h3 {
        font-size: 16px;
    }

    .item-info p {
        font-size: 12px;
    }

    .item-price {
        font-size: 18px; /* Adjust price font size */
    }
}
@media (max-width: 1024px) {
    .menu-item {
        width: 45%; /* Two items per row on medium screens */
    }
}

@media (max-width: 768px) {
    .menu-item {
        width: 100%; /* Single column on small screens */
    }
}





.container2 {
    display: flex;
    height: 80vh;
    width: 80%;
    margin: 0 auto;
    flex-direction: row;
}

.left {
    flex: 1;
    background: url('img/video.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.left .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFA500;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.left .play-button i {
    color: #000;
    font-size: 36px;
}

.right {
    flex: 1;
    background-color: #0B0D17;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 50px;
}

.right h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.right h2 {
    font-size: 24px;
    color: #FFA500;
    margin-bottom: 10px;
}

.right form {
    display: flex;
    flex-direction: column;
}

.right form input, 
.right form select, 
.right form textarea {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
}

.right form input[type="text"], 
.right form input[type="email"], 
.right form select {
    width: calc(50% - 10px);
}

.right form .row {
    display: flex;
    justify-content: space-between;
}

.right form button {
    background-color: #FFA500;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container2 {
        flex-direction: column;
        height: auto;
    }

    .left {
        flex: none;  /* Allow left section to take its natural size */
        width: 100%;
        height: 40vh; /* Set a specific height to ensure it displays well */
        background-size: cover; /* Maintain background size */
    }

    .right {
        flex: none;  /* Allow right section to take its natural size */
        width: 100%;
        padding: 20px;
        height: auto; /* Adjust height to fit content */
    }

    .right h1 {
        font-size: 28px;
    }

    .right h2 {
        font-size: 20px;
    }

    .right form input[type="text"], 
    .right form input[type="email"], 
    .right form select {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .right h1 {
        font-size: 24px;
    }

    .right h2 {
        font-size: 18px;
    }

    .right form button {
        padding: 10px;
        font-size: 16px;
    }

    .left .play-button {
        width: 60px;
        height: 60px;
    }

    .left .play-button i {
        font-size: 24px;
    }
}








.container3 {
    text-align: center;
    padding-top: 50px;
}
.title {
    font-size: 24px;
    color: #ff9900;
    font-weight: bold;
    margin: 0;
}
.title::before, .title::after {
    content: '';
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: #ff9900;
    vertical-align: middle;
    margin: 0 10px;
}
.subtitle {
    font-size: 36px;
    color: #1a1a1a;
    font-weight: bold;
    margin: 10px 0 0 0;
}
.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the team members */
    width: 90%; /* Increased width to 90% for more space */
    max-width: 12000px; /* Set a maximum width for larger screens */
    margin: 0 auto; /* Center the container itself */
    padding: 50px 20px; /* Increased padding for more vertical space */
    background-color: #f9f9f9; /* Optional: light background color for contrast */
    border-radius: 10px; /* Optional: rounded corners */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); /* Optional: add shadow for depth */
    min-height: 400px; /* Set a minimum height for the container */
}


.team-member {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    margin: 10px; /* Margin for spacing between members */
    width: 200px; /* Fixed width for the cards */
    flex: 1 1 calc(25% - 40px); /* Responsive sizing */
    box-sizing: border-box; /* Include padding and border in width calculation */
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.team-member img:hover {
    transform: scale(1.1); /* Scale up the image */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}


.team-member h3 {
    font-size: 18px;
    color: #333;
    margin: 10px 0 5px;
}

.team-member p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .team-member {
        flex: 1 1 calc(50% - 40px); /* 2 cards per row */
        margin: 10px 0; /* Adjust margin for better spacing */
    }
}

@media (max-width: 480px) {
    .team-member {
        flex: 1 1 100%; /* Full width for smaller screens */
        margin: 10px 0; /* Adjust margin for better spacing */
    }

    .team-member img {
        width: 120px; /* Smaller image size for mobile */
        height: 120px;
    }

    .team-member h3 {
        font-size: 16px; /* Smaller font size for mobile */
    }

    .team-member p {
        font-size: 12px; /* Smaller font size for mobile */
    }
}




.container4 {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding-top: 50px;
}

.header1 {
    margin-bottom: 50px;
}

.header1 h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin: 0;
}

.header1 h2 span {
    color: #ff7f00;
}

.header1 p {
    font-size: 18px;
    color: #ff7f00;
    margin: 0;
}

.testimonials {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for responsiveness */
    justify-content: space-between;
    gap: 20px; /* Add gap for better spacing */
}

.testimonial {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 20px;
    width: calc(30% - 20px); /* Adjust width with gap in mind */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transition for hover effect */
}

.testimonial:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}

.testimonial.highlight {
    background-color: #ff7f00;
    color: #fff;
}

.testimonial .quote {
    font-size: 24px;
    color: #ff7f00;
    margin-bottom: 20px;
}

.testimonial.highlight .quote {
    color: #fff;
}

.testimonial p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.testimonial.highlight p {
    color: #fff;
}

.testimonial .client {
    display: flex;
    align-items: center;
}

.testimonial .client img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.testimonial .client .name {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
}

.testimonial.highlight .client .name {
    color: #fff;
}

.testimonial .client .profession {
    font-size: 14px;
    color: #999;
}

.testimonial.highlight .client .profession {
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonial {
        width: 100%; /* Full width on medium screens */
    }
}

@media (max-width: 480px) {
    .testimonial {
        width: 100%; /* Full width on small screens */
        margin-bottom: 20px; /* Space between testimonials */
    }
}





.end {
    padding-top: 100px;
}

.footer {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping of footer items */
    justify-content: space-around;
    padding: 40px 0;
    background-color: rgb(4, 4, 65);
}

.footer div {
    width: 20%; /* Default width for larger screens */
    min-width: 150px; /* Set a minimum width for better spacing */
    margin: 10px; /* Add margin for spacing between items */
}

.footer h3 {
    color: #FFA500;
    font-size: 24px;
    margin-bottom: 10px;
    position: relative;
}

.footer h3::after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: #FFA500;
    position: absolute;
    left: 0;
    bottom: -5px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin: 10px 0;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
}

.footer .contact-info {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.footer .contact-info i {
    margin-right: 10px;
}

.footer .social-icons {
    display: flex;
    margin-top: 10px;
}

.footer .social-icons a {
    color: #fff;
    margin-right: 10px;
    font-size: 20px;
}

.footer .newsletter {
    display: flex;
    flex-direction: column; /* Stack newsletter elements */
    align-items: center; /* Center-align newsletter items */
}

.footer .newsletter input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    width: 70%;
}

.footer .newsletter button {
    
    padding: 10px;
    border: none;
    background-color: #FFA500;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.footer .newsletter p {
    padding-bottom: 20px;
    padding-top: 20px;
}

.footer .newsletter input[type="submit"]{
    padding-top: 200px;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .footer {
        flex-direction: column; /* Stack footer items vertically */
        align-items: center; /* Center align items */
    }

    .footer div {
        width: 80%; /* Make each item take full width */
        margin: 20px 0; /* Add margin for spacing */
    }

    .footer .newsletter {
        flex-direction: row; /* Align newsletter items in a row */
        width: 100%; /* Full width for newsletter */
    }

    .footer .newsletter input[type="email"] {
        width: 60%; /* Full width for input */
        margin-bottom: 10px; /* Space below input on smaller screens */
    }

    .footer .newsletter button {
        width: auto; /* Let button size based on content */
    }
}

@media (max-width: 480px) {
    .footer h3 {
        font-size: 20px; /* Adjust header size for smaller screens */
    }

    .footer ul li {
        font-size: 14px; /* Adjust font size for list items */
    }
}
