/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f7f7;
    line-height: 1.6;
    color: #333;
}

/* Header Styling */
header {
    background: rgb(51, 51, 51);
    color: white;
    padding: 1.2em 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    /* color: white; */
    color: rgb(212, 194, 129);
    text-decoration: none;
    font-size: 1.1em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 20px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

/* Hover Effect */
nav ul li a:hover {
    color: #fff;
    background-color: #E74C3C;
    transform: scale(1.05);
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

nav ul li a.active {
    color: #fff;
    background-color: #E74C3C;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Intro Section */
#intro {
    background: url('images/intro-bg.jpg') no-repeat center center/cover;
    color:white;
    text-align: center;
    padding: 120px 0;
    background-size: cover; /* Ensure the image covers the section */
    background-position: center; /* Center the image */
    position: relative;
    z-index: 0;
}
#intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: -1; /* Ensure the overlay is behind the text */
}

.logo{
    height: 50px;
    background-color:transparent;
    border-radius: 10px;
    padding: 2px;
    width: 300px;
    margin-right: 150px;
}

#intro .container {
    position: relative;
    z-index: 1;
    margin-top: 150px;
}

#intro h1 {
    font-size: 4em;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    animation: fadeIn 1s ease-in-out;
}

#ctaButton {
    background-color: #E74C3C;
    padding: 15px 30px;
    border: none;
    font-size: 1.4em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: bounceIn 1s ease-in-out;
}

#ctaButton:hover {
    background-color: #C0392B;
    transform: scale(1.1);
}
/* About Section */
#about {
    padding: 60px 0;
    background-color: #f5f5f5;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

#about .container {
    width: 80%;
    margin: 0 auto;
}

.about-header {
    max-width: 800px;
    margin: 0 auto;
}

#about h2 {
    font-size: 3em;
    color: #2C3E50;
    margin-bottom: 20px;
}

.about-header p {
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.about-details {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.left-column, .right-column {
    width: 38%;
    padding: 20px;
    box-sizing: border-box;
}

.about-detail h3 {
    font-size: 2em;
    color: #2C3E50;
    margin-bottom: 10px;
}

.about-detail p, .about-detail ul {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
}

#about ul {
    list-style-type: none;
    padding: 0;
}

#about ul li {
    margin: 5px 0;
    padding-left: 20px;
    position: relative;
}

#about ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2C3E50;
    font-weight: bold;
}

/* Adjust for small screens */
@media (max-width: 768px) {
    .about-details {
        flex-direction: column;
    }

    .left-column, .right-column {
        width: 100%;
        margin-bottom: 20px;
    }

    #about h2 {
        font-size: 2.5em;
    }

    .about-detail h3 {
        font-size: 1.8em;
    }
}


/* Services Section */
#services {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

#services h2 {
    font-size: 2.5em;
    color: #2C3E50;
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.service-card {
    background-color: white;
    padding: 40px;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
    margin-bottom: 20px;
    display: inline-block;
}

.service-icon img {
    width: 50px;
    height: 50px;
}

.service-card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #2C3E50;
    font-weight: bold;
}

.service-card p {
    font-size: 1.1em;
    color: #777;
    line-height: 1.5;
    margin-top: 10px;
}

/* Testimonials Section */
#testimonials {
    padding: 80px 0;
    background-color: #f4f4f4;
    text-align: center;
}

#testimonials h2 {
    font-size: 2.5em;
    color: #2C3E50;
    margin-bottom: 40px;
}

.testimonial-wrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.testimonial {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.testimonial-img {
    margin-bottom: 20px;
}

.testimonial-img img {
    width: 180px;
    height: 80px;
    border-radius: 10px;
}

.testimonial p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.5;
    margin-top: 15px;
}

.testimonial h4 {
    font-size: 1.2em;
    color: #E74C3C;
    margin-top: 15px;
}

/* Contact Section */
#contact {
    padding: 60px 0;
    text-align: center;
    background-color: #fff;
    font-family: Arial, sans-serif;
}

#contact h2 {
    font-size: 2.5em;
    color: #2C3E50;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    text-align: ce;
}

.contact-item {
    width: 45%;
    padding: 10px;
}

.contact-item h3 {
    font-size: 1.4em;
    color: #2C3E50;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 1.1em;
    color: #555;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Adjust for small screens */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        width: 80%;
        margin-bottom: 20px;
    }

    .contact-description {
        font-size: 1.1em;
    }

    #contact h2 {
        font-size: 2.2em;
    }
}


/* Footer */
footer {
    background-color: #2C3E50;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer .social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer .social-links li {
    margin: 0;
}

footer .social-links li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

footer .social-links li a:hover {
    color: #E74C3C;
}
