/* About Page Styles */
.about-main {
    margin-top: 70px;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #ff6b6b 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: #1e3c72;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #1e3c72;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.hero-image {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20px;
    left: 50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 100px;
    right: 30px;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 50px;
    left: 100px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #1e3c72 0%, #ff6b6b 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-header p {
    color: #6c757d;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Team Section */
/* Team Section - New Design */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.team-stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #1e3c72;
}

.team-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.team-stat-card .stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #1e3c72 0%, #ff6b6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.team-stat-card .stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 5px;
}

.team-stat-card .stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 600;
}

.team-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.team-description h3 {
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.team-description p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-values {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.value-pill {
    background: linear-gradient(135deg, #1e3c72 0%, #2c5282 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.value-pill:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff6b6b 0%, #e74c3c 100%);
}


/* CEO Section */
.ceo-section {
    padding: 80px 0;
    background: white;
}

.ceo-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.ceo-image {
    position: relative;
    text-align: center;
}

.ceo-photo-container {
    position: relative;
    width: 250px;
    margin: 0 auto;
}

.ceo-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 5px solid white;
    transition: transform 0.3s ease;
}

.ceo-photo:hover {
    transform: scale(1.02);
}

.ceo-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b 0%, #e74c3c 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    z-index: 2;
}

.ceo-message {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #1e3c72;
}

.message-header h3 {
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 5px;
}

.ceo-title {
    color: #ff6b6b;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.message-content p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.message-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.signature {
    color: #1e3c72;
    font-weight: 600;
    margin-bottom: 5px;
}

.signature-name {
    color: #1e3c72;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.signature-title {
    color: #ff6b6b;
    font-weight: 600;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Text side styling with slide-in animation */
.mission-text {
    padding-right: 30px;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.mission-text p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Visual side styling with slide-in animation */
.mission-visual {
    padding-left: 30px;
    position: relative;
    height: 300px;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out 0.3s forwards;
}

.mission-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out 0.6s forwards;
}

.mission-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
}

.mission-feature:nth-child(1) {
    animation: slideInUp 0.6s ease-out 0.8s forwards;
}

.mission-feature:nth-child(2) {
    animation: slideInUp 0.6s ease-out 1s forwards;
}

.mission-feature:nth-child(3) {
    animation: slideInUp 0.6s ease-out 1.2s forwards;
}

.mission-feature:nth-child(4) {
    animation: slideInUp 0.6s ease-out 1.4s forwards;
}

.mission-feature i {
    color: #ff6b6b;
    font-size: 1.2rem;
}

.mission-feature span {
    color: #1e3c72;
    font-weight: 600;
}

.mission-graphic {
    position: relative;
    width: 100%;
    height: 100%;
}

.graphic-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
    opacity: 0;
}

.graphic-1 {
    background: #1e3c72;
    top: 50px;
    left: 50px;
    animation-delay: 0s;
    animation: pulse 2s ease-in-out 1.6s infinite, slideInLeft 0.8s ease-out 1.6s forwards;
}

.graphic-2 {
    background: #ff6b6b;
    top: 50px;
    right: 50px;
    animation-delay: 0.5s;
    animation: pulse 2s ease-in-out 1.8s infinite, slideInRight 0.8s ease-out 1.8s forwards;
}

.graphic-3 {
    background: #4ecdc4;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
    animation: pulse 2s ease-in-out 2s infinite, slideInUp 0.8s ease-out 2s forwards;
}

/* Animation Keyframes */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.1); 
    }
}

/* Optional: Add visual separator between columns */
.mission-text {
    border-right: 2px solid #dee2e6;
}

/* Responsive design */
@media (max-width: 768px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-text {
        padding-right: 0;
        border-right: none;
        text-align: center;
        transform: translateY(30px);
        animation: slideInUp 0.8s ease-out forwards;
    }
    
    .mission-visual {
        padding-left: 0;
        height: 250px;
        transform: translateY(30px);
        animation: slideInUp 0.8s ease-out 0.3s forwards;
    }
    
    .mission-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .graphic-circle {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .graphic-1 {
        top: 30px;
        left: 30px;
    }
    
    .graphic-2 {
        top: 30px;
        right: 30px;
    }
    
    .graphic-3 {
        bottom: 30px;
    }
    
    /* Reset animations for mobile */
    .mission-text,
    .mission-visual,
    .mission-features,
    .mission-feature,
    .graphic-circle {
        transform: translateY(30px);
        animation: slideInUp 0.8s ease-out forwards;
    }
    
    .mission-feature:nth-child(1) { animation-delay: 0.4s; }
    .mission-feature:nth-child(2) { animation-delay: 0.6s; }
    .mission-feature:nth-child(3) { animation-delay: 0.8s; }
    .mission-feature:nth-child(4) { animation-delay: 1s; }
    
    .graphic-1 { animation-delay: 1.2s; }
    .graphic-2 { animation-delay: 1.4s; }
    .graphic-3 { animation-delay: 1.6s; }
}

/* Expertise Section */
/* Expertise Section - New Design */
.expertise-section {
    padding: 80px 0;
    background: white;
}

.expertise-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.expertise-area {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #1e3c72;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-area:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.area-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.area-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3c72 0%, #ff6b6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.area-header h3 {
    color: #1e3c72;
    font-size: 1.4rem;
    margin: 0;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tech-badge {
    background: white;
    color: #1e3c72;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: #1e3c72;
    color: white;
    border-color: #1e3c72;
    transform: translateY(-2px);
}

.area-description {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}


/* CTA Section Specific Styles */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #ff6b6b 100%);
    position: relative;
    overflow: hidden;
    margin: 60px 0;
}

.cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.cta-section .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-section .cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Button Styles */
.cta-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-section .btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.cta-section .btn i {
    font-size: 1rem;
}

/* Primary Button */
.cta-section .btn-primary {
    background-color: #ff6b6b;
    color: #ffffff;
}

.cta-section .btn-primary:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Secondary Button */
.cta-section .btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-section .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design for CTA only */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
        margin: 40px 0;
    }
    
    .cta-section .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-section .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-section .btn-large {
        padding: 12px 25px;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .team-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-values {
        justify-content: center;
    }
    
    .value-pill {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
    
    .expertise-showcase {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .expertise-process {
        padding: 30px 20px;
    }
    
    .area-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .team-content,
    .ceo-content,
    .mission-content {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
    }
    
    .mission-features {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        justify-content: center;
    }
    
    .ceo-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ceo-photo-container {
        margin-bottom: 30px;
    }
}