body {
    font-family: IRANSans, sans-serif;
    line-height: 1.9;
}

/* Hero */
.about-hero {
    background: linear-gradient(180deg, #0C127A 0%, #1A2AFF 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    padding: 60px 0;
 
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}
/* Intro */
.about-intro {
    padding: 80px 0;
}

.about-intro h2 {
    font-family: 'Modam';
    font-weight: 600;
}
.about-intro p {
    text-align:justify;
}

/* ستون لوگو */
.logo-col {
    display: flex;
    align-items: center;      /* وسط‌چین عمودی */
    justify-content: center;  /* وسط‌چین افقی */
}

/* باکس تصویر */
.about-image {
    text-align: center;
    width: 100%;
}

/* خود لوگو */
.logo-img {
    max-width: 320px;   /* 🔽 اندازه لوگو کمتر شد */
    width: 100%;
    height: auto;
    opacity: 0.18;
    filter: blur(0.5px);
}

/* تبلت */
@media (max-width: 991px) {
    .logo-img {
        max-width: 260px;
        margin-top: 30px;
    }
}

/* موبایل */
@media (max-width: 575px) {
    .about-intro {
        padding: 50px 0;
    }

    .logo-img {
        max-width: 200px;
        opacity: 0.15;
    }
}

/* Mission & Vision */
.mission-vision {
    background: #f7f9fc;
    padding: 80px 0;
}

.info-box {
    background: #fff;
    padding: 35px;
    
    text-align: center;
    height: 100%;
}

.info-box i {
    font-size: 40px;
    color: #0C127A;
    margin-bottom: 20px;
}

/* Services */
.about-services {
    padding: 80px 0;
}
/*.about-services */
.heading-border {
        width: 60px;
        height: 10px;
        background-color: #0C127A;
        margin: 0 auto 20px auto;
    }


.services {
    text-align: center;
    margin: 50px;
}

/*new service item style*/
/* کارت سرویس */
.service-item {
    padding: 40px 20px;
    text-align: center;
    transition: 
        transform 0.35s ease,
        box-shadow 0.35s ease;
    cursor: pointer;
}

/* آیکن */
.service-item i {
    font-size: 42px;
    color: #0c127a;
    margin-bottom: 15px;
    transition: transform 0.35s ease;
}

/* عنوان */
.service-item h4 {
    font-size: 18px;
    color: #41464b;
    margin: 0;
    transition: color 0.35s ease;
}

/* افکت Hover */
.service-item:hover {
    transform: scale(1.06); 
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

/* انیمیشن آیکن */
.service-item:hover i {
    transform: scale(1.15);
}

/* تغییر رنگ عنوان در Hover */
.service-item:hover h4 {
    color: #0c127a;
}

/* موبایل – انیمیشن ملایم‌تر */
@media (max-width: 768px) {
    .service-item:hover {
        transform: scale(1.03);
    }
}














/* Why Us */
.why-us::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/banner-blue.svg") no-repeat center;
    background-size: cover; 
    opacity: 0.1;
    z-index: 1;
}
.why-us > * {
    position: relative;
    z-index: 2;
}
.why-us {
    position: relative;
    overflow: hidden;
    background: #0d1b5e;
    color: #fff;
    padding: 40px 40px;
    margin-bottom: 100px;
     text-align: center;
}

/* CTA */

.about-cta h2{
    color:white !important;
    font-family: 'Modam';
    font-weight: 600;
}
.about-cta p {
    
    text-align: center;
}
