/* --------------------------
        HERO HEADER
--------------------------- */
.page-hero {
    background: linear-gradient(135deg, #0b2c3d, #1479a8);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}
.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
}
.page-hero p {
    font-size: 18px;
    opacity: .85;
}



/* --------------------------
     BO‘LIM BOSHLIG‘I
--------------------------- */
.chief-section {
    padding: 70px 20px;
}
.chief-wrapper {
    max-width: 1250px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}
.chief-photo img {
    width: 320px;
    height: 350px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}
.chief-info h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0b2c3d;
}
.chief-info h3 {
    font-size: 24px;
    font-weight: 800;
    margin-top: 8px;
}
.position {
    display: inline-block;
    margin: 8px 0 18px;
    color: #0b70b5;
    font-weight: 700;
}
.chief-text {
    font-size: 16px;
    color: #444;
    max-width: 700px;
    line-height: 1.6;
}



/* --------------------------
      SERVICES SECTION
--------------------------- */
.services-section {
    padding: 40px 20px 90px;
    background: #f7fbff;
}
.services-wrapper {
    max-width: 1300px;
    margin: auto;
    text-align: center;
}
.section-title {
    font-size: 34px;
    font-weight: 800;
    color: #0b2c3d;
}
.section-sub {
    font-size: 16px;
    margin-top: 8px;
    color: #666;
}

.services-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: .3s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.service-card i {
    font-size: 42px;
    color: #0b75c9;
    margin-bottom: 16px;
}
.service-card h3 {
    font-size: 20px;
    font-weight: 800;
}
.service-card p {
    font-size: 15px;
    margin-top: 8px;
    color: #555;
}


/* --------------------------
        MOBILE FIXES
--------------------------- */
@media (max-width: 700px) {
    .chief-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .chief-text {
        margin: auto;
    }
}
