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

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    display: none;
}

/* Hero Section */
.about-hero {
    position: relative;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("../media/about-hero.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@supports (-webkit-touch-callout: none) {
    .about-hero { background-attachment: scroll; }
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(236, 72, 153, 0.3));
}

.about-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

.about-hero__title {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.about-hero__subtitle {
    font-family: "Inter", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #f1f5f9;
    line-height: 1.6;
}

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

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: #ffffff;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.mission-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    color: #0f172a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.mission-content p {
    font-family: "Inter", sans-serif;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-family: "Poppins", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-item p {
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

.mission-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

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

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

/* Service trust section */
.service-trust-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
}

.service-trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-trust-head h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.4rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.service-trust-head p {
    font-family: "Inter", sans-serif;
    color: #64748b;
    margin-bottom: 28px;
}

.service-trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.service-trust-stats article {
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.service-trust-stats strong {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    color: #0284c7;
    margin-bottom: 6px;
}

.service-trust-stats span {
    color: #64748b;
    font-size: 0.9rem;
}

.service-review-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-review-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px;
}

.service-review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.service-review-top h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: #0f172a;
}

.service-review-top span {
    background: #0ea5e9;
    color: #ffffff;
    border-radius: 999px;
    padding: 3px 10px;
    font-size: 0.8rem;
    font-weight: 700;
}

.service-review-meta {
    color: #64748b;
    font-size: 0.82rem;
    margin-bottom: 10px;
}

.service-review-item p {
    color: #334155;
    font-size: 0.93rem;
    line-height: 1.6;
}

.service-review-empty {
    grid-column: 1 / -1;
    text-align: center;
    border: 1px dashed #7dd3fc;
    border-radius: 12px;
    padding: 20px;
    color: #0369a1;
}

.service-trust-actions {
    display: flex;
    gap: 14px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.service-trust-actions .btn-secondary {
    background: #ffffff;
    color: #0f172a;
    border: 2px solid #0ea5e9;
}

.service-trust-actions .btn-secondary:hover {
    background: #e0f2fe;
    color: #0c4a6e;
}

/* Values Section */
.values-section {
    padding: 100px 20px;
    background: #ffffff;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    text-align: center;
    color: #0f172a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 1.1rem;
    text-align: center;
    color: #64748b;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 40px 30px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.15);
    border-color: #6366f1;
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.value-card h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 15px;
}

.value-card p {
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 110px 20px;
    background:
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.08), transparent 42%),
        radial-gradient(circle at 85% 75%, rgba(236, 72, 153, 0.08), transparent 40%),
        linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.timeline {
    max-width: 980px;
    margin: 56px auto 0;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #6366f1, #ec4899);
    border-radius: 999px;
}

.timeline-item {
    position: relative;
    margin-bottom: 34px;
    display: flex;
    justify-content: center;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    margin-right: auto;
    border-right: 4px solid rgba(99, 102, 241, 0.5);
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    margin-left: auto;
    border-left: 4px solid rgba(236, 72, 153, 0.45);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-radius: 50%;
    border: 5px solid #ffffff;
    box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.15);
    z-index: 2;
}

.timeline-dot::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.35;
}

.timeline-content {
    width: calc(50% - 42px);
    background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%);
    padding: 24px 24px 22px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.25);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.timeline-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

.timeline-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    font-family: "Poppins", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-content h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin: 12px 0 8px;
}

.timeline-content p {
    font-family: "Inter", sans-serif;
    font-size: 0.96rem;
    color: #475569;
    line-height: 1.65;
}

/* Team Section */
.team-section {
    padding: 100px 20px;
    background: #ffffff;
}

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 30px;
}

.team-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
}

.team-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

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

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

.team-card h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
    padding: 20px 20px 5px;
}

.team-role {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-bio {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    color: #64748b;
    padding: 0 20px 20px;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    text-align: center;
}

.cta-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-content p {
    font-family: "Inter", sans-serif;
    font-size: 1.2rem;
    color: #f1f5f9;
    margin-bottom: 40px;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #ffffff;
    color: #6366f1;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* 3D Floating Shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.15;
    animation: shapeFloat 8s ease-in-out infinite;
}

.shape--circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    top: 12%;
    left: 6%;
    animation-duration: 7s;
}

.shape--square {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ec4899, #f472b6);
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
    animation-duration: 9s;
    transform: rotate(45deg);
}

.shape--ring {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 5px solid rgba(129, 140, 248, 0.3);
    top: 25%;
    right: 15%;
    animation-delay: 3.5s;
    animation-duration: 10s;
}

.shape--dot {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.25);
    bottom: 30%;
    left: 15%;
    animation-delay: 1.5s;
    animation-duration: 6s;
}
.shape--orbit1 {
    width: 60px; height: 60px; border-radius: 50%;
    border: 3px solid rgba(139, 92, 246, 0.35);
    top: 45%; right: 8%;
    animation: abOrbital 12s linear infinite;
    opacity: 0.2;
}
.shape--orbit2 {
    width: 45px; height: 45px; border-radius: 12px;
    background: linear-gradient(135deg, #a78bfa, #c084fc);
    top: 55%; left: 5%;
    animation: abOrbital 10s linear infinite reverse;
    opacity: 0.15;
}
.shape--diamond {
    width: 50px; height: 50px; border-radius: 8px;
    border: 2px solid rgba(236, 72, 153, 0.3);
    top: 8%; right: 25%;
    animation: abDiamond 9s ease-in-out infinite;
    opacity: 0.18;
}
.shape--glow {
    width: 80px; height: 80px; border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 70%);
    bottom: 10%; right: 20%;
    animation: abPulseGlow 5s ease-in-out infinite;
    opacity: 0.25;
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-22px) rotate(6deg); }
    50% { transform: translateY(-38px) rotate(-5deg); }
    75% { transform: translateY(-14px) rotate(4deg); }
}
@keyframes abOrbital {
    0% { transform: rotate(0deg) translateX(30px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(30px) rotate(-360deg); }
}
@keyframes abDiamond {
    0%, 100% { transform: rotate(45deg) scale(1); }
    50% { transform: rotate(45deg) scale(1.2) translateY(-20px); }
}
@keyframes abPulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.4); opacity: 0.3; }
}

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

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

/* Card Entrance Animation */
.value-card { animation: aboutCardUp .5s ease-out both; }
.value-card:nth-child(1) { animation-delay: .06s; }
.value-card:nth-child(2) { animation-delay: .14s; }
.value-card:nth-child(3) { animation-delay: .22s; }
.value-card:nth-child(4) { animation-delay: .30s; }
.team-card { animation: aboutCardUp .5s ease-out both; }
.team-card:nth-child(1) { animation-delay: .08s; }
.team-card:nth-child(2) { animation-delay: .18s; }
.team-card:nth-child(3) { animation-delay: .28s; }
.team-card:nth-child(4) { animation-delay: .38s; }
.timeline-item { animation: aboutCardUp .5s ease-out both; }
.timeline-item:nth-child(1) { animation-delay: .1s; }
.timeline-item:nth-child(2) { animation-delay: .2s; }
.timeline-item:nth-child(3) { animation-delay: .3s; }
.timeline-item:nth-child(4) { animation-delay: .4s; }
@keyframes aboutCardUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .mission-container {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .service-review-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero__title {
        font-size: 2.5rem;
    }

    .mission-content h2,
    .section-title {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 18px;
    }

    .timeline-dot {
        left: 18px;
        width: 20px;
        height: 20px;
        border-width: 3px;
        box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.14);
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 46px);
        margin-left: auto;
        text-align: left;
        border-left: 4px solid rgba(99, 102, 241, 0.45);
        border-right: none;
        padding-left: 16px;
        padding-right: 16px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .service-trust-head h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 100px 20px;
    }

    .about-hero__title {
        font-size: 2rem;
    }

    .mission-stats {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .service-trust-stats {
        grid-template-columns: 1fr;
    }
}