/* 
* TechSphere IT Solutions - About Page Styles
* Custom CSS for the About Page
*/
/* 
* TechSphere IT Solutions - Modern IT Service Provider Website
* Custom CSS Styles
*/

/* ===== GENERAL STYLES ===== */
:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --accent-color: #00f2fe;
    --dark-color: #0a0e17;
    --darker-color: #060a12;
    --light-color: #f8f9fa;
    --text-color: #e6e7e8;
    --text-muted: #a0a0a0;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --font-tertiary: 'Raleway', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 5px 15px rgba(0, 0, 0, 0.3);
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light-color);
}
/* ===== ABOUT HERO SECTION ===== */
.about-hero-section {
    padding: 180px 0 100px;
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.about-hero-section:before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(106, 17, 203, 0.1);
    z-index: 0;
}

.about-hero-section:after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(37, 117, 252, 0.1);
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.about-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
    font-family: 'Poppins', sans-serif;
}

.about-hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.about-hero-stats .stat-item {
    text-align: center;
}

.about-hero-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.about-hero-stats .stat-item p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
}

.about-hero-image {
    position: relative;
    z-index: 1;
}

.about-hero-image img {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.about-hero-shape-1 {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.3) 0%, rgba(37, 117, 252, 0.3) 100%);
    filter: blur(30px);
    z-index: 1;
}

.about-hero-shape-2 {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.3) 0%, rgba(37, 117, 252, 0.3) 100%);
    filter: blur(25px);
    z-index: 1;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 3;
    animation: float 5s ease-in-out infinite;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.badge-icon i {
    color: white;
    font-size: 18px;
}

.badge-text span {
    display: block;
    font-weight: 700;
    color: white;
    font-size: 16px;
}

.badge-text p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== OUR STORY SECTION ===== */
.our-story-section {
    background-color: #0c1018;
    padding: 100px 0;
    position: relative;
}

.story-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.story-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.3) 0%, rgba(37, 117, 252, 0.3) 100%);
    filter: blur(25px);
    z-index: -1;
}

.story-year {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--gradient-primary);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    color: white;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.story-year span {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.story-year h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.story-content {
    padding: 0 30px;
}

.story-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.story-content .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.story-text {
    margin-bottom: 40px;
}

.story-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
}

.timeline-highlights {
    position: relative;
    padding-left: 30px;
}

.timeline-highlights:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: -30px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gradient-primary);
    transform: translateY(8px);
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== MISSION & VISION SECTION ===== */
.mission-vision-section {
    background-color: var(--dark-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.mission-vision-section:before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(106, 17, 203, 0.05);
    z-index: 0;
}

.mission-vision-section:after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(37, 117, 252, 0.05);
    z-index: 0;
}

.mission-vision-section .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.mission-vision-section .section-title {
    font-family: 'Montserrat', sans-serif;
}

.mission-vision-section .section-subtitle {
    font-family: 'Poppins', sans-serif;
}

.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 40px;
    height: 100%;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-dark);
    border-color: rgba(255, 255, 255, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 28px;
    color: white;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.mission-card p, .vision-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.mission-points, .vision-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-points li, .vision-points li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.mission-points li:last-child, .vision-points li:last-child {
    margin-bottom: 0;
}

.mission-points li i, .vision-points li i {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.mission-points li span, .vision-points li span {
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
}

/* ===== TEAM SECTION ===== */
.team-section {
    background-color: #0c1018;
    padding: 100px 0;
    position: relative;
}

.team-section .section-header {
    margin-bottom: 50px;
}

.team-section .section-title {
    font-family: 'Montserrat', sans-serif;
}

.team-section .section-subtitle {
    font-family: 'Poppins', sans-serif;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-dark);
    border-color: rgba(255, 255, 255, 0.1);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-social {
    opacity: 1;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: var(--transition);
}

.team-social a:hover {
    transform: translateY(-5px);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.team-info .designation {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.team-info .team-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

.team-cta {
    margin-top: 50px;
}

.team-cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.team-cta .primary-btn {
    padding: 12px 30px;
}

/* ===== CORE VALUES SECTION ===== */
.core-values-section {
    background-color: var(--dark-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.core-values-section:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(106, 17, 203, 0.05);
    z-index: 0;
}

.core-values-section:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(37, 117, 252, 0.05);
    z-index: 0;
}

.core-values-section .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.core-values-section .section-title {
    font-family: 'Montserrat', sans-serif;
}

.core-values-section .section-subtitle {
    font-family: 'Poppins', sans-serif;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-align: center;
    margin-bottom: 30px;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-dark);
    border-color: rgba(255, 255, 255, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 28px;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.value-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

/* ===== ACHIEVEMENTS SECTION ===== */
.achievements-section {
    background-color: #0c1018;
    padding: 100px 0;
    position: relative;
}

.achievements-section .section-header {
    margin-bottom: 50px;
}

.achievements-section .section-title {
    font-family: 'Montserrat', sans-serif;
}

.achievements-section .section-subtitle {
    font-family: 'Poppins', sans-serif;
}

.achievements-timeline {
    position: relative;
    margin-bottom: 70px;
}

.timeline-wrapper {
    position: relative;
    padding: 30px 0;
}

.timeline-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 25px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-content:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-dark);
    border-color: rgba(255, 255, 255, 0.1);
}

.timeline-year {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.timeline-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

.awards-recognition {
    text-align: center;
}

.awards-recognition h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

.award-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-align: center;
    margin-bottom: 30px;
}

.award-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-dark);
    border-color: rgba(255, 255, 255, 0.1);
}

.award-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.award-icon i {
    font-size: 24px;
    color: white;
}

.award-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.award-item p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

/* ===== COMPANY CULTURE SECTION ===== */
.company-culture-section {
    background-color: var(--dark-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.company-culture-section:before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(106, 17, 203, 0.05);
    z-index: 0;
}

.company-culture-section:after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(37, 117, 252, 0.05);
    z-index: 0;
}

.company-culture-section .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.company-culture-section .section-title {
    font-family: 'Montserrat', sans-serif;
}

.company-culture-section .section-subtitle {
    font-family: 'Poppins', sans-serif;
}

.culture-gallery {
    margin-bottom: 70px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    padding: 20px;
}

.gallery-content h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.gallery-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

.culture-features {
    margin-bottom: 70px;
}

.culture-feature {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-align: center;
    margin-bottom: 30px;
}

.culture-feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-dark);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.culture-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.culture-feature p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

.employee-testimonials {
    margin-bottom: 70px;
}

.employee-testimonials h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-item {
    display: none;
}

.testimonial-item.active {
    display: block;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-prev, .testimonial-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 50%;
    color: var(--text-color);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-prev:hover, .testimonial-next:hover {
    background: var(--gradient-primary);
    color: white;
}

.testimonial-dots {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary-color);
}

.culture-cta {
    text-align: center;
}

.culture-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.culture-cta p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1199.98px) {
    .about-hero-title {
        font-size: 3rem;
    }
    
    .story-content .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .about-hero-section {
        padding: 150px 0 80px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-image {
        margin-top: 50px;
    }
    
    .about-hero-stats {
        justify-content: center;
    }
    
    .story-content {
        padding: 30px 0;
        margin-top: 30px;
    }
    
    .mission-card, .vision-card {
        margin-bottom: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 80%;
        margin: 0 auto;
    }
    
    .timeline-wrapper:before {
        left: 10%;
    }
    
    .timeline-dot {
        left: 10%;
    }
}

@media (max-width: 767.98px) {
    .about-hero-section {
        padding: 120px 0 60px;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .story-year {
        padding: 10px 20px;
    }
    
    .story-year h3 {
        font-size: 2rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 85%;
        margin-left: 15%;
    }
    
    .timeline-wrapper:before {
        left: 7%;
    }
    
    .timeline-dot {
        left: 7%;
    }
}

@media (max-width: 575.98px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .story-content .section-title {
        font-size: 1.8rem;
    }
    
    .mission-card, .vision-card {
        padding: 25px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 80%;
        margin-left: 20%;
    }
    
    .timeline-wrapper:before {
        left: 10%;
    }
    
    .timeline-dot {
        left: 10%;
    }
}

/* Animation for floating elements */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}