/* 
    Health Dialogue - Design System & Styles 
    Aesthetics: Premium, Clinical, Trustworthy 
*/

:root {
    --primary: #1e3a8a;
    /* Deep Navy Blue */
    --primary-light: #3b82f6;
    /* Vibrant Blue */
    --primary-soft: rgba(30, 58, 138, 0.1);
    --secondary: #60a5fa;
    /* Light Blue Accent */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --text-main: #1a1a1a;
    --text-muted: #555555;
    --text-light: #888888;
    --white: #ffffff;
    --black: #000000;

    --serif-font: 'Playfair Display', serif;
    --sans-font: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 20px 40px rgba(0, 0, 0, 0.08);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --container-max: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans-font);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.logo-text {
    font-family: var(--serif-font);
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-blue {
    color: var(--primary);
}

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

.max-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.max-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--sans-font);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background-color: #f1f1f1;
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-text {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.btn-text:hover i {
    transform: translateX(4px);
}

/* Header & Nav */
#main-header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

#main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    height: 70px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;

}

.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.icon-circle.blue {
    background-color: var(--primary);
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
   
}

#main-header:not(.scrolled) .icon-circle.blue {
    background-color: var(--secondary);
    /* Lighter blue icon for dark backgrounds */
}

.logo-text {
    font-size: 1.2rem;
    color: var(--white);
    /* Default for hero background */
    display: flex;
    flex-direction: column;
}

#main-header.scrolled .logo-text {
    color: var(--text-main);
}

.logo-text small {
    font-family: var(--sans-font);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    /* Light for dark background */
    transition: var(--transition);
}

#main-header.scrolled .logo-text small {
    color: var(--text-muted);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.desktop-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white);
    /* White for hero */
}

#main-header.scrolled .desktop-nav a {
    color: var(--text-main);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    /* White for hero */
    transition: var(--transition);
}

#main-header.scrolled .mobile-menu-btn {
    color: var(--text-main);
}

.desktop-nav a:hover {
    color: var(--primary-light);
    /* Lighter blue icon for dark backgrounds */
}

#main-header.scrolled .desktop-nav a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background-image: url('next.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero .highlight {
    color: var(--secondary);
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Vision Mission Cards (Overlapping) */
.vision-mission-cards {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    border-bottom: 5px solid var(--primary);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-soft);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0;
}

/* About Section */
.grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    z-index: 2;
    position: relative;
}

.image-caption {
    text-align: center;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--serif-font);
    line-height: 1.6;
}

.image-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--primary);
    top: -20px;
    left: -20px;
    border-radius: 50%;
    z-index: 1;
}

.feature-list {
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Services Grid */
.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-headline {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-align: left;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Ensure left alignment */
}

.service-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.service-icon {
    width: 48px;
    height: 48px;
    background-color: #f0f4f8;
    /* Very Light Blue */
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    width: 24px;
    height: 24px;
}
.service-icon h3 {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.service-headline {
    color: var(--primary-light);
    font-family: var(--sans-font);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: none;
    /* Changed from uppercase to match image */
    letter-spacing: normal;
}

.service-card p:not(.service-headline) {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    /* Let's hide 'Learn More' link if it interferes with visual purity of the image, or just style it simply. */
}

.service-link {
    display: none;
    /* Hiding based on the image provided which doesn't show it */
}


/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: var(--white);
    max-width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: row;
}

.team-image-container {
    width: 45%;
}

.team-image-container img {
    height: 100%;
    object-fit: cover;
}

.team-info {
    width: 75%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.team-info .role {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-info .bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.team-socials {
    display: flex;
    gap: 1rem;
    color: var(--text-light);
}

.team-socials a:hover {
    color: var(--primary);
}

/* Spiritual Vision Section */
.spiritual-vision-section {
    background: var(--bg-white);
}

.spiritual-image {
    position: relative;
    border-radius: var(--radius-lg);
   
    max-width: 62%;
    margin: 0 auto;
}

.spiritual-image .image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.spiritual-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.spiritual-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* FAQ Accordion */
.faq-accordion {
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-contact {
    margin-top: 1.75rem;
    text-align: center;
    font-size: 0.98rem;
    color: #444;
}

.faq-contact a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 700;
}

.faq-contact a:hover {
    color: #184a87;
}

/* Contact CTA */
.cta-box {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 5rem 4rem;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-buttons-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-location-btn {
    width: auto;
}

/* Footer */
.main-footer {
    background-color: #f1f5f9;
    /* Light Blue Gray */
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 60px;
}

.footer-brand p {
    margin-top: 1.5rem;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: background-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.footer-socials a svg,
.footer-socials a i {
    width: 22px;
    height: 22px;
    display: inline-flex;
    stroke: currentColor;
    fill: none;
}

.footer-socials a svg path,
.footer-socials a svg line,
.footer-socials a svg circle,
.footer-socials a svg polyline,
.footer-socials a svg polygon {
    stroke: currentColor;
    fill: none;
}

.footer-socials a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

.footer-socials a svg {
    fill: currentColor;
    stroke: none;
}

.footer-socials a svg path {
    fill: currentColor;
    stroke: none;
}

.footer-socials a:hover svg {
    fill: currentColor;
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.footer-nav li {
    margin-bottom: 1rem;
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Animations */
.animate-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.animate-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.animate-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */

/* Tablet: 1024px and below */
@media (max-width: 1024px) {
    .grid-split {
        gap: 2rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}

/* Tablet: 1200px and below */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-box {
        padding: 4rem 3rem;
    }
}

/* Mobile Large: 850px and below */
@media (max-width: 850px) {
    :root {
        --header-height: 70px;
    }

    .container {
        padding: 0 1rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .grid-split,
    .grid-2,
    .services-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
    }

    .team-card {
        flex-direction: column;
        max-width: 100%;
        height: auto;
    }

    .team-image-container,
    .team-info {
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-btns {
        gap: 1rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .card {
        padding: 2rem;
    }

    .card h3 {
        font-size: 1.4rem;
    }

    .btn-lg {
        padding: 0.9rem 1.6rem;
        font-size: 1rem;
    }

    .footer-grid {
        gap: 2.5rem;
        grid-template-columns: 1fr;
    }

    .footer-nav h4,
    .footer-contact h4 {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* Mobile Medium: 600px and below */
@media (max-width: 600px) {
    :root {
        --container-max: 100%;
    }

    .container {
        padding: 0 1rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .logo-text small {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .hero {
        min-height: 600px;
        height: auto;
        padding: 120px 0 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

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

    .hero-btns {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn,
    .btn-lg {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .vision-mission-cards {
        margin-top: -40px;
    }

    .grid-2 {
        gap: 1.5rem;
    }

    .card {
        padding: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .card p {
        font-size: 0.9rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .about-text h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .feature-list li {
        font-size: 0.9rem;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }

    .team-card {
        max-width: 100%;
    }

    .team-info {
        padding: 1.5rem;
    }

    .team-info h4 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .team-info .bio {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }

    .cta-text h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .cta-text p {
        font-size: 0.95rem;
    }

    .cta-actions {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        align-items: stretch;
    }

    .cta-buttons-row {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .faq-item {
        margin-bottom: 0.8rem;
    }

    .faq-question {
        padding: 1.2rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1.2rem 1.2rem;
        font-size: 0.9rem;
    }

    .faq-contact {
        margin-top: 1.5rem;
        font-size: 0.9rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    .footer-brand p {
        margin-top: 1rem;
        font-size: 0.9rem;
    }

    .footer-socials {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .footer-socials a {
        width: 40px;
        height: 40px;
    }

    .footer-socials a svg,
    .footer-socials a i {
        width: 20px;
        height: 20px;
    }

    .footer-nav h4,
    .footer-contact h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

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

    .footer-contact p {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding: 20px 0;
        font-size: 0.85rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

/* Mobile Small: 480px and below */
@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }

    .section-padding {
        padding: 40px 0;
    }

    .header-container {
        gap: 1rem;
    }

    .logo {
        gap: 0.5rem;
    }

    .icon-circle {
        width: 28px;
        height: 28px;
    }

    .logo-text {
        font-size: 0.85rem;
    }

    .logo-text small {
        font-size: 0.55rem;
    }

    .hero {
        padding: 100px 0 50px;
        min-height: 500px;
    }

    .hero-overlay {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    }

    .hero h1 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .vision-mission-cards {
        margin-top: -30px;
    }

    .card {
        padding: 1.2rem;
    }

    .card h3 {
        font-size: 1.1rem;
    }

    .about-text h2 {
        font-size: 1.4rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .team-info h4 {
        font-size: 1.1rem;
    }

    .cta-text h2 {
        font-size: 1.4rem;
    }

    .whatsapp-float {
        bottom: 10px;
        right: 10px;
    }
}