@font-face{
    font-family: yekan;
    src: url(font/yekan-regular.eot);
    src: url(font/yekan-regular.ttf);
    src: url(font/yekan-regular.woff);
}

body {
    margin: 0;
    font-family: "yekan";
    background: #fff;
    color: #222;
}

/* Hero */
.about-hero {
    background: url("img/background.jpg") center/cover no-repeat;
    padding: 140px 20px;
    text-align: center;
    color: #fff;
    position: relative;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 70, 200, 0.55);
}

.about-hero-content {
    position: relative;
    max-width: 800px;
    margin: auto;
}

.about-hero h1 {
    font-size: 45px;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.9;
}

/* Layout container */
.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* Main Content */
.about-content {
    padding: 70px 0;
}

.about-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.about-text h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #0a45c0;
}

.about-text p {
    line-height: 2.1;
    margin-bottom: 15px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Services */
.services {
    background: #f7f9ff;
    padding: 70px 0;
}

.services h2 {
    text-align: center;
    color: #0a45c0;
    margin-bottom: 35px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Blue sections */
.special-units,
.emergency,
.values {
    padding: 60px 0;
    background: #e8f1ff;
    margin-top: 30px;
}

.special-units h2,
.emergency h2,
.values h2 {
    color: #0a45c0;
    margin-bottom: 20px;
}

.special-units p,
.emergency p,
.values p {
    line-height: 2;
    font-size: 17px;
}

/* Responsive */
@media (max-width: 900px) {
    .about-content .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


/* footer */
.main-footer {
    background: #333333;
    color: #fff;
    padding: 60px 20px 20px;
    direction: rtl;
    font-family: inherit;
  }
  
  .footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
  
  /* Logo */
  .footer-logo {
    width: 130px;
    margin-bottom: 15px;
  }
  
  .footer-desc {
    font-size: 15px;
    line-height: 1.9;
    opacity: 0.9;
  }
  
  /* Headings */
  .footer-title {
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: bold;
  }
  
  /* Contact list */
  .footer-list li {
    font-size: 15px;
    line-height: 2.2;
    display: flex;
    gap: 6px;
  }
  
  /* Quick links */
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: #dfe8ff;
    font-size: 15px;
    text-decoration: none;
    transition: 0.25s;
  }
  
  .footer-links a:hover {
    padding-right: 6px;
    color: #ffffff;
  }
  
  /* Map */
  .footer-map img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  }
  
  /* Bottom bar */
  .footer-bottom {
    text-align: center;
    padding-top: 25px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.25);
  }
  
  .footer-bottom p {
    font-size: 14px;
    opacity: 0.85;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
  
    .footer-list li,
    .footer-links li {
        justify-content: center;
    }
  
    .footer-map img {
        max-width: 300px;
        margin: auto;
    }
  }
  