
    body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
  
    }

    .banner {
      padding: 90px 30px;
    background: linear-gradient(to right, #0B2E33, #135059)
    }

    .banner h1 {
      font-size: 5rem;
      font-weight: 700;
      line-height: 1.3;
      color: white;
      animation: fadeInDown 1s ease-in-out;
    }

    .banner p {
      font-size: 1.2rem;
      margin-top: 30px;
      margin-bottom: 20px;
      color: #aeabab;
      animation: fadeInUp 1.5s ease-in-out;
    }

    .banner img {
     height: 400px;
      animation: zoomIn 1.3s ease-in-out;
    }

    .main-content{
        background-color: red;
        gap: 110px;
    }
  
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes zoomIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }

    @media (max-width: 767px) {
      .banner {
        text-align: center;
        padding: 60px 20px;
      }
    }

    /* Section 2 */
  .PR-section-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
  }
  .PR-typeheading{
      text-align: center;
  }
  .PR-heading {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .PR-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .PR-card2 {
    width: 300px;
    background: #0B2E33;
    color: white;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .PR-card2:hover {
    transform: translateY(-5px);
  }
  
  .PR-featureicons {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    padding: 7px;
  }
  
  .PR-description {
    font-size: 1rem;
    margin-top: 15px;
  }
  
  /* Accordion Section */
  .PR-accordion {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }
  
  .PR-accordion-item {
    width: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
  }
  
  .PR-accordion-header {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .PR-accordion-para {
    font-size: 1rem;
    color: #666;
  }



   @media (max-width: 768px) {
   .banner img{
  height: 200px; 
 }

  .banner h1 {
      font-size: 3rem;
    }
    }