body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.6;
      color: #222;
      
        box-sizing: border-box; 
    }
    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #ffffff;
        border-radius: 0px 0px 30px 30px;
        
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.6);
        
        padding: 10px 20px;
        position: sticky;
        top: 0;
        z-index: 1000;    
  }

  header img {
    height: 50px;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    transition: left 0.3s ease;

  }

  nav ul li a {
    text-decoration: none;
    background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    cursor: pointer;
  }

  nav ul li a:hover {
    background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  h2{
    background: #CFE7FA;
    background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .menu-toggle {
    
    color: #000000;
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 15px;
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: rgb(0, 0, 0);
    border-radius: 2px;
  }

  /* Mobile Styles */
  @media (max-width: 768px) {
    .menu-toggle {
      display: flex;
    }

    nav ul {
      position: fixed;
      top: 60px;
      left: -100%;
      flex-direction: column;
      /*
      background-image: linear-gradient( 135deg, #FFE985 10%, #FA742B 100%);
      */
      background: white;
      width: 60%;
      height: 90vh;
      padding: 30px 20px;
      border-radius:0px 20px 40px 0px ;
      gap: 25px;
    }

    nav ul.active {
      left: 0;
    }
  }
    nav img {
      height: 60px;
    }

/*main start*/
    .main {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      padding: 50px 20px;
      background: #f5f5f5;
      
      background: linear-gradient(135deg, #0d1b2a, #1b263b);
    }

    .main img {
      max-width: 400px;
      width: 80%;
      margin: 20px;
      border-radius: 10px;
      box-shadow:#161616;
      
    }

    .main div h2 {
      font-size: 28px;
      margin-bottom: 10px;
      margin-left: 2em;
    }
    .main div p {
      color: #ffffff;
      font-weight: normal;
      margin: 2em;
    }
    .main .btn {
      margin-left: 1.5em;
    }

    /*about start*/
    
    .about {
      background: linear-gradient(135deg, #1b263b, #415a77);
      padding: 60px 20px;
      color: #f0f0f0;
      text-align: center;
      border-radius: 0px 0px 0px 0px;
    }
    


    .about .container {
          
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      margin-top: 20px;
    }

    .about .box img {
      display:block;
      height: 200px;
      width:200px;
      border-radius: 5%;
    }


    .about .box{
      text-align: center;
      background: #e3f2fd;
      background-image: linear-gradient(120deg, #ab52ff 0%, #2b95ff 100%);
      border-radius: 10px;
      padding:0;
      width: 200px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      transition: 0.3s ease;

      font-size:large ;
    }

    
    .about .box:hover {
      transform: translateY(-5px);
      background: #bbdefb;
      background-image: linear-gradient( 135deg, #1da8ff 10%, #596aff 100%);

    }

    
    /*our-services start*/
    .services {
      padding: 40px 20px;
      text-align: center;
    }
    .services .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }

    .services .box {
      background: #e3f2fd;
      background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
      border-radius: 10px;
      padding: 20px;
      width: 260px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      transition: 0.3s ease;
      font-size:large ;
    }

    .about .box:hover,
    .services .box:hover {
      background: #bbdefb;
      background-image: linear-gradient( 135deg, #72EDF2 10%, #5151E5 100%);

    }

    .services .box i{
      background: #ffffff;

      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      transition: 0.3s ease;
    }
/*footer start*/
    footer {
      
      background: linear-gradient(135deg, #1b263b, #415a77);
      color: whitesmoke;
      /*
      background-image: linear-gradient(-225deg, #AC32E4 0%, #7918F2 48%, #4801FF 100%);color: white;
      */
      text-align: center;
      padding: 20px;
      margin-top: 0px;
    }
    a{
      text-decoration: none;
      color:white;
    }

    /*footer end*/
    .cta {
      text-align: center;
      margin: 40px 0;
    }

    
    .btn {
      background-image: linear-gradient(to right, #1FA2FF 0%, #12D8FA  51%, #1FA2FF  100%);
      margin: 0px;
      width:max-content;
      text-align: center;
      text-transform: uppercase;
      transition: 0.5s;
      background-size: 200% auto;          
      box-shadow: 0 0 20px #eee;
      border-radius: 10px;
      display: block;
      color: white;
      padding: 15px 25px;
      margin-top: 1rem;
      margin-right: 20px;
      
    }
    .btn a{
      text-decoration: none;
      color:white;
      font-size:small ;
    }
    .btn:hover {
      background-position: right center; /* change the direction of the change here */
      color: #fff;
      text-decoration: none;
    }
    
         
    .cta a {
      text-decoration: none;
      background: #1976d2;
      color: white;
      padding: 15px 30px;
      border-radius: 5px;
      font-weight: bold;
      transition:  0.3s;
    }

    .cta a:hover {
      background: #0d47a1;
    }

    @media (max-width: 768px) {
      .main {
        flex-direction: column;
      }
    }

    
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: rgb(0, 0, 0);
    border-radius: 2px;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }

  /* Mobile nav */
  @media (max-width: 768px) {
    nav ul {
      position: fixed;
      left: -100%;
      top: 70px;
      flex-direction: column;
      /*
      background-image: linear-gradient( 135deg, #FFE985 10%, #FA742B 100%);
      */
      background: #ffffff;
      width: 250px;
      height: 90vh;
      padding: 30px;
      gap: 20px;
      transition: left 0.3s ease-in-out;
    }

    nav ul.active {
      left: 0;
    }

    .menu-toggle {
      display: flex;
    }
  }

  .faq-section {
  
  padding: 60px 20px;
  background-color: #f4f7fa;
  text-align: center;
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: bold;
  background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  border-radius: 8px 8px 0 0;
}

.faq-answer {
  padding: 15px 20px;
  display: none;
  background: #ffffff;
  border-top: 1px solid #ccc;
}

.faq-answer p {
  margin: 0;
}

  /*faq end*/
  /*contact start*/
  .contact-section {
  padding: 60px 20px;
  
  background: linear-gradient(135deg, #1b263b, #415a77);
  /*
  background: linear-gradient(135deg, #0d47a1, #673ab7);
  */
  color: white;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  color: #333;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.contact-form button {
  background-image: linear-gradient(to right, #00dbde 0%, #fc00ff 100%);
  
  color: #ffffff;
  font-weight: bold;
  padding: 14px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #fff176;
  background-image: linear-gradient( 135deg, #FFE985 10%, #FA742B 100%);
}

  /*contact end*/
/*pricing start*/
.plans {
  background: linear-gradient(135deg, #1b263b, #415a77);
  padding: 60px 20px;
  color: #f0f0f0;
  text-align: center;
  border-radius: 0px 0px 0px 0px;
  margin: 20px;
}

.plans h2 {
  font-size: 32px;
  margin-bottom: 40px;
  
}
.plan h4{
  padding:0px;
  margin: 0px;
  position:relative;
  font-size: large;
  background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
  border-radius: 0px 0px 20px 20px;
}

.plans-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.plan {
  background: #ffffff;
  border-radius: 16px;
  color: #000000;
  padding: 30px 20px;
  width: 320px;
  box-shadow: 0 8px 20px rgba(125, 125, 125, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  border: 2px solid #006aff;
  background-image: linear-gradient(120deg, #000000 0%, #434343 100%);
  color: white;
  
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(8, 95, 255, 0.3);
}

.plan h3 {
  font-size: 24px;
  margin-bottom: 10px;
  background: #FFB76B;
  background: linear-gradient(to right, #FFB76B 0%, #FFA73D 30%, #FF7C00 60%, #FF7F04 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.plan-price {
  font-size: 22px;
  background: #CFE7FA;
  background: linear-gradient(to right, #86c8ff 0%, #3ba0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-bottom: 20px;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  line-height: 1.8;
}

.plan ul li {
  border-bottom: 1px dashed #444;
  padding: 8px 0;
}

.plan-btn {
  display: inline-block;
  padding: 12px 20px;
  background-image: linear-gradient(to right, #0acffe 0%, #495aff 100%);
  
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.plan-btn:hover {
  background: linear-gradient(to right, #00dbde 0%, #fc00ff 100%);
  
}

.featured {
  border: 2px solid #006aff;
  background-image: linear-gradient(120deg, #000000 0%, #434343 100%);
  color: white;
  
}

@media (max-width: 768px) {
  .plans-grid {
    flex-direction: column;
    align-items: center;
  }

  .plan {
    width: 90%;
  }
}

/*pricing end*/
.offers{
    padding: 0px;
    margin:0px;
    /*
    background: #FFB76B;
    background: linear-gradient(to right, #FFB76B 0%, #FFA73D 30%, #FF7C00 60%, #FF7F04 100%);
    */
    /*background: linear-gradient(135deg, #1b263b, #415a77);*/
    background: #415a77;
    
}
marquee{
  /*
    background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
    */
    /*
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    */
    background: #415a77;
    color:#fff;
    padding: 0;
    margin: 0;
    
}
  .login{
    background-image: linear-gradient(to right, #4776E6 0%, #8E54E9  51%, #4776E6  100%);
    margin: 10px;
    padding: 15px 20px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
    border-width: 0;
    
         
  }
  .login:hover {
            background-position: right center; /* change the direction of the change here */
            color: #fff;
            text-decoration: none;
          }
/*mobile-responsive start*/
@media (max-width: 768px) {
  .h2{
    font-size: small;
  }
  .btn{
    padding: 5px;
    margin: 0px 5px;
  }

}
 
/* Extra Small (Phones < 480px) */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
}

/* Tablet (Portrait) */
@media (min-width: 768px) and (max-width: 991px) {
  .btn {
    padding: 0px;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .header {
    display: flex;
    justify-content: space-between;
  }
}


/*2*/

.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}
h1, h2, h3 {
  margin-bottom: 1rem;
  color: #003366;
}
p {
  margin-bottom: 1rem;
}
.hero {
  background: linear-gradient(120deg, #8ec5fc, #e0c3fc);
  color: #000;
  text-align: center;
  padding: 4rem 2rem;
}
.services, .contact {
  background: white;
  padding: 3rem 2rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.card {
  flex: 1 1 250px;
  background: #f0f8ff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  height: fit-content;
}
.card img{
  height: 200px;
  width:200px;
  border-radius: 20px;
}
blockquote {
  font-style: italic;
  padding: 1rem;
  background: #e6f7ff;
  border-left: 5px solid #007bff;
}
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    max-width: fit-content;
  }
  .hero {
    padding: 2rem 1rem;
  }
}
