/* General Styles */
html {
    scroll-behavior: smooth;
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    scroll-behavior: smooth; /* Smooth scrolling for links */
    overscroll-behavior: none;
}



/* Navbar Styles */
.navbar {
    position: fixed; /* Fixes the navbar at the top */
    top: 0;
    left: 0;
    width: 100%; /* Full width */
    background: rgba(0, 0, 0, 0.8); /* Slight transparency for elegance */
    z-index: 1000;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Adds a subtle shadow */
}


.navbar-brand {
    font-size: 45px;
    font-weight: bold;
    color: #ff7200;
}

.navbar-nav {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 45px;
    margin-right: 45px;
    font-weight: bold;

}

.nav-link {
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ff7200;
    border-bottom: 2px solid #ff7200;
}

/* Hero Section Styles */
/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    background: url('back7.jpg') no-repeat center center/cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Black overlay with 60% opacity */
    z-index: 1; /* Ensure it appears above the background image */
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    z-index: 2; /* Ensure the text appears above the overlay */
}

.overlay h1 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ff7200;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff7200;
}


/* About Us Section Styles */
.about-section {
    background-color: black;
    color: whitesmoke;
    padding: 50px 20px;
    text-align: center;
}

.about-section h2 {
    color: #ff7720;
    font-size: 40px;
    margin-bottom: 20px;
    position: relative;
}

.about-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #ff7720;
    margin: 10px auto 0;
}

.about-intro {
    font-size: 18px;
    margin: 20px 0;
}

.read-more-btn {
    background-color: #ff7720;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease-in-out;
}

.read-more-btn:hover {
    background-color: orangered;
}

.more-info {
    margin-top: 20px;
    font-size: 16px;
    color: whitesmoke;
    line-height: 1.6;
}

/* Team Section */
.team-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.team-member {
    background-color: #222;
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 200px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px orangered;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h4 {
    color: #ff7720;
    margin-bottom: 5px;
    font-size: 18px;
}

.team-member p {
    font-size: 14px;
    color: whitesmoke;
}


/* Services Section Styles */
.services-section {
    background-color: black;
    padding: 50px 20px;
    text-align: center;
}

.services-section h2 {
    color: #ff7720;
    font-size: 40px;
    margin-bottom: 30px;
    position: relative;
}

.services-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #ff7720;
    margin: 10px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-item {
    background: #222;
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px orangered;
}

.service-item i {
    font-size: 40px;
    color: #ff7720;
    margin-bottom: 15px;
}

.service-item h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #ff7720;
}

.service-item p {
    font-size: 14px;
    color: whitesmoke;
    margin-bottom: 20px;
}

.book-now-btn {
    background-color: #ff7720;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.book-now-btn:hover {
    background-color: orangered;
}


/* Contact Section */
.contact-section {
    background: black;
    color: whitesmoke;
    padding: 50px 20px;
    text-align: center;
}

.contact-section h2 {
    color: #ff7720;
    font-size: 40px;
    margin-bottom: 30px;
    position: relative;
}

.contact-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #ff7720;
    margin: 10px auto 0;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #ff7720;
    background: transparent;
    color: #fff;
    outline: none;
}

.form-control::placeholder {
    color: #fff;
}

.submit-btn {
    background-color: #ff7720;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.submit-btn:hover {
    background-color: orangered;
}

.contact-info {
    text-align: left;
    font-size: 16px;
}

.contact-info i {
    color: #ff7720;
    margin-right: 10px;
}

.social-icons a {
    color: whitesmoke;
    margin-right: 10px;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff7720;
}


/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column; /* Stack navbar items vertically */
        align-items: center;
    }
    .nav-item {
        margin-left: 0; /* Remove horizontal spacing */
        margin-bottom: 10px; /* Add vertical spacing */
    }
    .hero h1 {
        font-size: 40px; /* Adjust hero text size for smaller screens */
    }
    .services-grid {
        grid-template-columns: 1fr; /* One column layout for services */
    }
    .contact-wrapper {
        flex-direction: column; /* Stack form and contact info vertically */
        gap: 20px;
    }
    .navbar-brand {
        font-size: 35px;
    }
}
/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    border: none;
    background: none;
    z-index: 1001;
    margin-left: 298px;
    margin-top: -38px;
}

.hamburger-menu span {
    display: block;
    height: 2px;
    width: 25px;
    margin: 3px 0;
    background: #ff7200;
    transition: all 0.3s;
}

/* Navbar responsive behavior */
.navbar-nav {
    display: flex;
    list-style: none;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
        order: 1;
    }

    .navbar-nav {
        position: fixed;
        top: 60px; /* Adjust based on navbar height */
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.7);
        height: calc(100% - 60px);
        transition: left 0.3s ease;
        order: 2;
    }

    .navbar-nav.open {
        left: 0;
    }

    .nav-item {
        margin: 10px 0;
    }
    .navbar-brand {
        order: 0; /* Keep brand on the left */
    }
}

/* Scroll-Up Indicator */
.scroll-up-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    animation: bounce 1.5s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.scroll-up-indicator i {
    font-size: 30px;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}


/* Modal Styles */
/* Modal Styles */
.popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Transparent black background */
    z-index: 1002;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: rgba(0, 0, 0, 1); /* Slightly transparent white */
    color: white; /* Ensure text is visible */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.9); /* Add depth to the modal */
    animation: fadeIn 0.5s ease-in-out; /* Smooth appearance */
}

.popup-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.dismiss-btn, .close-modal-btn {
    background: white; /* Semi-transparent black */
    color: #ff7720;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.dismiss-btn:hover, .close-modal-btn:hover {
    background: #ff7720;
    color: white;
}

/* Modal Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Footer Bottom */
.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: gray;
}
.footer {
    background-color: black;
    color: whitesmoke;
    padding: 50px 20px;
    text-align: center;
    font-size: 16px;
}

.footer-bottom p {
    margin: 0;
}
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}


/* Error Highlight */
.form-control {
    border-bottom: 2px solid #ccc; /* Default */
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-bottom-color: #ff7720; /* Highlight on focus */
}

.form-control.error {
    border-bottom-color: red; /* Highlight errors */
}









