 @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

h1, h2, h3, p, a, li, label, input, span{
    font-family: "Poppins", serif;
}
 body {
      font-family: "Poppins", sans-serif;
      margin: 0;
      background-color: #f9fafc;
      color: #222;
    }

    /* 🔹 Header Section */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #4563CD;
      color: white;
      padding: 0px 40px;
      flex-wrap: wrap;
    }

    a.active::before {
      position: absolute;
      content: "";
      background: #fff;
      width: 100%;
      height: 2px;
      bottom: -30px;
      left: 0;
  }

  nav a {
      position: relative;
  }

  nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 400;
    transition: 0.3s;
  }
  .ban_left {
    width: 100%;
  }
  .ban_img {
      width: 100%;
      text-align: center;
  }


    /* 🔹 Banner Section */
    .banner {
      background: url("../images/banner-bg.png") center/cover no-repeat;
      color: white;
      text-align: left;
      padding: 40px 20px;
      position: relative;
    }
    /* Dark overlay */
    .banner::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 0;
    }
    .row {
        display: flex;
        max-width: 1200px;
        margin: 0px auto;
        align-items: center;
    }
    .banner div {
      position: relative;
      z-index: 1;
    }

    .banner h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .banner p {
      font-size: 1.2rem;
      opacity: 0.9;
    }

    

    /* 🔹 Content */
    .container {
      max-width: 1200px;
      margin: 40px auto;
      padding: 20px;
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    section {
      max-width: 1200px;
      margin: 50px auto;
      background: #fff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }
    .ban_left h3 {
        color: #7F87A8;
        font-weight: 400;
        font-size: 30px;
        margin: 0;
    }

    .ban_left h2 {
        color: #fff;
        font-size: 46px;
        margin: 0;
        border: 0;
        padding: 0;
    }

    .ban_left p {
        font-size: 16px;
        color: #fff;
        margin: 0;
    }

    p.bg-blue {
        background: #4563CD;
        width: max-content;
        padding: 5px 30px;
        border-radius: 25px;
        color: #fff;
        font-weight: 700;
        margin-top: 25px;
    }
    h2 {
      color: #0a0a23;
      border-left: 4px solid #0078ff;
      padding-left: 10px;
    }

    p {
      margin-bottom: 16px;
      font-size: 1rem;
    }

    footer {
      background: #0a0a23;
      color: #fff;
      text-align: center;
      padding: 25px 10px;
      font-size: 0.9rem;
    }

    footer a {
      color: #00aaff;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    .email {
      color: #0078ff;
      font-weight: bold;
    }
        /* 🔹 Footer */
    footer {
        background: #004aad;
        color: #fff;
        text-align: center;
        padding: 15px 10px;
        font-size: 0.9rem;
        margin-top: 40px;
    }

    footer a {
      color: #ffd700;
      text-decoration: none;
      margin: 0 5px;
      transition: 0.3s;
    }
    footer a:hover {
      text-decoration: underline;
      opacity: 0.9;
    }
    .ban_img img {
    margin-bottom: -6px;
    width: 100%;
}
   
    /* 🔹 Responsive Adjustments */
    @media (max-width: 768px) {
      header {
        flex-direction: column;
        text-align: center;
      }
      nav {
        margin-top: 10px;
      }
      .banner h1 {
        font-size: 2rem;
      }
      .banner p {
        font-size: 1rem;
      }
    }
     @media (max-width: 680px) {
      .ban_img{
        display: none;
      }
      header {
        flex-direction: column;
        align-items: flex-start;
      }
      nav {
        margin-top: 10px;
      }
      footer nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      nav{
        display: none;
      }
      .banner{
        padding: 30px 20px;
      }
      section {
          margin: 30px 20px;
          padding: 20px;
      }
      p {
        margin-bottom: 16px;
        font-size: 0.88rem;
      }
      .ban_left h3 {
          font-size: 20px;
      }

      .ban_left h2 {
          font-size: 24px;
      }

      .banner p {
          font-size: 14px;
      }

      .banner {
          padding: 30px !important;
      }
    }