/* ============================================
   About Us Page - Professional Design with Floating Particles - v2.0
   ============================================ */

/* Hero Section - Same as Home/Services */
.about-hero-section {
    background: 
        radial-gradient(circle at 20% 50%, rgba(42, 193, 174, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #1e293b 75%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Floating Particles */
.about-floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.about-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #2BC7B4, #8B5CF6);
    border-radius: 50%;
    animation: aboutParticleFloat 15s infinite linear;
    opacity: 0.6;
}

.about-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.about-particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.about-particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
.about-particle:nth-child(4) { left: 40%; animation-delay: 6s; animation-duration: 16s; }
.about-particle:nth-child(5) { left: 60%; animation-delay: 8s; animation-duration: 24s; }
.about-particle:nth-child(6) { left: 70%; animation-delay: 10s; animation-duration: 14s; }
.about-particle:nth-child(7) { left: 80%; animation-delay: 12s; animation-duration: 26s; }
.about-particle:nth-child(8) { left: 90%; animation-delay: 14s; animation-duration: 12s; }

@keyframes aboutParticleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Hero Content */
.about-hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: aboutSlideInUp 0.5s ease forwards;
    text-align: center;
    max-width: 100%;
}

.about-hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.about-badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2BC7B4;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.8rem 1.5rem;
    background: rgba(42, 193, 174, 0.1);
    border: 2px solid rgba(42, 193, 174, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4.5vw, 3rem); /* Reduced header size */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    word-wrap: break-word;
}

.about-hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem); /* Responsive typography */
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 100%;
}

.about-hero-subtitle {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem); /* Responsive typography */
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 100%;
}

.about-hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.about-primary-btn,
.about-secondary-btn {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-decoration: none;
}

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

.about-secondary-btn:hover {
    background: #ffffff;
    color: #1e293b;
    border-color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Hero Visual */
.about-hero-visual {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(50px);
    animation: aboutHeroFadeIn 0.6s ease forwards 0.3s;
}

.about-hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.about-hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

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

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

/* Enhanced Mission & Vision Section */
.mission-vision-section {
    background: 
        radial-gradient(circle at 15% 25%, rgba(42, 193, 174, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #fafbff 0%, #f8faff 25%, #ffffff 50%, #f0f4ff 75%, #fafbff 100%);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 250px at 20% 30%, rgba(42, 193, 174, 0.12) 0%, transparent 60%),
        radial-gradient(circle 200px at 80% 70%, rgba(139, 92, 246, 0.10) 0%, transparent 60%),
        linear-gradient(45deg, transparent 48%, rgba(42, 193, 174, 0.03) 49%, rgba(42, 193, 174, 0.03) 51%, transparent 52%);
    background-size: auto, auto, 180px 180px;
    animation: missionVisionFloat 15s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.8;
}

@keyframes missionVisionFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
        opacity: 1;
    }
}

.mission-vision-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 32px;
    padding: 50px 40px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.08),
        0 12px 35px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.mission-vision-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.mission-vision-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.12),
        0 20px 45px rgba(0, 0, 0, 0.08),
        0 0 0 2px rgba(139, 92, 246, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

.mission-vision-item:hover::before {
    left: 100%;
}

.mission-vision-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.mission-badge-text,
.vision-badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.8rem 1.6rem;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mission-badge-text {
    color: #2BC7B4;
    background: linear-gradient(135deg, rgba(42, 193, 174, 0.15), rgba(6, 182, 212, 0.1));
    border: 2px solid rgba(42, 193, 174, 0.3);
}

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

.mission-vision-badge:hover .mission-badge-text {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(42, 193, 174, 0.3);
    background: linear-gradient(135deg, rgba(42, 193, 174, 0.25), rgba(6, 182, 212, 0.2));
}

.mission-vision-badge:hover .mission-badge-text::before {
    left: 100%;
}

.vision-badge-text {
    color: #8B5CF6;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.3);
}

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

.mission-vision-badge:hover .vision-badge-text {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(168, 85, 247, 0.2));
}

.mission-vision-badge:hover .vision-badge-text::before {
    left: 100%;
}

.mission-vision-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.mission-vision-item:hover .mission-vision-title {
    background: linear-gradient(135deg, #2BC7B4 0%, #8B5CF6 50%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
}

.mission-vision-description {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
    position: relative;
    padding-left: 20px;
}

.mission-vision-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2BC7B4, #8B5CF6);
    border-radius: 2px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.mission-vision-item:hover .mission-vision-description::before {
    opacity: 1;
    width: 6px;
}

.mission-vision-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    font-size: 1.05rem;
    color: #475569;
}

.feature-item:hover {
    background: rgba(139, 92, 246, 0.05);
    transform: translateX(12px);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.1);
    color: #1e293b;
}

.feature-item i {
    color: #2BC7B4;
    font-size: 1.3rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 193, 174, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.feature-item:hover i {
    color: #16a085;
    background: rgba(42, 193, 174, 0.2);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(42, 193, 174, 0.3);
}

.feature-item span {
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s ease;
}

.feature-item:hover span {
    color: #0f172a;
}

.mission-vision-image {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.mission-vision-image img {
    border-radius: 24px;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1.05) contrast(1.1);
    width: 100%;
    height: auto;
}

.mission-vision-item:hover .mission-vision-image img {
    transform: translateY(-8px) scale(1.03) rotate(1deg);
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.18),
        0 15px 40px rgba(0, 0, 0, 0.12),
        0 0 0 2px rgba(42, 193, 174, 0.1);
    filter: brightness(1.1) contrast(1.15) saturate(1.1);
}

/* Enhanced Why Choose Section */
.why-choose-section {
    background: 
        radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(42, 193, 174, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #fafbff 50%, #ffffff 100%);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 200px at 30% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
        radial-gradient(circle 180px at 70% 80%, rgba(42, 193, 174, 0.08) 0%, transparent 60%),
        linear-gradient(45deg, transparent 48%, rgba(139, 92, 246, 0.02) 49%, rgba(139, 92, 246, 0.02) 51%, transparent 52%);
    background-size: auto, auto, 120px 120px;
    animation: whyChooseFloat 12s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.7;
}

@keyframes whyChooseFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-12px) rotate(1deg);
        opacity: 1;
    }
}

.why-choose-header {
    max-width: 600px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #8B5CF6;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.6rem 1.2rem;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 25px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

.why-choose-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    padding: 3rem 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.why-choose-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 35px 80px rgba(139, 92, 246, 0.18),
        0 15px 35px rgba(42, 193, 174, 0.12),
        0 0 0 2px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(255, 255, 255, 0.98);
}

.why-choose-card:hover::before {
    left: 100%;
}

.card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #2BC7B4 0%, #8B5CF6 50%, #06B6D4 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 12px 30px rgba(139, 92, 246, 0.3),
        0 6px 15px rgba(42, 193, 174, 0.2);
    position: relative;
    z-index: 3;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #2BC7B4, #8B5CF6, #06B6D4);
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-icon i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
}

.why-choose-card:hover .card-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 
        0 20px 50px rgba(139, 92, 246, 0.4),
        0 10px 25px rgba(42, 193, 174, 0.3);
}

.why-choose-card:hover .card-icon::before {
    opacity: 1;
}

.why-choose-card:hover .card-icon i {
    transform: scale(1.1);
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.why-choose-card:hover .card-title {
    background: linear-gradient(135deg, #8B5CF6 0%, #2BC7B4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
}

.card-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    font-weight: 400;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.why-choose-card:hover .card-description {
    color: #475569;
}

/* Enhanced Our Values Section */
.our-values-section {
    background: 
        radial-gradient(circle at 20% 30%, rgba(42, 193, 174, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #fafbff 0%, #f8faff 25%, #ffffff 50%, #f0f4ff 75%, #fafbff 100%);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.our-values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 220px at 25% 25%, rgba(42, 193, 174, 0.1) 0%, transparent 60%),
        radial-gradient(circle 180px at 75% 75%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
        linear-gradient(45deg, transparent 48%, rgba(42, 193, 174, 0.02) 49%, rgba(42, 193, 174, 0.02) 51%, transparent 52%);
    background-size: auto, auto, 140px 140px;
    animation: valuesFloat 15s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.8;
}

@keyframes valuesFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) rotate(0.5deg);
        opacity: 1;
    }
}

.values-content {
    padding: 2rem 0;
}

.values-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.values-badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2BC7B4;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.6rem 1.2rem;
    background: rgba(42, 193, 174, 0.1);
    border: 2px solid rgba(42, 193, 174, 0.2);
    border-radius: 25px;
}

.values-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

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

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(42, 193, 174, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(42, 193, 174, 0.2);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(42, 193, 174, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2BC7B4, #8B5CF6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.value-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.values-image {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.values-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.values-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* Final CTA Section */
.about-final-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.about-cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.about-cta-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.about-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero-title { font-size: 3rem; }
    .mission-vision-title { font-size: 2rem; }
    .section-title { font-size: 2.5rem; }
    .values-title { font-size: 2.3rem; }
    .about-cta-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .about-hero-section { padding: 80px 0 60px 0; min-height: 90vh; }
    .about-hero-title { font-size: 2.5rem; line-height: 1.2; }
    .about-hero-buttons { flex-direction: column; gap: 1rem; }
    .about-primary-btn, .about-secondary-btn { width: 100%; max-width: 320px; }
    .mission-vision-section, .why-choose-section, .our-values-section { padding: 80px 0; }
    .mission-vision-item { padding: 2rem; }
    .why-choose-card { padding: 2rem; }
    .values-list { gap: 1rem; }
    .value-item { padding: 1rem; }
    .about-cta-title { font-size: 2rem; }
    .about-cta-buttons { flex-direction: column; gap: 1rem; }
}

@media (max-width: 576px) {
    .about-hero-title { font-size: 1.8rem; }
    .mission-vision-title { font-size: 1.5rem; }
    .section-title { font-size: 1.8rem; }
    .values-title { font-size: 1.8rem; }
    .about-cta-title { font-size: 1.6rem; }
}
