* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }
  
  body {
    font-family: montserrat;
  }
  
  nav {
    background-color: #2C599D;
    height: 80px;
    width: 100%;
  }
  
  .logo {
    color: white;
    font-size: 25px;
    font-weight: bold;
    margin-left: 15px;
  
  }
  
  .logo-text {
    display: inline-block;
    vertical-align: middle;
    margin-top: 20px;
  }
  
  
  .enter {
    border: none;
    background-color: #1b9bff;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 25px;
    margin-left: 80px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .enter:hover {
    background-color: #1b9bff;
  }
  
  nav ul {
    float: right;
    margin-right: 20px;
  }
  
  nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
  }
  
  nav ul li a {
    color: white;
    font-size: 17px;
    padding: 8px 10px;
    border-radius: 25px;
    text-transform: uppercase;
  }
  
  a:hover {
    background: #1b9bff;
    border-radius: 25px;
    transition: .5s;
  }
  
  .checkbtn {
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
  }
  
  #check {
    display: none;
  }

  .hero-text {
    margin: auto;
    margin-top: 10%;
    text-align: center;
  }
  
  .button-hero {
font-size: 25px;
padding: 20px;
margin-top: 30px;
color: #fff;
border-radius: 15px;
cursor: pointer;
background-color:#0082e6;
outline: none;
border: none;
  }

  .h1-hero {
    color: white;
    font: 700 normal 3em 'tahoma';
    text-shadow: 5px 2px #222324, 2px 4px #222324, 3px 5px #222324;
  }
  
  .p1-hero {
    padding-top: 15px;
    font-size: 30px;
    text-shadow: 5px 1px #222324, 1px 4px #222324, 2px 5px #222324;
  }
  
  #testimonials {
    padding-top: 3%;
    padding-bottom: 3%;
    text-align: center;
    padding-left: 25%;
    padding-right: 25%;
  }

  .testimonial-container {
    display:flex;
    margin-left: 20px;
  }

  .h2-testimonials {
    font-size: 35px;
    padding-top: 10px;
    padding-bottom: 50px;
  }
  
  .testimonial-item {
    display: none;
  }
  
  .testimonial-item.active {
    display: block;
  }
  
  .testimonial-content {
    background-color: #ffffff;
    margin-left: 0%;
    margin-right: 0%;
    height: 300px;
    border-radius: 20px;
  }
  
  .testimonial-text {
    font-size: 20px;
    color: #000000;
    margin-top: 53px;
    margin-left: 50px;
    margin-right: 50px;
  }
  
  .testimonial-author {
    font-size: 28px;
    color: #000000;
    padding-top: 20px;
    padding-left: 130px;
  }
  
  .testimonial-image {
    margin-top: 20px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;

  }

  .testimonial-items-flex {
    display: flex;
  }
  
  .testimonial-arrows {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .testimonial-arrows button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 60px;
    color: #666;
    margin: 0 40px;
    transition: color 0.3s ease;
  }
  
  .testimonial-arrows button:hover {
    color: #333;
  }
  
  .testimonial-arrows button:disabled {
    color: #ccc;
    cursor: not-allowed;
  }

  @media screen and (max-width: 1343px) {

      #testimonials {
      padding: 0;
      }

    .testimonial-arrows {
      justify-content: space-between;
      padding: 0 0%;
      margin-left: -10px;
      margin-right: -10px;
    }
  
    .testimonial-content {
      width: 100%;
      height: auto;
      margin: 0 auto 20px;
    }
  
    .testimonial-container {
      display: inline-block;
      margin-left: 20px;
    }
  
    .testimonial-author {
      padding-left: 0;
      text-align: center;
    }
  
    .testimonial-image {
      margin: 0 auto 20px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .testimonial-text {
      margin: 20px;
    }
  }
  
  
  @media (max-width: 858px) {
  
    .h1-hero {
      font-size: 30px;
    }
  
    label.logo {
      font-size: 25px;
      padding-left: 10px;
    }
  
    nav ul li a {
      font-size: 16px;
    }
  
  
    .p1-hero {
  
      font-size: 20px;
    }
  }
  
  @media (max-width: 906px) {
  
    .h1-hero {
      font-size: 30px;
    }
  
    .checkbtn {
      display: block;
    }
  
    ul {
      position: fixed;
      width: 100%;
      height: 100vh;
      background: #2c3e50;
      top: 0px;
      left: -100%;
      text-align: center;
      transition: all .5s;
    }
  
    nav ul li {
      display: block;
      margin: 50px 0;
      line-height: 30px;
    }
  
    nav ul li a {
      font-size: 20px;
    }
  
    a:hover,
    a.active {
      background: none;
      color: #0082e6;
    }
  
    #check:checked~ul {
      left: 0;
    }
  
    .enter {
      padding: 20px 45px;
      margin: 0px;
      font-size: 20px;
    }
  
  }
  
  
  .hero {
    display: flex;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(/IMAGES/index.png);
    width: auto;
    height:700px;
    color: white;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  #faq {
    text-align: center;
    background-image: url(/IMAGES/Free-vector-realistic-3d-podium-background-Wallpaper.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  #faq h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 50px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .faq-main {
    margin: 5%;
    margin-bottom: 0%;
    border-bottom: 6px solid black;
    display: flex;
  }
  
  .faq-main1 {
    margin: 0% 5%;
    display: flex;
  
  }
  
  .faq-image {
    border-radius: 20px;
    margin-bottom: 5%;
    width: 30%;
    height: 30%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  @media (max-width: 850px) {
  
    .testimonial-item {
      flex-direction: column;
    }
  
    .testimonial-image {
      margin-bottom: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .faq-image {
      margin-top: 30%;
    }
  }
  
  .faq-text {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 40px;
    margin-top: 40px;
  }
  
  .faq-question {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  .faq-answer {
    font-size: 20px;
    color: #ffffff;
    line-height: 1.5;
    margin: 5%;
  }
  
  .faq-question::after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background-color: #0041f3;
    margin-top: 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
  }
  
  .faq-question:hover::after {
    width: 100%;
    transition-duration: 0.5s;
  }
  
  .faq-image2 {
    display: flex;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(/IMAGES/index.png);
    width: auto;
    height: 200px;
    color: white;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-left: 10%;
  }
  
  .features {
    border-top: 5px solid rgb(255, 255, 255);
  background-color:#2C599D;
    padding-bottom: 0%;
    padding-top: 5%;
    padding-bottom: 5%;
    border-bottom: 5px solid rgb(255, 255, 255);
  }
  
  @media (max-width: 1200px) {
  .faq-image3 {
    display: none;
  }
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
  }
  
  .h1-features {
    text-align: center;
    color: #fff;
    font-size: 45px;
    padding-bottom: 80px;
  }

  .column {
    padding: 1em;
  }
  
  .card {
    padding: 3.1em 1.25em;
    text-align: center;
    background: linear-gradient(0deg, #397ef6 10px, transparent 10px);
    background-repeat: no-repeat;
    background-position: 0 0.62em;
    box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.15);
    border-radius: 0.5em;
    transition: 0.5s;
    cursor: pointer;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .card .icon {
    font-size: 2.5em;
    height: 2em;
    width: 2em;
    margin: auto;
    background-color: #ffffff;
    display: grid;
    place-items: center;
    border-radius: 50%;
  }
  
  .icon:before {
    position: absolute;
    content: "";
    height: 1.5em;
    width: 1.5em;
    border: 0.12em solid #397ef6;
    border-radius: 50%;
    transition: 0.5s;
  }
  
  .h3-column {
    text-align: center;
    font-size: 1.3em;
    margin: 1em 0 1.4em 0;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #000000;
  }
  
  .card p {
    line-height: 2em;
    color: #000000;
  }
  
  .card:hover {
    background-position: 0;
  }
  
  .card:hover .icon:before {
    height: 2.25em;
    width: 2.25em;
  }
  
  #about {
    background-color: #104975;
    color: #fff;
    padding-top: 70px;
    padding-bottom: 70px;
  }
  
  .about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .about-image {
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
    margin-bottom: 20px;
    margin: 30px;
    margin-left: 100px;
  }
  
  .about-h1 {
    text-align: center;
    padding-bottom: 20px;
    font-size: 40px;
  }
  
  .about-text {
    margin: 0 auto;
    max-width: 700px;
    padding: 0 20px;
    margin-left: 25%;
  }
  
  .about-p {
    text-align: center;
    font-size: 25px;
    width: 100%;
  }
  
  .about-button {
    padding: 20px;
    font-size: 25px;
    margin-top: 20px;
    text-align: center;
    color: white;
    background-color: #0082e6;
    border: none;
    outline: none;
    cursor: pointer;
    width: 100%;
  }

  @media screen and (max-width: 1810px) {
    .about-button {
      text-align: center;
    }

    .about-image {
     display: none;
    }

    .about-text {
      margin: auto;
    }
  }
  
  .footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .social-media {
    margin-bottom: 20px;
  }
  
  .social-media h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
  }
  
  .social-icons li {
    margin: 0 10px;
  }
  
  .social-icons li a {
    color: #fff;
    font-size: 24px;
  }
  
  .bottom-text {
    margin-top: 20px;
  }
  
  .bottom-text p {
    margin: 0;
    font-size: 14px;
  }
  
  
  @media screen and (min-width: 768px) {
    section {
      padding: 1em 7em;
    }
  }
  
  @media screen and (min-width: 992px) {
    section {
      padding: 1em;
    }
  
    .card {
      padding: 5em 2em;
    }
  
    .column {
      flex: 0 0 33.33%;
      max-width: 33.33%;
      padding: 0 1em;
    }
  }
  
  @media (max-width: 1200px) {
    .faq-image {
      width: 30%;
    }
  
    .faq-main {
      display: block;
    }
    .faq-main1 {
      display: block;
    }
  }
