/* ===== MODERN LANDING PAGE CSS ===== */

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

/* CSS Variables for Theme */
:root {
    /* Light Theme Colors */
    --primary-color: #e74c3c;
    --secondary-color: #f39c12;
    --accent-color: #3498db;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --bg-glass: rgba(255, 255, 255, 0.25);
    --bg-overlay: rgba(0, 0, 0, 0.4);
    
    /* Text Colors */
    --text-primary: #2c3e50;
    --text-secondary: #34495e;
    --text-muted: #7f8c8d;
    --text-light: #bdc3c7;
    --text-white: #ffffff;
    
    /* Border & Shadow */
    --border-color: #e9ecef;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.25);
    
    /* Grid Mesh */
    --grid-color: rgba(149, 165, 166, 0.1);
    --grid-size: 40px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Dark Theme */
[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2c2c2c;
    --bg-tertiary: #3a3a3a;
    --bg-glass: rgba(42, 42, 42, 0.25);
    --bg-overlay: rgba(0, 0, 0, 0.6);
    
    --text-primary: #f8f9fa;
    --text-secondary: #e9ecef;
    --text-muted: #adb5bd;
    --text-light: #6c757d;
    
    --border-color: #495057;
    --grid-color: rgba(248, 249, 250, 0.05);
}

/* Body & HTML */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* Grid Mesh Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    background-position: 0 0, 0 0;
    z-index: -1;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Spacing */
section {
    padding: 6rem 0;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

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

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

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

.btn-hero {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    min-width: 180px;
}

/* Button Glow Effect */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: translateZ(0); /* Hardware acceleration */
    backface-visibility: hidden;
}

.carousel-slides {
    display: flex;
    width: 300%; /* 3 slides * 100% */
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    transform: translateX(0%);
}

.carousel-slide {
    flex: 0 0 33.333%; /* Each slide takes 1/3 of container */
    width: 33.333%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-image,
.slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.hero-content {
    text-align: center;
    color: var(--text-white);
    max-width: 800px;
    padding: 0 2rem;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 1;
    transform: translateY(0);
}

.hero-content.video-playing {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #ffffff;
  
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    color: #f8f9fa;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Video Controls */
.video-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 4;
}

.video-play-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex !important; /* Always show the button */
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    z-index: 10; /* Higher z-index to ensure visibility */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
    opacity: 1;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 5;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: white;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    transform: scale(1.1) translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 5;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Progress Bar */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 5;
}

.progress-bar {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.1s linear;
}

/* ===== IMPACT SECTION ===== */
.impact-section {
    background: var(--bg-secondary);
    position: relative;
}

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

/* Impact card micro-interactions */
.impact-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.2rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.card-content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
}

.impact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.impact-card:hover::after {
    left: 100%;
}

.impact-card:active {
    transform: translateY(-2px) scale(1.01);
    transition: transform 0.1s ease;
}

.impact-card-blue::before,
.impact-card-green::before,
.impact-card-purple::before,
.impact-card-orange::before {
    background: linear-gradient(90deg, #f39c12, #e67e22);
}

/* Add subtle pulse animation to icons */
.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.impact-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.3);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.card-progress {
    position: relative;
    width: 50px;
    height: 50px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-bg {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 4;
}

.progress-ring-fill {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    transition: stroke-dashoffset 1.5s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.card-stats {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    background: rgba(167, 167, 167, 0.53);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

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

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.card-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.card-footer {
    margin-top: auto;
}

.impact-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--success-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success-color);
    animation: pulse 2s infinite;
}

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

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--bg-primary);
}

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

.about-text {
    padding-right: 2rem;
}

.about-description {
    margin-bottom: 2rem;
}

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

.about-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-container img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-slow);
}

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

.image-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    color: var(--text-white);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

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

/* ===== TEAM SECTION ===== */
.team-section {
    background: var(--bg-secondary);
}

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

.team-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition-normal);
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: auto;
    min-height: 310px;



}

.team-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.team-card:active {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: none !important;
    transition: none !important;
}

.team-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
     overflow-y: scroll;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}



/* Remove social media overlay - hide these styles */
.team-overlay {
    display: none;
}

.team-social {
    display: none;
}

.team-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.team-social a:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.team-content {
    padding: 0.8rem;
    text-align: center;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: scroll;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    overflow: hidden;
    word-wrap: break-word;
    hyphens: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.team-role {
    color: #f37312;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    overflow: hidden;
    word-wrap: break-word;
    hyphens: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.team-bio {
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.team-btn {
    background: transparent;
    border: 2px solid #f36812;
    color: #f35212;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-normal), color var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 auto;
    font-size: 0.85rem;
}

.team-btn:hover {
    background: #f39c12;
    color: white;
}

.team-btn i {
    transition: none;
}

.team-btn:hover i {
    transform: none;
}

/* ===== TRANSFORMATION SECTION ===== */
.transformation-section {
    background: var(--bg-primary);
}

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

.transformation-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 400px;
}

.transformation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-media {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-media img,
.transformation-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.transformation-card:hover .card-media img,
.transformation-card:hover .transformation-video {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.play-btn:hover {
    background: white;
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: var(--text-white);
    z-index: 2;
}

.overlay-content .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.card-caption {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.card-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
}

.transformation-card:hover .card-hover-effect {
    opacity: 1;
}

/* ===== FEEDS SECTION ===== */
.feeds-section {
    background: var(--bg-secondary);
}

.feeds-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.feeds-scroll {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.feeds-scroll::-webkit-scrollbar {
    display: none;
}

.reel-card {
    flex: 0 0 300px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    height: 500px;
}

.reel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.reel-media {
    position: relative;
    height: 70%;
    overflow: hidden;
}

.reel-media img,
.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.reel-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.reel-play-btn:hover {
    background: white;
    transform: scale(1.1);
}

.reel-content {
    padding: 1.5rem;
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reel-caption {
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.reel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.like-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition-normal);
}

.like-btn:hover {
    color: var(--danger-color);
}

.reel-time {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.feeds-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.feeds-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    pointer-events: all;
}

.feeds-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.feeds-footer {
    text-align: center;
    margin-top: 3rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--bg-primary);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-card {
    flex: 0 0 100%;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    text-align: center;
    position: relative;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

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

.author-role {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: var(--warning-color);
}

.testimonials-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 -4rem;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.testimonial-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
}

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

.newsletter-header {
    margin-bottom: 3rem;
}

.newsletter-section .section-title {
    color: var(--text-white);
    -webkit-text-fill-color: var(--text-white);
}

.newsletter-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-form .form-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.newsletter-form .form-control {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: var(--text-white);
    font-size: 1rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    outline: none;
}

.newsletter-form .btn {
    background: var(--text-white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
}

.newsletter-form .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.form-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--bg-secondary);
}

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

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    min-height: 44px;
}

.social-links .social-link:hover {
    /* Removed orange background to allow platform-specific colors */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links .social-link i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

/* Brand-specific colors */
.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.linkedin:hover {
    background: #0077b5;
}

.social-link.youtube:hover {
    background: #ff0000;
}

.contact-map {
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.map-placeholder:hover {
    background: var(--bg-primary);
}

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

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-placeholder span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loading-logo img {
    width: 100px;
    height: auto;
    margin-bottom: 2rem;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-content p {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== ENHANCED RESPONSIVE DESIGN ===== */
@media (max-width: 1400px) {
    body,html{
        overflow-x: hidden;
        max-width: 100vw;
       
    }
  .container {
    padding: 0 2rem;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-carousel {
    min-height: 500px;
  }
  
  .carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-text {
    padding-right: 0;
  }
  
  .impact-grid,
  .team-grid,
  .transformation-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .feeds-scroll {
    gap: 1rem;
  }
  
  .reel-card {
    flex: 0 0 280px;
  }
}/* ===== TABLET STYLES ===== */
@media (max-width: 992px) {
    .social-links .social-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .social-links .social-link i {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero-carousel {
    height: 70vh;
    min-height: 500px;
    max-height: 650px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .btn-hero {
    width: 100%;
    max-width: none;
    font-size: 1rem;
    padding: 1rem 2rem;
  }
  
  .carousel-nav {
    padding: 0 1rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  .video-play-btn {
    width: 50px;
    height: 50px;
    font-size: 1rem;
    bottom: 1rem;
    right: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .section-header {
    margin-bottom: 2.5rem;
  }
  
  .impact-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .impact-card {
    padding: 1.5rem;
    min-height: 220px;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .transformation-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .transformation-card {
    height: 300px;
  }
  
  .feeds-scroll {
    gap: 0.75rem;
  }
  
  .reel-card {
    flex: 0 0 220px;
    height: 350px;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-quote {
    font-size: 1rem;
  }
  
  .testimonials-nav {
    padding: 0 -2rem;
  }
  
  .testimonial-btn {
    width: 40px;
    height: 40px;
  }
  
  .newsletter-form .form-group {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .newsletter-form .form-control {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }
  
  .newsletter-form .btn {
    padding: 0.75rem 1.5rem;
  }
  
  .contact-map {
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .hero-carousel {
    height: 60vh;
    min-height: 400px;
  }
  
  .hero-title {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-content {
    padding: 0 0.75rem;
  }
  
  .btn-hero {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }
  
  .carousel-indicators {
    bottom: 1rem;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .impact-card {
    padding: 1rem;
    min-height: 180px;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .card-title {
    font-size: 1.1rem;
  }
  
  .card-description {
    font-size: 0.85rem;
  }
  
  .team-card {
    padding: 1rem;
  }
  
  .team-image-container {
    height: 200px;
  }
  
  .team-content {
    padding: 1rem;
  }
  
  .transformation-card {
    height: 250px;
  }
  
  .reel-card {
    flex: 0 0 180px;
    height: 300px;
  }
  
  .reel-content {
    padding: 1rem;
  }
  
  .testimonial-card {
    padding: 1rem;
  }
  
  .testimonial-quote {
    font-size: 0.9rem;
  }
  
  .author-image {
    width: 40px;
    height: 40px;
  }
  
  .contact-item {
    gap: 0.75rem;
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin: 0 auto;
  }
  
  .contact-text {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .social-links .social-link {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    min-height: auto;
    min-width: auto;
  }
  
  .social-links .social-link span {
    display: none;
  }
  
  .social-links .social-link i {
    font-size: 1.1rem;
  }
  
  .contact-map {
    height: 200px;
  }
  
  .newsletter-content {
    padding: 0 0.5rem;
  }
    
    .social-links .social-link {
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: 50%;
        min-height: auto;
    }
    
    .social-links .social-link span {
        display: none;
    }
    
    .social-links .social-link i {
        font-size: 1.2rem;
    }
    
    .contact-map {
        height: 300px;
    }
}

/* ===== SMOOTH SCROLL & ANIMATIONS ===== */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* AOS Animation Overrides */
[data-aos] {
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.scale-in.active {
    opacity: 1;
    transform: scale(1);
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .carousel-slide {
        transition: none;
    }
    
    .loading-spinner {
        animation: none;
    }
    
    .indicator-dot {
        animation: none;
    }
}

/* Focus Styles */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --bg-glass: rgba(255, 255, 255, 0.9);
        --border-color: #000000;
        --text-secondary: #000000;
    }
    
    [data-theme="dark"] {
        --bg-glass: rgba(0, 0, 0, 0.9);
        --border-color: #ffffff;
        --text-secondary: #ffffff;
    }
}

/* Print Styles */
@media print {
    .loading-screen,
    .carousel-nav,
    .carousel-indicators,
    .feeds-nav,
    .testimonials-nav {
        display: none;
    }
    
    section {
        page-break-inside: avoid;
        padding: 2rem 0;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* Mobile Responsive Improvements for Landing Page */
@media (max-width: 768px) {
    .hero-carousel {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .carousel-controls {
        bottom: 1rem;
    }
    
    .carousel-dots {
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 60vh;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-hero {
        font-size: 0.9rem;
        padding: 0.7rem 0.9rem;
    }
}