/* ======= Global Styling ======= */
/* ======= Global Styling ======= */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #000;
}

/* ======= Container ======= */
.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

/* ======= Header Styling ======= */
.header {
    background-color: #ddd;
    padding: 10px;
    text-align: center;
}

.header h1 {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    line-height: 1.2;
    word-wrap: break-word;
    max-width: 90%;
    margin: auto;
}

/* ======= Navigation Bar ======= */
.navbar {
    background-color: #000;
    padding: 10px;
    text-align: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
}

.nav-menu li {
    margin: 0 10px;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    display: block;
}

.nav-menu a:hover {
    background-color: #666;
    border-radius: 5px;
}

/* Toggle Button for Mobile */
.menu-toggle {
    display: none; 
    background-color: #666;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 5px;
}

/* ======= Hero Section ======= */
.hero {
    text-align: center;
    padding: 25px 20px;
    position: relative;
    background: #333;
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #bbb;
}

.hero .btn {
    display: inline-block;
    background: #444;
    color: white;
    padding: 12px 25px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    border: 2px solid white;
}

.hero .btn:hover {
    background: #222;
}

/* ======= About Section ======= */
.about {
    padding: 50px 0;
}

.about h2 {
    font-size: 32px;
    color: #000;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
}

/* Leadership Team */
.leadership {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.leader-box {
    text-align: center;
    max-width: 200px;
}

.leader-box img {
    width: 150px;  /* इमेज का साइज */
    height: 150px; /* इमेज का साइज */
    border-radius: 50%;  /* गोल आकार बनाएगा */
    object-fit: cover;    /* इमेज को सही अनुपात में फिट करेगा */
    border: 3px solid #ddd; /* बॉर्डर ऐड करेगा */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* शैडो देगा */
    display: block; /* कुछ ब्राउज़र्स में सही काम करने के लिए */
}


.leader-box h4 {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

.leader-box p {
    font-size: 16px;
    color: #666;
}

/* ======= Services Section ======= */
.services {
    padding: 50px 20px;
    text-align: center;
    background-color: #eee;
}

.service-box {
    display: inline-block;
    width: 300px;
    background-color: #ffffff;
    padding: 20px;
    margin: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box img {
    width: 100%;
    border-radius: 8px;
}

.service-box h3 {
    font-size: 22px;
    margin: 15px 0;
    color: #000;
}

.service-box p {
    font-size: 16px;
    color: #555;
}

/* ======= Footer ======= */
footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: #bbb;
}

/* ======= Slider ======= */
.slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: black;
}

.slides {
    display: flex;
    width: 300%;
    transition: transform 1s ease-in-out;
}

.slide {
    width: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .header h1 {
        font-size: 20px;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .service-box img {
       
        height: 200px;
        
    }
    .project-box img {
       
        height: 200px;
       
    }
    .header h1 {
        font-size: 16px;
        text-align: center;
    }
    .menu-toggle {
        display: block; /* Show button on mobile */
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: #333;
        position: absolute;
        top: 50px;
        left: 0;
        z-index: 1000; /* Ensures dropdown menu appears above other elements */
    }

    .nav-menu.show {
        display: flex;
    }
}

    .nav-menu li {
        margin: 0;
    }
    .service-box {
        width: 90%;
        margin: 10px auto;
    }
    .project-box {
        width: 90%;
        margin: 10px auto;
    }