:root {
    --primary-color: #003b67;
    --secondary-color: #00c060;
    --gradient: linear-gradient(135deg, #003b67, #00c060);
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    position: relative;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* This accounts for the fixed navbar height */
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    z-index: 1000;
}

.nav-brand a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-cta {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(0, 59, 103, 0.95), rgba(0, 192, 96, 0.95));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('path-to-pattern.png') repeat;
    opacity: 0.1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cta-button {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.secondary-button {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.secondary-button:hover {
    gap: 0.75rem;
    opacity: 0.9;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

.hero-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    z-index: -1;
    transform: rotate(-3deg);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Feature Cards */
.features {
    padding: 6rem 5%;
    background: var(--light-gray);
    scroll-margin-top: 80px;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.features h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    background: rgba(0, 192, 96, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Services Section Styling */
.services {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(0, 59, 103, 0.03), rgba(0, 192, 96, 0.03));
    scroll-margin-top: 80px;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.services h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.services-list {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 59, 103, 0.1);
}

.services-list ul {
    list-style: none;
    padding: 0;
}

.services-list li {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(0, 192, 96, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.services-list li:hover {
    transform: translateX(10px);
    background: rgba(0, 192, 96, 0.08);
}

.services-list li i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 1.5rem;
    background: rgba(0, 192, 96, 0.1);
    padding: 12px;
    border-radius: 50%;
}

.services-list li:nth-child(odd) {
    background: rgba(0, 59, 103, 0.03);
}

.services-list li:nth-child(odd):hover {
    background: rgba(0, 59, 103, 0.08);
}

.services-list li:nth-child(odd) i {
    color: var(--primary-color);
    background: rgba(0, 59, 103, 0.1);
}

/* Contact Info Section */
.contact-info {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    scroll-margin-top: 80px;
}

.contact-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.contact-info h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
}

.contact-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Footer Styles */
footer {
    background: var(--primary-color);
    padding: 4rem 5%;
    color: var(--white);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to right bottom, transparent 49%, var(--primary-color) 50%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--white);
    position: relative;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
}

.social-links a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-decoration: none;

}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* SMM Services Section */
.smm-services {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    position: relative;
    scroll-margin-top: 80px;
}

.smm-services::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to right bottom, transparent 49%, var(--primary-color) 50%);
}

.smm-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.smm-services h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

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

.smm-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.smm-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.smm-card i {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.smm-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.smm-card p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Clinic Services Section */
.clinic-services {
    padding: 6rem 5%;
    background: var(--light-gray);
    position: relative;
    scroll-margin-top: 80px;
}

.clinic-container {
    max-width: 1200px;
    margin: 0 auto;
}

.clinic-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.clinic-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-block {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-block h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.service-block li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.service-block li:hover {
    background: rgba(0, 192, 96, 0.05);
}

.service-block li i {
    color: var(--secondary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.additional-services {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.additional-services h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.service-tags span {
    background: rgba(0, 59, 103, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-tags span:hover {
    background: rgba(0, 192, 96, 0.1);
    transform: translateY(-2px);
}

.clinic-cta {
    text-align: center;
    background: var(--gradient);
    padding: 3rem;
    border-radius: 15px;
    color: var(--white);
}

.clinic-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.clinic-cta p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        box-shadow: var(--shadow);
    }

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

    .hero {
        padding: 4rem 1rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .hero-shape {
        display: none;
    }

    .services {
        padding: 4rem 1rem;
    }

    .services h2 {
        font-size: 2rem;
    }

    .services-list {
        padding: 1rem;
    }

    .services-list li {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .services-list li i {
        font-size: 1.2rem;
        padding: 8px;
        margin-right: 1rem;
    }

    .contact-info {
        padding: 3rem 1rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-item i {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }

    footer {
        padding: 3rem 1rem;
    }

    .footer-logo {
        font-size: 2rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .features {
        padding: 4rem 1rem;
    }

    .features h2 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-card i {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 1.8rem;
    }

    .smm-services {
        padding: 4rem 1rem;
    }

    .smm-services h2 {
        font-size: 2rem;
    }

    .smm-card {
        padding: 2rem 1.5rem;
    }

    .smm-card i {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 1.8rem;
    }

    .clinic-services {
        padding: 4rem 1rem;
    }

    .clinic-services h2 {
        font-size: 2rem;
    }

    .service-block {
        padding: 1.5rem;
    }

    .service-tags {
        gap: 0.5rem;
    }

    .service-tags span {
        font-size: 0.8rem;
    }

    .clinic-cta {
        padding: 2rem 1rem;
    }

    .clinic-cta h3 {
        font-size: 1.5rem;
    }
}
