body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #343a40;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover,.logo a:hover {
    color: #ff7f50;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    
}
.logo a {
    text-decoration: none;
    color: inherit;
}
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

#hero {
    position: relative;
    text-align: center;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('/assets/banner/hero.avif') no-repeat center center;
    background-size: cover;
}

#hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);

}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    z-index: 1;
}

.hero-text {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ff7f50;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff5722;
}
.learn-more-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff7f50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.learn-more-button:hover {
    background-color: #ff5722;
}
section {
    padding: 60px 20px;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff7f50;
    margin: 10px auto;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

.lead {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.about-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    max-width: 400px;
    flex: 1;
}

.about-section h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.services-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    width: calc(50% - 40px);
    margin-bottom: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: #ff7f50;
    margin-bottom: 20px;
    text-align: center;
}

.service-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-details p {
    margin: 10px 0;
}

.why-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.why-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    max-width: 300px;
    flex: 1;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.why-icon {
    font-size: 3rem;
    color: #ff7f50;
    margin-bottom: 10px;
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.why-card p {
    margin: 0;
}

#rates {
    background-color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

.rates-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.rate-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    flex: 1;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.rate-icon {
    font-size: 3rem;
    color: #ff7f50;
    margin-bottom: 10px;
    text-align: center;
}

.rate-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    background: #ff7f50;
    color: white;
    padding: 10px;
    border-radius: 10px;
}

.rate-details p {
    margin: 5px 0;
    padding: 5px 10px;
    border-left: 3px solid #ff7f50;
    background: #f9f9f9;
    border-radius: 5px;
}

.rates-footnote {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #555;
}





footer {
    background: #343a40;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer a {
    color: #ff7f50;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff5722;
}

/* Additional CSS for Contact Section */
#contact {
    background-color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

#contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

#contact h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff7f50;
    margin: 10px auto;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 1rem;
    color: #333;
    font-weight: bold;
    text-align: left;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

textarea {
    height: 100px;
    resize: vertical;
}

button {
    background-color: #ff7f50;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

button:hover {
    background-color: #ff5722;
}

#contact p {
    margin-top: 20px;
    font-size: 1rem;
    color: #333;
}

button {
    background-color: #ff7f50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #ff5722;
}

#latest-blog {
    background-color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

#latest-blog h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

#latest-blog h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff7f50;
    margin: 10px auto;
}

.blog-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    text-align: left;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-details {
    padding: 20px;
}

.blog-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.blog-details p {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #666;
}

.read-more {
    display: inline-block;
    padding: 10px 15px;
    background-color: #ff7f50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #ff5722;
}

.contact-intro {
    max-width: 600px;
    margin: 0 auto 20px auto;
    text-align: center;
    font-size: 1.1rem;
}

.call-button{
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #343a40;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 0;
    }
    
    .call-button {
        display: block;
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #ff7f50;
        color: white;
        padding: 15px;
        border-radius: 50%;
        text-align: center;
        box-shadow: 0 0 10px var(--box-shadow-color);
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .call-button i {
        font-size: 1.5rem;
    }
    
    .call-button:hover {
        background-color: var(--accent-color);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 10px 0;
    }

    .burger {
        display: block;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
    }

    .about-content {
        flex-direction: column;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
        display: flex;
        width: max-content;
    }

    .service-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .why-content {
        flex-direction: column;
    }

    .why-card {
        max-width: 100%;
    }
    .rates-content {
        flex-direction: column;
    }

    .rate-card {
        max-width: 100%;
    }

    form {
        padding: 25px;
    }

    button {
        padding: 10px 20px;
    }

    textarea {
        height: 80px;
    }

    .blog-content {
        flex-direction: column;
    }

    .blog-card {
        max-width: 100%;
    }

    .blog-image {
        height: 150px;
    }
}
