@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Class to trigger animation */
.animate-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.zoom-in {
  opacity: 0;
  animation: zoomIn 0.6s ease-out forwards;
}

*{
    margin: 0;
    padding: 0;
}


.outfit-<uniquifier> {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.button {
    font-family: "Outfit", sans-serif;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(to right, #099773 0%,#3e3b92 100%);
    border-radius: 50px;
    padding: 18px 40px;
    text-transform: uppercase;
    display: inline-block;
    border: none;
}

.button:hover {
    color: #0f8d76;
    background: #FFF;
    box-shadow: 0px 0px 40px #00000038;
    border: 1px solid #128878;
}

.button .fa-solid.fa-arrow-right {
    font-size: 15px;
   
}

h1.main-title {
    font-family: 'Outfit';
    text-align: center;
    font-size: 65px;
    font-weight: 600;
    color: #313131;
    text-transform: uppercase;
}

.section-1 {
    padding: 100px 0px;
}

p.main-text {
    font-size: 25px;
    text-align: center;
    color: #5A5A5A;
    font-family: 'Outfit';
    font-weight: 400;
}

.button-container {
  display: flex;
  justify-content: center;
}

section.section-3 {
    background: #EEF1FF;
    padding: 100px 0px;
}

h1.second-title {
    font-size: 50px;
    font-weight: 500;
    color: #313131;
    text-transform: uppercase;
    font-family: 'Outfit';
}


 ul.audit-list {
    list-style: none;
    padding: 0px;
}

   ul.audit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #5A5A5A;
    font-size: 20px;
    line-height: 1.5;
    font-family: 'Outfit';
}
    ul.audit-list li:last-child {
      margin-bottom: 0;
    }

 ul.audit-list svg {
    min-width: 25px;
    height: 25px;
    background: linear-gradient(to right, #099773 0%,#3e3b92 100%);
    border-radius: 50px;
    padding: 3px;
}

p.copyright {
    font-family: 'Outfit';
    font-size: 14px;
    color: #313131;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0px;
}

.section-5{
padding: 100px 0px;
}

      /* FOOTER */

  .subscribe-wrapper {
      display: flex;
      border: 1px solid #ccc;
      border-radius: 40px;
      overflow: hidden;
      max-width: 600px;
      width: 100%;
      box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    }

    .subscribe-input {
      flex: 1;
      padding: 18px 24px;
      border: none;
      font-size: 16px;
      outline: none;
      border-radius: 40px 0 0 40px;
    }

    .subscribe-button {
      background: linear-gradient(to right, #3a2c8f, #00b388);
      color: white;
      font-weight: 600;
      padding: 0 28px;
      display: flex;
      align-items: center;
      gap: 10px;
      border: none;
      border-radius: 40px;
      cursor: pointer;
      font-size: 14px;
      transition: 0.3s ease;
    }

    .subscribe-button:hover {
      opacity: 0.9;
    }

    .subscribe-button svg {
      width: 16px;
      height: 16px;
      stroke: white;
    }

      .testimonial-card {
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      padding: 20px;
      text-align: left;
      background-color: #fff;
      transition: transform 0.3s;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
    }

    .testimonial-img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
    }

    .star-rating {
      color: #f5b301;
      margin-top: 10px;
    }

    .testimonial-name {
      font-weight: 600;
      margin-top: 10px;
      margin-bottom: 5px;
    }

    .testimonial-text {
      color: #555;
      font-size: 15px;
    }

    .container-faq {
            background-color: rgba(255, 255, 255, 0);
            color: black;
            border-radius: 0px;
            /* box-shadow: 0 5px 10px 0 rgb(0, 0, 0, 0.25); */
            margin: 20px 0;
            border-bottom: 1px solid #33333344;
        }
 
        .question {
            font-size: 25px;
            font-weight: 500;
            padding: 20px 80px 20px 20px;
            position: relative;
            display: flex;
            align-items: center;
            cursor: pointer;
            font-family: "Outfit", sans-serif;
        }
 
        .question::after {
            content: "";
            width: 30px;
            position: absolute;
            right: 10px;
            transition: 0.2s;
            background-image: url(./imgs/Polygon-plus.svg);
            height: 30px !important;
            background-repeat: no-repeat !important;
            background-position: center !important;
        }
 
        .question.active::after {
            transform: rotate(60deg);
            transition: 0.3 ease;
        }
 
        .answercont {
            max-height: 0;
            overflow: hidden;
            transition: 0.3s;
        }
 
        .answer {
            padding: 0 20px 20px;
            line-height: 1.5rem;
            font-family: "Outfit", sans-serif;
            font-size: 18px;
        }

        .faq-section{
          background-color: #EEF1FF;
          padding: 100px 0px;
        }

        h2.badge-text {
    color: #fff;
    font-family: 'inter';
    font-size: 35px;
    font-weight: 700;
    line-height: 40px;
        }

      .badge {
    background-image: url(./imgs/badge-bg.png);
    width: 60%;
    background-size: cover;
    background-position: center;
    padding: 60px 45px;
    border-radius: 35px;
    position: relative;
    box-shadow: 5px -4px 40px #00000047;
      }

      .badge:after {
    content: "";
    position: absolute;
    background: url(./imgs/Asset\ 13@2x-8.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 200px;
    top: -18px;
    right: -16px;
}

      .support-sec {
    background: url(./imgs/linearbg.png);
    padding: 150px 0px;
    background-size: cover;
    background-position: center;
}

    .support-h1 {
    font-size: 65px;
    color: #fff;
    font-family: 'Inter';
    font-weight: 700;
}

h2.support-h2 {
    font-family: 'Inter';
    color: #fff;
    font-weight: 700;
    font-size: 35px;
    line-height: 60px;
}

span.span-badge {
    background: #099773;
    padding: 0px 15px;
    border-radius: 20px;
    display: inline-block;
    transform-origin: top center;
    animation: hanging 2s ease-in-out infinite;
}

a.footer-links {
    text-decoration: none !important;
    font-family: 'Outfit';
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    color: #313131;
}

.support-h2 a {
    color: #099773;
}

@keyframes hanging {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(5deg); }
  50%  { transform: rotate(-5deg); }
  75%  { transform: rotate(3deg); }
  100% { transform: rotate(0deg); }
}

    /* Marquee-CSS */
   
    .marquee {
      position: relative;
      width: 100%;
      overflow: hidden;
      white-space: nowrap;
      box-sizing: border-box;
      padding: 40px 0;
    }
 
    .marquee-content {
      display: inline-block;
      white-space: nowrap;
      animation: marquee-left 20s linear infinite;
    }
 
    .marquee-content.reverse {
      animation: marquee-right 20s linear infinite;
    }
 
    .hello-world {
      display: inline-block;
      font-size: 10rem;
      font-weight: bold;
      color: black;
      margin-right: 100px;
    }
 
    .hello {
      transform: rotate(-5deg);
    }
 
    .hello2 {
      transform: rotate(-5deg);
    }
 
    .hello-world-outline {
      display: inline-block;
      font-size: 10rem;
      font-weight: 900;
      color: transparent;
      -webkit-text-stroke: 2px black;
      margin-left: 100px;
    }
 
    @keyframes marquee-left {
      0% { transform: translateX(0%); }
      100% { transform: translateX(-50%); }
    }
 
    @keyframes marquee-right {
      0% { transform: translateX(-50%); }
      100% { transform: translateX(0%); }
    }
 
    .marquee-content h1 {
    font-weight: 500 !important;
    font-family:'Lato' !important;
}
 
.marquee {
    margin: 0px !important;
    padding: 0px !important;
}
    body {
    overflow-x: hidden;
}
/* text animation styling end */

    /* Marquee-CSS End */


       /* CONTACT US CSS */
        
     .banner {
    background: url(./imgs/linearbg.png);
    background-size: cover;
    background-position: center;
    padding: 150px 0px;
    border-radius: 35px;
}

       h1.banner-title {
    font-size: 65px;
    font-family: 'Outfit';
    color: #fff;
    text-transform: uppercase;
}

#contactForm {
    max-width: 500px;
    margin: auto;
    padding: 30px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 0 20px rgb(0 0 0 / 16%);
}

.form-group {
  margin-bottom: 15px;
}

label {
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
    font-family: 'Outfit';
    font-size: 16px !important;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #12887885;
    border-radius: 30px;
}


#formMessage {
  margin-top: 10px;
  font-weight: bold;
}

       /* CONTACT CSS END */

      /* Privacy Section Css */


       section.privacy-section {
    padding: 60px 0px !important;
}
   

    h2.privacy-sec-title {
    font-size: 30px !important;
    font-family: 'Outfit';
    font-weight: 500;
}

ul {
    font-family: 'Outfit';
    font-size: 16px !important;
    color: #000000bf;
}

      /* Privacy Section Css End */
   
   
   /* END */


      /**** MEDIA QUERY ****/

@media (max-width: 480px) {
  
     .subscribe-wrapper {
        flex-direction: column;
        border-radius: 20px;
      }

      .subscribe-input,
      .subscribe-button {
        border-radius: 0;
        width: 100%;
        box-sizing: border-box;
      }

      .subscribe-button {
        border-radius: 0 0 20px 20px;
        justify-content: center;
        padding: 15px;
      }

      .logo {
    display: flex;
    justify-content: center;
}

.row {
    gap: 30px;
}

.button-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
}

h1.main-title {
    font-size: 45px;
}

.main-text {
    font-size: 19px !important;
}

.second-title {
    font-size: 35px !important;
}

.audit-list li {
    font-size: 17px !important;
}

a.button {

    font-size: 12px;
}

.copyright-container{
    justify-content: center !important;
}

.f-logo-cont {
    justify-content: center;
    display: flex;
}

.section-3 {
    padding: 60px 15px !important;
}

.section-1 {
    padding: 100px 15px !important;
}

.section-5{
    padding: 100px 15px !important;
}

h2.badge-text {
    font-size: 20px;
    line-height: 25px;
}

.badge {
  
    width: 100%;
    background-position: right;
    padding: 40px 25px;
   }

.badge:after {

    width: 100px;
    height: 100px;
    top: -10px;
    right: -8px;
}

.support-h1 {
    font-size: 50px;
}

h2.support-h2 {
 
    font-size: 25px;
    line-height: 40px;
}

span.span-badge {
    border-radius: 12px;
}

.support-sec {
     padding: 60px 15px;
    background-size: cover;
    background-position: right;
}

.img {
    width: 100%;
}

}
.button:hover i {
    transform: rotate(1deg) !important;
}
@media (min-width: 480px) and (max-width: 993px) {

  .badge {
    width: 100%;
}

h2.badge-text {
    font-size: 30px;
 
}

.support-sec {
     padding: 100px 15px;
    background-size: cover;
    background-position: right;
}
}

@media (min-width: 768px) and (max-width: 993px) {

 img.img {
    height: 420px;
    position: sticky;
    top: 0;
}
}

@media (max-width: 768px){

  .marquee-content h1 {
    font-size: 50px !important;
    font-weight: 400 !important;
}
}