@import url("all.min.css");

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #FFFFFF;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    background-color: #2C2C2C;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 180, 131, 0.5);
}

.navbar.scrolled {
    background-color: #FFFFFF;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    width: auto;
    display: block;
    object-fit: contain;
    max-height: 5em;
}

.logo h1 {
    font-size: 1.5rem;
    color: #333333;
    font-weight: 600;
}

.nav-links a {
    text-decoration: none;
    color: #FFFFFF;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a.active {
    color: #D4B483;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #FFFFFF;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                url('../images/hero-bg.jpg') center/cover;
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #333333;
    padding: 0 1rem;
    margin-top: 60px;
    border-bottom: 1px solid rgba(212, 180, 131, 0.3);
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
}

/* Contact Section */
.contact-section {
    padding: 5rem 5%;
    background-color: #FFFFFF;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background-color: #F8F8F8;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(212, 180, 131, 0.15);
    height: fit-content;
    border: 1px solid rgba(212, 180, 131, 0.2);
}

.contact-info h2 {
    color: #333333;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-container h2 {
    color: #333333;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #D4B483;
    padding-bottom: 1rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #555555;
    line-height: 1.6;
    position: relative;
    flex-wrap: wrap;
}

.contact-details p i {
    font-size: 1.2rem;
    color: #D4B483;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.contact-details p span {
    word-break: break-word;
    flex: 1;
    min-width: 0;
}

.contact-details p span a {
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
}


.contact-details p span a:hover {
    color: #D4B483;
}

.business-hours {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E0E0E0;
}

.business-hours h4 {
    color: #333333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.business-hours p {
    margin-bottom: 0.5rem;
    color: #555555;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
}

.info-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #C19A6B;
    border-radius: 50%;
}

.info-item i {
    font-size: 1.5rem;
    color: #D4B483;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.info-item h3 {
    color: #333333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-item p {
    color: #555555;
    line-height: 1.6;
}

.contact-form {
    background-color: #F8F8F8;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(212, 180, 131, 0.15);
    border: 1px solid rgba(212, 180, 131, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #333333;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4B483;
    box-shadow: 0 0 0 2px rgba(212, 180, 131, 0.2);
    border-left: 3px solid #C19A6B;
}

.submit-btn {
    background-color: #D4B483;
    color: #FFFFFF;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    box-shadow: 0 3px 6px rgba(212, 180, 131, 0.3);
}

.submit-btn:hover {
    background-color: #C19B6E;
    box-shadow: 0 5px 10px rgba(212, 180, 131, 0.4);
}

/* Map Section */
.map-section {
    padding: 5rem 5%;
    background-color: #FFFFFF;
    text-align: center;
}

.map-section h2 {
    color: #333333;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* About Section */
.about-section {
    padding: 5rem 5%;
    background-color: #FFFFFF;
}

.about-section .about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-section h2 {
    color: #333333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-section p {
    color: #555555;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 5rem 5%;
    background-color: #F8F8F8;
    text-align: center;
    border-top: 1px solid rgba(212, 180, 131, 0.3);
}

.values-section h2 {
    color: #333333;
    margin-bottom: 3rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(212, 180, 131, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 180, 131, 0.2);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #C19A6B;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 180, 131, 0.25);
}

.value-card i {
    font-size: 2.5rem;
    color: #D4B483;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #333333;
    margin-bottom: 1rem;
}

.value-card p {
    color: #555555;
}

/* Team Section */
.team-section {
    padding: 5rem 5%;
    background-color: #FFFFFF;
    text-align: center;
}

.team-section h2 {
    color: #333333;
    margin-bottom: 3rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background-color: #F8F8F8;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #C19A6B;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
    padding: 4px;
}

.team-member h3 {
    color: #333333;
    margin-bottom: 0.5rem;
}

.team-member .title {
    color: #D4B483;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member p {
    color: #555555;
}

.informatic-section {
    padding: 5rem 5%;
    background-color: #FFFFFF;
    text-align: center;
    border-top: 1px solid rgba(212, 180, 131, 0.3);
}

.informatic-section h2 {
    color: #333333;
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.informatic-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.informatic-section ul {
    list-style: none;
    padding-left: 0;
    margin: 0 auto 3rem auto;
}

.informatic-section ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #555555;
}

.ivtherapy-section {
    padding: 5rem 5%;
    padding-bottom: 0;
    background-color: #F8F8F8;
    text-align: center;
    border-top: 1px solid rgba(212, 180, 131, 0.3);
}

.ivtherapy-section h2 {
    color: #333333;
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.ivtherapy-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.ivtherapy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 5rem 5%;
    padding-top: 0;
}

.services-section {
    padding: 5rem 5%;
    padding-bottom: 0;
    background-color: #FFFFFF;
    text-align: center;
    border-top: 1px solid rgba(212, 180, 131, 0.3);
}

.services-section h2 {
    color: #333333;
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.services-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 5rem 5%;
    padding-top: 0;
    background-color: #FFFFFF;
}

.service-card {
    background-color: #F8F8F8;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(212, 180, 131, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 180, 131, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #C19A6B;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 180, 131, 0.25);
}

.service-card i {
    font-size: 2.5rem;
    color: #D4B483;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #333333;
    margin-bottom: 1rem;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    color: #555555;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #555555;
}

.service-card ul li:before {
    content: "•";
    color: #D4B483;
    position: absolute;
    left: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 5rem 5%;
    background-color: #F8F8F8;
    color: #333333;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #D4B483;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(212, 180, 131, 0.3);
}

.cta-button:hover {
    background-color: #C19B6E;
    box-shadow: 0 5px 10px rgba(212, 180, 131, 0.4);
    color: #FFFFFF;
}

/* Hero Section */
.hero {
    height: 60vh;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
                url('../images/hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    margin-top: 60px;
    border-bottom: 1px solid rgba(212, 180, 131, 0.3);
}

.hero-content {
    color: #333333;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 5rem 5%;
    background-color: #FFFFFF;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: #F8F8F8;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(212, 180, 131, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 180, 131, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #C19A6B;
}

.feature-card:hover::after {
    transform: translateX(0);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 180, 131, 0.25);
}

.feature-card i {
    font-size: 2.5rem;
    color: #D4B483;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #333333;
}

.feature-card p {
    color: #555555;
}

/* About Preview Section */
.about-preview {
    padding: 5rem 5%;
    background-color: #FFFFFF;
    border-top: 1px solid rgba(212, 180, 131, 0.3);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    color: #333333;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 2rem;
    color: #555555;
}

.learn-more {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #D4B483;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(212, 180, 131, 0.3);
}

.learn-more:hover {
    background-color: #C19B6E;
    box-shadow: 0 5px 10px rgba(212, 180, 131, 0.4);
    color: #FFFFFF;
}

/* Footer */
footer {
    background-color: #F8F8F8;
    color: #333333;
    padding: 3rem 5% 1rem;
    border-top: 1px solid rgba(212, 180, 131, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 2rem;
    gap: 2rem;
}

.footer-section.quick-links {
    flex: 0 0 auto; /* Don't grow, don't shrink, auto basis */
    width: auto;
}

.footer-section h3 {
    color: #333333;
    position: relative;
    padding-bottom: 0.5rem;
    font-size: 1.3rem;
}



.footer-section p {
    display: flex;
    align-items: center;
    color: #555555;
}

.footer-section i {
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 1rem;
    text-align: center;
    flex-shrink: 0;
}

.footer-section p span {
    word-break: break-all;
    overflow-wrap: break-word;
    hyphens: auto;
}

.footer-section .social-links {
    display: flex;
    gap: 1.5rem;
}

.footer-section .social-links a {
    color: #555555;
    transition: color 0.3s ease;
}

.footer-section .social-links a:hover {
    color: #D4B483;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-section.quick-links ul li:before {
    content: "•";
    margin-right: 1rem;
}


.footer-section ul li a:hover {
    color: #D4B483;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 180, 131, 0.3);
    color: #555555;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-section.quick-links {
        width: 100%;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #2C2C2C;
        padding: 1rem;
        border-top: 1px solid rgba(212, 180, 131, 0.3);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
    }

    .nav-links a {
        color: #FFFFFF;
        margin: 0.5rem 0;
        margin-left: 0;  /* Reset the left margin that's set for desktop */
    }

    .mobile-menu {
        display: block;  /* Show the mobile menu button */
    }

    .navbar.scrolled .nav-links {
        background-color: #FFFFFF;
    }

    .logo img {
        max-height: 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .page-header {
        height: 30vh;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .team-member img {
        width: 150px;
        height: 150px;
    }

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

    .info-item {
        margin-bottom: 1.5rem;
    }
}