:root {
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --accent: #f0f7ff;
    --background: #ffffff;
    --foreground: #1a1a1a;
    --muted: #f5f5f5;
    --muted-foreground: #666666;
    --border: #e5e5e5;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -----------------------------
   FORCE LIGHT MODE
------------------------------ */
.light-theme {
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --accent: #f0f7ff;
    --background: #ffffff;
    --foreground: #1a1a1a;
    --muted: #f5f5f5;
    --muted-foreground: #666666;
    --border: #e5e5e5;
}

/* -----------------------------
   FORCE DARK MODE
------------------------------ */
.dark-theme {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --accent: #1e293b;
    --background: #0f172a;
    --foreground: #f1f5f9;
    --muted: #1e293b;
    --muted-foreground: #94a3b8;
    --border: #334155;

    /* Ensure icons and buttons are visible in dark mode */
    --icon-color: #f1f5f9;
    --btn-primary-bg: #3b82f6;
    --btn-primary-text: #ffffff;
    --btn-outline-border: #3b82f6;
    --btn-outline-text: #3b82f6;
}

/* === Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* === Container === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================================
   NAVBAR STYLES
   ======================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    /*gap: 2rem;*/
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 2rem;
    width: auto;
    max-width: 100%;
}

/* Desktop Navigation Menu */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    flex: 1;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    list-style: none;
}

.navbar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.navbar-link:hover {
    background: var(--accent);
    color: var(--primary);
}

.navbar-link.active {
    background: var(--accent);
    color: var(--primary);
}

.navbar-link i {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--icon-color);
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}

.btn-primary {
  background: linear-gradient(135deg, rgb(0, 128, 255), rgb(102, 166, 255));
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgb(0, 128, 255), rgb(102, 166, 255));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--btn-outline-border);
    color: var(--btn-outline-text);
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: var(--accent);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-ghost {
    background: transparent;
    border: none;
    padding: 0.625rem;
    border-radius: 0.5rem;
    color: var(--foreground);
}

.btn-ghost:hover {
    background: var(--accent);
}

.btn-ghost i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--icon-color);
}

.btn-block {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--icon-color);
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn i {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Menu - Slides from RIGHT */
.mobile-menu {
    display: none;
    top: 73px;
    right: 0px;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    background: var(--background);
    z-index: 999;
    padding: 1.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
    transform: translateX(0);
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 2rem;
}

.mobile-menu-list li {
    list-style: none;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: var(--accent);
    color: var(--primary);
}

.mobile-menu-link i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--icon-color);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--foreground);
}

.theme-toggle-btn:hover {
  background: var(--accent);
}

.theme-toggle-btn i {
  font-size: 1.25rem;
  color: var(--icon-color);
}

/* Overlay */
.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--accent) 0%, rgba(59, 130, 246, 0.05) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hero-badge i {
    width: 1rem;
    height: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

/* ========================================
   STORY SECTION
   ======================================== */
.story-section {
    padding: 5rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.story-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    pointer-events: none;
}

/* ========================================
   VALUES SECTION
   ======================================== */
.values-section {
    padding: 5rem 0;
    background: var(--muted);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--muted-foreground);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--background);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.value-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.value-icon i {
    width: 2rem;
    height: 2rem;
}

.value-card:nth-child(1) .value-icon {
    background: var(--gradient-1);
}

.value-card:nth-child(2) .value-icon {
    background: var(--gradient-2);
}

.value-card:nth-child(3) .value-icon {
    background: var(--gradient-3);
}

.value-card:nth-child(4) .value-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.value-description {
    color: var(--muted-foreground);
    line-height: 1.8;
    font-size: 1rem;
}

/* ========================================
   SUCCESS STORIES SECTION
   ======================================== */
.success-stories-section {
    padding: 5rem 0;
    background: var(--background);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--muted-foreground);
}

.programs-slider-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
}

.programs-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.story-card {
    min-width: calc(33.333% - 1.5rem);
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.story-quote {
    margin-bottom: 2rem;
    position: relative;
}

.story-quote p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--foreground);
    font-style: italic;
    position: relative;
    padding-left: 2rem;
}

.story-quote p::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: Georgia, serif;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.story-author img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.story-author div {
    flex: 1;
}

.story-author h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.story-author span {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.slider-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    width: 2rem;
    border-radius: 0.5rem;
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team-section {
    padding: 5rem 0;
    background: var(--muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 2rem;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.team-role {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-socials {
    display: flex;
    gap: 1rem;
}

.team-socials a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--muted);
    color: var(--muted-foreground);
    transition: all 0.3s ease;
}

.team-socials a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.team-socials a i {
    width: 1.25rem;
    height: 1.25rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    position: relative;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 5rem 1.5rem;
    border-radius: 2rem;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons a {
    text-decoration: none;
}

.btn-white {
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-outline-white:hover {
    background: white;
    color: #667eea;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--background);
    color: var(--foreground);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3,
.footer-section h4,
.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--foreground);
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 2.5rem;
}

.footer-logo a {
    display: inline-block;
}

.footer-description {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted-foreground);
}

.contact-item i {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
    color: var(--icon-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
    cursor: pointer;
}

.footer-link:hover {
    color: var(--primary);
}

.newsletter-text {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.newsletter {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    /*padding: 0.75rem 1rem;*/
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    background: var(--background);
    color: var(--foreground);
    /*font-size: 0.875rem;*/
    /*font-family: inherit;*/
}

.newsletter-input::placeholder {
    color: var(--muted-foreground);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.newsletter-btn {
    /*padding: 0.75rem 1.25rem;*/
    white-space: nowrap;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom-link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-bottom-link:hover {
    color: var(--primary);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.mobile-menu.active .mobile-menu-link {
    animation: slideInRight 0.3s ease forwards;
    opacity: 0;
}

.mobile-menu.active .mobile-menu-link:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-menu.active .mobile-menu-link:nth-child(2) {
    animation-delay: 0.15s;
}

.mobile-menu.active .mobile-menu-link:nth-child(3) {
    animation-delay: 0.2s;
}

.mobile-menu.active .mobile-menu-actions {
    animation: fadeIn 0.3s ease 0.25s forwards;
    opacity: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
/* Tablets and Small Laptops */
@media (max-width: 768px) {
  .signup-btn {
    display: none !important;
  }
}

@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .story-card {
        min-width: calc(50% - 1rem);
    }
    .hero-title {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.25rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    /* Hide desktop menu */
    .navbar-menu,
    .navbar-actions .btn-primary,
    .navbar-actions .btn-outline {
        display: none;
    }
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: flex;
    }
    /* Hero Section */
    .hero {
        padding: 4rem 0 3rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.125rem;
    }
    .hero-stats {
        gap: 2rem;
    }
    .hero-stat-number {
        font-size: 2rem;
    }
    .hero-stat-label {
        font-size: 0.85rem;
    }
    /* Story Section */
    .story-section {
        padding: 4rem 0;
    }
    .story-content h2 {
        font-size: 2rem;
    }
    .story-content p {
        font-size: 1rem;
    }
    .story-image img {
        height: 350px;
    }
    /* Values Section */
    .values-section {
        padding: 4rem 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    .value-card {
        padding: 2rem;
    }
    .value-title {
        font-size: 1.25rem;
    }
    .value-description {
        font-size: 0.9rem;
    }
    /* Success Stories */
    .success-stories-section {
        padding: 4rem 0;
    }
    .story-card {
        min-width: 100%;
        padding: 2rem;
    }
    .story-quote p {
        font-size: 1rem;
    }
    /* Team Section */
    .team-section {
        padding: 4rem 0;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-image {
        height: 250px;
    }
    /* CTA Section */
    .cta-section {
        margin: 3rem 1rem;
        padding: 3rem 1.5rem;
    }
    .cta-title {
        font-size: 2rem;
    }
    .cta-subtitle {
        font-size: 1rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-white,
    .btn-outline-white {
        width: 100%;
    }
    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
    /* Container padding */
    .container {
        padding: 0 1rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .cta-title {
        font-size: 1.5rem;
    }
    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 3rem 0 2rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .story-section,
    .values-section,
    .success-stories-section,
    .team-section {
        padding: 3rem 0;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu,
    .overlay,
    .cta-section,
    .footer {
        display: none;
    }
    body {
        background: white;
        color: black;
    }
    .hero,
    .story-section,
    .values-section,
    .success-stories-section,
    .team-section {
        page-break-inside: avoid;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .navbar-link:hover,
    .navbar-link.active,
    .mobile-menu-link:hover,
    .mobile-menu-link.active {
        outline: 2px solid currentColor;
    }
    .btn-primary,
    .btn-outline,
    .btn-ghost {
        border: 2px solid currentColor;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}

/* Dark Mode Enhancement */
@media (prefers-color-scheme: dark) {
    :root {
        --primary: #3b82f6;
        --primary-dark: #2563eb;
        --accent: #1e293b;
        --background: #0f172a;
        --foreground: #f1f5f9;
        --muted: #1e293b;
        --muted-foreground: #94a3b8;
        --border: #334155;
    }
}

/* -----------------------------
   UTILITY CLASSES
------------------------------ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Accessibility Focus Styles */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Selection Styles */
::selection {
    background-color: var(--primary);
    color: white;
}

::-moz-selection {
    background-color: var(--primary);
    color: white;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--muted);
}

::-webkit-scrollbar-thumb {
    background: var(--muted-foreground);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Styling for the Floating WhatsApp Button */
    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 40px; /* Adjust vertical position */
        right: 20px; /* Position on the left */
        background-color: #25d366; /* WhatsApp Green */
        color: #fff;
        border-radius: 50px;
        text-align: center;
        box-shadow: 2px 2px 3px #999;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .whatsapp-icon {
        /* Use a standard icon size */
        font-size: 30px; 
    }
    
    

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Disabled State */
.disabled,
[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
