/* ============================================
   MODERN ABOUT PAGE
   ============================================ */

/* About Hero Section */
.about-hero {
    position: relative;
    background-image: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(17, 24, 39, 0.95) 100%), 
                      url('../img/it2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 2rem 6rem;
    margin-top: 65px;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.about-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 2rem;
    color: #60a5fa;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero-title .text-blue {
    color: #3b82f6;
}

.about-hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

/* Intro Section */
.about-intro-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.intro-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-box:hover {
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

/* Image Showcase Section */
.image-showcase-section {
    padding: 2rem 2rem;
    background: #ffffff;
}

.image-showcase-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.showcase-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.4s ease;
    max-height: 350px;
}

.showcase-image:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.showcase-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.85) 0%, rgba(37, 99, 235, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.showcase-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: #ffffff;
}

.overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.overlay-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.overlay-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Global Presence Section */
.global-presence-section {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.section-header-center {
    text-align: center;
    margin-bottom: 2rem;
}

.section-subheading {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.global-intro {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.location-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.location-card:hover {
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.location-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.location-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.location-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.vm-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.vision-card::before {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.mission-card::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.vm-card:hover {
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.mission-card .vm-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.vm-icon i {
    font-size: 1.75rem;
    color: #ffffff;
}

.vm-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.vm-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Company Overview Section */
.company-overview-section {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.overview-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.overview-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    border: 2px solid #e5e7eb;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.overview-card:hover {
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.overview-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.overview-icon i {
    font-size: 1.75rem;
    color: #ffffff;
}

.overview-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.overview-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 0.875rem;
}

.overview-card p:last-child {
    margin-bottom: 0;
}

/* Differentiators Section */
.differentiators-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.diff-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.diff-intro p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 0.875rem;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.strength-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1.75rem 1.25rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.strength-item:hover {
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.strength-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.strength-icon i {
    font-size: 1.25rem;
    color: #ffffff;
}

.strength-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* CTA Section */
.about-cta-section {
    padding: 4rem 2rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
    margin-bottom: 0 !important;
}

body {
    margin: 0;
    padding: 0;
}

.about-cta-section ~ footer,
.about-cta-section ~ * {
    margin-top: 0 !important;
}

footer,
.modern-footer {
    margin-top: 0 !important;
    padding-top: 3rem !important;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-cta:hover {
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
    color: #ffffff;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .about-intro-grid,
    .vm-grid,
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .about-hero {
        padding: 8rem 1.5rem 4rem;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .intro-stats {
        grid-template-columns: 1fr;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}
