/* =============================================
   WEALTH SAFARI - PROFESSIONAL STYLING
   ============================================= */

/* CSS Variables for consistent theming */
:root {
    /* Colors - Beige/Tan Theme */
    --primary-color: #c9a687;          /* Tan/Beige */
    --secondary-color: #d4b5a0;         /* Light tan */
    --accent-color: #b8957a;            /* Dark tan */
    --text-primary: #333333;            /* Dark text */
    --text-secondary: #666666;          /* Medium text */
    --text-light: #ffffff;              /* White text */
    --background-light: #ffffff;        /* White background */
    --background-dark: #f5f0eb;         /* Very light beige background */
    --background-peach: #ede4dc;        /* Light beige gradient */
    --border-color: #e9ecef;            /* Light border */
    --shadow: 0 2px 10px rgba(0,0,0,0.1); /* Subtle shadow */
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Raleway', sans-serif;
    --font-tertiary: 'Lato', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 50px 0;
    --element-spacing: 2rem;
}

/* =============================================
   RESET & BASE STYLES
   ============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-primary);
    background-color: var(--background-light);
    overflow-x: hidden;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    line-height: 1.4;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* =============================================
   LAYOUT & CONTAINERS
   ============================================= */

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

section {
    padding: var(--section-padding);
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--background-light);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-secondary);
    margin-bottom: 0 !important;
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--background-light);
    box-shadow: var(--shadow);
    border-radius: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background-color: var(--background-dark);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
    padding: 80px 0 60px;
    background: #ffffff;
    min-height: 35vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.hero-title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-btn {
    font-size: 16px;
    padding: 15px 30px;
}

.hero-image {
    text-align: center;
    overflow: hidden;
    padding-left: 5px; /* Push content right to hide left edge */
}

.hero-img {
    max-width: 100%;
    height: auto;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    position: relative;
    left: 3px; /* Shift right to hide black line */
    object-fit: cover;
}

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

/* About Intro Section */
.about-intro {
    margin-top: 2rem;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(29, 48, 123, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(29, 48, 123, 0.1);
    transform: translateX(5px);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.highlight-content {
    flex: 1;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.highlight-content strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

/* Sakhi Mission Section */
.sakhi-mission {
    margin-top: 2rem;
}

.sakhi-mission .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Sakhi Page Title Styling */
.sakhi-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.sakhi-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--secondary-color);
    font-family: var(--font-secondary);
    font-style: italic;
    margin-top: 0;
}

.about-mission {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 500;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(37, 211, 102, 0.05);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

/* =============================================
   ABOUT SECTION
   ============================================= */

.about {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    padding-right: 30px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-color);
}

.feature-item i {
    color: var(--success-color);
    margin-right: 12px;
    font-size: 18px;
}

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

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

/* Mobile Responsiveness for About Section */
@media (max-width: 768px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .about-text {
        font-size: 15px;
    }
    
    .feature-item {
        font-size: 15px;
    }
    
    .about-intro p {
        font-size: 1rem;
    }
    
    .highlight-content {
        font-size: 0.95rem;
    }
    
    .about-mission {
        font-size: 1rem;
    }
    
    .sakhi-main-title {
        font-size: 2.5rem;
    }
    
    .sakhi-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-logo {
        max-width: 80%;
        margin: 2rem auto 0;
        display: block;
    }
}

/* =============================================
   PAGE HEADER SECTION
   ============================================= */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header-content {
    max-width: 600px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb .current {
    opacity: 1;
    font-weight: 500;
}

/* =============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================= */

.about-page {
    padding: 80px 0;
    background: #fff;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-weight: 600;
}

.about-features-section {
    margin: 80px 0;
    background: #f8f9fa;
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 30px;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

/* =============================================
   STATS SECTION
   ============================================= */

.stats-section {
    padding: 60px 0;
    background: var(--background-peach);
}

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

.stat-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive Stats */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
}

.team-section {
    margin: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.member-role {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-description {
    color: var(--text-color);
    line-height: 1.6;
}

/* Team List - Horizontal Cards */
.team-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-card {
    display: flex;
    gap: 2.5rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.team-card-image {
    flex-shrink: 0;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f8f9fa;
    padding: 1rem;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.team-card-content {
    flex: 1;
    padding: 2rem 2rem 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-card-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-card-role {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-card-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-card-description:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Team Cards */
@media (max-width: 768px) {
    .team-card {
        flex-direction: column;
    }
    
    .team-card-image {
        width: 100%;
        height: 300px;
        padding: 1.5rem;
    }
    
    .team-card-content {
        padding: 1.5rem;
    }
    
    .team-card-content h3 {
        font-size: 1.5rem;
    }
    
    .team-card-role {
        font-size: 1rem;
    }
    
    .team-card-description {
        font-size: 0.95rem;
    }
}

.about-stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0;
    color: white;
    margin: 80px 0 0;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Mobile Responsiveness for Page Header and About Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* =============================================
   VISION SECTION
   ============================================= */

.vision-section {
    background: linear-gradient(135deg, #fce4ec 0%, #f5e6e0 50%, #ede4dc 100%);
    padding: 80px 0;
    color: #333;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 166, 135, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.mission-card .section-title,
.vision-card .section-title {
    color: #000000 !important;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

.mission-text,
.vision-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333333;
    text-align: justify;
    margin-bottom: 15px;
}

/* Old vision styles - keep for compatibility */
.vision-section .vision-title {
    color: white !important;
    text-align: left !important;
    margin: 0 0 2rem 0 !important;
    font-size: 2.5rem;
    font-weight: 700;
    max-width: none;
}

.vision-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.vision-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 166, 135, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.vision-card-title {
    color: #FFD700 !important;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vision-card-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgb(8, 1, 1) !important;
}

.vision-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.vision-list li {
    padding: 4px 0;
    font-size: 1rem;
    color: rgb(0, 0, 0) !important;
    position: relative;
}

.innovative-solutions {
    margin-top: 60px;
    text-align: center;
}

.innovative-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.innovative-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 40px;
    opacity: 0.9;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.solution-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.solution-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.solution-card h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.know-more-container {
    margin-top: 40px;
}

.know-more-container .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsiveness for Vision Section */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .mission-card,
    .vision-card {
        padding: 30px 20px;
    }
    
    .mission-text,
    .vision-text {
        font-size: 1rem;
        text-align: left;
    }
    
    .vision-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .vision-card {
        padding: 20px;
    }
    
    .innovative-title {
        font-size: 2rem;
    }
    
    .innovative-subtitle {
        font-size: 1.2rem;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .solution-card {
        padding: 15px 10px;
    }
    
    .solution-card h4 {
        font-size: 0.9rem;
    }
}

/* =============================================
   SERVICES SECTION
   ============================================= */

.services {
    background-color: var(--background-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: var(--background-light);
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(29, 48, 123, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

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

.service-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.service-title a {
    color: inherit;
    transition: color 0.3s ease;
}

.service-title a:hover {
    color: var(--primary-color);
}

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

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    color: var(--text-primary);
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto;
}

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

.testimonial-video {
    background-color: var(--background-dark);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-video:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.video-placeholder {
    color: var(--text-secondary);
}

.video-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* =============================================
   STATISTICS SECTION
   ============================================= */

.stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c4aa6 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.stats .section-title {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.stats-counter {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.counter-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    font-family: var(--font-secondary);
}

.counter-suffix {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.counter-title {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 500;
}

/* =============================================
   FAQ SECTION
   ============================================= */

.faq-section {
    padding: 50px 0;
    background: #f8f9fa;
    margin-top: 30px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #4a90e2;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.1);
}

.faq-question {
    padding: 18px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #e9ecef;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
}

.faq-toggle {
    font-size: 1.2rem;
    color: #4a90e2;
    font-weight: bold;
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: white;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: justify;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 20px 25px;
    border-top: 1px solid #e9ecef;
}

.faq-item.active .faq-question {
    background: #e8f4fd;
    border-bottom: none;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: #2980b9;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 100px;
    width: auto;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 300px;
    color: #ffffff !important;
}

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

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

.footer-contact i {
    width: 16px;
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
}

.footer-section {
    text-align: left;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* =============================================
   ANIMATIONS
   ============================================= */

.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 40px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Mobile */
@media (max-width: 767px) {
    :root {
        --section-padding: 30px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 0.5rem 0;
    }
    
    .logo img {
        height: 25px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--background-light);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--background-dark);
        margin-top: 0.5rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 70px 0 50px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .counter-number {
        font-size: 3rem;
    }
    
    .counter-suffix {
        font-size: 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-left {
        text-align: center;
    }
    
    .footer-description {
        max-width: none;
    }
    
    .footer-right {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
}

/* FAQ Mobile Responsiveness */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
}

/* Extra small screens (phones) */
@media (max-width: 480px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .solution-card h4 {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px;
    }
}

/* =============================================
   STORIES PAGE STYLES
   ============================================= */

.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 40vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-section .hero-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.hero-section .hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-section .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Insights Section */
.featured-insights {
    padding: var(--section-padding);
    background-color: var(--background-light);
}

.insights-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.insight-card {
    background-color: var(--background-light);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.insight-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c4aa6 100%);
    color: var(--text-light);
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.insight-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.insight-card:not(.featured) .insight-image {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
}

.insight-card.featured .insight-image {
    background-color: rgba(255,255,255,0.2);
    color: var(--text-light);
}

.insight-category {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.insight-card:not(.featured) .insight-category {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.insight-card.featured .insight-category {
    background-color: rgba(255,255,255,0.2);
    color: var(--text-light);
}

.insight-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.insight-card:not(.featured) .insight-title {
    color: var(--primary-color);
}

.insight-excerpt {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.insight-card:not(.featured) .insight-excerpt {
    color: var(--text-secondary);
}

.insight-card.featured .insight-excerpt {
    color: rgba(255,255,255,0.9);
}

.insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid;
}

.insight-card:not(.featured) .insight-meta {
    border-color: var(--border-color);
    color: var(--text-secondary);
}

.insight-card.featured .insight-meta {
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
}

/* Quick Tips Section */
.quick-tips {
    padding: var(--section-padding);
    background-color: var(--background-dark);
}

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

.tip-card {
    background-color: var(--background-light);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.tip-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 1.8rem;
}

.tip-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tip-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.stories-section {
    padding: var(--section-padding);
    background-color: var(--background-light);
}

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

.story-card {
    background-color: var(--background-light);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.25rem;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.client-location {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.category-tag {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.story-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stories-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c4aa6 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    color: var(--text-light);
}

.stories-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stories-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.stories-cta .btn {
    background-color: var(--text-light);
    color: var(--primary-color);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.stories-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* Mobile Responsiveness for Stories Page */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: 30vh;
    }
    
    .hero-section .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-section .hero-subtitle {
        font-size: 1rem;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .insight-card {
        padding: 1.5rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tip-card {
        padding: 1.5rem;
    }
    
    .tip-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .story-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .story-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stories-cta {
        padding: 2rem 1rem;
    }
    
    .stories-cta h3 {
        font-size: 1.5rem;
    }
}

/* =============================================
   SAKHI PAGE STYLES
   ============================================= */

/* Vision Section */
.sakhi-vision-section {
    padding: 80px 0;
    background: var(--background-light);
}

/* Our Work So Far Section */
.sakhi-work-section {
    padding: 80px 0;
    background: var(--background-dark);
}

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

.work-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.work-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.work-icon i {
    font-size: 1.5rem;
    color: white;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.work-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.work-description {
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

/* Old vision card style - commented out to avoid conflict
.vision-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}
*/

.vision-header h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.vision-quote {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.vision-description {
    line-height: 1.8;
    color: var(--text-secondary);
}

.vision-image {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-img-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

/* Values Section */
.sakhi-values-section {
    padding: 80px 0;
    background: var(--background-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.value-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-description {
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Principles Section */
.sakhi-principles-section {
    padding: 80px 0;
    background: var(--background-light);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.principle-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

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

.principle-primary { border-top-color: #e8f4f8; background: linear-gradient(135deg, #f8fdff, #e8f4f8); }
.principle-secondary { border-top-color: #fce8f3; background: linear-gradient(135deg, #fff8fc, #fce8f3); }
.principle-tertiary { border-top-color: #e8f5e8; background: linear-gradient(135deg, #f8fff8, #e8f5e8); }
.principle-quaternary { border-top-color: #fff3e0; background: linear-gradient(135deg, #fffef8, #fff3e0); }
.principle-quinary { border-top-color: #f3e5f5; background: linear-gradient(135deg, #fdf9fe, #f3e5f5); }

.principle-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.principle-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.principle-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Stories Section */
.sakhi-stories-section {
    padding: 80px 0;
    background: var(--background-dark);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.story-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.story-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.story-card .story-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 1.5rem 1.5rem 0.5rem;
    font-weight: 600;
}

.story-location {
    color: var(--accent-color);
    font-weight: 500;
    margin: 0 1.5rem 1rem;
    font-size: 0.9rem;
}

.story-description {
    padding: 0 1.5rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.story-impact {
    padding: 1rem 1.5rem;
    background: var(--background-dark);
    display: flex;
    gap: 1rem;
}

.impact-metric {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Impact Metrics Section */
.sakhi-impact-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--text-light);
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.metric-card {
    text-align: center;
    padding: 2rem;
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.sakhi-cta-section {
    padding: 80px 0;
    background: var(--background-light);
}

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

.cta-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

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

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

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

/* Responsive Design for Sakhi */
@media (max-width: 1024px) {
    .principles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-image {
        order: -1;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Simple Contact Page Styles */
.simple-contact-section {
    background: linear-gradient(135deg, #e8f1f8 0%, #f0f7fc 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.simple-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.simple-contact-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.simple-contact-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.simple-contact-subtitle {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.simple-contact-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.simple-contact-email,
.simple-contact-phone {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.simple-contact-email i,
.simple-contact-phone i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.simple-contact-linkedin {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.simple-contact-linkedin i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.simple-contact-email a,
.simple-contact-phone a,
.simple-contact-linkedin a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.simple-contact-email a:hover,
.simple-contact-phone a:hover,
.simple-contact-linkedin a:hover {
    color: var(--primary-color);
}

.simple-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.simple-social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 10px 20px;
    border-radius: 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.simple-social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 166, 135, 0.4);
}

.simple-social-link i.simple-social-icon {
    font-size: 1.2rem;
}

.simple-social-link span {
    font-weight: 500;
}

/* Legacy icon-only style (if needed) */
.simple-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.simple-social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(29, 48, 123, 0.3);
}

.simple-social-icon i {
    font-size: 1rem;
}

/* Simple Form Styles */
.simple-contact-form {
    display: flex;
    flex-direction: column;
}

.simple-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.simple-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.simple-form-row .simple-form-group {
    margin-bottom: 0;
}

.simple-form-group label {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.simple-form-group input,
.simple-form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.simple-form-group input:focus,
.simple-form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
}

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

.simple-submit-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-weight: 500;
}

.simple-submit-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* Responsive Simple Contact */
@media (max-width: 992px) {
    .simple-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .simple-contact-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .simple-contact-section {
        padding: 40px 0;
    }
    
    .simple-contact-wrapper {
        padding: 1.5rem;
    }
    
    .simple-contact-title {
        font-size: 2rem;
    }
    
    .simple-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .simple-form-row .simple-form-group {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .simple-contact-title {
        font-size: 1.8rem;
    }
    
    .simple-social-icon {
        width: 35px;
        height: 35px;
    }
}
