/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Font */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Styles */
.header {
    background-color: #118df0;
    color: #fff;
    padding: 0px 15px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo img {
    width: 150px;
}

.nav ul {
    list-style: none;
    display: flex;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: url('sl1.png') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero .btn-primary {
    background-color: #ff6600;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
}

.hero .btn-primary:hover {
    background-color: #e65500;
}

/* About Us Section */
.about {
    background-color: #ffffff;
    padding: 80px 0;
}

.about .container {
    width: 80%;
    margin: auto;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.about-text {
    flex: 1;
}

.about-heading {
    text-align: left;
    margin-bottom: 40px;
}

.about-heading h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.about-heading p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    margin: auto;
    color: #666;
}

.cta {
    text-align: left;
    margin-top: 50px;
}

.cta p {
    font-size: 1.2rem;
}

.cta .btn-primary {
    background-color: #ff6600;
    padding: 15px 30px;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.cta .btn-primary:hover {
    background-color: #e65500;
}

.about-image {
    flex: 1;
    max-width: 500px;
    overflow: hidden;
    border-radius: 10px;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Reach Section */
.reach {
    background: url('opt 2.png') no-repeat center center/cover;
    background-size: cover;
    padding: 80px 0;
    position: relative;
}

.reach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent black */
    z-index: 1;
    
}

.reach .container {
    width: 85%;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2; /* Ensures content appears above the overlay */
    
}

.reach h2 {
    font-size: 2.8rem;
    color: #fff; /* White text to contrast with the dark background */
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 600;
}

.reach-stats {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    
}

.stat-item {
    background-color:antiquewhite;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 22%;
    max-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 1.1rem;
    color: #777;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .reach-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        flex: 1 1 80%;
        margin-bottom: 30px;
    }

    .reach h2 {
        font-size: 2.2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .container {
        width: 90%;
    }

    form {
        width: 80%;
    }
}


/* Our services*/

/* General Styles for Our Services Section */
.services {
    background-color: #f4f4f4;
    padding: 80px 0;
    text-align: center;
}

.services .container {
    width: 85%;
    margin: auto;
}

.services h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

.intro-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Service List Grid */
.services-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* Individual Service Items */
.service-item {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 22%;
    max-width: 260px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #ff6600;
}

.service-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 250px;
    margin: auto;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .services-list {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        flex: 1 1 80%;
        margin-bottom: 30px;
    }

    .services h2 {
        font-size: 2.2rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .service-item {
        flex: 1 1 100%;
        margin-bottom: 30px;
    }

    .service-item h3 {
        font-size: 1.4rem;
    }

    .service-item p {
        font-size: 1rem;
    }

    .services h2 {
        font-size: 1.8rem;
    }
}

















/* Reach Section */
.reach2 {
    background: url('opt 2.png') no-repeat center center/cover;
    background-size: cover;
    padding: 80px 0;
    position: relative;
}

.reach2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent black */
    z-index: 1;

}

.reach2 .container {
    width: 85%;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2; /* Ensures content appears above the overlay */

}

.reach2 h2 {
    font-size: 2.8rem;
    color: #fff; /* White text to contrast with the dark background */
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 600;
}

.reach2-stats {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;

}

.stat2-item {
    background-color:antiquewhite;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 22%;
    max-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat2-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat2-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.stat2-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 10px;
}

.stat2-title {
    font-size: 1.1rem;
    color: #777;
}



/*footer contact form*/


/* Contact Us Section Styles */
.reach {
    background: url('contact-bg.jpg') no-repeat center center/cover; /* Add a background image for better visual appeal */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.reach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for contrast */
    z-index: 1;
}

.reach .container {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
}

.reach2-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.reach2-text {
    flex: 1;
    max-width: 600px;
}

.reach2-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reach2-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #ccc;
}

.reach2-form {
    flex: 1;
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.9); /* Light background for the form */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.reach2-form input,
.reach2-form textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 1rem;
    background-color: #f9f9f9;
    color: #333;
}

.reach2-form input:focus,
.reach2-form textarea:focus {
    border-color: #ff6600;
    outline: none;
}

.reach2-form button {
    width: 100%;
    padding: 15px;
    background-color: #ff6600;
    color: #fff;
    border: none;
    font-size: 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.reach2-form button:hover {
    background-color: #e65500;
    transform: translateY(-5px);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .reach2-content {
        flex-direction: column;
        align-items: center;
    }

    .reach2-text {
        text-align: center;
        margin-bottom: 30px;
    }

    .reach2-form {
        width: 90%;
    }

    .reach2-text h2 {
        font-size: 2.5rem;
    }
}








/* Footer Section Styles */
.footer {
    background-color: #1e1e1e; /* Dark background */
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer .container {
    width: 85%;
    margin: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 20px;
}

.footer-links, .footer-contact, .footer-social {
    flex: 1;
    max-width: 300px;
    margin-bottom: 30px;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul, .footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li, .footer-social ul li {
    margin-bottom: 10px;
}

.footer-links ul li a, .footer-social ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover, .footer-social ul li a:hover {
    color: #ff6600;
}

.footer-contact p {
    font-size: 1rem;
    margin: 5px 0;
    color: #ccc;
}

.footer-social .social-icon {
    width: 30px;
    height: 30px;
    display: inline-block;
    margin: 5px;
}

.footer-social .social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-social .social-icon:hover img {
    transform: scale(1.1);
}

.footer-bottom {
    margin-top: 40px;
    font-size: 1rem;
    color: #ccc;
}

.footer-bottom p {
    margin: 0;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    .footer-links, .footer-contact, .footer-social {
        max-width: 100%;
        margin-bottom: 20px;
    }
}



/* Abouut us page */

/* About Us Page Styles */
.about .container {
    width: 85%;
    margin: auto;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.about-text {
    flex: 1;
}

.about-heading {
    text-align: left;
    margin-bottom: 40px;
}

.about-heading h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.about-heading p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    margin: auto;
    color: #666;
}

.cta {
    text-align: left;
    margin-top: 50px;
}

.cta p {
    font-size: 1.2rem;
}

.cta .btn-primary {
    background-color: #ff6600;
    padding: 15px 30px;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.cta .btn-primary:hover {
    background-color: #e65500;
}

.about-image {
    flex: 1;
    max-width: 500px;
    overflow: hidden;
    border-radius: 10px;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Team Section */
.team {
    background-color: #f4f4f4;
    padding: 80px 0;
    text-align: center;
}

.team .container {
    width: 85%;
    margin: auto;
}

.team h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

.team-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 22%;
    max-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 1.1rem;
    color: #666;
}

/* Mobile Responsiveness for Team */
@media screen and (max-width: 768px) {
    .team-list {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        flex: 1 1 80%;
        margin-bottom: 30px;
    }

    .team h2 {
        font-size: 2.2rem;
    }
}


/*contact-us page */


/* Contact Us Section Styles */
.contact-form {
    background-color: #f4f4f4;
    padding: 80px 0;
}

.contact-form .container {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact-info {
    flex: 1 1 45%;
}

.contact-info h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.contact-item p {
    font-size: 1.1rem;
    color: #666;
}

.contact-item a {
    color: #007BFF;
    text-decoration: none;
}

/* Form Container */
.form-container {
    flex: 1 1 50%;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

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

.form-group label {
    font-size: 1.1rem;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background-color: #007BFF;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #0056b3;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .contact-form .container {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        flex: 1 1 100%;
        text-align: center;
    }

    .form-container {
        flex: 1 1 100%;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .form-container h2 {
        font-size: 1.8rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
    }

    .btn-submit {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-info h2 {
        font-size: 1.8rem;
    }

    .form-container h2 {
        font-size: 1.6rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
    }

    .btn-submit {
        font-size: 1rem;
    }
}
