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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    padding: 0;
    background: #FFFFFF;
    color: #1a1a1a;
    line-height: 1.6;
    scroll-behavior: smooth;
}

        /* Animated Background Elements */
        .hero-background {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 0;
        }

        /* Floating Orbs */
        .floating-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.4;
            animation: float 20s ease-in-out infinite;
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #a890e1a7, #A78BFA);
            top: -100px;
            left: -100px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 350px;
            height: 350px;
            background: linear-gradient(135deg, #ff9bcd, #f0abceba);
            top: 20%;
            right: -80px;
            animation-delay: 3s;
        }

        .orb-3 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #9ad7e2c0, #b2e2eac9);
            bottom: -80px;
            left: 20%;
            animation-delay: 6s;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(30px, -30px) scale(1.1);
            }
            66% {
                transform: translate(-20px, 20px) scale(0.9);
            }
        }

        /* Grid Pattern */
        .grid-pattern {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.5;
        }


/* Custom scrollbar - Light Theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background: #8a2be2;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7a1bd2;
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.1);
    z-index: 1000;
    width: auto;
    min-width: 350px;
    max-width: 450px;
    height: 70px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.hide {
    transform: translateX(-50%) translateY(-100px);
    opacity: 0;
    pointer-events: none;
}

.navbar.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.navbar.expanded {
    width: 90%;
    max-width: 800px;
}

.logo-section {
    position: relative;
    padding: 12px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.logo-section:hover {
    transform: scale(1.05);
}
.logo-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}
.logo-text {
    color: #500986;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 15px;
    background: rgba(138, 43, 226, 0.05);
    padding: 8px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 450px;
    max-width: 600px;
}

.nav-links.collapsed {
    max-width: 0;
    padding: 8px 0;
    opacity: 0;
}

.nav-item {
    position: relative;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.nav-item:hover {
    background: rgba(138, 43, 226, 0.1);
    transform: translateY(-1px);
}

.nav-item.active {
    background: rgba(138, 43, 226, 0.15);
    color: #500986;
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}
img{
    max-width: 100%;
    height: auto;
}

.action-btn {
    width: 45px;
    height: 45px;
    background: rgba(138, 43, 226, 0.1);
    border: none;
    border-radius: 50%;
    color: #500986;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.action-btn:hover {
    transform: scale(1.1);
    background: rgba(138, 43, 226, 0.2);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

.menu-btn {
    background: rgba(138, 43, 226, 0.1);
    border: none;
    border-radius: 50%;
    color: #500986;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-btn:hover {
    background: rgba(138, 43, 226, 0.2);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.mobile-toggle span {
    width: 24px;
    height: 3px;
    background: #500986;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section - Light Theme */
.about-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #6C00B0, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: #4a4a4a;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6C00B0, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: #2a2a2a;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Story Section - Light Theme */
.our-story {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    padding: 100px 20px;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content {
    padding-right: 40px;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.story-text {
    color: #4a4a4a;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.15);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(1.05);
    transition: all 0.4s ease;
}

.story-image:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* Mission Section - Light Theme */
.mission-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 20px;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.mission-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

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

/* mission-grid: colorful hover treatment without changing layout */
.mission-grid { --card-elev: 0 12px 30px rgba(16,24,40,0.06); }

/* keep content above gradient overlay */
.mission-grid .mission-card {
    position: relative;
    overflow: hidden;
    transition: transform .36s cubic-bezier(.2,.9,.2,1), box-shadow .36s ease;
    z-index: 0;
    background: var(--card-bg, #fff);
}

/* overlay layer (hidden by default) */
.mission-grid .mission-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1; /* between card bg and content */
    pointer-events: none;
    border-radius: inherit;
    opacity: 0;
    transform: translateZ(0);
    transition: opacity .36s ease, filter .36s ease;
    /* radial highlight that follows cursor via CSS vars --mx/--my */
    background:
      radial-gradient(circle at var(--mx) var(--my),
        rgba(255,255,255,0.20) 0%,
        rgba(255,255,255,0.06) 6%,
        transparent 25%),
      linear-gradient(135deg, rgba(255,255,255,0.00), rgba(255,255,255,0.00));
    mix-blend-mode: overlay;
    backdrop-filter: none;
}

/* show overlay when pointer is over grid */
.mission-grid:hover .mission-card::before,
.mission-grid.color-active .mission-card::before {
  opacity: 1;
}

/* add per-card subtle colorful tint (purely visual, doesn't change layout) */
.mission-grid .mission-card:nth-child(1)::after,
.mission-grid .mission-card:nth-child(2)::after,
.mission-grid .mission-card:nth-child(3)::after,
.mission-grid .mission-card:nth-child(4)::after,
.mission-grid .mission-card:nth-child(5)::after,
.mission-grid .mission-card:nth-child(6)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0; /* behind content, above base bg */
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .36s ease, transform .36s ease;
  will-change: opacity;
}

/* distinct palettes (adjust colors as needed) */
.mission-grid .mission-card:nth-child(1)::after { background: linear-gradient(135deg, rgba(255,122,122,0.16), rgba(255,210,110,0.10)); }
.mission-grid .mission-card:nth-child(2)::after { background: linear-gradient(135deg, rgba(45,213,250,0.14), rgba(41,128,185,0.08)); }
.mission-grid .mission-card:nth-child(3)::after { background: linear-gradient(135deg, rgba(169,240,166,0.14), rgba(96,227,216,0.08)); }
.mission-grid .mission-card:nth-child(4)::after { background: linear-gradient(135deg, rgba(246,196,255,0.14), rgba(255,154,110,0.08)); }
.mission-grid .mission-card:nth-child(5)::after { background: linear-gradient(135deg, rgba(251,194,235,0.14), rgba(161,140,209,0.08)); }
.mission-grid .mission-card:nth-child(6)::after { background: linear-gradient(135deg, rgba(132,250,176,0.14), rgba(143,211,244,0.08)); }

/* reveal tints when grid hovered */
.mission-grid:hover .mission-card::after,
.mission-grid.color-active .mission-card::after { opacity: 1; }

/* subtle lift so color shows through */
.mission-grid:hover .mission-card { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(16,24,40,0.08); }

/* keep text readable */
.mission-grid .mission-card * { color: inherit; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mission-grid .mission-card::before,
  .mission-grid .mission-card::after,
  .mission-grid .mission-card { transition: none !important; transform: none !important; }
}

.mission-card {
    background: #ffffff;
    border: 1px solid rgba(138, 43, 226, 0.15);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6C00B0, #8a2be2);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

.mission-card:hover::before {
    transform: translateX(0);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.mission-card h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.mission-card p {
    color: #4a4a4a;
    line-height: 1.6;
}

/* Team Section - Light Theme */
.team-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.team-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.team-header {
    text-align: center;
    margin-bottom: 80px;
}

.team-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.team-subtitle {
    font-size: 1.1rem;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-items: center;
    align-items: start;
}

.team-card {
    background: #ffffff;
    border: 1px solid rgba(138, 43, 226, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 380px;
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.05), transparent);
    animation: teamShimmer 6s infinite ease-in-out;
    z-index: 1;
}

@keyframes teamShimmer {
    0% { left: -100%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.team-card:hover {
    transform: translateY(-15px);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.2);
}

.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: brightness(1.05);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.team-card:hover .team-image {
    filter: brightness(1.1);
    transform: scale(1.08);
}

.team-info {
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.team-name {
    font-size: 1.3rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-role {
    color: #6C00B0;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1rem;
}

.team-description {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Values Section - Light Theme */
.values-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.values-header {
    text-align: center;
    margin-bottom: 80px;
}

.values-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* Values: enforce 3x3 grid on desktop while keeping current UI */
.values-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  align-items: start;
}

/* 2 columns on tablets */
@media (min-width: 640px) and (max-width: 991px) {
  .values-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

/* 3 columns on desktop (3 x N rows — will form 3x3 if 9 items exist) */
@media (min-width: 992px) {
  .values-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }
}

/* Make each value-item stretch to fill its grid cell (keeps layout/UI unchanged) */
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 12px;
  background: transparent;
  height: 100%;
  box-sizing: border-box;
}

/* Ensure body stretches so items in same row have equal height */
.value-body { flex: 1 1 auto; }

.value-item {
    background: #ffffff;
    border: 1px solid rgba(138, 43, 226, 0.15);
    border-radius: 15px;
    padding: 35px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.03), transparent);
    animation: valueShimmer 8s infinite ease-in-out;
    z-index: 1;
}

@keyframes valueShimmer {
    0% { left: -100%; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.value-item:hover {
    transform: translateY(-8px);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.15);
}

.value-title {
    font-size: 1.3rem;
    color: #6C00B0;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.value-description {
    color: #4a4a4a;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

/* Add colorful animated icons without changing layout/UI */
.value-icon {
    /* keep same sizing/layout as existing UI */
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;

    /* visual enhancements (only cosmetic) */
    background-size: 200% 200%;
    animation: valueIconGradient 6s linear infinite;
    transition: transform .22s cubic-bezier(.2,.9,.2,1), box-shadow .22s ease;
    box-shadow: 0 8px 24px rgba(13,18,35,0.06);
    will-change: transform, background-position;
}

/* small pop when item is revealed (keeps original layout/sizing) */
.value-item.reveal .value-icon {
    animation: iconPop .45s cubic-bezier(.2,.9,.2,1) both, valueIconGradient 6s linear infinite;
}

/* hover emphasis (no layout change) */
.value-item:hover .value-icon {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 18px 40px rgba(16,24,40,0.12);
}

/* Per-item colorful palettes (purely visual) */
.values-list .value-item:nth-child(1) .value-icon { background: linear-gradient(135deg,#FF7A7A 0%,#FFD36E 100%); }
.values-list .value-item:nth-child(2) .value-icon { background: linear-gradient(135deg,#6DD5FA 0%,#2980B9 100%); }
.values-list .value-item:nth-child(3) .value-icon { background: linear-gradient(135deg,#A9F0A6 0%,#60E3D8 100%); }
.values-list .value-item:nth-child(4) .value-icon { background: linear-gradient(135deg,#F6C4FF 0%,#FF9A6E 100%); }
.values-list .value-item:nth-child(5) .value-icon { background: linear-gradient(135deg,#FBC2EB 0%,#A18CD1 100%); }
.values-list .value-item:nth-child(6) .value-icon { background: linear-gradient(135deg,#84FAB0 0%,#8FD3F4 100%); }

/* subtle moving gradient animation */
@keyframes valueIconGradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* reveal pop animation */
@keyframes iconPop {
    0%   { transform: translateY(8px) scale(.92); opacity: 0; }
    60%  { transform: translateY(-4px) scale(1.06); opacity: 1; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .value-icon,
    .value-item.reveal .value-icon {
        animation: none !important;
        transition: none !important;
    }
}

/* Background floating elements - Light */
.floating-bg {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(108, 0, 176, 0.05));
    border-radius: 50%;
    z-index: 1;
    animation: floatBg 25s infinite ease-in-out;
}

.floating-bg:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-bg:nth-child(2) {
    top: 70%;
    right: 10%;
    animation-delay: 8s;
    width: 80px;
    height: 80px;
}

.floating-bg:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 16s;
}

@keyframes floatBg {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(30px) rotate(270deg); }
}

/* CTA Section - Light Theme */
.cta-section {
    /* background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%); */
    padding: 10px 20px 40px 20px;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, #6C00B0, #8a2be2);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.2s;
}

.fade-in-delay-2 {
    animation-delay: 0.4s;
}

.fade-in-delay-3 {
    animation-delay: 0.6s;
}

/* Reveal animation utilities */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .story-content {
        padding-right: 0;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid,
    .values-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .team-title,
    .values-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: calc(100% - 20px);
        padding: 0 20px;
        background: rgba(255, 255, 255, 0.98);
    }

    .nav-links:not(.collapsed) {
        position: absolute;
        top: 70px;
        left: 15px;
        right: 15px;
        max-width: none;
        opacity: 1;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        flex-direction: column;
        padding: 12px;
        gap: 4px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(138, 43, 226, 0.15);
        height: 400px;
        min-width: 100px;
        max-width: 280px;
    }

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

    .story-title,
    .mission-title,
    .team-title,
    .values-title,
    .cta-title {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-grid,
    .team-grid,
    .values-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-image img {
        height: 300px;
    }

    .team-section,
    .values-section {
        padding: 60px 15px;
    }

    .team-header,
    .values-header {
        margin-bottom: 50px;
    }

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

    .team-image {
        height: 250px;
    }

    .team-info,
    .value-item {
        padding: 25px;
    }
}

@media (max-width: 640px) {
    .about-hero,
    .our-story,
    .mission-section,
    .team-section,
    .values-section,
    .cta-section {
        padding: 60px 16px;
    }

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

    .mission-card,
    .team-info,
    .value-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .team-section,
    .values-section {
        padding: 40px 10px;
    }

    .team-title,
    .values-title {
        font-size: 1.8rem;
    }

    .team-image {
        height: 200px;
    }

    .team-info,
    .value-item {
        padding: 20px;
    }

    .value-item {
        min-height: 180px;
    }
}

@media (min-width: 769px) {
    .mobile-toggle {
        display: none;
    }
    
    .menu-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
}

/* Glassy Cursor - Light Theme */
@media (pointer: fine) {
    body { cursor: block; }
  
    .glass-cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(108, 0, 176, 0.1);
        border: 1px solid rgba(138, 43, 226, 0.3);
        box-shadow: 0 8px 24px rgba(138, 43, 226, 0.2), inset 0 0 12px rgba(138, 43, 226, 0.1);
        backdrop-filter: blur(10px) saturate(120%);
        -webkit-backdrop-filter: blur(10px) saturate(120%);
        pointer-events: none;
        z-index: 9999;
        transform: translate3d(-100px, -100px, 0) scale(1);
        transition: opacity 0.3s ease;
        will-change: transform, opacity;
        opacity: 0;
    }
  
    .glass-cursor.visible { opacity: 1; }
    .glass-cursor.hidden { opacity: 0; }
  
    .glass-cursor.cursor-hover {
        background: rgba(108, 0, 176, 0.15);
        border-color: rgba(138, 43, 226, 0.5);
        box-shadow: 0 10px 30px rgba(138, 43, 226, 0.25), inset 0 0 18px rgba(138, 43, 226, 0.15);
    }
}