/* ========== ENHANCED ABOUT US STYLES WITH ANIMATED CIRCLES ========== */
:root {
    --primary-color: rgb(0, 180, 0);
    --primary-dark: rgb(0, 150, 0);
    --primary-light: rgb(0, 221, 118);
    --text-dark: #222;
    --text-light: #666;
    --bg-white: #ffffff;
    --bg-light: #f8fff8;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-light);
}

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

/* Animated Background Elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.03;
    animation: float 20s infinite linear;
    filter: blur(20px);
}

.el-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.el-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.el-3 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 15%;
    animation-delay: 10s;
}

.el-4 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 20%;
    animation-delay: 15s;
}

.el-5 {
    width: 350px;
    height: 350px;
    bottom: 40%;
    right: 5%;
    animation-delay: 7s;
}

/* Modern Hero Section */
.about-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fff8 0%, #ffffff 100%);
    overflow: hidden;
}

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

.hero-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    animation: slideInLeft 0.8s ease;
    box-shadow: 0 5px 15px rgba(0, 180, 0, 0.3);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-line {
    display: block;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 2px 10px rgba(0, 180, 0, 0.1);
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.6s both;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 50px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 180, 0, 0.2);
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

/* Hero Visual Elements */
.hero-visual {
    position: relative;
    height: 500px;
}

.hero-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 180, 0, 0.1), transparent);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 8px 13px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: floatCard 4s ease-in-out infinite;
    transition: var(--transition);
    z-index: 2;
}

.floating-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 180, 0, 0.25);
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: -3%;
    animation-delay: 2.5s;
    transform: translateY(-50%);
}

.card-3 {
    bottom: -2%;
    left: 20%;
    animation-delay: 5s;
}

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

.card-content i {
    font-size: 2.0rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card-content h3 {
    font-size: 1.0rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Founder's Story Section */
.founder-story {
    padding: 20px 0;
    background: var(--bg-white);
    position: relative;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.section-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 180, 0, 0.3);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--text-dark);
    line-height: 1.2;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Story Timeline */
.story-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.timeline-moment {
    display: flex;
    gap: 25px;
    padding: 30px;
    border-radius: 20px;
    background: var(--bg-light);
    border: 1px solid rgba(0, 180, 0, 0.1);
    transition: var(--transition);
    opacity: 0.7;
    transform: translateX(-20px);
}

.timeline-moment.active {
    opacity: 1;
    transform: translateX(0);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.timeline-moment:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 180, 0, 0.15);
}

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

.moment-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.moment-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Founder Quote */
.founder-quote-card {
    background: var(--gradient);
    color: white;
    padding: 50px 40px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 180, 0, 0.3);
}

.quote-mark {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.566);
    line-height: 1;
    margin-bottom: -30px;
    position: absolute;
    top: 20px;
    left: 30px;
}

.quote-text {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.founder-signature {
    text-align: right;
}

.founder-name {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.founder-role {
    opacity: 0.9;
    font-size: 1rem;
}

/* Founder Image & Animation */
.story-visual {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 120px;
}

.founder-image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.founder-image {
    position: relative;
    width: 100%;
    height: 400px;
}

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

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

.founder-image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    pointer-events: none;
}

.founder-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.badge-content i {
    color: var(--primary-color);
}

/* Inspiration Spark Animation */
.inspiration-spark {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spark-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    animation: pulseCore 3s ease-in-out infinite;
    box-shadow: 0 0 50px var(--primary-color);
}

.spark-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: expandRing 4s linear infinite;
}

.ring-1 {
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.ring-2 {
    width: 200px;
    height: 200px;
    animation-delay: 1s;
}

.ring-3 {
    width: 280px;
    height: 280px;
    animation-delay: 2s;
}

.spark-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: floatParticle 6s ease-in-out infinite;
}

.p1 { top: 20%; left: 20%; animation-delay: 0s; }
.p2 { top: 70%; right: 20%; animation-delay: 1.5s; }
.p3 { bottom: 30%; left: 10%; animation-delay: 3s; }
.p4 { top: 40%; right: 10%; animation-delay: 4.5s; }

/* Modern Mission & Vision Section */
.mission-vision-modern {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.mv-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    perspective: 1000px;
}

.mv-modern-card {
    height: 500px;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.mv-modern-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 25px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-front {
    background: var(--bg-white);
    border: 1px solid rgba(0, 180, 0, 0.1);
    justify-content: space-between;
}

.card-back {
    background: var(--gradient);
    color: white;
    transform: rotateY(180deg);
    justify-content: space-between;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(0, 180, 0, 0.3);
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-preview {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.card-image-preview {
    width: 100%;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-front:hover .card-image-preview img {
    transform: scale(1.1);
}

.card-cta {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.card-back .card-title {
    color: white;
}

.card-text {
    margin-bottom: 25px;
    line-height: 1.7;
    opacity: 0.95;
    font-size: 1.1rem;
}

.mission-pillars {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1.05rem;
}

.pillar i {
    width: 20px;
    font-size: 1.1rem;
}

.mission-image,
.vision-image {
    width: 100%;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
}

.mission-image img,
.vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.year {
    background: rgba(255, 255, 255, 0.25);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 70px;
    text-align: center;
}

.milestone {
    font-weight: 500;
    font-size: 1rem;
}

/* Enhanced PATH Section */
.path-modern {
    padding: 140px 0;
    background: var(--bg-white);
    position: relative;
    overflow: visible;
}

.path-scroll-container {
    position: relative;
    min-height: 800px;
    display: flex;
    gap: 60px;
}

.path-progress-indicator {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 400px;
    background: rgba(0, 180, 0, 0.1);
    border-radius: 3px;
    flex-shrink: 0;
    margin-left: 40px;
    overflow: hidden; /* Add this */
}

.progress-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(135deg, rgb(0, 180, 0), rgb(0, 221, 118));
    border-radius: 3px;
    transition: height 0.1s ease; /* Smoother transition */
    box-shadow: 0 0 20px rgba(0, 180, 0, 0.5);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), transparent);
    animation: progressPulse 2s infinite;
}

@keyframes progressPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.path-cards-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-right: 40px;
}

.path-modern-card {
    background: var(--bg-white);
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 180, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother transition */
    opacity: 0.4;
    transform: translateY(30px) scale(0.95);
    min-height: 320px;
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 40px;
    align-items: center;
}

.path-modern-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 25px 50px rgba(0, 180, 0, 0.15);
}

.path-modern-card.highlighted {
    opacity: 1;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 180, 0, 0.25);
    border-color: rgba(0, 180, 0, 0.3);
    z-index: 20;
}

.path-number {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 4.5rem;
    font-weight: 800;
    color: rgba(0, 180, 0, 0.08);
    line-height: 1;
}

.path-content {
    position: relative;
    z-index: 2;
}

.path-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(0, 180, 0, 0.3);
    transition: var(--transition);
}

.path-modern-card:hover .path-icon {
    transform: scale(1.1) rotate(5deg);
}

.path-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.path-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.path-impact {
    display: flex;
    gap: 30px;
}

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

.impact-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.impact-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.path-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.path-modern-card:hover .path-image img {
    transform: scale(1.1);
}

.path-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.path-modern-card:hover .path-glow {
    opacity: 0.03;
}

/* Team & Impact Section */
.team-impact {
    padding: 20px 0;
    padding-bottom: 40px;
    background: var(--bg-light);
}

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

.team-member {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 30px;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(15px) rotate(240deg);
    }
}

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

@keyframes scrollWheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulseCore {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 50px var(--primary-color);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 70px var(--primary-color);
    }
}

@keyframes expandRing {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 1;
    }
    25% {
        transform: translate(20px, -30px);
        opacity: 0.7;
    }
    50% {
        transform: translate(-15px, -50px);
        opacity: 0.4;
    }
    75% {
        transform: translate(25px, -20px);
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .story-grid {
        gap: 60px;
    }
    
    .path-scroll-container {
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-visual {
        height: 400px;
        order: -1;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .story-visual {
        position: static;
    }
    
    .mv-modern-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .path-scroll-container {
        flex-direction: column;
        gap: 30px;
        min-height: auto;
    }
    
    .path-progress-indicator {
        position: static;
        transform: none;
        width: 100%;
        height: 6px;
        margin-left: 0;
    }
    
    .path-cards-container {
        padding-right: 0;
    }
    
    .path-modern-card {
        grid-template-columns: 1fr;
        gap: 30px;
        opacity: 1;
        transform: none !important;
    }
    
    .path-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .mv-modern-card {
        height: 450px;
    }
    
    .card-front,
    .card-back {
        padding: 30px 25px;
    }
    
    .path-impact {
        flex-direction: column;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-section {
    padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .timeline-moment {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .moment-icon {
        align-self: center;
    }
    
    .path-modern-card {
        padding: 30px 25px;
    }
    
    .path-number {
        font-size: 3.5rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }

.nav-link-gideon-about {
    color: rgb(0, 180, 0);
    }

    .card-1 {
    top: 10%;
    left: -2%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: -2%;
    animation-delay: 2.5s;
    transform: translateY(-50%);
}

.card-3 {
    bottom: -2%;
    left: 20%;
    animation-delay: 5s;
}

.cta-section {
    padding: 40px 0;
}

.path-modern {
    padding: 2px 0;
}
}
