/* Import Khand font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Khand:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Khand', sans-serif;
    background-color: #020202;
    color: #FFFFFF;
    line-height: 1.6;

}
/* loader */
.loader-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed; /* Use fixed to cover the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #020202; /* Matches your background color */
    z-index: 9999; /* Ensure loader is on top */

}

/* Wave loader styles */
.wave-loader {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wave {
    width: 20px;
    height: 20px;
    background-color: #E85122;
    margin: 0 5px;
    border-radius: 50%;
    animation: wave 1.5s infinite ease-in-out;
    box-shadow: 0 0 15px rgba(232, 81, 34, 0.7); /* Glow effect */
}

.wave:nth-child(2) {
    animation-delay: 0.3s;
    box-shadow: 0 0 15px rgba(232, 81, 34, 0.7); /* Glow effect */
}

.wave:nth-child(3) {
    animation-delay: 0.6s;
    box-shadow: 0 0 15px rgba(232, 81, 34, 0.7); /* Glow effect */
}
.wave:nth-child(4) {
    animation-delay: 0.9s;
    box-shadow: 0 0 15px rgba(232, 81, 34, 0.7); /* Glow effect */
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Hide content initially */
.content {
    display: none;
}

/* Ensure content and loader are visible based on JavaScript logic */
body.no-scroll {
    overflow: hidden;
}

/*-----------------------------------------------------*/
.cursor {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color:rgba(232, 81, 34, 0.7) ; 
    box-shadow: 0 0 15px rgba(232, 81, 34, 0.7); /* Glow effect */
    position: fixed;
    pointer-events: none;
    transition: transform 0.1s ease, background-color 0.1s ease;
    transform: translate(-50%, -50%);
    z-index: 9999;
}
/* Navigation Styles */
header {
    background-color: #020202;
    padding: 20px;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: bold;
    padding: 10px 20px;
    transition: color 0.3s, background-color 0.3s;
    border-radius: 5px;
}

nav ul li a:hover, nav ul li a.active {
    color: #E85122;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hide the menu by default on small screens */
.menu-toggle {
    display: none;
    font-size: 24px;
}

/* Styles for the dropdown menu */
#menu {
    display: flex;
}

#menu.closed {
    display: none;
}

/* Hero Section */
.hero-section {
    background-image: url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
}

.hero-section h1 {
    font-size: 60px;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: 700;
}

.hero-section .logo img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* About Section */
#about {
    background-image: url('about-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    text-align: left;
}

#about .about-content {
    max-width: 449px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#about h2 {
    color: #E85122;
    font-size: 48px;
    margin-bottom: 20px;
}

#about p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
}

/* Services Section */
.services-section {
    background-image: url('services-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    text-align: center;
}

.services-section h2 {
    color: #FFFFFF;
    font-size: 48px;
    margin-bottom: 40px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-item {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: calc(50% - 20px);
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.service-item img.service-logo {
    max-width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.service-item h3 {
    color: #E85122;
    font-size: 24px;
    margin: 10px 0;
}

.service-item p {
    font-size: 16px;
    color: #FFFFFF;
}

/* Team Section */
.team-section {
    background-image: url('team-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    text-align: center;
}

.team-section h2 {
    color: #FFFFFF;
    font-size: 48px;
    margin-bottom: 40px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.team-member {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: calc(33% - 20px);
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-member .team-info h3 {
    color: #E85122;
    font-size: 20px;
    margin: 10px 0 5px;
}

.team-member .team-info p {
    font-size: 16px;
    color: #FFFFFF;
}

/* Contact Section */
.contact-section {
    background-image: url('contact-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    text-align: center;
}

.contact-section h2 {
    color: #FFFFFF;
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 18px;
    color: #FFFFFF;
}

.contact-section a {
    color: #E85122;
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

/* Map and Contact Form */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}

.mapbox {
    flex: 1;
    width: 700px;
    min-width: 300px;
    height: 500px; /* Adjusted height */
    border-radius: 16px;
    border: 1px solid #000000; /* Assuming --jet variable */
    overflow: hidden;
}

.mapbox iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(1);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    width: 700px;
    height: 500px;
    margin-left: 800px;
    margin-top: -515px;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-size: 14px;
    color: #000000;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 5px;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 16px;
}

.contact-form button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #E85122;
    color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #E85122;
}

/*---footer------------------------------------------------------------*/
footer {
    background-color: #000; /* Black background */
    color: #fff;
    padding: 20px 50px;
     font-family: 'Khand', sans-serif;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-breadcrumb i {
    margin-right: 5px;
    color: #E85122;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-nav a {
    margin: 0 15px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    position: relative;
}

.footer-nav a:hover {
    color: #E85122; /* Change to your preferred hover color */
}

.footer-divider {
    border: none;
    border-top: 1px solid #333;
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-icons a {
    margin: 0 10px;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.footer-icons a:hover {
    color: #E85122; /* Color when hovered */
    transform: scale(1.1); /* Slightly increase size */
}

.footer-legal {
    text-align: right;
    font-size: 12px;
}

.footer-legal a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #E85122; /* Change to your preferred hover color */
}




/*-----------------------------------------------------------*/
/* Media Queries */
@media (max-width: 768px) {
    .services-grid, .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-item, .team-member {
        width: 90%;
        max-width: none;
    }

    .hero-section {
        height: 60vh;
    }

    .hero-section h1 {
        font-size: 40px;
    }

    .hero-section .logo img {
        width: 80%;
    }

    #about .about-content {
        padding: 20px;
    }

    .menu-toggle {
        display: block;
    }
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    nav ul.active {
        display: flex;
    }
    nav ul li {
        margin-right: 0;
        margin-bottom: 10px;
    } 

    /*.mapbox {
        width: 80%;
        height: auto; 
        margin-left: 0;
        margin-top: -400px;
    }

    .contact-form {
        width: 80%;
        padding: 20px;
        margin-top: -900px;
        margin-left: -900px;
    } */



    .contact-section h2 {
        font-size: 36px;
    }
    
    .contact-section p {
        font-size: 16px;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .mapbox, .contact-form {
        width: 95%;
        margin: 0;
        height: auto;
        border: none;
       
    }

    .contact-form {
        margin-top: 20px;
    }


/*FOOTER-------------------------------------------------*/
footer {
    padding: 20px 30px;
}

.footer-top {
    flex-direction: column;
    align-items: flex-start;
}

.footer-nav {
    justify-content: flex-start;
    margin-top: 10px;
}

.footer-nav a {
    margin: 5px 10px;
    font-size: 13px;
}

.footer-bottom {
    flex-direction: column;
    align-items: flex-start;
}

.footer-icons {
    margin-bottom: 10px;
}

.footer-legal {
    text-align: left;
    font-size: 11px;
}
}


/*---------------------------------------------------------------*/





@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin-bottom: 10px;
    }

    #about p {
        font-size: 16px;
        width: 100%;
    }
    

   /* .contact-form {
        width: 80%;
        align-items: center;
        padding: 20px;
    }*/

    .contact-section {
        padding: 50px 10px;
    }

    .contact-section h2 {
        font-size: 28px;
    }

    .contact-section p {
        font-size: 14px;
    }

    .contact-form {
        padding: 10px;
    }

    .contact-form label, .contact-form input, .contact-form textarea, .contact-form button {
        font-size: 12px;
    }

    .contact-form button {
        padding: 8px;
        font-size: 14px;
    }    
    
/*----------------FOOTER-----------------------------------------------*/

footer {
    padding: 20px 15px;
}

.footer-nav {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
}

.footer-nav a {
    margin: 5px 0;
    font-size: 12px;
}

.footer-bottom {
    flex-direction: column;
    align-items: flex-start;
}

.footer-icons a {
    font-size: 20px;
}

.footer-legal {
    font-size: 10px;
}
}