/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #ffffff;
    color: #333;
}

/* Header */
header {
    background-color: #ffffff;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
    gap: 30px;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 75px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.nav-links a {
    color: #BF8069;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #4ECBD9;
}

/* Mobile Menu (Hamburger Icon) */
.mobile-menu {
    display: none;
    font-size: 1.8em;
    cursor: pointer;
    color: #ae2424;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    z-index: 1001;
}

/* Ensure header doesn't overlap content */
.hero {
    padding-top: 90px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background-color: #32838C;
    height: 40vh;
    margin-top: 90px; /* Adjusted space below the header */
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border: 1.5px solid #ededed;
    border-radius: 15px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.hero-text {
    text-align: left;
    color: #fff;
}

.hero-text h1 {
    font-size: 3em;
    margin-bottom: 15px;
}

.hero-text h2 {
    font-size: 1.5em;
    color: #4ECBD9;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 1.2em;
    line-height: 1.8;
}

/* About Us Section */
.dynamic-section {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
    width: 100%;
    color: #BF8069;
}

.dynamic-section h2 {
    color: #32838C;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.dynamic-section p {
    max-width: 800px;
    margin: 20px auto;
    font-size: 1.2em;
    line-height: 1.8;
    padding: 0 20px;
}

/* Services Section */
.services {
    padding: 50px 20px;
    background-color: #d0d2d2;
    text-align: center;
}

.services h1 {
    font-size: 2.5em;
    color: #32838C;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Item */
.service-item {
    background-color: #f9f9f9;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

/* Image Container */
.service-item .icon {
    width: 100%;
    height: 200px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.service-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text Content */
.service-item h3 {
    font-size: 1.5em;
    color: #32838C;
    margin: 15px 0 10px;
}

.service-item p {
    font-size: 1em;
    line-height: 1.6;
    padding: 0 10px;
}

/* Read More Functionality */
.read-more-checkbox {
    display: none;
}

.read-more-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    padding: 0 10px;
}

.read-more-checkbox:checked ~ .read-more-content {
    max-height: 300px;
    padding: 10px;
}

.read-more-btn {
    display: inline-block;
    background-color: #32838C;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.read-more-btn::after {
    content: "Read More";
}

.read-more-checkbox:checked ~ .read-more-btn::after {
    content: "Read Less";
}

.read-more-btn:hover {
    background-color: #4ECBD9;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #ffffff;
        position: absolute;
        top: 60px;
        left: 0;
    } */

    /* .nav-links.active {
        display: flex;
    } */

    /* .mobile-menu {
        display: flex;
    } */

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-text {
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item .icon img {
        height: 250px;
    }
}

/* Footer */
footer {
    background-color: #32838C;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
}

.contact-links {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-links a {
    color: #BF8069;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-links a:hover {
    color: #4ECBD9;
}

.contact-links img {
    height: 40px;
    width: 40px;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .logo img {
        height: 45px;
    }
}

