@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Audiowide&family=Exo+2:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* About Page - Full Width Layout */
.about-page {
    display: grid;
    gap: 0;
}

.about .site-main {
    padding: 0;
}

.about .site-main > .container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Hero Section - Full Screen */
.about-hero {
    min-height: calc(100vh - 72px);
    display: grid;
    grid-template-rows: 1fr;
    align-content: stretch;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: url('/frontend/assets/img/ABOUT/2343433-removebg-preview.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: none;
    overflow: hidden;
    position: relative;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

@supports (height: 100dvh) {
    .about-hero {
        min-height: calc(100dvh - 72px);
    }
}

.about-hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 28px 26px;
    align-items: center;
    min-height: calc(100vh - 72px);
}

.about-section {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    box-sizing: border-box;
}

.about-section__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.about-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.about-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s ease;
}

.about-hero.hero-animate .about-hero__eyebrow {
    opacity: 1;
    transform: translateY(0);
}

.about-hero__dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #00ff88;
    animation: aboutPulse 2s infinite;
}

body[data-theme="light"] .about-hero__eyebrow {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

body[data-theme="light"] .about-hero__dot {
    background: #00ad5d;
    box-shadow: 0 0 10px rgba(0, 173, 93, 0.5);
}

@keyframes aboutPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

body[data-theme="light"] {
    --about-pulse-color: rgba(0, 173, 93, 0.4);
}

body:not([data-theme="light"]) {
    --about-pulse-color: rgba(0, 255, 136, 0.7);
}

@keyframes aboutPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 var(--about-pulse-color); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 var(--about-pulse-color); }
}

.about-hero__eyebrow span:not(.about-hero__dot) {
    opacity: 0.9;
}

.about-hero__title {
    margin: 0;
    font-size: clamp(34px, 3.4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.2px;
    font-weight: 900;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease 0.2s;
}

.about-hero.hero-animate .about-hero__title {
    opacity: 1;
    transform: translateX(0);
}

.about-hero__subtitle {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    max-width: 70ch;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.4s;
}

.about-hero.hero-animate .about-hero__subtitle {
    opacity: 1;
    transform: translateY(0);
}

.about-hero__metrics {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.6s;
}

.about-hero.hero-animate .about-hero__metrics {
    opacity: 1;
    transform: translateY(0);
}

.about-metric__value {
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 0.4px;
}

.about-metric__label {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.62);
}

body[data-theme="light"] .about-metric__label {
    color: rgba(0, 0, 0, 0.58);
}

.about-hero__actions {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.8s;
}

.about-hero.hero-animate .about-hero__actions {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.about-hero__media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero__logo {
    width: min(320px, 80%);
    border-radius: 22px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

/* Badge Ring */
.about-badge-ring {
    width: min(340px, 92%);
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 234, 0.25);
    background: rgba(0, 0, 0, 0.24);
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-items: center;
    justify-items: center;
    padding: 28px;
    position: relative;
    isolation: isolate;
}

.about-badge-ring::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    background: conic-gradient(
        #ff0000,
        #ff7f00,
        #ffff00,
        #00ff00,
        #00ffff,
        #0000ff,
        #8b00ff,
        #ff0000
    );
    animation: aboutRainbowSpin 3.2s linear infinite;
    z-index: 0;
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
    opacity: 0.9;
    pointer-events: none;
}

@keyframes aboutRainbowSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body[data-theme="light"] .about-badge-ring {
    background: rgba(255, 255, 255, 0.70);
    border-color: rgba(0, 70, 255, 0.18);
}

.about-badge-top {
    font-family: "Barlow", "Oswald", "Poppins", ui-sans-serif, system-ui;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.70);
    font-weight: 800;
    text-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
    position: relative;
    z-index: 2;
}

body[data-theme="light"] .about-badge-top {
    color: rgba(0, 0, 0, 0.65);
}

.about-badge-logo {
    width: 128px;
    height: 128px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
}

body[data-theme="light"] .about-badge-logo {
    border-color: rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.04);
}

.about-badge-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 16px;
}

.about-badge-bottom {
    text-align: center;
    font-family: "Barlow", "Oswald", "Poppins", ui-sans-serif, system-ui;
    font-size: 14px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
    position: relative;
    z-index: 2;
}

body[data-theme="light"] .about-badge-bottom {
    color: rgba(0, 0, 0, 0.65);
}

/* Buttons */
.about-btn {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 14px;
    border: 1px solid rgba(212, 237, 249, 0.35);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    overflow: hidden;
    outline-offset: 4px;
    transition: transform 220ms ease, filter 220ms ease;
    text-decoration: none;
    font-size: 15px;
}

body[data-theme="light"] .about-btn {
    border-color: rgba(0, 0, 0, 0.18);
    background: rgba(0, 0, 0, 0.04);
    color: rgba(0, 0, 0, 0.90);
}

.about-btn:hover {
    transform: translateY(-1px);
}

.about-btn--primary {
    border-color: rgba(220, 20, 60, 0.55);
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.95), rgba(255, 74, 135, 0.85));
    box-shadow: 0 18px 46px rgba(220, 20, 60, 0.08);
    color: #ffffff;
}

.about-btn--primary:hover {
    filter: brightness(1.05);
}

/* Sections */
.mission-section {
    padding: 100px 0;
    min-height: 500px;
    background: url('/frontend/assets/img/ABOUT/Our_Mission.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.mission-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.mission-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

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

.mission-content {
    max-width: 600px;
    text-align: left;
}

.mission-content .about-h2 {
    margin-bottom: 30px;
    font-size: clamp(32px, 3.5vw, 48px);
    font-family: 'Orbitron', 'Rajdhani', 'Audiowide', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 0%, #00ff88 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-slider-container {
    position: relative;
    width: 100%;
    /* Remove min-height to prevent overlap/spacing issues */
}

.mission-slider {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
}

.mission-slide {
    grid-area: 1 / 1 / 2 / 2;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: 20px;
}

.mission-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}

/* Slide content staggered animation */
.mission-slide .about-h2 {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.mission-slide .about-p {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease 0.5s;
}

.mission-slide.active .about-h2,
.mission-slide.active .about-p {
    transform: translateY(0);
    opacity: 1;
}

.slider-dots {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: flex-start;
}

.slider-dots .dot {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-3px);
}

.slider-dots .dot.active {
    background: #00ff88;
    color: #000;
    width: 45px; /* Back to original size but active */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
    border-color: #00ff88;
}

/* Light Theme Slider Dots */
body[data-theme="light"] .slider-dots .dot {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.4);
}

body[data-theme="light"] .slider-dots .dot:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #000;
}

body[data-theme="light"] .slider-dots .dot.active {
    background: #00ad5d;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 173, 93, 0.2);
    border-color: #00ad5d;
}

.mission-content .about-h2 i {
    font-size: 36px;
    margin-right: 15px;
    color: #00ff88;
    -webkit-text-fill-color: #00ff88;
    background: none;
}

.mission-content .about-p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Exo 2', 'Barlow', 'Rajdhani', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

body[data-theme="light"] .mission-overlay {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.4) 100%);
}

body[data-theme="light"] .mission-content .about-h2 {
    background: linear-gradient(135deg, #1a1a1a 0%, #00ad5d 50%, #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body[data-theme="light"] .mission-content .about-p {
    color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .mission-content {
        max-width: 100%;
        text-align: left;
    }
    
    .mission-section {
        background-position: center;
    }
    
    .mission-overlay {
        background: rgba(0, 0, 0, 0.85);
    }
}

.about-section__inner {
    padding: 18px clamp(14px, 2.2vw, 28px);
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}

.about-h2 {
    margin: 0 0 30px;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.2px;
    font-weight: 800;
    color: var(--text);
    text-transform: none;
}

.about-h2 i {
    font-size: 24px;
    color: var(--primary);
}

.about-p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    max-width: 100%;
}

.section-header--futuristic {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px; /* Reduced from 40px */
    background: linear-gradient(to right, #fff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header--futuristic::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00ff88, transparent);
    border-radius: 2px;
}

.section-header--futuristic i {
    font-size: 28px;
    color: #00ff88;
    -webkit-text-fill-color: #00ff88;
}

body[data-theme="light"] .section-header--futuristic {
    background: linear-gradient(to right, #1a1a1a, #00ad5d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body[data-theme="light"] .section-header--futuristic::after {
    background: linear-gradient(90deg, #00ad5d, transparent);
}

body[data-theme="light"] .section-header--futuristic i {
    color: #00ad5d;
    -webkit-text-fill-color: #00ad5d;
}

/* History Timeline Section - Modern Circular Design */
.history-section {
    padding: 60px 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    width: 100%;
    position: relative;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.history-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.c-timeline {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 40px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    display: flex;
}

.c-timeline__grid {
    display: flex;
    align-items: center;
    padding: 0 50px;
    min-width: max-content;
    position: relative;
    height: 320px;
    margin: 0 auto;
}

/* Central Horizontal Line */
.c-timeline__grid::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 10px;
}

.c-timeline.grabbing {
    cursor: grabbing;
    scroll-behavior: auto;
}

.c-timeline::-webkit-scrollbar {
    display: none;
}

.c-timeline__item {
    position: relative;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.history-section.in-view .c-timeline__item {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.history-section.in-view .c-timeline__item:nth-child(1) { transition-delay: 0.1s; }
.history-section.in-view .c-timeline__item:nth-child(2) { transition-delay: 0.3s; }
.history-section.in-view .c-timeline__item:nth-child(3) { transition-delay: 0.5s; }
.history-section.in-view .c-timeline__item:nth-child(4) { transition-delay: 0.7s; }
.history-section.in-view .c-timeline__item:nth-child(5) { transition-delay: 0.9s; }

/* Year and Content Positioning */
.c-timeline__circle {
    width: 120px;
    height: 120px;
    background: var(--card-bg, #1a1a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 8px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: timeline-rotate 10s linear infinite;
}

@keyframes timeline-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.c-timeline__item:hover .c-timeline__circle {
    transform: scale(1.1) rotate(360deg);
    animation-play-state: paused;
}

/* Semi-circular Border (Colors) */
.c-timeline__circle::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    padding: 8px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
}

/* Item Variations (Top/Bottom) */
.c-timeline__top .c-timeline__circle::before {
    background: conic-gradient(from 180deg, var(--timeline-color) 180deg, transparent 180deg);
}

.c-timeline__bottom .c-timeline__circle::before {
    background: conic-gradient(from 0deg, var(--timeline-color) 180deg, transparent 180deg);
}

.c-timeline__item:nth-child(1) { --timeline-color: #ffaa00; --timeline-color-rgb: 255, 170, 0; }
.c-timeline__item:nth-child(2) { --timeline-color: #78bc27; --timeline-color-rgb: 120, 188, 39; }
.c-timeline__item:nth-child(3) { --timeline-color: #00ff88; --timeline-color-rgb: 0, 255, 136; }
.c-timeline__item:nth-child(4) { --timeline-color: #00d4ff; --timeline-color-rgb: 0, 212, 255; }
.c-timeline__item:nth-child(5) { --timeline-color: #4488ff; --timeline-color-rgb: 68, 136, 255; }

/* Year and Content Positioning */
.c-timeline__content {
    position: absolute;
    width: 250px;
    text-align: center;
    transition: all 0.5s ease;
}

.c-timeline__top .c-timeline__content {
    bottom: 120px; /* Reduced from 140px */
}

.c-timeline__bottom .c-timeline__content {
    top: 120px; /* Reduced from 140px */
}

.c-timeline__year {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--timeline-color);
    margin-bottom: 8px;
    display: block;
}

.c-timeline__desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted);
    margin: 0;
}

/* Connecting Arrows (Dotted Lines) */
.c-timeline__item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 0; /* Starts at 0 for animation */
    height: 2px;
    background-image: linear-gradient(to right, var(--timeline-color) 50%, transparent 50%);
    background-size: 15px 2px;
    background-repeat: repeat-x;
    transform: translateY(-50%);
    opacity: 0.4;
    transition: width 1s ease 1s; /* Delayed until circles appear */
}

.history-section.in-view .c-timeline__item::after {
    width: 180px;
}

.c-timeline__item:last-of-type::after {
    display: none;
}

/* Small Arrow Head */
.c-timeline__item-arrow {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--timeline-color);
    opacity: 0.6;
}

body[data-theme="light"] .c-timeline__circle {
    background: #fff;
}

body[data-theme="light"] .c-timeline__grid::before {
    background: rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .history-section {
        padding: 40px 0;
    }

    .c-timeline {
        overflow: visible;
        padding: 20px 0;
    }

    .c-timeline__grid {
        flex-direction: column;
        height: auto;
        padding: 0 20px;
        min-width: 100%;
        gap: 0;
    }

    .c-timeline__grid::before {
        width: 4px;
        height: 100%;
        left: 30px; /* Positioned for circles */
        top: 0;
        transform: none;
        background: linear-gradient(to bottom, transparent, rgba(0, 255, 136, 0.2) 10%, rgba(0, 255, 136, 0.2) 90%, transparent);
    }

    .c-timeline__item {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: 30px 0;
        margin-left: 0;
        opacity: 1 !important; /* Ensure visibility */
        transform: none !important;
    }

    .c-timeline__circle {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
        border-width: 4px;
        z-index: 5;
        margin-left: 0;
    }

    .c-timeline__content {
        position: static;
        text-align: left;
        width: auto;
        padding-left: 25px;
        flex-grow: 1;
        transform: none !important;
    }

    .c-timeline__year {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .c-timeline__desc {
        font-size: 13px;
        max-width: 100%;
    }

    /* Remove horizontal arrows on mobile */
    .c-timeline__item::after, .c-timeline__item-arrow {
        display: none;
    }

    /* Alternating side glow for premium feel */
    .c-timeline__item:nth-child(even) .c-timeline__content {
        border-left: 2px solid var(--timeline-color);
        padding-left: 20px;
        background: linear-gradient(to right, rgba(var(--timeline-color-rgb), 0.05), transparent);
    }
}

.offer-section {
    padding: 40px 0; /* Reduced from 60px */
    background: transparent;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.offer-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .visual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .visual-grid {
        grid-template-columns: 1fr;
    }
}

.offer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 35px 25px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--icon-color), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.offer-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--icon-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.offer-card:hover::before {
    opacity: 0.1;
}

.offer-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-card:hover .offer-card__icon {
    background: var(--icon-color);
    transform: rotate(10deg);
}

.offer-card__icon i {
    font-size: 30px;
    color: var(--icon-color);
    transition: all 0.4s ease;
}

.offer-card:hover .offer-card__icon i {
    color: #000;
}

.offer-card__content {
    position: relative;
    z-index: 2;
}

.offer-card__content h4 {
    margin: 10px 0 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

.offer-card__content p {
    margin: 0;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    font-family: 'Rajdhani', sans-serif;
}

body[data-theme="light"] .offer-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body[data-theme="light"] .offer-card:hover {
    background: #fdfdfd;
}

body[data-theme="light"] .offer-card__icon {
    background: rgba(0, 0, 0, 0.02);
}

@media (max-width: 768px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
}

/* Core Values Section */
.values-section {
    padding: 60px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.values-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0;
    border-radius: 0;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    z-index: 1;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-card__main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}

.value-card:hover .value-card__main {
    opacity: 0;
    transform: translateY(-20px);
}

.value-card__overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.value-card:hover .value-card__overlay {
    bottom: 0;
}

.value-card__overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--value-color);
}

/* 4-Corner Borders */
.value-card span[class^="corner-"] {
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: var(--value-color);
    border-style: solid;
    transition: all 0.4s ease;
    opacity: 0.6;
    z-index: 4;
}

.value-card .corner-tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.value-card .corner-tr { top: 10px; right: 10px; border-width: 2px 2px 0 0; }
.value-card .corner-bl { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; }
.value-card .corner-br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }

.value-card:hover span[class^="corner-"] {
    width: 20px;
    height: 20px;
    opacity: 1;
}

.value-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 26px;
    color: var(--value-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.value-card__title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #fff;
    letter-spacing: 1px;
}

.value-card__desc {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    margin: 0;
    text-align: center;
}

body[data-theme="light"] .value-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.05);
}

body[data-theme="light"] .value-card__overlay {
    background: rgba(255, 255, 255, 0.98);
}

body[data-theme="light"] .value-card__desc {
    color: #1a1a1a;
}

body[data-theme="light"] .value-card__title {
    color: #1a1a1a;
}

/* Section entry staggered animations */
.values-section.in-view .value-card {
    opacity: 1;
    transform: translateY(0);
}

.values-section .value-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.values-section.in-view .value-card:nth-child(1) { transition-delay: 0.1s; }
.values-section.in-view .value-card:nth-child(2) { transition-delay: 0.3s; }
.values-section.in-view .value-card:nth-child(3) { transition-delay: 0.5s; }
.values-section.in-view .value-card:nth-child(4) { transition-delay: 0.7s; }

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .value-card {
        aspect-ratio: 1 / 1;
        padding: 15px 10px;
    }

    .value-card__icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .value-card__title {
        font-size: 14px;
    }

    .value-card__desc {
        font-size: 12px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .value-card__title {
        font-size: 13px;
    }
}

/* Why Choose Us - Visual Grid Style */
.visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.visual-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

/* 4-Corner Borders for Why Choose Us */
.visual-card span[class^="corner-"] {
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: var(--accent);
    border-style: solid;
    transition: all 0.4s ease;
    opacity: 0.6;
    z-index: 4;
}

.visual-card .corner-tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.visual-card .corner-tr { top: 10px; right: 10px; border-width: 2px 2px 0 0; }
.visual-card .corner-bl { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; }
.visual-card .corner-br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }

.visual-card:hover span[class^="corner-"] {
    width: 20px;
    height: 20px;
    opacity: 1;
}

.visual-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.visual-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.visual-card__icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    transition: all 0.4s ease;
}

.visual-card:hover .visual-card__icon {
    background: var(--accent);
    color: #000;
    transform: rotateY(180deg);
}

.visual-card__number {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
}

.visual-card__body h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: 1px;
}

.visual-card__body p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

.visual-card__footer {
    margin-top: auto;
}

.status-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 1px;
    border: 1px solid rgba(var(--accent-rgb, 0, 255, 136), 0.2);
}

/* Light Theme Support */
body[data-theme="light"] .visual-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body[data-theme="light"] .visual-card:hover {
    background: #f8f9fa;
    border-color: var(--accent);
}

body[data-theme="light"] .visual-card__body h4 {
    color: #111111;
}

body[data-theme="light"] .visual-card__body p {
    color: #444444;
    font-weight: 500;
}

body[data-theme="light"] .visual-card__icon {
    background: #f0f2f5;
    border-color: rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .visual-card__number {
    color: rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .status-tag {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #333;
}

@media (max-width: 992px) {
    .visual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .visual-grid {
        grid-template-columns: 1fr;
    }
}

.why-choose-section {
    padding: 60px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.why-choose-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-section.in-view .why-choose-item {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.why-choose-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.why-choose-item__icon {
    font-size: 22px;
    color: var(--success, #00ad5d);
    display: flex;
}

.why-choose-item__text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}

body[data-theme="light"] .why-choose-item {
    background: rgba(0, 0, 0, 0.01);
    border-color: rgba(0, 0, 0, 0.03);
}

.achievements-section {
    padding: 20px 0 60px 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin-top: 30px;
}

.achievement-card {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

/* Golden corner borders */
.achievement-card::before,
.achievement-card::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: #ffd700;
    border-style: solid;
    transition: all 0.3s ease;
}

/* Top-left corner */
.achievement-card::before {
    top: 4px;
    left: 4px;
    border-width: 2px 0 0 2px;
}

/* Top-right corner */
.achievement-card::after {
    top: 4px;
    right: 4px;
    border-width: 2px 2px 0 0;
}

/* Bottom corners */
.achievement-card span.corner-bl,
.achievement-card span.corner-br {
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: #ffd700;
    border-style: solid;
    transition: all 0.3s ease;
}

.achievement-card span.corner-bl {
    bottom: 4px;
    left: 4px;
    border-width: 0 0 2px 2px;
}

.achievement-card span.corner-br {
    bottom: 4px;
    right: 4px;
    border-width: 0 2px 2px 0;
}

/* Hover animation for golden corners */
.achievement-card:hover::before,
.achievement-card:hover::after {
    width: 16px;
    height: 16px;
    border-color: #ffed4e;
}

.achievement-card:hover span.corner-bl,
.achievement-card:hover span.corner-br {
    width: 16px;
    height: 16px;
    border-color: #ffed4e;
}

.achievement-card:last-child {
    border-right: none;
}

/* Font Awesome Icon Styling */
.achievement-card__icon {
    font-size: 32px;
    margin-bottom: 15px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
}

/* Different colors for each icon */
.achievement-card:nth-child(1) .achievement-card__icon {
    color: #00d4ff;
}

.achievement-card:nth-child(2) .achievement-card__icon {
    color: #00ff88;
}

.achievement-card:nth-child(3) .achievement-card__icon {
    color: #ffaa00;
}

.achievement-card:nth-child(4) .achievement-card__icon {
    color: #ff6b6b;
}

.achievements-section.animate .achievement-card__icon {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation for icons */
.achievements-section.animate .achievement-card:nth-child(1) .achievement-card__icon {
    transition-delay: 0s;
}

.achievements-section.animate .achievement-card:nth-child(2) .achievement-card__icon {
    transition-delay: 0.15s;
}

.achievements-section.animate .achievement-card:nth-child(3) .achievement-card__icon {
    transition-delay: 0.3s;
}

.achievements-section.animate .achievement-card:nth-child(4) .achievement-card__icon {
    transition-delay: 0.45s;
}

.achievement-card__value {
    font-weight: 900;
    font-size: 42px;
    color: var(--primary, #dc143c);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    position: relative;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s ease;
}

.achievement-card__label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease 0.2s;
}

/* Animated state when section is visible */
.achievements-section.animate .achievement-card__value {
    opacity: 1;
    transform: translateY(0);
}

.achievements-section.animate .achievement-card__label {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation for each card */
.achievements-section.animate .achievement-card:nth-child(1) .achievement-card__value,
.achievements-section.animate .achievement-card:nth-child(1) .achievement-card__label {
    transition-delay: 0s;
}

.achievements-section.animate .achievement-card:nth-child(2) .achievement-card__value,
.achievements-section.animate .achievement-card:nth-child(2) .achievement-card__label {
    transition-delay: 0.15s;
}

.achievements-section.animate .achievement-card:nth-child(3) .achievement-card__value,
.achievements-section.animate .achievement-card:nth-child(3) .achievement-card__label {
    transition-delay: 0.3s;
}

.achievements-section.animate .achievement-card:nth-child(4) .achievement-card__value,
.achievements-section.animate .achievement-card:nth-child(4) .achievement-card__label {
    transition-delay: 0.45s;
}

body[data-theme="light"] .achievements-grid {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

body[data-theme="light"] .achievement-card {
    border-right-color: rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .achievement-card:nth-child(2) {
        border-right: none;
    }
    .achievement-card:nth-child(1),
    .achievement-card:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    body[data-theme="light"] .achievement-card:nth-child(1),
    body[data-theme="light"] .achievement-card:nth-child(2) {
        border-bottom-color: rgba(0, 0, 0, 0.08);
    }
}

@media (max-width: 480px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    .achievement-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .achievement-card:last-child {
        border-bottom: none;
    }
    body[data-theme="light"] .achievement-card {
        border-bottom-color: rgba(0, 0, 0, 0.08);
    }
}

body[data-theme="light"] .infographic-item {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

body[data-theme="light"] .infographic-content h4 {
    color: #1a1a1a;
}

body[data-theme="light"] .infographic-content p {
    color: #555;
}

body[data-theme="light"] .infographic-number {
    color: rgba(0, 0, 0, 0.03);
}

body[data-theme="light"] .infographic-icon {
    background: rgba(0, 173, 93, 0.05);
    border-color: rgba(0, 173, 93, 0.1);
}

/* Methodology Section */
.methodology-section {
    padding: 60px 0;
    background: rgba(0, 255, 136, 0.01);
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.methodology-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

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

.method-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 25px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.method-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-15px);
    border-color: #00ff88;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.method-number {
    position: absolute;
    top: 10px;
    left: 15px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #00ff88;
    opacity: 0.5;
}

.method-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #00ff88;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.method-card:hover .method-icon {
    background: #00ff88;
    color: #000;
    transform: rotate(360deg) scale(1.1);
}

.method-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.method-card p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted);
    margin: 0;
}

/* Light Theme Support */
body[data-theme="light"] .methodology-section {
    background: rgba(0, 173, 93, 0.02);
}

body[data-theme="light"] .method-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body[data-theme="light"] .method-card h4 {
    color: #1a1a1a;
}

body[data-theme="light"] .method-card p {
    color: #555;
}

body[data-theme="light"] .method-icon {
    background: rgba(0, 173, 93, 0.05);
}

@media (max-width: 1200px) {
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .methodology-grid {
        grid-template-columns: 1fr;
    }
}

/* Tech Stack Carousel */
.tech-stack-section {
    padding: 40px 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.01);
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.tech-stack-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.tech-stack-container {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    position: relative;
}

.tech-stack-container::before,
.tech-stack-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.tech-stack-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color, #0a0a0a), transparent);
}

.tech-stack-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color, #0a0a0a), transparent);
}

.tech-track {
    display: flex;
    width: max-content;
    gap: 60px;
    animation: tech-scroll 30s linear infinite;
}

.tech-item {
    font-size: 50px;
    color: var(--muted);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
}

.tech-item:hover {
    color: #00ff88;
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.5));
}

@keyframes tech-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

body[data-theme="light"] .tech-stack-container::before {
    background: linear-gradient(to right, #ffffff, transparent);
}

body[data-theme="light"] .tech-stack-container::after {
    background: linear-gradient(to left, #ffffff, transparent);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.faq-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.faq-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: #00ff88;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0, 1, 0, 1);
    background: rgba(255, 255, 255, 0.01);
}

.faq-answer p {
    padding: 0 25px 20px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.faq-item.active {
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: all 0.3s cubic-bezier(1, 0, 1, 0);
}

body[data-theme="light"] .faq-item {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

body[data-theme="light"] .faq-question {
    color: #1a1a1a;
}

body[data-theme="light"] .faq-answer p {
    color: #555;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.cta-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.cta-card {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-scanner {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: cta-scan 6s linear infinite;
}

@keyframes cta-scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(28px, 5vw, 42px);
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-desc {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.about-btn {
    padding: 15px 35px;
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-btn--primary {
    background: #00ff88;
    color: #000;
}

.about-btn--primary:hover {
    background: #00d4ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.about-btn--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.about-btn--outline:hover {
    border-color: #00ff88;
    color: #00ff88;
    transform: translateY(-3px);
}

body[data-theme="light"] .cta-card {
    background: linear-gradient(135deg, rgba(0, 173, 93, 0.05), rgba(0, 163, 255, 0.05));
    border-color: rgba(0, 173, 93, 0.1);
}

body[data-theme="light"] .cta-title {
    color: #1a1a1a;
}

body[data-theme="light"] .cta-desc {
    color: #555;
}

body[data-theme="light"] .about-btn--outline {
    border-color: rgba(0, 0, 0, 0.1);
    color: #333;
}

@media (max-width: 600px) {
    .contact-method-item {
        gap: 12px;
        padding: 15px;
    }
    
    .contact-method-item .method-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .method-detail strong {
        font-size: 13px;
        word-break: break-all;
    }
    
    .method-detail span {
        font-size: 11px;
    }

    .uiverse-wrapper {
        flex-wrap: wrap;
        gap: 10px;
    }

    .uiverse-wrapper .icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Stats Banner Section */
.stats-banner-section {
    padding: 40px 0;
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.05), rgba(0, 212, 255, 0.05));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: scale(0.95);
    transition: all 1s ease;
}

.stats-banner-section.in-view {
    opacity: 1;
    transform: scale(1);
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stats-banner-item {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.stats-banner-icon {
    font-size: 36px;
    color: #00ff88;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

.stats-banner-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.stats-banner-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    color: var(--muted);
    margin: 5px 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Light Theme Support */
body[data-theme="light"] .stats-banner-section {
    background: linear-gradient(90deg, rgba(0, 173, 93, 0.05), rgba(0, 163, 255, 0.05));
    border-color: rgba(0, 0, 0, 0.05);
}

body[data-theme="light"] .stats-banner-value {
    color: #1a1a1a;
}

body[data-theme="light"] .stats-banner-label {
    color: #555;
}

@media (max-width: 992px) {
    .stats-banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .stats-banner-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-banner-item {
        justify-content: flex-start;
        padding-left: 20%;
    }
}

/* Founder & Contact Section */
.founder-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

/* Founder Split Layout */
.founder-split-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.01);
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.founder-split-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.founder-split-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-top: 40px;
}

.founder-split-left {
    flex: 0 0 350px;
}

.founder-split-right {
    flex: 1;
    padding-top: 0;
}

.founder-image-wrapper.futuristic-frame {
    position: relative;
    padding: 15px;
    background: rgba(0, 255, 136, 0.02);
    border: 1px solid rgba(0, 255, 136, 0.1);
    overflow: hidden;
    transition: all 0.5s ease;
}

.founder-image-wrapper.futuristic-frame:hover {
    border-color: #00ff88;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.frame-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 136, 0.5), transparent);
    z-index: 3;
    animation: scanline-anim 3s linear infinite;
    pointer-events: none;
}

.frame-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    z-index: 1;
    animation: glow-pulse 2s ease-in-out infinite alternate;
    pointer-events: none;
}

.img-container {
    position: relative;
    z-index: 2;
    background: #000;
}

.founder-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(0, 255, 136, 0.3);
    filter: contrast(1.1) brightness(1.1);
    transition: all 0.5s ease;
}

.founder-image-wrapper:hover img {
    filter: contrast(1.2) brightness(1.2);
    transform: scale(1.02);
}

@keyframes scanline-anim {
    0% { top: -100%; }
    100% { top: 200%; }
}

@keyframes glow-pulse {
    from { opacity: 0.3; }
    to { opacity: 0.7; }
}

.founder-status-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #000;
    padding: 6px 15px;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    color: #00ff88;
    border: 1px solid #00ff88;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 4;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.founder-split-right .founder-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 5px;
    margin-top: -25px;
    text-align: left;
}

.founder-split-right .founder-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    color: #00ff88;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: left;
}

.founder-split-right .founder-bio {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    text-align: justify;
    max-width: 100%;
}

/* Contact Section Grid Update */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .founder-split-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .founder-split-left {
        flex: 0 0 auto;
        width: 280px;
        margin: 0 auto;
    }
    .founder-split-right .founder-name,
    .founder-split-right .founder-title {
        text-align: center;
    }
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
}


.company-contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-header h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
}

.contact-header p {
    font-family: 'Rajdhani', sans-serif;
    color: var(--muted);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method-item:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: #00ff88;
    transform: translateY(-2px);
}

.contact-method-item .method-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #00ff88;
    flex-shrink: 0;
}

.method-detail {
    flex: 1;
    min-width: 0;
}

.method-detail span {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-detail strong {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(12px, 3.5vw, 15px);
    color: #fff;
    display: block;
    word-break: break-all;
}

.contact-social-full h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 15px;
}

.social-icons-row {
    display: flex;
    gap: 15px;
}

.social-icons-row a {
    font-size: 24px;
    color: var(--muted);
    transition: all 0.3s ease;
}

.social-icons-row a:hover {
    color: #00ff88;
    transform: scale(1.2);
}

/* Light Theme Support */
body[data-theme="light"] .founder-card,
body[data-theme="light"] .company-contact-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body[data-theme="light"] .founder-name,
body[data-theme="light"] .contact-header h4,
body[data-theme="light"] .method-detail strong {
    color: #1a1a1a;
}

body[data-theme="light"] .founder-bio,
body[data-theme="light"] .contact-header p,
body[data-theme="light"] .method-detail span {
    color: #555;
}

/* Uiverse Style Social Icons */
.uiverse-wrapper {
  display: inline-flex;
  list-style: none;
  padding: 15px 0;
  font-family: "Poppins", sans-serif;
  justify-content: center;
  gap: 15px;
}

.uiverse-wrapper .icon {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Colors by Default */
.uiverse-wrapper .facebook i, 
.uiverse-wrapper .facebook svg,
.uiverse-wrapper .facebook svg path { color: #1877f2 !important; fill: #1877f2 !important; }

.uiverse-wrapper .twitter i, 
.uiverse-wrapper .twitter svg,
.uiverse-wrapper .twitter svg path { color: #1da1f2 !important; fill: #1da1f2 !important; }

.uiverse-wrapper .instagram i, 
.uiverse-wrapper .instagram svg,
.uiverse-wrapper .instagram svg path { color: #e4405f !important; fill: #e4405f !important; }

.uiverse-wrapper .linkedin i, 
.uiverse-wrapper .linkedin svg,
.uiverse-wrapper .linkedin svg path { color: #0077b5 !important; fill: #0077b5 !important; }

.uiverse-wrapper .youtube i, 
.uiverse-wrapper .youtube svg,
.uiverse-wrapper .youtube svg path { color: #ff0000 !important; fill: #ff0000 !important; }

.uiverse-wrapper .whatsapp i, 
.uiverse-wrapper .whatsapp svg,
.uiverse-wrapper .whatsapp svg path { color: #25d366 !important; fill: #25d366 !important; }

.uiverse-wrapper .github i, 
.uiverse-wrapper .github svg,
.uiverse-wrapper .github svg path { color: #333 !important; fill: #333 !important; }

/* GitHub color adjustment for dark theme */
body:not([data-theme="light"]) .uiverse-wrapper .github i,
body:not([data-theme="light"]) .uiverse-wrapper .github svg,
body:not([data-theme="light"]) .uiverse-wrapper .github svg path {
    color: #fff !important;
    fill: #fff !important;
}

.uiverse-wrapper .icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.uiverse-wrapper .icon:hover i,
.uiverse-wrapper .icon:hover svg,
.uiverse-wrapper .icon:hover svg path {
  color: #fff !important;
  fill: #fff !important;
}

.uiverse-wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #fff;
  padding: 5px 12px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  white-space: nowrap;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  z-index: 10;
}

.uiverse-wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.uiverse-wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.uiverse-wrapper .icon:hover {
  color: #fff;
  transform: translateY(-5px);
}

.uiverse-wrapper .facebook:hover { background: #1877f2; border-color: #1877f2; }
.uiverse-wrapper .twitter:hover { background: #1da1f2; border-color: #1da1f2; }
.uiverse-wrapper .instagram:hover { background: #e4405f; border-color: #e4405f; }
.uiverse-wrapper .linkedin:hover { background: #0077b5; border-color: #0077b5; }
.uiverse-wrapper .youtube:hover { background: #ff0000; border-color: #ff0000; }
.uiverse-wrapper .whatsapp:hover { background: #25d366; border-color: #25d366; }
.uiverse-wrapper .github:hover { background: #333; border-color: #333; }

.uiverse-wrapper .facebook:hover .tooltip, .uiverse-wrapper .facebook:hover .tooltip::before { background: #1877f2; }
.uiverse-wrapper .twitter:hover .tooltip, .uiverse-wrapper .twitter:hover .tooltip::before { background: #1da1f2; }
.uiverse-wrapper .instagram:hover .tooltip, .uiverse-wrapper .instagram:hover .tooltip::before { background: #e4405f; }
.uiverse-wrapper .linkedin:hover .tooltip, .uiverse-wrapper .linkedin:hover .tooltip::before { background: #0077b5; }
.uiverse-wrapper .youtube:hover .tooltip, .uiverse-wrapper .youtube:hover .tooltip::before { background: #ff0000; }
.uiverse-wrapper .whatsapp:hover .tooltip, .uiverse-wrapper .whatsapp:hover .tooltip::before { background: #25d366; }
.uiverse-wrapper .github:hover .tooltip, .uiverse-wrapper .github:hover .tooltip::before { background: #333; }

/* Light Theme Support */
body[data-theme="light"] .uiverse-wrapper .icon {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

body[data-theme="light"] .uiverse-wrapper .icon a {
  color: inherit !important;
}

body[data-theme="light"] .uiverse-wrapper .github i,
body[data-theme="light"] .uiverse-wrapper .github svg,
body[data-theme="light"] .uiverse-wrapper .github svg path {
    color: #333 !important;
    fill: #333 !important;
}

body[data-theme="light"] .uiverse-wrapper .facebook i, 
body[data-theme="light"] .uiverse-wrapper .facebook svg,
body[data-theme="light"] .uiverse-wrapper .facebook svg path { color: #1877f2 !important; fill: #1877f2 !important; }

body[data-theme="light"] .uiverse-wrapper .twitter i, 
body[data-theme="light"] .uiverse-wrapper .twitter svg,
body[data-theme="light"] .uiverse-wrapper .twitter svg path { color: #1da1f2 !important; fill: #1da1f2 !important; }

body[data-theme="light"] .uiverse-wrapper .instagram i, 
body[data-theme="light"] .uiverse-wrapper .instagram svg,
body[data-theme="light"] .uiverse-wrapper .instagram svg path { color: #e4405f !important; fill: #e4405f !important; }

body[data-theme="light"] .uiverse-wrapper .linkedin i, 
body[data-theme="light"] .uiverse-wrapper .linkedin svg,
body[data-theme="light"] .uiverse-wrapper .linkedin svg path { color: #0077b5 !important; fill: #0077b5 !important; }

body[data-theme="light"] .uiverse-wrapper .youtube i, 
body[data-theme="light"] .uiverse-wrapper .youtube svg,
body[data-theme="light"] .uiverse-wrapper .youtube svg path { color: #ff0000 !important; fill: #ff0000 !important; }

body[data-theme="light"] .uiverse-wrapper .whatsapp i, 
body[data-theme="light"] .uiverse-wrapper .whatsapp svg,
body[data-theme="light"] .uiverse-wrapper .whatsapp svg path { color: #25d366 !important; fill: #25d366 !important; }

body[data-theme="light"] .uiverse-wrapper .icon:hover i,
body[data-theme="light"] .uiverse-wrapper .icon:hover svg,
body[data-theme="light"] .uiverse-wrapper .icon:hover svg path {
  color: #fff !important;
  fill: #fff !important;
}

.founder-social-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-section {
    padding: 60px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.contact-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.contact-section.in-view .contact-item,
.contact-section.in-view .contact-social-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.contact-social-wrapper {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.contact-item i {
    font-size: 22px;
    color: var(--primary, #dc143c);
}

.contact-item span {
    font-size: 15px;
    font-weight: 500;
}

.contact-social-wrapper h4 {
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 700;
}

.about-social {
    display: flex;
    gap: 15px;
}

.about-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 20px;
    color: var(--text);
    transition: all 0.3s ease;
}

.about-social a:hover {
    background: var(--primary, #dc143c);
    color: #fff;
    transform: translateY(-3px);
}

body[data-theme="light"] .contact-item,
body[data-theme="light"] .about-social a {
    background: rgba(0, 0, 0, 0.01);
    border-color: rgba(0, 0, 0, 0.03);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 860px) {
    .about-hero__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    
    .about-hero__media {
        grid-row: 1;
    }
    
    .about-hero__copy {
        grid-row: 2;
        padding-left: 0;
    }
    
    .about-badge-ring {
        width: min(300px, 86vw);
        padding: 22px;
    }
    
    .about-hero__metrics {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-hero__actions {
        justify-content: center;
    }
    
    .about-hero__title {
        font-size: clamp(26px, 6.2vw, 34px);
    }
    
    .about-hero__subtitle {
        font-size: 14px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .about-hero__grid {
        padding: 16px;
        text-align: center;
    }
    
    .about-hero {
        background: none;
    }
    
    .about-hero__copy {
        text-align: center;
        align-items: center;
    }
    
    .about-hero__eyebrow {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-hero__metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-hero__actions {
        justify-content: center;
    }
    
    .about-metric__value {
        font-size: 18px;
    }
    
    .about-metric__label {
        font-size: 10px;
    }
    
    .about-section__inner {
        padding: 14px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stat__value {
        font-size: 22px;
    }
}
