:root {
    --primary-color: #1A237E; /* Indigo */
    --secondary-color: #C62828; /* Red */
    --accent-color: #FFEB3B; /* Yellow */
    --background-color: #ECEFF1; /* Light Gray */
    --text-color: #263238; /* Dark Gray */
    --white: #FFFFFF; /* White */
    --light-gray: #CFD8DC; /* Light Gray */
    --dark-gray: #37474F; /* Dark Gray */
    --box-shadow-color: rgba(0, 0, 0, 0.15); /* Box Shadow Color */
}


/* General Styling */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--box-shadow-color);
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover, .logo a:hover {
    color: var(--accent-color);
}

.logo {
    color: var(--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: var(--white);
    margin: 5px;
    transition: all 0.3s ease;
}

#hero {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-image {
    background: url('/assets/banner/banner.avif') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    opacity: 0.7; /* Slight transparency for better text readability */
}

.hero-text {
    max-width: 800px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text readability */
    border-radius: 10px;
    color: #fff;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.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: 15px; /* Reduced margin */
    padding: 10px 20px;
    background-color: var(--secondary-color); /* Secondary color (dark slate) */
    color: var(--white); /* White text */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: bold; /* Make the text bold for better readability */
}

.learn-more-button:hover {
    background-color: var(--primary-color); /* Primary color (coral) */
    color: var(--white); /* Keep text white for contrast */
}

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: var(--accent-color);
    margin: 10px auto;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

.lead {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

#introduction {
    padding: 60px 20px;
    background-color: var(--background-color);
    text-align: center;
}

#introduction h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
}

#introduction h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto;
}

#introduction .lead {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.about-section {
    flex: 1 1 50%;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--box-shadow-color);
    text-align: left;
    max-width: 600px;
}

.about-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.about-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.about-section .learn-more-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: var(--secondary-color); /* Secondary color */
    color: var(--white); /* White text */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: bold; /* Make the text bold for better readability */
}

.about-section .learn-more-button:hover {
    background-color: var(--primary-color); /* Primary color */
    color: var(--white); /* Keep text white for contrast */
}

.about-image {
    flex: 1 1 40%;
    max-width: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px var(--box-shadow-color);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}
#services {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--background-color);
}

#services h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    color: var(--text-color);
}

#services h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 10px auto;
}

.services-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.service-item {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    display: flex;
    align-items: flex-start;
    max-width: 300px;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--box-shadow-color);
}

.service-icon {
    background-color: var(--primary-color);
    padding: 20px;
    text-align: center;
    color: var(--white);
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 2rem;
}

.service-details {
    text-align: left;
}

.service-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-details p {
    margin: 10px 0;
    color: var(--dark-gray);
    line-height: 1.6;
}



#why-choose-us {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--background-color);
}

#why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    color: var(--text-color);
}

#why-choose-us h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 10px auto;
}

.why-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.why-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    flex: 1 1 calc(30% - 40px);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--box-shadow-color);
}

.why-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.why-card p {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

#pricing {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--background-color);
}

#pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    color: var(--text-color);
}

#pricing h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 10px auto;
}

.pricing-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.price-category {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    max-width: 300px;
}

.price-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--box-shadow-color);
}

.price-category h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.price-category .rate-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

.price-category p {
    margin: 10px 0;
    color: var(--dark-gray);
    line-height: 1.6;
}

.cta-container {
    text-align: center;
    margin-top: 40px;
}

.cta-container h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--dark-gray);
}
.book-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.book-button:hover {
    background-color: var(--accent-color);
    color: var(--dark-gray);
}

.rates-footnote {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.cta-container {
    background-color: orange;
    color: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
}

.cta-container h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--dark-gray);
}



footer {
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
    font-size: 1rem;
    border-top: 5px solid var(--accent-color);
}

footer p {
    margin: 10px 0;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
    font-weight: bold;
}

footer a:hover {
    color: var(--primary-color);
}

footer a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

#contact {
   
    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: var(--accent-color);
    margin: 10px auto;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--box-shadow-color);
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 1rem;
    color: var(--text-color);
    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: var(--accent-color);
    color: black;
    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: #e0a800;
}

#contact p {
    margin-top: 20px;
    font-size: 1rem;
    color: var(--text-color);
}

#latest-blog {
    background-color: var(--light-gray);
    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: var(--accent-color);
    margin: 10px auto;
}

.blog-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 0 20px var(--box-shadow-color);
    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 var(--box-shadow-color);
}

.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: var(--dark-gray);
}

.read-more {
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #e0a800;
}

.contact-intro {
    max-width: 600px;
    margin: 0 auto 20px auto;
    text-align: center;
    font-size: 1.1rem;
}

.call-button {
    display: none; /* Hidden by default */
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--primary-color);
        position: absolute;
        top: 60px;
        left: 0;
        padding: 0;
    }

    .call-button {
        display: flex; /* Visible on mobile devices */
        justify-content: center;
        align-items: center;
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background-color: var(--primary-color);
        color: var(--white);
        border-radius: 50%;
        box-shadow: 0 4px 6px var(--box-shadow-color);
        text-decoration: none;
        transition: background-color 0.3s ease;
        z-index: 1000;
    }

    .call-button:hover {
        background-color: var(--accent-color);
    }

    .call-button i {
        font-size: 1.5rem;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 10px 0;
    }

    .burger {
        display: block;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-text {
        padding: 20px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
    }

    .learn-more-button {
        margin-top: 10px; /* Adjusted margin for mobile */
    }

    .about-content {
        flex-direction: column;
    }

    .about-section {
        max-width: 100%;
    }

    .about-image {
        max-width: 100%;
        margin-top: 20px;
    }
    .services-content {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .service-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }

    .why-content {
        flex-direction: column;
        align-items: center;
    }

    .why-card {
        max-width: 100%;
    }
    .pricing-content {
        flex-direction: column;
        align-items: center;
    }

    .price-category {
        max-width: 100%;
    }

    form {
        padding: 25px;
    }

    button {
        padding: 10px 20px;
    }

    textarea {
        height: 80px;
    }

   

    
}
