/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and text */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Header Section */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #2C3E50; /* Dark Navy Blue */
    color: white;
}

header .logo img {
    height: 50px; /* Adjust size of logo */
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #F0AD4E; /* Golden Yellow */
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        padding-top: 1rem;
    }

    nav ul li {
        margin-bottom: 1rem;
    }

    header .logo img {
        height: 40px; /* Adjust logo size for smaller screens */
    }
}



/* Hero Section */
#home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2980B9, #F0F4F8); /* Blue to Soft White Gradient */
    color: white;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.hero-content {
    max-width: 50%;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-btn {
    padding: 1rem 2rem;
    background-color: #F39C12; /* Bold Orange */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #F0AD4E; /* Golden Yellow */
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    #home {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .cta-btn {
        font-size: 1.1rem;
    }

    .hero-image img {
        max-width: 90%;
    }
}


/* Services Section */
#services {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
}

#services h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

#services p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.service-category {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-category h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    width: 80%;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.service-card p {
    font-size: 1rem;
    color: #666;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .service-card {
        width: 90%;
        margin-bottom: 1rem;
    }
    
    #services p {
        font-size: 1rem;
    }
}



/* About Us Section */
#about {
    padding: 3rem 2rem;
    background-color: #f4f4f4;
    text-align: center;
}

/* Testimonials Section */
#testimonials {
    padding: 2rem 2rem;
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background-color: #f4f4f4;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-item {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    width: 80%;
    max-width: 500px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-item p {
    font-size: 1rem;
    color: #666;
}

.contact-item ul {
    list-style: none;
    padding: 0;
}

.contact-item ul li {
    margin: 0.5rem 0;
}

.contact-item ul li a {
    text-decoration: none;
    color: #007b83;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-item ul li a:hover {
    color: #f0ad4e;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        width: 90%;
    }

    .contact-section p {
        font-size: 1rem;
    }
}


/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
    }
    
    #services {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 80%;
        margin-bottom: 20px;
    }
}


/* Scroll to Top Button */
.scroll-to-top-btn {
    display: none; /* Initially hidden */
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #F39C12; /* Bold Orange */
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1.1rem;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.scroll-to-top-btn:hover {
    background-color: #F0AD4E; /* Hover Effect (Golden Yellow) */
}
