/* About Us Page Styles */

/* About Hero Section - Redesigned */
.about-hero-section {
    background: #17adb8;
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.02"/><circle cx="10" cy="50" r="0.5" fill="white" opacity="0.02"/><circle cx="90" cy="30" r="0.5" fill="white" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.about-hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 20px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-badge i {
    color: #ffd700;
    font-size: 1rem;
}

/* Hero Content */
.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0px;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1;
    color: #ffffff;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #17adb8;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
    margin-left: 100px;
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(23, 173, 184, 0.9) 0%, rgba(10, 107, 115, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInTop 0.8s ease-out 1s both;
}

.achievement-card {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #333;
    padding: 12px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 0.9rem;
}

.achievement-card i {
    font-size: 1.2rem;
    color: #333;
}

.achievement-text .achievement-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.achievement-text .achievement-subtitle {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Service Highlights */
.service-highlights {
    position: absolute;
    bottom: -60px;
    left: -60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease-out forwards;
}

.highlight-card:nth-child(2) {
    animation-delay: 0.2s;
}

.highlight-card:nth-child(3) {
    animation-delay: 0.4s;
}

.highlight-card:nth-child(4) {
    animation-delay: 0.6s;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.highlight-card:nth-child(4) .card-icon {
    background: none;
    color: #333;
}

.highlight-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #17adb8 0%, #0d8a94 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    flex-shrink: 0;
}

.card-content h4 {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.card-content p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: pulse 4s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: pulse 4s ease-in-out infinite reverse;
}

.decoration-dots {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.dots-1 {
    top: 20%;
    left: 10%;
}

.dots-1::before,
.dots-1::after,
.dots-2::before,
.dots-2::after {
    content: '';
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: block;
}

.dots-2 {
    bottom: 20%;
    right: 10%;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.hero-image {
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Story Section */
/* Our Story Section - Redesigned */
.story-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="story-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(23, 173, 184, 0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23story-pattern)"/></svg>');
    pointer-events: none;
}

/* Story Header */
.story-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #17adb8 0%, #0d8a94 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(23, 173, 184, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.section-badge i {
    font-size: 1rem;
}

.story-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #333 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.story-intro {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.story-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Modern Timeline Design */
.story-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Timeline Items */
.timeline-item {
    display: flex;
    align-items: center;
    position: relative;
    animation: fadeInUp 1s ease-out both;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1.0s; }

/* Timeline Cards */
.timeline-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(23, 173, 184, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    max-width: 500px;
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #17adb8 0%, #0d8a94 100%);
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.timeline-card.featured {
    background: linear-gradient(135deg, #17adb8 0%, #0d8a94 100%);
    color: white;
    box-shadow: 0 25px 70px rgba(23, 173, 184, 0.3);
}

.timeline-card.featured::before {
    background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.year-badge {
    background: linear-gradient(135deg, #17adb8 0%, #0d8a94 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(23, 173, 184, 0.3);
}

.year-badge.featured {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.9) 100%);
    color: #17adb8;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #17adb8 0%, #0d8a94 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(23, 173, 184, 0.3);
}

.timeline-card.featured .card-icon {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.9) 100%);
    color: #17adb8;
}

/* Card Content */
.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.timeline-card.featured .card-content h3 {
    color: white;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.timeline-card.featured .card-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Card Stats */
.card-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(23, 173, 184, 0.1);
    border-radius: 12px;
}

.timeline-card.featured .stat-item {
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #17adb8;
    margin-bottom: 5px;
}

.timeline-card.featured .stat-number {
    color: white;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-card.featured .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Featured Badge */
.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.9) 100%);
    color: #17adb8;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Timeline Connectors */
.timeline-connector {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #17adb8 0%, #0d8a94 100%);
    border-radius: 2px;
    position: relative;
    margin: 0 30px;
    box-shadow: 0 0 20px rgba(23, 173, 184, 0.3);
}

.timeline-connector.featured {
    background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.connector-dot {
    position: absolute;
    right: -8px;
    top: 50%;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid #17adb8;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 20px rgba(23, 173, 184, 0.4);
}

.timeline-connector.featured .connector-dot {
    border-color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* Story CTA - Redesigned with #17adb8 Shades */
.story-cta {
    margin-top: 100px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.story-cta.modern {
    background: linear-gradient(135deg, #17adb8 0%, #0d8a94 50%, #0a6b73 100%);
    border-radius: 30px;
    padding: 80px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(23, 173, 184, 0.4);
}

.story-cta.modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
}

.cta-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.cta-decoration {
    display: flex;
    gap: 10px;
}

.decoration-circle {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: fadeInOut 1.5s infinite alternate;
}

.decoration-circle:nth-child(2) {
    animation-delay: 0.5s;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    color: white;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
    opacity: 0.95;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: #4dd0e1;
    font-size: 1.2rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-btn.primary {
    background: linear-gradient(45deg, #4dd0e1, #6bd9e8);
    color: #0a6b73;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(77, 208, 225, 0.4);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* CTA Metrics */
.cta-metrics {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.metric {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    min-width: 180px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.metric-icon {
    font-size: 2rem;
    color: #4dd0e1;
    margin-bottom: 10px;
    display: block;
}

.metric-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.metric-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* CTA Actions */
.cta-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-btn.primary {
    background: linear-gradient(45deg, #4dd0e1, #6bd9e8);
    color: #0a6b73;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(77, 208, 225, 0.4);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.story-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.story-btn.primary {
    background: white;
    color: #17adb8;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.story-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.story-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.story-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Mission Vision Values Section */
.mission-vision-section {
    padding: 100px 0;
    background: white;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.mv-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: #17adb8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.mv-card p {
    color: #666;
    line-height: 1.6;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #17adb8;
    font-weight: bold;
}

.values-list strong {
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .story-timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-item:nth-child(even) .timeline-content {
        order: 1;
        text-align: left;
    }

    .timeline-content {
        margin: 0 0 20px 60px;
    }

    .timeline-marker {
        align-self: flex-start;
        margin-left: 15px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        padding: 80px 0 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    /* Story Section Mobile */
    .story-header h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .story-intro p {
        font-size: 0.95rem;
    }

    .timeline-container {
        padding: 0 10px;
    }

    .timeline-card {
        padding: 20px;
    }

    .card-content h3 {
        font-size: 1.2rem;
    }

    .card-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .timeline-connector {
        width: 30px;
        margin: 0 10px;
    }

    .cta-background {
        padding: 40px 20px;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .cta-metrics {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .metric-number {
        font-size: 1.3rem;
    }

    .cta-actions {
        gap: 12px;
    }

    .cta-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* New Responsive Design for Redesigned Hero Section */
@media (max-width: 1024px) {
    .about-hero-section .container {
        gap: 50px;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-content h2 {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .service-highlights {
        left: -40px;
        bottom: -40px;
    }

    .highlight-card {
        padding: 18px;
    }

    .hero-image-container {
        width: 400px;
        height: 400px;
        margin-left: 50px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 100px 0 80px;
        min-height: auto;
    }

    .about-hero-section .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content h2 {
        font-size: 2.4rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
        font-size: 1.1rem;
        min-height: 56px; /* Better touch target */
    }

    .hero-visual {
        order: -1;
    }

    .service-highlights {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
        gap: 15px;
        flex-wrap: wrap;
    }

    .highlight-card {
        flex: 1;
        min-width: 200px;
        max-width: 280px;
        padding: 18px;
        transition: all 0.3s ease;
    }

    .highlight-card:hover {
        transform: translateY(-5px);
    }

    .hero-image-container {
        width: 320px;
        height: 320px;
        transform: none;
        margin: 0 auto;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .circle-1,
    .circle-2 {
        display: none;
    }

    .decoration-dots {
        display: none;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        padding: 80px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .hero-content h2 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 10px 16px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .hero-cta {
        gap: 12px;
    }

    .cta-btn {
        padding: 16px 24px;
        font-size: 1rem;
        min-height: 52px;
    }

    .service-highlights {
        gap: 12px;
        margin-top: 25px;
    }

    .highlight-card {
        min-width: 160px;
        max-width: 240px;
        padding: 16px;
    }

    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .card-content h4 {
        font-size: 0.95rem;
    }

    .card-content p {
        font-size: 0.8rem;
    }

    .hero-image-container {
        width: 280px;
        height: 280px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

    .image-overlay {
        top: 15px;
        left: 15px;
        padding: 12px 16px;
    }

    .achievement-card {
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    .achievement-card i {
        font-size: 1.1rem;
    }

    .achievement-text .achievement-title {
        font-size: 0.8rem;
    }

    .achievement-text .achievement-subtitle {
        font-size: 0.7rem;
    }

    .highlight-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .highlight-icon {
        width: 45px;
        height: 45px;
    }

    .floating-stats {
        flex-wrap: wrap;
    }

    .hero-image-container {
        max-width: 350px;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-card .stat-number {
        font-size: 1.5rem;
    }

    .achievement-badge {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .timeline-content {
        margin-left: 40px;
        padding: 20px;
    }

    .timeline-marker {
        margin-left: 0;
    }

    /* Story Section Responsive */
    .story-header h2 {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .story-intro p {
        font-size: 1rem;
    }

    .timeline-container {
        padding: 0 15px;
    }

    .timeline-card {
        padding: 25px;
    }

    .card-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .year-badge {
        align-self: center;
    }

    .card-content h3 {
        font-size: 1.3rem;
    }

    .card-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .timeline-connector {
        width: 40px;
        margin: 0 15px;
    }

    .cta-background {
        padding: 50px 30px;
    }

    .cta-content h3 {
        font-size: 1.8rem;
    }

    .cta-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .metric-number {
        font-size: 1.5rem;
    }

    .cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
        justify-content: center;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background-color: #fff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #17adb8;
}

.section-subheader {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* Our Achievements Section */
.achievements-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="achieve-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%2317adb8" opacity="0.05"/><circle cx="80" cy="80" r="2" fill="%2317adb8" opacity="0.05"/><circle cx="50" cy="50" r="3" fill="%2317adb8" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23achieve-pattern)"/></svg>');
    pointer-events: none;
}

.achievements-header {
    text-align: center;
    margin-bottom: 60px;
}

.achievements-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #17adb8;
    color: white;
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.achievements-header .section-badge i {
    font-size: 1rem;
}

.achievements-header h2 {
    font-size: 2.5rem;
    color: #17adb8;
    margin-bottom: 15px;
    font-weight: 700;
}

.achievements-header .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.achievement-item {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #17adb8, #0d8a94);
}

.achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #17adb8, #0d8a94);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(23, 173, 184, 0.3);
}

.achievement-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.achievement-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 800;
    color: #17adb8;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #17adb8, #0d8a94);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievements-cta {
    text-align: center;
    padding: 40px 0;
}

.achievements-cta p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.achievements-cta .cta-btn {
    background: linear-gradient(135deg, #17adb8, #0d8a94);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.achievements-cta .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(23, 173, 184, 0.4);
}

/* Responsive Design for Achievements */
@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .achievement-item {
        padding: 30px 20px;
    }

    .achievements-header h2 {
        font-size: 2rem;
    }

    .achievement-number {
        font-size: 2.5rem;
    }

    /* Modern CTA Responsive */
    .story-cta.modern {
        padding: 60px 30px;
    }

    .cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cta-visual {
        order: -1;
    }

    .cta-actions {
        align-items: center;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-content h3 {
        font-size: 2rem;
    }

    .cta-features {
        justify-content: center;
        gap: 20px;
    }
}