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

/* Prevent black sections during scroll */
:root {
    background: #FFFFFF !important;
}

html {
    background: #FFFFFF !important;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
    height: 100%;
    min-height: 100%;
}

body {
    font-family: 'Manrope', 'Mukta', Arial, sans-serif;
    background: #FFFFFF !important;
    color: #333333;
    line-height: 1.7;
    overscroll-behavior: none;
    -webkit-overscroll-behavior: none;
    min-height: 100vh;
    position: relative;
}

/* Additional mobile scroll fixes */
@supports (-webkit-touch-callout: none) {
    html {
        background: #FFFFFF !important;
        -webkit-background-size: cover;
    }
    
    body {
        background: #FFFFFF !important;
        -webkit-background-size: cover;
        background-attachment: fixed;
    }
}

/* Comprehensive mobile scroll and overscroll fixes */
@media (max-width: 768px) {
    html {
        background: #FFFFFF !important;
        overscroll-behavior-y: none;
        -webkit-overscroll-behavior-y: none;
        touch-action: pan-y;
    }
    
    body {
        background: #FFFFFF !important;
        overscroll-behavior-y: none;
        -webkit-overscroll-behavior-y: none;
        position: relative;
        min-height: 100vh;
    }
    
    /* Ensure all main sections have white backgrounds on mobile */
    .hero, 
    .promise, 
    .conditions, 
    .optimization, 
    .how-it-works, 
    .choose-path, 
    .testimonials, 
    .closing-cta, 
    .contact,
    .footer,
    .green-strip {
        background: #FFFFFF !important;
        position: relative;
    }
    
    .hero.green-hero,
    .promise,
    .how-it-works,
    .footer {
        background: #F8F9FA !important;
    }
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #1A252F;
    font-family: 'Mukta', 'Manrope', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}
h1 { font-size: 2.8rem; margin-bottom: 1.2rem; }
h2 { font-size: 2.2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.7rem; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p, span, li {
    color: #666666;
    font-size: 1.08rem;
}

.section-title {
    text-align: center;
    color: #1A252F;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 800;
}

.section-description {
    text-align: center;
    color: #666666;
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
}

/* Buttons */
.btn, .btn-primary {
    background: #007BFF;
    color: #FFFFFF;
    border: none;
    border-radius: 30px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,123,255,0.15);
    text-decoration: none;
}
.btn:hover, .btn-primary:hover {
    background: #0056B3;
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(0,123,255,0.25);
}
.btn-secondary {
    background: #fff;
    color: #007BFF;
    border: 2px solid #007BFF;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 700;
    transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover {
    background: #007BFF;
    color: #FFFFFF;
}

.btn-whatsapp {
    background: #25d366;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #128c7e;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(44,62,80,0.04);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.navbar {
    width: 100%;
}

.nav-brand {
    flex: 0 0 auto;
    margin-right: auto;
}

.logo {
    height: 48px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex: 0 0 auto;
    margin-left: auto;
}

.nav-link {
    color: #333333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #007BFF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #007BFF;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    flex: 0 0 auto;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* HERO SECTION: Ensure text visibility */
.hero {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 100px 0 60px 0;
    text-align: center;
}

.hero-title {
    color: #1A252F;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: #666666;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-buttons .btn {
    display: inline-block !important;
    visibility: visible !important;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background-color: #007BFF !important;
    color: #FFFFFF !important;
    border: none;
}

.hero-buttons .btn-secondary {
    background-color: transparent !important;
    color: #007BFF !important;
    border: 2px solid #007BFF;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 3;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Section 2: OUR PROMISE */
.promise {
    padding: 80px 0;
    background: #FFFFFF !important;
}

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

.promise-item {
    text-align: center;
    padding: 2rem;
    background: #FFFFFF !important;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E9ECEF !important;
    color: #2C3E50 !important;
}

.promise-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15) !important;
    background: #FFFFFF !important;
}

.promise-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #007BFF !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    font-size: 2rem;
}

.promise-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2C3E50 !important;
}

.promise-item p {
    color: #666666 !important;
    line-height: 1.6;
}

/* Force bright backgrounds for all promise cards */
.promise-grid .promise-item,
.promise .promise-item {
    background: #FFFFFF !important;
    background-color: #FFFFFF !important;
    color: #2C3E50 !important;
}

.promise-item *,
.promise-item h3,
.promise-item p {
    color: inherit !important;
}

/* Force bright backgrounds for ALL condition cards */
.condition-item,
.conditions-grid .condition-item,
.conditions .condition-item {
    background: #FFFFFF !important;
    background-color: #FFFFFF !important;
    color: #2C3E50 !important;
    border: 1px solid #E9ECEF !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.condition-item span,
.condition-item h3,
.condition-item p {
    color: #2C3E50 !important;
}

.condition-item:hover {
    background: #FFFFFF !important;
    background-color: #FFFFFF !important;
}

/* Ultra-specific overrides for stubborn dark cards */
.conditions-grid .condition-item[data-condition],
section.conditions .condition-item,
.condition-item[data-condition="acid-reflux"],
.condition-item[data-condition="pcod-pcos"],
.condition-item[data-condition="diabetes"],
.condition-item[data-condition="fatty-liver"],
.condition-item[data-condition="hypertension"],
.condition-item[data-condition="hypothyroid"] {
    background: #FFFFFF !important;
    background-color: #FFFFFF !important;
    color: #2C3E50 !important;
}

/* Force all text in condition cards to be dark */
.condition-item * {
    color: #2C3E50 !important;
}

.condition-item .condition-desc {
    background: #F8F9FA !important;
    color: #666666 !important;
}

/* Force bright backgrounds for ALL path cards (Work With Us section) */
.path-card,
.choose-path .path-card,
.path-grid .path-card {
    background: #FFFFFF !important;
    background-color: #FFFFFF !important;
    color: #2C3E50 !important;
    border: 1px solid #E9ECEF !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.path-card h3,
.path-card p {
    color: #2C3E50 !important;
}

.path-card:hover {
    background: #FFFFFF !important;
    background-color: #FFFFFF !important;
}

/* Force bright backgrounds for ALL testimonial cards */
.testimonial-card,
.testimonials .testimonial-card,
.testimonials-grid .testimonial-card {
    background: #FFFFFF !important;
    background-color: #FFFFFF !important;
    color: #2C3E50 !important;
    border: 1px solid #E9ECEF !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.testimonial-card *,
.testimonial-text,
.testimonial-author h4,
.testimonial-name {
    color: #2C3E50 !important;
}

.testimonial-location {
    color: #666666 !important;
}

/* GLOBAL OVERRIDE: Force all dark sections to be light */
section.dark,
.dark-section,
.hero.dark,
.about-hero.dark,
.services-hero.dark,
.condition-hero.dark {
    background: #F8F9FA !important;
    color: #2C3E50 !important;
}

/* Force all cards to be bright */
.card,
.blog-card,
.feature-card,
.service-card,
.stat-card,
.approach-item,
.timeline-item,
.faq-item,
.limitation-item,
.what-youll-do-item,
.who-this-item,
.different-item,
.root-cause-item,
.condition-card {
    background: #FFFFFF !important;
    color: #2C3E50 !important;
    border: 1px solid #E9ECEF !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

/* Force all text to be readable */
.card h3,
.card p,
.card span {
    color: #2C3E50 !important;
}

/* ULTIMATE OVERRIDE: Force ALL sections to be bright */
section,
.section,
.hero,
.about-hero,
.services-hero,
.condition-hero,
.blog-hero {
    background: #FFFFFF !important;
}

/* Alternating light grey sections for visual variety */
section:nth-child(even),
.conditions,
.choose-path,
.about-philosophy,
.awards-logos,
.about-testimonials,
.conditions-explore,
.whats-different,
.services-cta,
.about-cta,
.closing-cta {
    background: #F8F9FA !important;
}

/* Force all hero sections to be light */
.hero.green-hero,
.services-hero,
.about-hero,
.condition-hero {
    background: #F8F9FA !important;
    color: #1A252F !important;
}

/* Ensure all text in these sections is readable */
.services-hero *,
.about-hero *,
.condition-hero *,
.services-cta *,
.about-cta *,
.closing-cta * {
    color: #1A252F !important;
}

.services-hero h1,
.services-hero h2,
.about-hero h1,
.condition-hero h1 {
    color: #1A252F !important;
}

.services-hero p,
.about-hero p,
.condition-hero p {
    color: #666666 !important;
}

.promise-icon i {
    color: #FFFFFF !important;
}

/* Section 3: CONDITIONS WE SUPPORT */
.conditions {
    padding: 80px 0;
    background: #F8F9FA !important;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Expandable Condition Cards */
.condition-item {
    position: relative;
    background: #FFFFFF;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid #E9ECEF;
}
.condition-item .expand-btn {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: #007BFF;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 2;
}
.condition-item.expanded .expand-btn i {
    transform: rotate(180deg);
}
.condition-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
    font-size: 1.05rem;
    color: #666666;
    margin-top: 1.2rem;
    background: #F8F9FA;
    border-radius: 12px;
    padding: 1.1rem 1rem 1rem 1rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.condition-item.expanded .condition-desc {
    max-height: 300px;
    opacity: 1;
}
@media (max-width: 900px) {
    .conditions-grid {
        grid-template-columns: 1fr;
    }
    .condition-item {
        padding: 1.5rem 1rem 1rem 1rem;
    }
}

.condition-item:hover {
    background: #FFFFFF;
    border-color: #007BFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.condition-item i {
    font-size: 1.5rem;
    color: #007BFF !important;
    width: 30px;
    text-align: center;
}

.condition-item span {
    font-weight: 500;
    color: #2C3E50;
}

.condition-item .fa-shield-alt, .condition-item .fa-shield-virus {
    color: #FFFFFF !important;
}

.condition-item .fa-leaf,
.condition-item .fa-vial,
.root-cause-icon .fa-bug {
    color: #FFFFFF !important;
}

/* Section 4: EVEN IF YOU FEEL FINE */
.optimization {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.optimization-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.optimization-text {
    text-align: left;
}

.optimization-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.optimization-text .section-description {
    text-align: left;
    margin-bottom: 2rem;
}

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

.opt-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.opt-icon i {
    font-size: 1.5rem;
    color: #FFFFFF !important;
    width: 30px;
    text-align: center;
}

.opt-icon span {
    font-weight: 500;
    color: #2c3e50;
}

.optimization-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section 5: HOW IT WORKS */
.how-it-works {
    padding: 80px 0;
    background: #FFFFFF !important;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background: #FFFFFF !important;
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid #E9ECEF !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15) !important;
    background: #FFFFFF !important;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #007BFF;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2C3E50 !important;
}

.process-step p {
    color: #666666 !important;
    line-height: 1.6;
}

.process-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Section 6: CHOOSE YOUR PATH */
.choose-path {
    padding: 80px 0;
    background: #F8F9FA !important;
}

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

.path-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #E9ECEF;
}

.path-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #007BFF;
}

.path-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.path-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #007BFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 2rem;
}

.path-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.path-card p {
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.path-link {
    display: inline-block;
    padding: 10px 25px;
    background: #007BFF;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.path-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
    color: #FFFFFF;
}

/* Section 7: CLOSING SECTION + CTA */
.closing-cta {
    padding: 80px 0;
    background: #F8F9FA !important;
    color: #333333 !important;
    text-align: center;
}

.closing-cta .section-title {
    color: #333333;
    margin-bottom: 1.5rem;
}

.closing-cta .section-description {
    color: #666666;
    margin-bottom: 2rem;
}

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

.cta-buttons .btn-secondary {
    color: #FFFFFF;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #007BFF;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: #FFFFFF !important;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #007BFF;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.stat-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stat-rating span {
    margin-left: 0.5rem;
    font-weight: 600;
    color: #007BFF;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #F8F9FA !important;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-subtitle {
    font-size: 1.5rem;
    color: #007BFF;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-benefits {
    margin: 2rem 0;
}

.about-benefits h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.about-benefits ul {
    list-style: none;
}

.about-benefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.about-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007BFF;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-contact {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-contact h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.email-link {
    color: #3498DB;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.email-link:hover {
    text-decoration: underline;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: transparent !important;
}

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

.service-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #3498DB !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    font-size: 2rem;
}

.service-icon i {
    color: #FFFFFF !important;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #3498DB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #2980B9;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #FFFFFF !important;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}
.testimonial-card {
    background: #FFFFFF;
    fill: #FFFFFF;
    padding: 2.5rem 2rem 2rem 2.5rem;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 220px;
    border: 1px solid #E9ECEF;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1.2rem;
    left: 1.5rem;
    font-size: 2.8rem;
    color: #b3e6c7;
    font-family: serif;
    opacity: 1;
    line-height: 1;
}
.testimonial-text {
    font-style: italic;
    color: #666666;
    line-height: 1.7;
    font-size: 1.15rem;
    margin-bottom: 2.2rem;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    text-align: left;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-left: 1.5rem;
    margin-top: auto;
}
.testimonial-author h4 {
    color: #2C3E50;
    font-weight: 700;
    margin: 0;
    font-size: 1.08rem;
}
.testimonial-author span {
    color: #666;
    font-size: 1.02rem;
    font-weight: 400;
    margin-left: 0.5rem;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    margin-left: 1.5rem;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-right: 0.1rem;
    animation: none;
}

.testimonial-rating span {
    margin-left: 0.5rem;
    font-weight: 600;
    color: #3b5bdb;
    font-size: 1.08rem;
}

.testimonial-avatar, .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1B5E20 0%, #43e97b 100%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-right: 0.7rem;
}

.testimonial-name {
    color: #2C3E50;
    font-weight: 700;
    font-size: 1.08rem;
}

.testimonial-location {
    color: #666666;
    font-size: 1.02rem;
    font-weight: 400;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .testimonial-card {
        min-height: 0;
        padding: 2rem 1.2rem 1.5rem 1.5rem;
    }
    .testimonial-text, .testimonial-author {
        margin-left: 1.2rem;
    }
}

/* Contact Section */
.contact {
    padding: 120px 0 80px 0;
    background: #F8F9FA !important;
    scroll-margin-top: 100px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-description {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #007BFF !important;
    color: #FFFFFF !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: #1A252F;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item a {
    color: #007BFF;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E9ECEF;
    position: relative;
}

.contact-form::before {
    content: "Send Us a Message";
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A252F;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.form-group:last-of-type {
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #E9ECEF;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Manrope', Arial, sans-serif;
    background: #FFFFFF;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #F8F9FA !important;
    color: #2C3E50 !important;
    padding: 40px 0 20px 0;
    text-align: center;
    font-size: 1rem;
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #666666;
    line-height: 1.6;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: #1A252F !important;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #666666 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498DB;
}

.footer-services li {
    color: #666666 !important;
}

.footer-contact p {
    color: #666666 !important;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #E9ECEF !important;
    color: #666666 !important;
}

/* About Page Specific Styles */

/* Section 1: About Hero */
.about-hero {
    padding: 120px 0 80px;
    background: #F8F9FA !important;
    color: #1A252F !important;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    display: none !important;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1A252F !important;
}

.about-hero-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.8;
    color: #666666 !important;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Section 2: About Intro */
.about-intro {
    padding: 80px 0;
    background: #FFFFFF !important;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-intro-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.about-intro-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-intro-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Section 3: About Philosophy */
.about-philosophy {
    padding: 80px 0;
    background: #F8F9FA !important;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.philosophy-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.philosophy-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.philosophy-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #3498DB !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Section 4: Awards & Logos */
.awards-logos {
    padding: 80px 0;
    background: #FFFFFF !important;
}

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

.awards-text {
    margin-bottom: 3rem;
}

.awards-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1rem;
}

.media-section,
.affiliations-section {
    margin: 3rem 0;
}

.media-section h3,
.affiliations-section h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.media-logos,
.affiliation-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.media-logo,
.affiliation-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.media-logo:hover,
.affiliation-logo:hover {
    background: white;
    border-color: #3498DB;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.media-logo i,
.affiliation-logo i {
    font-size: 1.5rem;
    color: #3498DB !important;
    width: 30px;
    text-align: center;
}

.media-logo span,
.affiliation-logo span {
    font-weight: 500;
    color: #2c3e50;
}

/* Section 5: About Testimonials */
.about-testimonials {
    padding: 80px 0;
    background: #F8F9FA !important;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.2rem;
}

/* Section 6: About CTA */
.about-cta {
    padding: 80px 0;
    background: #F8F9FA !important;
    color: #333333 !important;
    text-align: center;
}

.about-cta .section-title {
    color: #333333;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-footer {
    font-style: italic;
    margin-top: 2rem;
    color: #666666;
    font-size: 1.1rem;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .optimization-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .optimization-text .section-title,
    .optimization-text .section-description {
        text-align: center;
    }

    .optimization-icons {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* About Page Mobile Styles */
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-intro-text .section-title {
        text-align: center;
        font-size: 1.8rem;
    }

    .about-intro-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 150px;
    }

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

    .philosophy-text .section-title {
        text-align: center;
        font-size: 1.8rem;
    }

    .media-logos,
    .affiliation-logos {
        grid-template-columns: 1fr;
    }
    
    /* Contact Section Mobile Styles */
    .contact {
        padding: 100px 0 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        padding: 2rem;
        order: 2;
    }
    
    .contact-info {
        order: 1;
        text-align: center;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #FFFFFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    color: #FFFFFF;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }

    .btn-whatsapp {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* Services Page Specific Styles */

/* Services Hero Section */
.services-hero {
    padding: 120px 0 80px;
    background: #F8F9FA !important;
    color: #2C3E50 !important;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    display: none !important;
}

.services-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.services-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1b5e20 !important;
}

.services-hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 500;
    color: #1b5e20 !important;
}

.services-hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.8;
    color: #1b5e20 !important;
}

.services-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Root Cause Section */
.root-cause {
    padding: 80px 0;
    background: #FFFFFF !important;
}

.root-cause-content {
    text-align: center;
}

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

.root-cause-item {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.root-cause-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #1b5e20 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    font-size: 2rem;
}

.root-cause-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.root-cause-item p {
    color: #666;
    line-height: 1.6;
}

.root-cause-icon i {
    color: #FFFFFF !important;
}

/* Conditions Explore Section */
.conditions-explore {
    padding: 80px 0;
    background: #F8F9FA !important;
}

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

.condition-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.condition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.condition-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1B5E20 0%, #43e97b 100%) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    font-size: 1.7rem;
    margin-right: 1rem;
    flex-shrink: 0;
}
.condition-icon i {
  color: #FFFFFF !important;
  font-size: 1.5rem;
}
.condition-item i {
  color: inherit !important;
  background: none !important;
  font-size: inherit;
  width: auto;
  text-align: inherit;
}

.condition-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.condition-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.condition-link {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #1B5E20 0%, #43e97b 100%) !important;
    color: #FFFFFF !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none !important;
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.10);
}

.condition-link:hover {
    background: linear-gradient(135deg, #217a3a 0%, #43e97b 100%) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 94, 32, 0.18);
}

/* Who This Works For Section */
.who-this-works {
    padding: 80px 0;
    background: #FFFFFF !important;
}

.who-this-content {
    text-align: center;
}

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

.who-this-item {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.who-this-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 2rem;
}

.who-this-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    line-height: 1.4;
}

/* What's Different Section */
.whats-different {
    padding: 80px 0;
    background: #F8F9FA !important;
}

.whats-different-content {
    text-align: center;
}

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

.different-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.different-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.different-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
}

.different-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.different-item p {
    color: #666;
    line-height: 1.6;
}

/* Limitations Section */
.limitations {
    padding: 80px 0;
    background: #FFFFFF !important;
}

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

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

.limitation-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.limitation-item:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.1);
}

.limitation-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
}

.limitation-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.limitation-item p {
    color: #666;
    line-height: 1.6;
}

.limitations-note {
    margin-top: 3rem;
    padding: 2rem;
    background: #F8F9FA !important;
    color: #2C3E50 !important;
    border-radius: 15px;
    border: 1px solid #E9ECEF !important;
}

.limitations-note p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: #FFFFFF !important;
}

/* Services CTA Section */
.services-cta {
    padding: 80px 0;
    background: #F8F9FA !important;
    color: #2C3E50 !important;
    text-align: center;
}

.services-cta .section-title {
    color: #1A252F !important;
    margin-bottom: 1.5rem;
}

.services-cta .cta-description {
    color: #666666 !important;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

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

.services-cta .btn-secondary {
    color: #007BFF !important;
    border-color: #007BFF !important;
}

.services-cta .btn-secondary:hover {
    background: #007BFF !important;
    color: #FFFFFF !important;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .services-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-hero-title {
        font-size: 2.5rem;
    }

    .services-hero-subtitle {
        font-size: 1.5rem;
    }

    .root-cause-grid {
        grid-template-columns: 1fr;
    }

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

    .who-this-grid {
        grid-template-columns: 1fr;
    }

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

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

    .services-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Condition-Specific Page Styles */

/* Condition Hero Section */
.condition-hero {
    padding: 120px 0 80px;
    background: #E6F4EA !important;
    color: #1B5E20 !important;
    position: relative;
    overflow: hidden;
}

.condition-hero::before {
    display: none !important;
}

.condition-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.condition-hero-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1b5e20 !important;
}

.condition-hero-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.8;
    color: #1b5e20 !important;
}

.condition-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Myths vs Facts Section */
.myths-facts {
    padding: 80px 0;
    background: transparent !important;
}

.myths-facts-content {
    text-align: center;
}

.myths-facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 900px) {
    .myths-facts-grid {
        grid-template-columns: 1fr;
    }
}

.myth-fact-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.myth-fact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.myth-fact-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #FFFFFF;
    padding: 1.5rem;
}

.myth-fact-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.myth-fact-content {
    padding: 2rem;
}

.myth-fact-content p {
    margin: 0;
    color: #2c3e50;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Timeline Section */
.timeline {
    padding: 80px 0;
    background: transparent !important;
}

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

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

.timeline-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.timeline-period {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.timeline-description h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    line-height: 1.4;
}

.timeline-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.timeline-note p {
    margin: 0;
    color: #666;
    font-style: italic;
}

/* FAQs Section */
.faqs {
    padding: 80px 0;
    background: transparent !important;
}

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

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

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    color: #667eea;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
}

/* Approach Section */
.approach {
    padding: 80px 0;
    background: transparent !important;
}

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

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

.approach-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.approach-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.approach-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
}

.approach-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.approach-item p {
    color: #666;
    line-height: 1.6;
}

/* Condition CTA Section */
.condition-cta {
    padding: 80px 0;
    background: #1b5e20 !important;
    color: #FFFFFF !important;
    text-align: center;
}

.condition-cta .section-title {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.condition-cta .cta-description {
    color: #666666;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

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

.condition-cta .btn-secondary {
    color: #FFFFFF;
    border-color: white;
}

.condition-cta .btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* Responsive Design for Condition Pages */
@media (max-width: 768px) {
    .condition-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .condition-hero-title {
        font-size: 2.5rem;
    }

    .myths-facts-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .condition-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .condition-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* What You'll Do Section */
.what-youll-do {
    padding: 80px 0;
    background: transparent !important;
}

.what-youll-do-content {
    text-align: center;
}

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

.what-youll-do-item {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.what-youll-do-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.what-youll-do-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
}

.what-youll-do-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    line-height: 1.4;
}

/* Condition Hero List Styles */
.condition-hero-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.condition-hero-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.condition-hero-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive Design for What You'll Do Section */
@media (max-width: 768px) {
    .what-youll-do-grid {
        grid-template-columns: 1fr;
    }
    
    .condition-hero-list li {
        font-size: 1rem;
    }
}

/* Green Hero Section */
.green-hero {
    background: #F8F9FA !important;
}
.green-hero .hero-title,
.green-hero .hero-subtitle {
    color: #1A252F !important;
    background: none !important;
    border: none !important;
}
.green-hero .btn-primary {
    color: #FFFFFF !important;
    background: #E74C3C !important;
    border-color: #E74C3C !important;
}

/* Trust Bar */
.trust-bar {
    background: #F8F9FA !important;
    color: #2C3E50 !important;
    border-bottom: 1px solid #E9ECEF !important;
    padding: 18px 0 12px 0;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 2px 12px rgba(44,62,80,0.04);
}
.trust-bar-content {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
}
.trust-bar .trust-google {
    color: #3498DB;
}
.trust-bar .trust-facebook {
    color: #1877f3;
}
.trust-bar .trust-star {
    color: #f9c846;
}
.trust-bar i {
    margin-right: 0.5em;
    font-size: 1.2em;
}
@media (max-width: 768px) {
    .trust-bar-content {
        flex-direction: column;
        gap: 0.7rem;
        font-size: 1rem;
    }
    .green-hero .hero-content {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Primary button */
.button-primary {
  background-color: #1B5E20;
  color: #FFFFFF;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
}

/* Secondary button (optional) */
.button-secondary {
  background-color: transparent;
  color: #1B5E20;
  border: 2px solid #1B5E20;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
}

.hero-title {
  color: #1A252F;
  font-size: 42px;
  font-weight: bold;
}

.hero-subtitle {
  color: #2C3E50;
  font-size: 22px;
  font-weight: normal;
}

.green-strip {
  background: #F8F9FA !important;
  color: #333333 !important;
  padding: 40px 0 40px 0;
  font-size: 2rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border-radius: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.green-strip .strip-text {
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #2C3E50;
}

.green-strip .strip-btn, .green-strip .btn-discovery {
  display: inline-block;
  background: #007BFF !important;
  color: #FFFFFF !important;
  border: 2px solid #007BFF !important;
  border-radius: 30px !important;
  padding: 16px 36px !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(0,123,255,0.15);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-top: 1.5rem;
}

.green-strip .strip-btn:hover, .green-strip .btn-discovery:hover {
  background: #0056B3 !important;
  color: #FFFFFF !important;
  border-color: #0056B3 !important;
  box-shadow: 0 8px 24px rgba(0,123,255,0.25);
}

.work-icon i,
.get-icon i {
  color: #007BFF !important;
}

.what-you-get-number, .get-step-number, .get-icon-number, .step-number, .approach-number, .path-icon, .what-youll-do-icon, .who-this-icon, .different-icon {
  background: #007BFF !important;
  color: #FFFFFF !important;
}

.get-started-btn, .join-circle-btn, .learn-more-btn, .btn-primary, .path-link {
  background: #007BFF !important;
  color: #FFFFFF !important;
  border: none !important;
}

.get-started-btn:hover, .join-circle-btn:hover, .learn-more-btn:hover, .btn-primary:hover, .path-link:hover {
  background: #0056B3 !important;
  color: #FFFFFF !important;
}

.back-to-top {
  position: fixed !important;
  bottom: 100px !important;
  right: 30px !important;
  z-index: 1100 !important;
  width: 60px !important;
  height: 60px !important;
  background: #007BFF !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 2rem !important;
  box-shadow: 0 4px 16px rgba(0,123,255,0.15);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}

.back-to-top i, .back-to-top svg {
  color: #FFFFFF !important;
  font-size: 2rem !important;
  display: block;
}

.back-to-top:hover {
  background: linear-gradient(135deg, #2980B9 0%, #1F618D 100%) !important;
  box-shadow: 0 8px 24px rgba(52,152,219,0.18);
}

.conditions-grid .condition-item .fa-shield-alt {
  color: #FFFFFF !important;
} 

/* --- Hypothyroidism Section Green Overrides --- */
.myth-fact-header,
.timeline-item::before,
.timeline-period,
.approach-item::before,
.approach-number,
.limitations-note,
.limitation-icon {
  background: linear-gradient(135deg, #1B5E20 0%, #43e97b 100%) !important;
  color: #FFFFFF !important;
}
.limitation-icon i,
.timeline-period i,
.approach-number i {
  color: #FFFFFF !important;
}
.limitations-note {
  background: linear-gradient(135deg, #1B5E20 0%, #43e97b 100%) !important;
  color: #FFFFFF !important;
}
.back-to-top, .whatsapp-float {
  z-index: 1200 !important;
  display: flex !important;
} 

.limitation-icon i {
  font-size: 2.2rem !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
} 

/* Limitation Card Structure for Hypothyroidism Page */
.limitations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.limitation-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.limitation-card:hover {
  border-color: #1B5E20;
  box-shadow: 0 10px 20px rgba(27,94,32,0.10);
}
.limitation-icon {
  background: linear-gradient(135deg, #1B5E20 0%, #43e97b 100%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.limitation-icon i {
  color: #FFFFFF;
  font-size: 2rem;
  display: block;
  text-align: center;
}
.limitation-text h3 {
  font-size: 1.15rem;
  color: #1B5E20;
  font-weight: 600;
  margin: 0;
} 

/* --- Blog Section Modern Tiles & Sidebar --- */
.blog-section {
  padding: 30px 0 60px;
  background: #FFFFFF !important;
}

.blog-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.blog-sidebar {
  background: #FFFFFF !important;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
  padding: 2rem 1.5rem;
  min-width: 260px;
  max-width: 300px;
  margin-bottom: 2rem;
  border: 1px solid #E9ECEF !important;
}

.blog-sidebar h3 {
  color: #2C3E50 !important;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.blog-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-categories li {
  margin-bottom: 1rem;
}

.blog-categories a {
  color: #2C3E50 !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  transition: color 0.2s;
}

.blog-categories a:hover {
  color: #007BFF !important;
}

.blog-main {
  flex: 1;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
}

.blog-card {
  background: #FFFFFF !important;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 420px;
  border: 1px solid #E9ECEF !important;
}

.blog-card:hover {
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15) !important;
  transform: translateY(-6px) scale(1.02);
}

.blog-image-placeholder {
  background: linear-gradient(135deg, #e6f4ea 0%, #b3e6c7 100%);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #1B5E20;
  text-align: center;
  border-bottom: 4px solid #43e97b;
}

.blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.2rem 0 0.7rem 0;
}

.blog-tags span {
  background: #007BFF !important;
  color: #FFFFFF !important;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 16px;
  padding: 0.3rem 0.9rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.2rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2C3E50 !important;
  margin: 0.5rem 0 0.7rem 0;
  padding: 0 1.2rem;
}

.blog-summary {
  color: #666666 !important;
  font-size: 1.05rem;
  margin: 0 0 1.2rem 0;
  padding: 0 1.2rem;
  flex: 1;
}

.blog-readmore {
  display: inline-block;
  margin: 1.2rem 1.2rem 1.2rem 1.2rem;
  padding: 10px 28px;
  background: #007BFF !important;
  color: #FFFFFF !important;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.15);
}

.blog-readmore:hover {
  background: #0056B3 !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.25);
}

@media (max-width: 1100px) {
  .blog-layout {
    flex-direction: column;
  }
  .blog-sidebar {
    max-width: 100%;
    min-width: 0;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 700px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    padding: 1.2rem 0.7rem;
  }
  .blog-title, .blog-summary {
    padding: 0 0.7rem;
  }
  .blog-readmore {
    margin: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
}

.blog-hero {
  padding: 80px 0 30px;
  background: #F8F9FA !important;
  color: #2C3E50 !important;
  position: relative;
  overflow: hidden;
}

