/* URYN Combined Styles - Hero & Story Sections */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Shared Styles */
.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

@keyframes fadeInRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

/* HERO SECTION */
.hero {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('about-hero.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 20%;
    animation-delay: 4s;
}

.shape:nth-child(4) {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 15%;
    animation-delay: 6s;
}

.hero-content {
    text-align: center;
    max-width: 95%;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 1.2s ease-out 0.3s forwards;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow:
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 255, 255, 0.1);
    letter-spacing: -0.02em;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUpText 1s ease-out 0.6s forwards;
}

.hero-content h1 .highlight {
    background: linear-gradient(120deg, #f093fb, #f5f7fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUpText 1s ease-out 0.9s forwards;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUpText 1s ease-out forwards;
}

.badge:nth-child(1) { animation-delay: 1.5s; }
.badge:nth-child(2) { animation-delay: 1.7s; }
.badge:nth-child(3) { animation-delay: 1.9s; }

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    color: #667eea;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUpText 1s ease-out 1.2s forwards;
}

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

.hero-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    color: #5a67d8;
}

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

.hero-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fadeIn 2s ease-out 2s forwards;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) rotate(-45deg) translateY(0);
    }
    40% {
        transform: translateX(-50%) rotate(-45deg) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) rotate(-45deg) translateY(-5px);
    }
}

/* ABOUT/STORY SECTION */
.about-section {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-circle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.story-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 1s ease-out 0.3s forwards;
    position: relative;
    z-index: 1;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    min-height: 600px;
}

.story-img {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

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

.story-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.2) 0%,
        rgba(118, 75, 162, 0.3) 100%
    );
    z-index: 1;
}

.story-content {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.story-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, #667eea, #764ba2);
    border-radius: 2px;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    position: relative;
    line-height: 1.2;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    position: relative;
    padding-left: 1.5rem;
    transform: translateX(-10px);
    opacity: 0;
    animation: fadeInRight 0.8s ease-out forwards;
}

.story-text p:nth-child(1) { animation-delay: 0.6s; }
.story-text p:nth-child(2) { animation-delay: 0.8s; }
.story-text p:nth-child(3) { animation-delay: 1s; }

.story-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    opacity: 0.7;
}

.highlight-text {
    background: linear-gradient(120deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-weight: 600;
    color: #5a67d8;
}

.stats-overlay {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.8s ease-out 1.2s forwards;
}

.stats-overlay h4 {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-overlay p {
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 600;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Hero Mobile */
    .hero-content {
        max-width: 90%;
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .hero-badges {
        gap: 0.5rem;
    }

    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Story Mobile */
    .story-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .story-img {
        height: 300px;
        order: 1;
    }

    .story-content {
        padding: 2.5rem 2rem;
        order: 2;
    }

    .story-content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .story-text p {
        font-size: 1rem;
        padding-left: 1rem;
    }

    .stats-overlay {
        position: static;
        margin-top: 2rem;
        transform: none;
        opacity: 1;
        animation: none;
    }
}

@media (max-width: 480px) {
    /* Hero Small Mobile */
    .hero-content {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .hero-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    /* Story Small Mobile */
    .story-content {
        padding: 2rem 1.5rem;
    }

    .story-content h2 {
        font-size: 1.8rem;
    }

    .story-text p {
        font-size: 0.95rem;
    }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-content,
    .story-card {
        transform: none;
        opacity: 1;
    }

    .hero-content h1,
    .hero-content p,
    .hero-btn,
    .badge,
    .story-text p {
        transform: none;
        opacity: 1;
    }
}

/* Focus states for accessibility */
.hero-btn:focus,
.story-card:focus-within {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}








/* MISSION & VISION SECTION */
.mv-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.mv-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.mv-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.mv-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 1s ease-out forwards;
}

.mv-mission {
    animation-delay: 0.2s;
}

.mv-vision {
    animation-delay: 0.4s;
}

.mv-item:hover {
    transform: translateY(-10px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.mv-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.mv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.mv-item:hover .mv-img img {
    transform: scale(1.05);
}

.mv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.3) 0%,
        rgba(118, 75, 162, 0.4) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mv-item:hover .mv-overlay {
    opacity: 1;
}

.mv-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.mv-item:hover .mv-icon {
    transform: scale(1);
}

.mv-content {
    padding: 2.5rem;
    position: relative;
}

.mv-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 50px;
    background: linear-gradient(180deg, #667eea, #764ba2);
    border-radius: 2px;
}

.mv-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
    line-height: 1.2;
}

.mv-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.mv-content p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.mv-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mv-section {
        padding: 4rem 0;
    }

    .mv-flex {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mv-img {
        height: 240px;
    }

    .mv-content {
        padding: 2rem 1.5rem;
    }

    .mv-content h2 {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
    }

    .mv-content p {
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .mv-section {
        padding: 3rem 0;
    }

    .mv-img {
        height: 200px;
    }

    .mv-content {
        padding: 1.5rem 1.2rem;
    }

    .mv-content h2 {
        font-size: 1.5rem;
    }

    .mv-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .mv-icon {
        font-size: 2.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .mv-item {
        transform: none;
        opacity: 1;
        animation: none;
    }

    .mv-item:hover {
        transform: none;
    }

    .mv-img img {
        transition: none;
    }

    .mv-item:hover .mv-img img {
        transform: none;
    }
}









/* CORE VALUES SECTION */
.values-section {
    background: #f8fafc;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 1.5rem;
}

.values-infographic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.value-step {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

.value-step[data-step="1"] { animation-delay: 0.1s; }
.value-step[data-step="2"] { animation-delay: 0.2s; }
.value-step[data-step="3"] { animation-delay: 0.3s; }
.value-step[data-step="4"] { animation-delay: 0.4s; }
.value-step[data-step="5"] { animation-delay: 0.5s; }
.value-step[data-step="6"] { animation-delay: 0.6s; }
.value-step[data-step="7"] { animation-delay: 0.7s; }

.value-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 20px 20px 0 0;
}

.value-step:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.7);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-step:hover .value-icon {
    transform: scale(1.05);
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease;
}

.icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-step:hover .icon-overlay {
    opacity: 1;
}

.icon-symbol {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.value-content {
    position: relative;
}

.value-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.value-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.value-content p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
}

/* Progress line connecting values */
.values-infographic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(102, 126, 234, 0.3) 20%,
        rgba(118, 75, 162, 0.3) 80%,
        transparent 100%
    );
    z-index: -1;
    display: none;
}

/* Special styling for odd/even items */
.value-step:nth-child(odd) {
    background: rgba(255, 255, 255, 0.9);
}

.value-step:nth-child(even) {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02), rgba(118, 75, 162, 0.02));
}

/* Responsive Design */
@media (max-width: 1024px) {
    .values-infographic {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .values-infographic::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .values-section {
        padding: 4rem 0;
    }

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

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .values-infographic {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-step {
        padding: 1.5rem;
    }

    .value-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }

    .icon-symbol {
        font-size: 1.8rem;
    }

    .value-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .value-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .values-section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .value-step {
        padding: 1.2rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }

    .value-content h3 {
        font-size: 1.1rem;
    }

    .value-content p {
        font-size: 0.85rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .value-step {
        transform: none;
        opacity: 1;
        animation: none;
    }

    .value-step:hover {
        transform: none;
    }

    .value-step:hover .value-icon {
        transform: none;
    }
}

/* Focus states */
.value-step:focus-within {
    outline: 2px solid #667eea;
    outline-offset: 4px;
}







/* OBJECTIVES SECTION */
.objectives-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.objectives-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.objectives-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.objectives-img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateX(-30px);
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.2s forwards;
}

@keyframes slideInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.objectives-img img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.6s ease;
}

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

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.4) 0%,
        rgba(118, 75, 162, 0.5) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.objectives-img:hover .img-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.objectives-img:hover .overlay-content {
    transform: translateY(0);
}

.overlay-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.overlay-text {
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.objectives-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    transform: translateX(30px);
    opacity: 0;
    animation: slideInRight 1s ease-out 0.4s forwards;
}

@keyframes slideInRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.objectives-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 70px;
    background: linear-gradient(180deg, #667eea, #764ba2);
    border-radius: 2px;
}

.objectives-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
}

.objectives-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.objectives-intro {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.objectives-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
}

.objective-item[data-number="01"] { animation-delay: 0.6s; }
.objective-item[data-number="02"] { animation-delay: 0.8s; }
.objective-item[data-number="03"] { animation-delay: 1.0s; }
.objective-item[data-number="04"] { animation-delay: 1.2s; }

.objective-item::before {
    content: attr(data-number);
    position: absolute;
    top: -8px;
    right: 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.objective-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
}

.objective-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.objective-item:hover .objective-icon {
    transform: scale(1.1);
}

.icon-symbol {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.objective-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.objective-text p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 968px) {
    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .objectives-img {
        order: 1;
        transform: translateY(-20px);
        animation: slideUp 1s ease-out 0.2s forwards;
    }

    .objectives-content {
        order: 2;
        transform: translateY(20px);
        animation: slideUp 1s ease-out 0.4s forwards;
    }

    .objectives-img img {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .objectives-section {
        padding: 4rem 0;
    }

    .objectives-grid {
        gap: 2.5rem;
    }

    .objectives-content {
        padding: 2.5rem 2rem;
    }

    .objectives-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .objectives-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .objective-item {
        padding: 1.2rem;
        gap: 1.2rem;
    }

    .objective-icon {
        width: 50px;
        height: 50px;
    }

    .icon-symbol {
        font-size: 1.3rem;
    }

    .objective-text h3 {
        font-size: 1.1rem;
    }

    .objective-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .objectives-section {
        padding: 3rem 0;
    }

    .objectives-content {
        padding: 2rem 1.5rem;
    }

    .objectives-content h2 {
        font-size: 1.8rem;
    }

    .objectives-intro {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .objective-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    .objective-icon {
        align-self: center;
    }

    .objective-text h3 {
        font-size: 1rem;
    }

    .objective-text p {
        font-size: 0.85rem;
    }

    .objectives-img img {
        min-height: 250px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .objectives-img,
    .objectives-content,
    .objective-item {
        transform: none;
        opacity: 1;
        animation: none;
    }

    .objective-item:hover {
        transform: none;
    }

    .objective-item:hover .objective-icon {
        transform: none;
    }

    .objectives-img:hover img {
        transform: none;
    }
}

/* Focus states */
.objective-item:focus-within {
    outline: 2px solid #667eea;
    outline-offset: 4px;
}








/* LEADERSHIP SECTION */
.leadership-section {
  background: #f8fafc;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* Reuse floating background like Story section */
.leadership-section .floating-elements {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

.leadership-section .floating-circle {
  position: absolute;
  background: rgba(102, 126, 234, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.leadership-section .floating-circle:nth-child(1) {
  width: 100px; height: 100px;
  top: 15%; left: 10%;
  animation-delay: 0s;
}
.leadership-section .floating-circle:nth-child(2) {
  width: 140px; height: 140px;
  bottom: 20%; right: 15%;
  animation-delay: 2s;
}
.leadership-section .floating-circle:nth-child(3) {
  width: 80px; height: 80px;
  top: 60%; left: 25%;
  animation-delay: 4s;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1; /* keep above floating bg */
}

.team-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translateY(30px);
  opacity: 0;
  animation: slideUp 0.8s ease-out forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.team-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.9) contrast(1.05);
}

.team-card:hover img { transform: scale(1.05); }

.img-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.5), rgba(118, 75, 162, 0.5));
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}

.team-card:hover .img-overlay { opacity: 1; }

.overlay-icon {
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

.team-content {
  padding: 1.5rem;
  text-align: center;
}

.team-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.team-content p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .team-img { height: 220px; }
  .team-content h3 { font-size: 1.1rem; }
  .team-content p { font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .team-img { height: 200px; }
  .team-content h3 { font-size: 1rem; }
  .team-content p { font-size: 0.85rem; }
}

/* Staggered animations for Leadership cards */
.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }
.team-card:nth-child(4) { animation-delay: 0.4s; }
.team-card:nth-child(5) { animation-delay: 0.5s; }
.team-card:nth-child(6) { animation-delay: 0.6s; }
.team-card:nth-child(7) { animation-delay: 0.7s; }
.team-card:nth-child(8) { animation-delay: 0.8s; }











/* CONTACT SECTION */
.contact-section {
  background: #f8fafc;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.contact-section .floating-elements {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

.contact-section .floating-circle {
  position: absolute;
  background: rgba(102, 126, 234, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.contact-section .floating-circle:nth-child(1) {
  width: 120px; height: 120px;
  top: 20%; left: 10%;
  animation-delay: 0s;
}
.contact-section .floating-circle:nth-child(2) {
  width: 160px; height: 160px;
  bottom: 15%; right: 15%;
  animation-delay: 2s;
}
.contact-section .floating-circle:nth-child(3) {
  width: 90px; height: 90px;
  top: 60%; left: 25%;
  animation-delay: 4s;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  align-items: stretch; /* ensures both columns stretch */
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* spread content evenly */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.contact-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

.contact-card p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-card a {
  color: #667eea;
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover { text-decoration: underline; }

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

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  font-size: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.map-card {
  width: 100%;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-card {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 1.5rem;
  }

  .contact-card h3 { font-size: 1.3rem; }
  .contact-card p { font-size: 0.9rem; }
  .footer-social a { width: 36px; height: 36px; font-size: 1rem; }
}












/* CONTACT FORM */
.contact-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form .form-group {
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.contact-form textarea {
  resize: none;
  min-height: 120px;
}

.contact-btn {
  align-self: flex-start;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.contact-btn:active {
  transform: translateY(-1px);
}
