/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    max-width: 150px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #b8860b;
}

.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 3em;
    margin: 0;
}

.hero-content p {
    font-size: 1.5em;
    margin-top: 20px;
}

.industry-section {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
}

.slides {
    display: none;
}

.slides img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1.2em;
    }

    .about-container,
    .contact-container,
    .services-container,
    .projects-container {
        flex-direction: column;
        text-align: left;
    }

    .about-content,
    .contact-details,
    .contact-form,
    .services-content,
    .projects-content {
        width: 100%;
        padding: 10px;
    }

    .about-image,
    .project-item img,
    .service-item img {
        width: 100%;
        margin-top: 20px;
    }
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
}

footer p {
    margin: 0;
}

.social-icons {
    margin: 10px 0;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #b8860b;
}

/* About Section */
.about-section {
    background: url('about-bg-light.jpg') no-repeat center center/cover;
    padding: 50px 20px;
    text-align: center;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
}

.about-content {
    flex: 1;
    padding-right: 20px;
}

.about-content h2 {
    color: #b8860b;
    margin-bottom: 20px;
}

.about-image {
    flex: 0 0 40%;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

/* Services Section */
.services-hero {
    height: 400px;
    background: url('services-bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: #fff;
}

.services-hero .hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 8px;
}

.services-overview {
    background: url('services-bg-light.jpg') no-repeat center center/cover;
    padding: 50px 20px;
    text-align: center;
}

.service-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-link {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    width: 45%;
    max-width: 500px;
    transition: transform 0.3s ease-in-out;
    border-radius: 8px;
}

.service-link img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.service-link:hover {
    transform: scale(1.05);
}

.service-link h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    margin: 0;
    font-size: 1.5em;
    text-align: center;
    border-radius: 0 0 8px 8px;
    transition: background 0.3s ease-in-out;
}

.service-link:hover h3 {
    background: #b8860b;
}

/* Projects Section */
.projects-hero {
    height: 400px;
    background: url('projects-bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: #fff;
}

.projects-hero .hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 8px;
}

.projects-section {
    background: url('projects-bg-light.jpg') no-repeat center center/cover;
    padding: 50px 20px;
    text-align: center;
}

.projects-container {
    max-width: 1200px;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
}

.project-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease-in-out;
}

.project-item img {
    width: 40%;
    border-radius: 8px;
    margin-right: 20px;
    object-fit: cover;
}

.project-item div {
    width: 60%;
}

.project-item h4 {
    color: #b8860b;
    margin-bottom: 15px;
}

.project-item p {
    margin-bottom: 0;
}

.project-item:hover {
    transform: scale(1.03);
}

/* Contact Section */
.contact-hero {
    height: 400px;
    background: url('contact-bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: #fff;
}

.contact-hero .hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 8px;
}

.contact-section {
    background: url('contact-bg-light.jpg') no-repeat center center/cover;
    padding: 50px 20px;
    text-align: center;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-details, .contact-form {
    width: 48%;
}

.contact-details h2, .contact-form h2 {
    color: #b8860b;
    margin-bottom: 20px;
}

.contact-details p a {
    color: #333;
    text-decoration: none;
}

.contact-details p a:hover {
    text-decoration: underline;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-form input, .contact-form textarea {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    background-color: #b8860b;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.contact-form button:hover {
    background-color: #333;
}

.map-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #f4f4f4;
}

.map-section h2 {
    font-size: 2.5em;
    color: #b8860b;
    margin-bottom: 40px;
}

.map-container {
    max-width: 800px;
    margin: auto;
}

.map-container img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    max-width: 150px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #b8860b;
}

.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 3em;
    margin: 0;
}

.hero-content p {
    font-size: 1.5em;
    margin-top: 20px;
}

.industry-section {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
}

.slides {
    display: none;
}

.slides img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
}

footer p {
    margin: 0;
}

.social-icons {
    margin: 10px 0;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #b8860b;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    max-width: 150px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #b8860b;
}

.about-hero {
    height: 400px;
    background: url('about-bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.about-hero .hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 8px;
}

.about-section {
    background: url('section-bg.jpg') no-repeat center center/cover;
    background-size: cover;
    padding: 50px 20px;
}

.about-content {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.about-content h2 {
    color: #b8860b;
    margin-bottom: 20px;
}

.affiliations {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
}

.affiliation-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.affiliation-logos img {
    max-width: 150px;
    margin: 10px;
    transition: transform 0.3s ease-in-out;
}

.affiliation-logos img:hover {
    transform: scale(1.1);
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
}

footer p {
    margin: 0;
}

.social-icons {
    margin: 10px 0;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #b8860b;
}
.about-section {
    background: url('section-bg.jpg') no-repeat center center/cover;
    background-size: cover;
    padding: 50px 20px;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
}

.about-content {
    flex: 1;
    padding-right: 20px;
}

.about-content h2 {
    color: #b8860b;
    margin-bottom: 20px;
}

.about-image {
    flex: 0 0 40%;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    max-width: 150px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #b8860b;
}

.services-hero {
    height: 400px;
    background: url('services-bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: #fff;
}

.services-hero .hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 8px;
}

.services-hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.services-hero p {
    font-size: 1.2em;
    margin-top: 0;
}

.services-overview {
    background: url('services-bg-light.jpg') no-repeat center center/cover;
    padding: 50px 20px;
    text-align: center;
}

.services-overview h2 {
    font-size: 2.5em;
    color: #b8860b;
    margin-bottom: 40px;
}

.service-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-link {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    width: 45%;
    max-width: 500px;
    transition: transform 0.3s ease-in-out;
    border-radius: 8px;
}

.service-link img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.service-link:hover {
    transform: scale(1.05);
}

.service-link h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    margin: 0;
    font-size: 1.5em;
    text-align: center;
    border-radius: 0 0 8px 8px;
    transition: background 0.3s ease-in-out;
}

.service-link:hover h3 {
    background: #b8860b;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
}

footer p {
    margin: 0;
}

.social-icons {
    margin: 10px 0;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #b8860b;
}
/* General hero section styling for both Engineering and ED services pages */
.services-hero {
    height: 400px;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: #fff;
}

.services-hero .hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 8px;
}

.services-hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.services-hero p {
    font-size: 1.2em;
    margin-top: 0;
}

/* Specific background images for Engineering and ED services pages */
.engineering-hero {
    background: url('engineering-bg.jpg') no-repeat center center/cover;
}

.ed-hero {
    background: url('ed-bg.jpg') no-repeat center center/cover;
}

/* Services section styling */
.services-section {
    background: url('services-bg-light.jpg') no-repeat center center/cover;
    padding: 50px 20px;
    text-align: center;
}

.services-container {
    max-width: 1200px;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
}

.services-content h2 {
    font-size: 2.5em;
    color: #b8860b;
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.service-item img {
    width: 40%;
    border-radius: 8px;
    margin-right: 20px;
    object-fit: cover;
}

.service-item div {
    width: 60%;
}

.service-item h4 {
    color: #b8860b;
    margin-bottom: 15px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
}

footer p {
    margin: 0;
}

.social-icons {
    margin: 10px 0;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #b8860b;
}
.projects-hero {
    height: 400px;
    background: url('projects-bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: #fff;
}

.projects-hero .hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 8px;
}

.projects-hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.projects-hero p {
    font-size: 1.2em;
    margin-top: 0;
}

.projects-section {
    background: url('projects-bg-light.jpg') no-repeat center center/cover;
    padding: 50px 20px;
    text-align: center;
}

.projects-container {
    max-width: 1200px;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
}

.projects-content h2 {
    font-size: 2.5em;
    color: #b8860b;
    margin-bottom: 40px;
}

.project-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease-in-out;
}

.project-item img {
    width: 40%;
    border-radius: 8px;
    margin-right: 20px;
    object-fit: cover;
}

.project-item div {
    width: 60%;
}

.project-item h4 {
    color: #b8860b;
    margin-bottom: 15px;
}

.project-item p {
    margin-bottom: 0;
}

.project-item:hover {
    transform: scale(1.03);
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
}

footer p {
    margin: 0;
}

.social-icons {
    margin: 10px 0;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #b8860b;
}
.contact-hero {
    height: 400px;
    background: url('contact-bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: #fff;
}

.contact-hero .hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 8px;
}

.contact-hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact-hero p {
    font-size: 1.2em;
    margin-top: 0;
}

.contact-section {
    background: url('contact-bg-light.jpg') no-repeat center center/cover;
    padding: 50px 20px;
    text-align: center;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-details, .contact-form {
    width: 48%;
}

.contact-details h2, .contact-form h2 {
    color: #b8860b;
    margin-bottom: 20px;
}

.contact-details p a {
    color: #333;
    text-decoration: none;
}

.contact-details p a:hover {
    text-decoration: underline;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-form input, .contact-form textarea {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    background-color: #b8860b;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.contact-form button:hover {
    background-color: #333;
}

.map-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #f4f4f4;
}

.map-section h2 {
    font-size: 2.5em;
    color: #b8860b;
    margin-bottom: 40px;
}

.map-container {
    max-width: 800px;
    margin: auto;
}

.map-container img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
}

footer p {
    margin: 0;
}

.social-icons {
    margin: 10px 0;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #b8860b;
}

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown button */
.dropbtn {
    background-color: transparent;
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* Dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change color of the dropdown button on hover */
.dropdown:hover .dropbtn {
    background-color: #b8860b;
}

/* Header and Footer Background Styling */
header {
    background-size: cover;
    background-position: center;
}

footer {
    background-size: cover;
    background-position: center;
}
