/* Fonts Identify */
@font-face {
    font-family: 'IranSans';
    src: url('Fonts/IRANSans_0.ttf') format('truetype'),
  }
html {
    scroll-behavior: smooth;
  }
/* All-Style */
* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'IranSans';
  }
  body {
    background: #f9f9f9;
    color: #222;
    line-height: 1.5;
  }
a {
    color: inherit;
    text-decoration: none;
  }

  /* Navbar-Style */
  nav {
    background: #102a43;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

   /* Navbar-Right-Style */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f9f9f9;
    font-weight: 500;
    font-size: 1rem;
  }
  .nav-right .Logo-In-Nav {
    width: 50px;
  }

  /* Navbar-Menue-Style */
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
  }

  /* Navbar-Menue-Center-Style */
  .nav-center {
    display: flex;
    align-items: center;
    gap: 25px;
  }
  .nav-center a:hover,
  .nav-center a:focus {
    color: #4caf50;
  }
  .nav-center a {
    color:#f9f9f9 ;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: .9rem;
  }

  /* Navbar-Left-Style */
  .nav-left {
    display: flex;
    gap: 15px;
    align-items: center;
  }
  .nav-left button {
    background: #4caf50;
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
  }
  .nav-left button:hover {
    background: #399f3d;
  }
  .nav-left button .fas {
    /* Icon-Size */
    font-size: 16px;
  }

  /* Navbar-Container-Style */
  nav .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Navbar-Menu-Button-In-Small-Screen-Style */
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    width: 30px;
    height: 25px;
    gap: 5px;
  }
  .menu-toggle span {
    height: 3px;
    background: #f9f9f9;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Mobile */
  @media (max-width: 1000px) {
    /* Right-Navbar */
    .nav-menu {
      position: fixed;
      top: 70px;
      right: -100%;
      height: calc(100% - 60px);
      width: 300px;
      background: #102a43;
      flex-direction: column;
      padding: 20px;
      gap: 20px;
      transition: right 0.35s ease;
      z-index: 999;
      overflow-y: auto;
    }
    .nav-center {
      flex-direction: column;
      gap: 15px;
      width: 100%;
    }
    .nav-center a {
      font-size: .9rem;
      width: 100%;
      padding: 8px 0;
      border-bottom: 1px solid #f9f9f9;
    }
    .nav-left {
      flex-direction: column;
      gap: 15px;
      width: 100%;
    }
    .nav-left button {
      width: 100%;
      padding: 8px 0;
      font-size: 1rem;
      border-radius: 6px;
      justify-content: center;
    }
    /* Move-Menu-Button */
    .nav-menu.active {
      right: 0;
    }
    .menu-toggle {
      display: flex;
    }
    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }
  }

  p.time{
    color: #f9bf22;
    font-size: .9rem;
  }
    /* Section One */
    .section-one {
      /* background: #e8f5e9; */
      background: linear-gradient(to right, #e8f5e9, #c8e6c9, #a5d6a7);
      box-shadow: 0 0 8px rgb(0 0 0 / 0.1);
      padding: 30px 20px;
      color: #102a43;
      text-align: right;
    }
    .section-one .container {
      max-width: 1100px;
      margin: 0 auto;
    }
    .content-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap-reverse;
      gap: 30px;
    }
    .text-content {
      flex: 1;
      min-width: 300px;
    }
    .image-content {
      flex: 1;
      min-width: 280px;
      display: flex;
      justify-content: center;
    }
    .image-content img {
      max-width: 100%;
      height: auto;
    }
    .section-one h1 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 5px;
    }
    .section-one p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 10px;
    }
    .info-card {
      display: flex;
      align-items: center;
      gap: 15px;
      background: #4caf50;
      padding: 20px;
      border-radius: 12px;
      color: #fff;
      max-width: 400px;
      margin-bottom: 10px;
    }
    .info-card i {
      font-size: 2.5rem;
      flex-shrink: 0;
    }
    .info-card h3 {
      margin: 0 0 5px;
      font-size: 1.5rem;
      font-weight: 700;
    }
    .info-card p {
      margin: 0;
      font-size: 1rem;
    }
    .cta-btn {
      background: #102a43;
      color: #ffffff;
      font-weight: 500;
      font-size: 1rem;
      padding: 14px 35px;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    .cta-btn:hover {
      background: #183d60;
      /* color: #102a43; */
    }
    /* Mobile */
    @media (max-width: 768px) {
      .content-wrapper {
        flex-direction: column;
        text-align: center;
      }
      .text-content {
        order: 2;
      }
      .image-content {
        order: 1;
      }
      .info-card {
        margin: 20px auto;
        text-align: right;
      }
      .info-card p {
        text-align: right;
      }
    }
    

    /* Section Two */
      .section-two {
        max-width: 1200px;
        margin: 30px auto;
        margin-bottom: 0px;
        display: flex;
        justify-content: space-between;
        gap: 25px;
        padding: 0 20px;
        text-align: center;
      }
      .section-two .column {
        background: white;
        border-radius: 15px;
        box-shadow: 0 3px 8px rgb(0 0 0 / 0.1);
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.3s ease;
      }
      .section-two .column:hover {
        box-shadow: 0 5px 10px rgb(0 0 0 / 0.15);
      }
      .section-two .column img {
        width: 100%;
        max-width: 120px;
        height: auto;
        border-radius: 12px;
        margin-bottom: 15px;
        object-fit: cover;
      }

      .section-two .column h1{
        font-size: 1.3rem;
      }
      .section-two .column p {
        color: #4a4a4a;
        font-size: .95rem;
      }

      @media (max-width: 940px) {
        .section-two {
          flex-direction: column;
          gap: 30px;
        }
      }

    /* Section Three */
      .section-three {
        max-width: 1200px;
        margin: 0px auto;
        display: flex;
        justify-content: space-between;
        gap: 30px;
        padding: 0 20px;
        align-items: center;
        text-align: right;
      }
      .section-three .content {
        flex: 3;
      }
      .section-three .content h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: #102a43;
      }
      .section-three .content p {
        font-size: .95rem;
        line-height: 1.8;
        color: #444;
      }
      .section-three .image {
        flex: 1;
        text-align: center;
      }
      .section-three .image img {
        width: 320px;
        object-fit: cover;
      }

      @media (max-width: 991px) {
        .section-three {
          flex-direction: column-reverse;
          gap: 25px;
          text-align: center;
        }
        .section-three .content,
        .section-three .image {
          flex: unset;
          width: 100%;
        }
      }

      /* Footer */
      .main-footer {
        background-color: #102a43;
        color: #ffffff;
        padding: 40px 20px 20px;
        background-color: #102a43;
        background-image: radial-gradient(#4caf5022 1px, transparent 1px);
        background-size: 20px 20px;
      }
      
      .footer-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 30px;
        max-width: 1100px;
        margin: 0 auto;
      }
      
      .footer-column {
        flex: 1;
        min-width: 250px;
      }
      
      .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 15px;
        color: #4caf50;
      }
      
      .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      
      .footer-column ul li {
        margin-bottom: 8px;
        font-size: 0.9rem;
      }
      
      .footer-column p {
        font-size: 0.9rem;
        line-height: 1.6;
      }
      
      .footer-bottom {
        text-align: center;
        padding-top: 20px;
        font-size: 0.8rem;
        color: #cccccc;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 30px;
      }
      .logo-footer{
        width: 150px;
        margin-top: 20px;
      }
      @media (max-width: 768px) {
        .footer-container {
          flex-direction: column;
          text-align: center;
        }
      
        .footer-column {
          margin-bottom: 20px;
        }
        .main-footer {
          margin-top: 40px;
        }
      }
