/* ============================================
   ABOUT US PAGE STYLES - BLACK + ELECTRIC CYAN
   Complete Responsive Design - FULL VERSION
   ============================================ */

/* Import color variables */
:root {
    --primary-color: #00d9ff;
    --secondary-color: #0a0e27;
    --accent-cyan: #5fecff;
    --accent-dark: #1a1f3a;
    --accent-gray: #2d3748;
    --text-dark: #0a0e27;
    --text-light: #64748b;
    --white: #ffffff;
    --bg-light: #f9fafb;
}

/* ============================================
   ABOUT HERO SECTION
   ============================================ */
.about-hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 217, 255, 0.15), transparent 40%),
        radial-gradient(circle at 70% 50%, rgba(95, 236, 255, 0.1), transparent 40%);
    animation: float 15s ease-in-out infinite;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1441984904996-e0b6ba687e04?w=1920') center/cover;
    opacity: 0.1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.about-badge {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, #00d9ff 0%, #5fecff 100%);
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.4);
    animation: glow-pulse 2s infinite;
}

.about-hero-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 20px;
    color: var(--accent-cyan);
    font-weight: 400;
    opacity: 0.95;
}

/* ============================================
   MISSION & VISION SECTION
   ============================================ */
.mission-vision-section {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.mission-vision-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(0, 217, 255, 0.03), transparent);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.mission-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 217, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.25);
    border-color: var(--primary-color);
}

.mission-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #00d9ff 0%, #5fecff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 42px;
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.4);
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.6);
}

.mission-card h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.mission-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   OUR STORY SECTION
   ============================================ */
.story-section {
    padding: 100px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text {
    animation: slideInLeft 1s ease;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 217, 255, 0.1);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #00d9ff 0%, #5fecff 100%);
    border-radius: 2px;
}

.story-lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.6;
}

.story-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(0, 217, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d9ff 0%, #5fecff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.story-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
    animation: slideInRight 1s ease;
}

.story-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-image:hover img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.story-image:hover .image-overlay {
    opacity: 1;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.1), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(95, 236, 255, 0.08), transparent 40%);
}

.section-header-center {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.section-header-center .section-badge {
    margin-bottom: 20px;
}

.section-header-center .section-title {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-header-center .section-title.section-ourcore {
    color: var(--white);
}

.section-header-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-description {
    font-size: 18px;
    color: var(--accent-cyan);
    opacity: 0.9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    position: relative;
    z-index: 1;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.4s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #00d9ff 0%, #5fecff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 34px;
    box-shadow: 0 10px 35px rgba(0, 217, 255, 0.4);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 45px rgba(0, 217, 255, 0.6);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-card p {
    font-size: 15px;
    color: var(--accent-cyan);
    line-height: 1.7;
    opacity: 0.9;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-choose-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.image-pattern {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(95, 236, 255, 0.2));
    border-radius: 50%;
    filter: blur(60px);
}

.why-choose-text {
    animation: slideInRight 1s ease;
}

.feature-list {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d9ff 0%, #5fecff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 22px;
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.3);
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-content p {
    font-size: 15px;
    color: var(--primary-color);
    line-height: 1.6;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    padding: 100px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.25);
    border-color: var(--primary-color);
}

.team-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.9), rgba(10, 14, 39, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 18px;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.team-card:hover .team-social a {
    transform: translateY(0);
    opacity: 1;
}

.team-social a:nth-child(1) {
    transition-delay: 0.1s;
}

.team-social a:nth-child(2) {
    transition-delay: 0.2s;
}

.team-social a:nth-child(3) {
    transition-delay: 0.3s;
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.15) rotate(5deg);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.team-info p {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #00d9ff 50%, #0a0e27 100%);
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.2), transparent);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.about-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

.about-cta-content p {
    font-size: 20px;
    color: var(--accent-cyan);
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTON STYLES
   ============================================ */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #00d9ff 0%, #5fecff 100%);
    color: var(--secondary-color);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(0, 217, 255, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(0, 217, 255, 0.7);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

/* ============================================
   RESPONSIVE DESIGN - ALL RESOLUTIONS
   ============================================ */

/* Large Desktops (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .about-hero-title {
        font-size: 64px;
    }
    
    .section-title {
        font-size: 48px;
    }
}

/* Desktop (1200px - 1439px) */
@media (max-width: 1439px) {
    .about-hero-title {
        font-size: 52px;
    }
}

/* Laptop/Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
    .about-hero {
        height: 450px;
    }
    
    .about-hero-title {
        font-size: 48px;
    }
    
    .story-content,
    .why-choose-content {
        gap: 60px;
    }
    
    .story-image img,
    .why-choose-image img {
        height: 500px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .about-hero {
        height: 400px;
    }
    
    .about-hero-title {
        font-size: 40px;
    }
    
    .about-hero-subtitle {
        font-size: 18px;
    }
    
    .mission-vision-section,
    .story-section,
    .values-section,
    .why-choose-section,
    .team-section,
    .about-cta-section {
        padding: 70px 0;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-content,
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-image,
    .why-choose-image {
        order: -1;
    }
    
    .story-image img,
    .why-choose-image img {
        height: 400px;
    }
    
    .story-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .about-cta-content h2 {
        font-size: 38px;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .about-hero {
        height: 350px;
    }
    
    .about-hero-title {
        font-size: 32px;
    }
    
    .about-hero-subtitle {
        font-size: 16px;
    }
    
    .about-badge {
        font-size: 11px;
        padding: 8px 20px;
    }
    
    .mission-vision-section,
    .story-section,
    .values-section,
    .why-choose-section,
    .team-section,
    .about-cta-section {
        padding: 60px 0;
    }
    
    .mission-card {
        padding: 40px 30px;
    }
    
    .mission-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
    
    .mission-card h3 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-badge {
        font-size: 12px;
    }
    
    .story-lead {
        font-size: 18px;
    }
    
    .story-image img,
    .why-choose-image img {
        height: 350px;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 35px;
        padding-top: 35px;
    }
    
    .stat-item h3 {
        font-size: 36px;
    }
    
    .value-card {
        padding: 35px 25px;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
    
    .value-card h3 {
        font-size: 20px;
    }
    
    .feature-list {
        margin: 30px 0;
    }
    
    .feature-item {
        padding: 18px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-image {
        height: 320px;
    }
    
    .about-cta-content h2 {
        font-size: 32px;
    }
    
    .about-cta-content p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }
}

/* Mobile Portrait (480px - 575px) */
@media (max-width: 575px) {
    .about-hero {
        height: 320px;
        padding: 0 15px;
    }
    
    .about-hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .about-hero-subtitle {
        font-size: 15px;
    }
    
    .about-badge {
        font-size: 10px;
        padding: 7px 18px;
        margin-bottom: 20px;
    }
    
    .mission-vision-section,
    .story-section,
    .values-section,
    .why-choose-section,
    .team-section,
    .about-cta-section {
        padding: 50px 0;
    }
    
    .mission-card {
        padding: 35px 25px;
    }
    
    .mission-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .mission-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .mission-card p {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
    }
    
    .section-badge {
        font-size: 11px;
        padding: 7px 18px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .section-header-center {
        margin-bottom: 50px;
    }
    
    .story-lead {
        font-size: 17px;
        margin-bottom: 20px;
    }
    
    .story-text p {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .story-image img,
    .why-choose-image img {
        height: 300px;
    }
    
    .story-stats {
        gap: 20px;
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .stat-item h3 {
        font-size: 32px;
    }
    
    .stat-item p {
        font-size: 13px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .value-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .value-card h3 {
        font-size: 19px;
        margin-bottom: 12px;
    }
    
    .value-card p {
        font-size: 14px;
    }
    
    .feature-list {
        margin: 25px 0;
    }
    
    .feature-item {
        padding: 16px;
        gap: 15px;
        margin-bottom: 18px;
    }
    
    .feature-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .feature-content h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .feature-content p {
        font-size: 14px;
    }
    
    .team-image {
        height: 280px;
    }
    
    .team-info {
        padding: 20px;
    }
    
    .team-info h3 {
        font-size: 18px;
    }
    
    .team-info p {
        font-size: 13px;
    }
    
    .team-social a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .about-cta-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .about-cta-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 14px 35px;
        font-size: 14px;
    }
}

/* Extra Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .container {
        padding: 0 15px;
    }
    
    .about-hero {
        height: 280px;
    }
    
    .about-hero-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .about-hero-subtitle {
        font-size: 14px;
    }
    
    .about-badge {
        font-size: 9px;
        padding: 6px 16px;
        margin-bottom: 18px;
        letter-spacing: 1.5px;
    }
    
    .mission-vision-section,
    .story-section,
    .values-section,
    .why-choose-section,
    .team-section,
    .about-cta-section {
        padding: 40px 0;
    }
    
    .mission-vision-grid {
        gap: 20px;
    }
    
    .mission-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .mission-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .mission-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .mission-card p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 18px;
        letter-spacing: 0;
    }
    
    .section-title::after {
        width: 50px;
        height: 2px;
        bottom: -6px;
    }
    
    .section-badge {
        font-size: 10px;
        padding: 6px 16px;
        letter-spacing: 1.5px;
    }
    
    .section-description {
        font-size: 15px;
    }
    
    .section-header-center {
        margin-bottom: 40px;
    }
    
    .story-content {
        gap: 35px;
    }
    
    .story-lead {
        font-size: 16px;
        margin-bottom: 18px;
    }
    
    .story-text p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .story-image {
        border-radius: 20px;
    }
    
    .story-image img,
    .why-choose-image img {
        height: 260px;
    }
    
    .story-stats {
        gap: 18px;
        margin-top: 25px;
        padding-top: 25px;
    }
    
    .stat-item h3 {
        font-size: 28px;
    }
    
    .stat-item p {
        font-size: 12px;
    }
    
    .values-grid {
        gap: 20px;
    }
    
    .value-card {
        padding: 25px 18px;
        border-radius: 18px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
        margin-bottom: 18px;
    }
    
    .value-card h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .value-card p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .why-choose-content {
        gap: 35px;
    }
    
    .why-choose-image {
        border-radius: 20px;
    }
    
    .feature-list {
        margin: 20px 0;
    }
    
    .feature-item {
        padding: 14px;
        gap: 12px;
        margin-bottom: 15px;
        border-radius: 12px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .feature-content h4 {
        font-size: 15px;
        margin-bottom: 5px;
    }
    
    .feature-content p {
        font-size: 13px;
    }
    
    .team-grid {
        gap: 20px;
    }
    
    .team-card {
        border-radius: 18px;
    }
    
    .team-image {
        height: 260px;
    }
    
    .team-info {
        padding: 18px;
    }
    
    .team-info h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }
    
    .team-info p {
        font-size: 12px;
    }
    
    .team-social {
        gap: 12px;
    }
    
    .team-social a {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    .about-cta-section {
        padding: 40px 0;
    }
    
    .about-cta-content h2 {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .about-cta-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .cta-buttons {
        gap: 12px;
    }
    
    .btn {
        padding: 13px 30px;
        font-size: 13px;
        letter-spacing: 1px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Smooth Transitions */
.smooth-transition {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Lift Effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #00d9ff 0%, #5fecff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cyber Border */
.cyber-border {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */

/* Focus Visible States */
.btn:focus-visible,
.team-social a:focus-visible,
.mission-card:focus-visible,
.value-card:focus-visible,
.team-card:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .mission-card,
    .value-card,
    .team-card {
        border-width: 2px;
    }
    
    .section-badge {
        border-width: 3px;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    .mission-card,
    .feature-item {
        background: rgba(26, 31, 58, 0.5);
        border-color: rgba(0, 217, 255, 0.2);
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .about-hero,
    .values-section,
    .about-cta-section {
        page-break-inside: avoid;
    }
    
    .mission-card,
    .value-card,
    .team-card,
    .feature-item {
        page-break-inside: avoid;
    }
    
    .btn,
    .cta-buttons,
    .team-social {
        display: none !important;
    }
    
    .about-hero-overlay,
    .image-overlay,
    .team-overlay {
        opacity: 0.2 !important;
    }
    
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    .about-hero,
    .values-section,
    .about-cta-section {
        background: white !important;
    }
    
    .section-title,
    .about-hero-title,
    .value-card h3,
    .value-card p {
        color: black !important;
    }
}

