/* Custom Modern Styles for About Us Page */

/* Hero Banner Section */
.about-banner-wrap {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-banner-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(8, 106, 216, 0.15) 0%, transparent 50%);
}
.about-banner-wrap h2 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.about-banner-wrap h2 span {
    background: linear-gradient(to right, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about-banner-wrap .lead-text {
    font-size: 20px;
    color: #93c5fd;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Page Intro Section */
.about-intro-section {
    padding: 90px 0;
    background: #ffffff;
}
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}
@media (max-width: 991px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
.experience-badge-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.experience-number {
    font-size: 80px;
    font-weight: 900;
    color: #086AD8;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #086AD8 0%, #002FA6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.experience-text {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: #f8fafc;
}
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
@media (max-width: 767px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}
.mv-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}
.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(8, 106, 216, 0.05);
    border-color: rgba(8, 106, 216, 0.2);
}
.mv-icon {
    width: 60px;
    height: 60px;
    background: rgba(8, 106, 216, 0.08);
    color: #086AD8;
    font-size: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.mv-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}
.mv-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* What We Do Section */
.services-grid-section {
    padding: 100px 0;
    background: #ffffff;
}
.services-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
@media (max-width: 991px) {
    .services-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .services-card-grid {
        grid-template-columns: 1fr;
    }
}
.service-item-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}
.service-item-card:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-3px);
}
.service-item-card .icon-wrap {
    font-size: 28px;
    color: #086AD8;
    margin-bottom: 20px;
}
.service-item-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}
.service-item-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Industries We Serve Section */
.industries-section {
    padding: 90px 0;
    background: #f8fafc;
}
.industries-chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.industry-chip {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
    transition: all 0.2s ease;
}
.industry-chip:hover {
    background: #086AD8;
    color: #ffffff;
    border-color: #086AD8;
    transform: scale(1.03);
}
.industry-chip i {
    font-size: 14px;
    opacity: 0.8;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 90px 0;
    background: #ffffff;
}
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
@media (max-width: 991px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
.why-benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 575px) {
    .why-benefits-list {
        grid-template-columns: 1fr;
    }
}
.benefit-item-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.benefit-item-card i {
    color: #086AD8;
    font-size: 16px;
    margin-top: 3px;
}
.benefit-item-card span {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
}

/* Development Process Section */
.process-steps-section {
    padding: 100px 0;
    background: #ffffff;
}
.process-timeline-vertical {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}
.process-timeline-vertical::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 30px;
    width: 2px;
    background: #e2e8f0;
}
.process-step-row {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}
.process-step-row:last-child {
    margin-bottom: 0;
}
.process-step-num {
    position: absolute;
    left: 10px; top: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #086AD8;
    color: #086AD8;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(8, 106, 216, 0.1);
}
.process-step-content {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
}
.process-step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}
.process-step-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Technology Stack Section */
.tech-section {
    padding: 100px 0;
    background: #f8fafc;
}
.tech-groups-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 45px;
}
@media (max-width: 991px) {
    .tech-groups-container {
        grid-template-columns: 1fr;
    }
}
.tech-group-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}
.tech-group-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tech-group-card h4 i {
    color: #086AD8;
}
.tech-chips-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tech-badge {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}
.tech-badge:hover {
    background: #e0f2fe;
    border-color: #bae6fd;
    color: #0369a1;
}

/* Brochure Download Section */
.about-brochure-card {
    background: linear-gradient(135deg, #086AD8 0%, #002FA6 100%);
    border-radius: 20px;
    padding: 50px;
    color: #ffffff;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}
.about-brochure-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
}
.about-brochure-card h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}
.about-brochure-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}
.btn-brochure {
    background: #ffffff;
    color: #086AD8;
    font-weight: 700;
    padding: 14px 35px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
}
.btn-brochure:hover {
    background: #f1f5f9;
    color: #002FA6;
    transform: translateY(-2px);
}
