
    /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: #333;
      background: whitesmoke;
    }
    a {
      color: #2c7dbe;
      text-decoration: none;
      transition: 0.3s;
    }
    a:hover {
      color: #7dd7f6;
    }
    .contained {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }


    /* Hero */
    .master{
        padding: 10px;
    }
    .hero {
      background: aliceblue;
      height:auto;
      width: 100%;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border: 2px solid black;
      border-radius: 5px;
      
    }
    .hero .hero-text {
      width: 40%;
      padding: 20px;
      display: flex;
      height: auto;
      flex-direction: column;
      align-items: baseline;
      justify-content: center;
     
    
    }
   
   .youi{
    width: 60%;
    height:auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
   }

   .youi img{
    width: 80%;
    height:auto;
    border-radius: 5px;
   }
    
.res{
    font-size: 60px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: #00a8cc;
}
.btn1{
    background-color: #f2f2f2;
    width: auto;
    height: 50px;
    padding: 0px 20px;
    border-radius: 7px;
    font-weight: 500;
}
.btn1:hover{
    background-color: rgb(22, 19, 19);
    color: #d4ecff;
}

@media (max-width:768px) {
    .res{
        font-size: 8vw;
    }
    .hero{
        flex-direction: column-reverse;
    }
    .hero .hero-text {
        width: 100%;
       align-items: center;
       text-align: center;

    }
    .hero-text p{
        display: none;
    }
    .youi{
        width: 100%;
    }
    
  
}

.pro{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    gap: 50px;
    padding: 20px 10px;
    margin: 0;
}
.semi-div{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.beta{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.beta img{
    width: 80%;
    height:auto;
    border-radius: 10px;
}
#red{
    color: red;
    font-weight: 500;
}
.alpha{
    width: 50%;
}
#h2{
  text-align: start;
}
@media (max-width:768px) {
      .semi-div{
        flex-direction: column;
        gap: 20px;
    }
    .alter{
        flex-direction: column-reverse;
    }
    .beta{
        width: 100%;
    }
    .alpha{
        width: 100%;
    }
    #h2{
      text-align: center;
    }
}
    /* Section */
    .section {
      background: #fff;
      padding: 60px 20px;
      margin: 40px 0;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .section h2 {
      text-align: center;
      font-size: 1.9em;
      margin-bottom: 20px;
      color: #2c3e50;
    }
    .section p {
      text-align: center;
      max-width: 900px;
      margin: 10px auto;
      color: #555;
      font-size: 1em;
    }

    /* Benefits Grid */
    .benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    .benefits .item {
      background: #eaf6ff;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      font-weight: 500;
      transition: 0.3s;
    }
    .benefits .item:hover {
      background: #d4ecff;
      transform: translateY(-3px);
    }

    /* Services Cards */
    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    .service-card {
      background: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      transition: 0.3s ease;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    }
    .service-card h3 {
      margin-bottom: 10px;
      color: #2c7dbe;
    }
    .service-card p {
      color: #555;
    }

    /* CTA */
    .cta {
      background: linear-gradient(135deg, #d2e1ed, #addbe5);
      color: #fff;
      text-align: center;
      padding: 60px 20px;
      border-radius: 10px;
      margin: 60px 0;
    }
    .cta h2 {
      margin-bottom: 20px;
      font-size: 2em;
    }
    .cta a {
      background: #0f4f6c;
      color: white;
      padding: 14px 28px;
      border-radius: 30px;
      font-size: 1em;
      font-weight: bold;
      transition: 0.3s;
    }
    .cta a:hover {
      background: black;
      transform: scale(1.05);
    }

    /* Contact */
    #contact p {
      text-align: left;
      margin-bottom: 8px;
      font-size: 1em;
    }

    .item span{
        width: 30px;
        height: 30px;
    }


    /* Responsive */
    @media(max-width: 768px) {
      header .nav {
        flex-direction: column;
      }
      nav {
        margin-top: 10px;
      }
      .hero .hero-text {
        font-size: 1.4em;
      }
    }
    .btn1{
      padding: 0;
      width: 140px;
      font-size: 16px;
    }
  
    
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    text-align: center;
  }
  .benefit {
    background: #f9f9ff;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .benefit span {
    font-size: 2em;
    display: block;
    margin-bottom: 10px;
  }
  .benefit p {
    font-weight: 600;
    color: #2c3e50;
  }
  .benefit:hover {
    transform: translateY(-6px);
    background: #eef6ff;
    box-shadow: 0 6px 12px rgba(0,0,0,0.12);
  }

  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
  }
  .service-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: 0.3s ease;
  }
  .service-card span {
    font-size: 2.5em;
    display: block;
    margin-bottom: 12px;
  }
  .service-card h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #2c7dbe;
  }
  .service-card p {
    color: #555;
    font-size: 0.95em;
  }
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    background: #f9fcff;
  }
