@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");

:root {
  --primary-color: #2a317a;
   /* linear-gradient(to bottom, #8E44AD, #fc8023); */
  --secondary-color: #2a317a; 
  --text-dark: #0f172a;
  --text-light: #475569;
  --extra-light: #f2f2f2;
  --white: #ffffff;
  --max-width: 1200px;
  --gradient: linear-gradient(to bottom,  #2a317a;,  #2a317a;);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body{
  width: 100%;
  /* overflow-x: hidden; */
}

  .section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
  }
.download__container{
  margin-right: 120px;
}
@media screen and (max-width: 575px) {
  .download__container{
  margin-right: 10px;
}
}


.section__subheader {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1px;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--white);
  background-color: #2a317a;
  white-space: nowrap;
  border-radius: 4px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: gray;
  color:black;
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Mulish", sans-serif;
}

header {
  position: relative;
}

header::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
  z-index: -1;
}

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  z-index: 2;
  background-color: #EDEDED;
}
.acs_logo{
  min-width: 140px;
  height: 100px;
  padding-bottom: 6px;
}
/* --------- */

.nav__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.nav__links li {
  position: relative;
}

.nav__links a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  position: relative;
}

/* Underline effect */
.nav__links a::after {
  content: "";
  display: block;
  height: 2px;
  background-color: #f4a261; /* Color of the underline */
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s;
}

/* Show the underline on hover */
.nav__links li:hover > a::after {
  width: 100%;
}

/* Dropdown menu styles */
.sub-menu {
  display: none;
  position: absolute;
  top: 100%; /* Position directly below the parent */
  left: 0;
  background-color: #333;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 160px; /* Width of the dropdown */
 /* Ensure it appears above other content */
}

.sub-menu li {
  float: none;

}

.sub-menu li a {
  padding: 10px 20px;
  white-space: nowrap;
  color: white;
  text-decoration: none;
  display: block;
  /* Ensure full-width clickable area */
}

.sub-menu li a:hover {
  background-color: #575757;
  /* Hover color for dropdown items */
}

/* Show dropdown on hover */
.nav__item:hover .sub-menu {
  display: block;
  z-index: -6;
  opacity: 1;
  
}



    @media screen and (max-width: 575px) {
      .acs_logo{
        width: 130px;
      }
      .nav__header {
        padding: 1rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      
      .nav__logo a {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--white);
      }
      
      .nav__menu__btn {
        font-size: 1.5rem;
        color: var(--white);
        background-color: #0f172a;
        border-radius: 6px;
        padding: 3px 8px;
        cursor: pointer;
      }

      .nav__links nav ul {
        overflow: hidden;
      }

      .nav__links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 2rem;
        transition: 0.5s;
        z-index: 999;
        transform: translateY(-100%);
        margin-top: 622px;
        font-size: small;
        background-color: #E0E1E9;
        color: #000;
      }
      
      .nav__links.open {
        transform: translateY(0);
      }
      
      .nav__links a {
        font-weight: 700;
        color: var(--black);
      }
      
      .container-fluid .checkbtn {
        display: block;
        z-index: 2;
      }

      nav .container-fluid .nav__links ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #ecf0f3;
        top: 30px;
        left: -100%;
        text-align: center;
        transition: all .5s;
        z-index: 1;
      }

      nav .container-fluid .nav__links ul {
        display: block;
        margin-top: 30px;
        text-align: center;
        line-height: 30px;
      }

      nav .container-fluid ul li a{
        font-size: 20px;
      }

      #check:checked~ul {
        left: 0;
      }

      nav .container-fluid ul {
        display: block;
        line-height: 80px;
        margin: 0 1px;
        margin-top: -14px;
        padding-top: 9px;
      }

      .nav__login{
        display: none;
      }

      .nav__login_nav{
        display: block;
      }

      .container-form{
        display: block;
      }

      .h2_txt{
        font-size: 20px;
        text-wrap: nowrap;
      }

      .text_contact{
        font-size: 14px;
      }

      .txt_box_form{
        width: 220px;
        height: 40px;
      }

      .location_media{
        width: 300px;
        height: 300px;
        /* margin-right: 390px; */
        /* margin-left: 0px; */
      }
      .contact_us{
        padding-left: 10px;
      }
      .contact_container{
        margin-right: 330px;
        padding-left: 10px;
        flex-direction: column;
      }
      .h4_tests{
        font-size: 10px;
      }
      .login_new_new{
        display: block;
      }
      .img_experi{
        width: 200px;
        /* margin: 28px 280px; */
        padding-left: 40px;
      }
      .experience__content {
        margin-bottom: 30px;
        /* padding: 10px 120px; */
        width: 460px;
      }
      .experience__card i{
        font-size: 21px;
      }
      .cust_experi {
        font-size: 11px;
        /* font-weight: 700; */
        /* color: var(--text-dark); */
        text-align: center;
      }

      .img_abt{
        margin-left: 70px;
        height: 290px;
      }
      
      .experience__card .cust_experi {
        position: absolute;
        max-width: 200px;
        padding: -30px 20px;
        font-size: 11px;
      }

      .experience__card span {
        display: inline-block;
        margin-bottom: 0.5rem;
        padding: 10px 13px;
        font-size: 2px;
        /* font-size: 1.5rem; */
        color: var(--primary-color);
        background-color: var(--extra-light);
        border: 4px solid var(--white);
        border-radius: 5px;
        box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
      }

      .footer__col{
        margin-left: 50px;
      }

      .footer__container{
        flex-direction: column;
      }

      .sme_txt{
        text-wrap: nowrap;
      }

      .map_txt{
        font-weight: 700;
        text-wrap: nowrap;
      }
      
    }
    .login_new_new{
      display: none;
      /* background-color: #04AA6D; */
      background-color: #2A317A;
      border: none;
      color: white;
      padding: 15px 32px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
      margin: 4px 2px;
      cursor: pointer;
      margin-bottom: 40px;
    }
    .nav__login_nav{
      color: #fff;
      padding-top: 30px;
    }

    @media screen and (min-width: 576px) and (max-width: 768px){
      .img_experi{
        width: 200px;
        /* margin: 28px 280px; */
        /* padding-left: 40px; */
      }
      .experience__card .cust_experi {
        /* position: absolute;
        max-width: 300px;
        padding: -30px 20px; */
        /* font-size: 11px; */
      }
      .cust_experi {
        /* font-size: 10px; */
        /* font-weight: 700; */
        /* color: var(--text-dark); */
        /* text-align: center; */
        /* width: 75px; */
      }
      /* .experience__content {
        margin-bottom: 30px;
        width: 460px;
        padding: 10px 120px;
      } */
      /* .img_abt{
        margin-left: 70px;
        width: 10px;
        height: 290px;
      } */
      .img_abt{
        margin-left: 240px;
        max-width: 50%;
        height: 290px;
      }
      .acs_logo{
        width: 100px;
      }
      .nav__header {
        padding: 1rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      
      .nav__logo a {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--white);
      }
      
      .nav__menu__btn {
        font-size: 1.5rem;
        color: var(--white);
        background-color: #0f172a;
        border-radius: 6px;
        padding: 3px 8px;
        cursor: pointer;
      }
      .nav__links nav ul {
        overflow: hidden;
      }
      /* .nav__links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 2rem;
        transition: 0.5s;
        z-index: 999;
        transform: translateY(-100%);
        margin-top: 730px;
        font-size: small;
      } */
      .nav__links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 2rem;
        transition: 0.5s;
        z-index: 999;
        transform: translateY(-100%);
        margin-top: 622px;
        font-size: small;
        background-color: #E0E1E9;
        color: #000;
      }
      
      .nav__links.open {
        transform: translateY(0);
      }
      
      .nav__links a {
        font-weight: 700;
        color: var(--black);
      }
      
    
      .container-fluid .checkbtn {
        display: block;
        z-index: 2;
      }
      nav .container-fluid .nav__links ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #ecf0f3;
        top: 30px;
        left: -100%;
        text-align: center;
        transition: all .5s;
        z-index: 1;
      }

      nav .container-fluid .nav__links ul {
        display: block;
        margin-top: 30px;
        text-align: center;
        line-height: 30px;
      }
      nav .container-fluid ul li a{
        font-size: 20px;
      }
      #check:checked~ul {
        left: 0;
      }
      nav .container-fluid ul {
        display: block;
        line-height: 80px;
        margin: 0 1px;
        margin-top: -14px;
        padding-top: 9px;
      }
      .nav__login{
        display: none;
        overflow: none;
      }
      .login_new_new{
        display: block;
      }
      .nav__login_nav{
        display: block;
        /* visibility: visible; */
        /* overflow: visible; */
      }
      .container-form{
        display: block;
      }
      .h2_txt{
        font-size: 20px;
        text-wrap: nowrap;
      }
      .text_contact{
        font-size: 14px;
      }
      .txt_box_form{
        width: 220px;
        height: 40px;
      }
      .location_media{
        width: 300px;
        height: 300px;
      }
      .contact_us{
        margin-left: 96px;
        display: block;
      }
      .contact_container{
        flex-direction: column;
        /* margin-left: 130px; */
       /* display: block; */
      }
      .steps__grid {
        margin-top: 4rem;
        display: flex;
      }
      .steps__card{

      }
      .steps__card span {
        display: inline-block;
        margin-bottom: 2rem;
        padding: 10px 17px;
        font-size: 20px;
        color: var(--primary-color);
        border-radius: 5px;
        background-color: var(--extra-light);
        /* border: 4px solid var(--white); */
        border: 223px solid #f4a261;
        box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
      }
      
      .steps__card:hover span {
        padding: 14px 21px;
        /* background: var(--gradient); */
        /* color: var(--white); */
        border: none;
        border-radius: 50%;
      }
      
      .steps__card h4 {
        margin-bottom: 1rem;
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--text-dark);
      }
      
      .steps__card p {
        color: var(--text-light);
        line-height: 1.75rem;
      }
      .footer__container{
        flex-direction: column;
        /* display: block; */
      }
      .section__container {
        /* max-width: var(--max-width);
        margin: auto;
        padding: 5rem 1rem; */
        display: block;
      }
      /* .footer__col .footer__links{
        font-size: smaller;
      } */
      /* .footer__col .equp_h4{
        font-size: 12px;
      } */
       /* .section__container .footer__col {
        width: 90%;
        display: block;
      } */
      .footer__col{
        margin-left: 150px;
      }
      .footer__container{
        flex-direction: column;
      }
        .blog-slider__content > * {
          opacity: 0;
          transform: translateY(25px);
          transition: all 0.4s;
        }
        .blog-slider__code {
          color: #7b7992;
          margin-bottom: 15px;
          display: block;
          font-weight: 500;
        }
        .blog-slider__title {
          font-size: 24px;
          font-weight: 700;
          color: #0d0925;
          margin-bottom: 20px;
        }
        .blog-slider__text {
          color: #4e4a67;
          margin-bottom: 30px;
          line-height: 1.5em;
        }
        .blog-slider__button {
          display: inline-flex;
          /* background-image: linear-gradient(147deg, #2A317A 0%, #fd3838 74%); */
          background-color: #F7B800;
          padding: 15px 35px;
          border-radius: 50px;
          color: #fff;
          /* box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4); */
          text-decoration: none;
          font-weight: 500;
          justify-content: center;
          text-align: center;
          letter-spacing: 1px;
        }
        .experience__content {
          width: 550px;
        }
      
      
    }
    @media screen and (min-width: 769px) and (max-width: 1200px){
      .img_experi{
        width: 200px;
        /* margin: 28px 280px; */
        /* padding-left: 40px; */
      }
      .cust_experi{
        font-size: 12px;
        /* color: var(--text-dark); */
        /* text-align: center; */
        width: 75px;
      }

      .img_abt{
        margin-left: 240px;
        max-width: 50%;
        height: 290px;
      }
      .acs_logo{
        width: 50px;
      }
      .nav__header {
        padding: 1rem;
        width: 70%;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      
      .nav__logo a {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--white);
      }
      
      .nav__menu__btn {
        font-size: 1.5rem;
        color: var(--white);
        background-color: #0f172a;
        border-radius: 6px;
        padding: 3px 8px;
        cursor: pointer;
        display: block;
      }
      .nav__links nav ul {
        overflow: hidden;
      }
      /* .nav__links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 2rem;
        transition: 0.5s;
        z-index: 999;
        transform: translateY(-100%);
        margin-top: 730px;
        font-size: small;
      } */
      .nav__links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 2rem;
        transition: 0.5s;
        z-index: 999;
        transform: translateY(-100%);
        margin-top: 626px;
        font-size: small;
        background-color: #E0E1E9;
        color: #000;
      }
      
      .nav__links.open {
        transform: translateY(0);
      }
      
      .nav__links a {
        font-weight: 700;
        color: var(--black);
      }
      
    
      .container-fluid .checkbtn {
        display: block;
        z-index: 2;
      }
      nav .container-fluid .nav__links ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #ecf0f3;
        top: 30px;
        left: -100%;
        text-align: center;
        transition: all .5s;
        z-index: 1;
      }

      nav .container-fluid .nav__links ul {
        display: block;
        margin-top: 30px;
        text-align: center;
        line-height: 30px;
      }
      nav .container-fluid ul li a{
        font-size: 20px;
      }
      #check:checked~ul {
        left: 0;
      }
      nav .container-fluid ul {
        display: block;
        line-height: 80px;
        margin: 0 1px;
        margin-top: -14px;
        padding-top: 9px;
      }
      .nav__login{
        display: none;
        overflow: none;
      }
      .nav__login_nav{
        display: block;
        /* visibility: visible; */
        /* overflow: visible; */
      }
      .container-form{
        display: block;
      }
      .h2_form{
        font-size: 20px;
        text-wrap: nowrap;
      }
      .text_contact{
        font-size: 14px;
      }
      .txt_box_form{
        width: 220px;
        height: 40px;
      }
      .location_media{
        width: 300px;
        height: 300px;
      }
      .contact_us{
        margin-left: 150px;
        display: block;
      }
      .contact_container{
        /* justify-content: space-between; */
        flex-direction: column;
        /* margin-left: 130px; */
       /* display: block; */
      }
      .steps__grid {
        margin-top: 4rem;
        display: flex;
        /* gap: 2rem; */
      }
      .steps__card{

      }
      .steps__card span {
        display: inline-block;
        margin-bottom: 2rem;
        padding: 10px 17px;
        font-size: 20px;
        color: var(--primary-color);
        border-radius: 5px;
        background-color: var(--extra-light);
        /* border: 4px solid var(--white); */
        border: 223px solid #f4a261;
        box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
      }
      
      .steps__card:hover span {
        padding: 14px 21px;
        /* background: var(--gradient); */
        /* color: var(--white); */
        border: none;
        border-radius: 50%;
      }
      
      .steps__card h4 {
        margin-bottom: 1rem;
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--text-dark);
      }
      
      .steps__card p {
        color: var(--text-light);
        line-height: 1.75rem;
      }
      .section__container .footer__col {
        width: 90%;
        display: block;
      }
      .footer__col{
        margin-left: 26px;
      }
      .footer__container{
        flex-direction: row;
      }
      .blog-slider__content > * {
        opacity: 0;
        transform: translateY(25px);
        transition: all 0.4s;
      }
      .blog-slider__code {
        font-size: 14px;
        color: #7b7992;
        margin-bottom: 15px;
        display: block;
        font-weight: 500;
      }
      .blog-slider__title {
        font-size: 24px;
        font-weight: 700;
        color: #0d0925;
        margin-bottom: 20px;
      }
      .blog-slider__text {
        color: #4e4a67;
        margin-bottom: 30px;
        line-height: 1.5em;
        font-size: 14px;
      }
      .blog-slider__button {
        display: inline-flex;
        /* background-image: linear-gradient(147deg, #2A317A 0%, #fd3838 74%); */
        background-color: #F7B800;
        padding: 15px 35px;
        border-radius: 50px;
        color: #fff;
        /* box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4); */
        text-decoration: none;
        font-weight: 500;
        justify-content: center;
        text-align: center;
        letter-spacing: 1px;
      }
      .experience__content {
        width: 700px;
      }
      
    }
    @media screen and (min-width: 1201px){
      .acs_logo{
        width: 50px;
      }
      .nav__header {
        padding: 1rem;
        width: 70%;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      
      .nav__logo a {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--white);
      }
      
      .nav__menu__btn {
        font-size: 1.5rem;
        color: var(--white);
        background-color: #0f172a;
        border-radius: 6px;
        padding: 3px 8px;
        cursor: pointer;
      }
      .nav__links nav ul {
        overflow: hidden;
      }
      /* .nav__links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 2rem;
        transition: 0.5s;
        z-index: 999;
        transform: translateY(-100%);
        margin-top: 730px;
        font-size: small;
      } */
      .nav__links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 2rem;
        transition: 0.5s;
        z-index: 999;
        transform: translateY(-100%);
        /* margin-top: 596px; */
        font-size: small;
        background-color: #E0E1E9;
        color: #000;
      }
      
      .nav__links.open {
        transform: translateY(0);
      }
      
      .nav__links a {
        font-weight: 700;
        color: var(--black);
      }
      
    
      .container-fluid .checkbtn {
        display: block;
        z-index: 2;
      }
      nav .container-fluid .nav__links ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #ecf0f3;
        top: 30px;
        left: -100%;
        text-align: center;
        transition: all .5s;
        z-index: 1;
      }

      nav .container-fluid .nav__links ul {
        display: block;
        margin-top: 30px;
        text-align: center;
        line-height: 30px;
      }
      nav .container-fluid ul li a{
        font-size: 20px;
      }
      #check:checked~ul {
        left: 0;
      }
      nav .container-fluid ul {
        display: block;
        line-height: 80px;
        margin: 0 1px;
        margin-top: -14px;
        padding-top: 9px;
      }
      .nav__login{
        display: none;
        overflow: none;
      }
      .nav__login_nav{
        display: block;
        padding-top: 36px;
        padding-right: 30px;
        /* visibility: visible; */
        /* overflow: visible; */
      }
      .container-form{
        /* width: 200px; */
        /* display: block; */
      }
      .h2_txt{
        font-size: 29px;
        margin-left: 13px;
        text-wrap: nowrap;
      }
      .text_contact{
        font-size: 14px;
      }
      .txt_box_form{
        width: 355px;
        height: 40px;
      }
      .location_media{
        width: 400px;
        height: 400px;
      }
      .contact_us{
        display: block;
      }
      .contact_container{
        /* margin-left: 13px; */
       /* display: block; */
      }
      .steps__grid {
        margin-top: 4rem;
        display: flex;
        /* gap: 2rem; */
      }
      .steps__card{

      }
      .steps__card span {
        display: inline-block;
        margin-bottom: 2rem;
        padding: 10px 17px;
        font-size: 20px;
        color: var(--primary-color);
        border-radius: 5px;
        background-color: var(--extra-light);
        /* border: 4px solid var(--white); */
        border: 223px solid #f4a261;
        box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
      }
      
      .steps__card:hover span {
        padding: 14px 21px;
        /* background: var(--gradient); */
        /* color: var(--white); */
        border: none;
        border-radius: 50%;
      }
      
      .steps__card h4 {
        margin-bottom: 1rem;
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--text-dark);
      }
      
      .steps__card p {
        color: var(--text-light);
        line-height: 1.75rem;
      }
      .section__container .footer__col {
        width: 120%;
        display: block;
      }
      
    }

    .txt_box_form{
      /* width: 100px; */
    }

    .contact_container{
      display: flex;
    }
    /* .footer_flex{
      display: flex;
      gap: 70px;
    } */


/* ------- */

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: var(--primary-color); */
}

.nav__logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  top: 100%;
  /* margin-top: 160px; */
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  /* background-color: var(--primary-color); */
  transition: 0.5s;
  z-index: 999;
  text-wrap: nowrap;
  transform: translateY(-100%);
  /* margin-right: 40px; */
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  font-weight: 700;
  color: var(--black);
}

.nav__links .btn {
  padding: 0;
  background-color: transparent;
}

.nav__btns {
  display: none;
}

.header__container {
  display: grid;
  padding-top: 250px;
  /* gap: 2rem 0; */
  /* gap: 2rem 0; */
  /* position: relative;
  isolation: isolate;
  overflow: hidden; */
}

.header__container::before {
  /* position: absolute; */
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 50%;
  /* background: var(--secondary-color); */
  border-radius: 1rem 1rem 0.5rem 0.5rem;
  z-index: -1;
}

.header__content h1 {
  position: relative;
  isolation: isolate;
  margin-bottom: 2rem;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 3.25rem;
}

.header__content h1::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1rem;
  height: 4px;
  width: 2rem;
  background-color: rgb(237, 123, 16);
}

.header__content p {
  margin-bottom: 2rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.75rem;
}

.header__links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__links img {
  max-width: 125px;
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.steps__container :is(.section__subheader, .section__header) {
  text-align: center;
}

.steps__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

.steps__card {
  text-align: center;
  padding: 20px 20px;
  border-radius: 15px;
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
}

.steps__card span {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 10px 17px;
  font-size: 1.75rem;
  color: var(--primary-color);
  border-radius: 5px;
  background-color: var(--extra-light);
  /* border: 4px solid var(--white); */
  border: 3px solid #fff;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.steps__card:hover span {
  padding: 14px 21px;
  /* background: var(--gradient); */
  /* color: var(--white); */
  border: none;
  border-radius: 50%;
}

.steps__card h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

.steps__card p {
  color: var(--text-light);
  line-height: 1.75rem;
}

.service__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
}

.service__list {
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}

.service__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service__list li span {
  padding: 12px 15px;
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: var(--extra-light);
  border: 4px solid var(--white);
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.service__list h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.service__list p {
  color: var(--text-light);
  line-height: 1.75rem;
}

.experience__container :is(.section__subheader, .section__header) {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.experience__content {
  max-width: 1024px;
  margin-inline: auto;
  /* margin-top: 4rem; */
  position: relative;
  isolation: isolate;
  margin-top: 180px;
}

.experience__content img {
  max-width: 300px;
  margin-inline: auto;
  opacity: 0.5;
}

.experience__card {
  position: absolute;
  max-width: 200px;
  padding: 300px 37px;
}

.experience__card span {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 10px 13px;
  font-size: 20px;
  /* font-size: 1.5rem; */
  color: var(--primary-color);
  background-color: var(--extra-light);
  border: 4px solid var(--white);
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.cust_experi {
  font-size: 15px;
  /* font-weight: 700; */
  /* color: var(--text-dark); */
  /* text-align: center; */
}

.experience__card:nth-child(1) {
  top: 5rem;
  left: 1rem;
}

.experience__card:nth-child(2) {
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

.experience__card:nth-child(3) {
  bottom: 5rem;
  left: 1rem;
}

.experience__card:nth-child(4) {
  top: 5rem;
  right: 1rem;
  /* text-align: right; */
}

.experience__card:nth-child(5) {
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  text-align: right;
}

.experience__card:nth-child(6) {
  bottom: 5rem;
  right: 1rem;
  text-align: right;
}

/* Instrument lists start */
.heading_line{
  margin-bottom: 150px;
  text-align: center;
}
.instrument_cont{
  display: flex;
  gap: 120px;
  margin-bottom: 200px;
}
#instrumnet_imgs{
 
  width: 300px;
  height: 250px;
  margin-top: -100px;
  margin-left: -100px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#inst_card{
  color: white;
  background: rgb(0,0,0);
  background: #2a317a;
  /* padding: 5%; */
}
.card-body{
  
  margin-left: 220px;
  margin-top: -50px;
  width: 80%;
}
#contact{
  margin-left: 13%;
  scroll-behavior: smooth;
}
.contact_container{
  margin-left: 50px;
  /* gap: 160px; */
  justify-content: space-between;
}
.contact_us form{
  margin-left: 10%;
  padding: 20px;
}
.qr_code_div{
  margin-top: 16px;
}
/* Instrument lists end */

/* FAQ content start */
.list-group {
  width: 80%;
  margin-left: 10%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}
.list-group-item {
  background-color: #ffffff;
  color: #111010;
  padding: 15px;
  border-bottom: 1px solid #fff7f7;
  display: block;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-icon {
  font-size: 1.2em;
  transition: transform 0.3s ease;
}
.toggle-icon.rotate {
  transform: rotate(45deg);
}
.content-paragraph {
  display: none;
  padding: 10px;
  background-color: var(--primary-color);
  border-radius: 10px;
  color: white;
  animation: fadeIn 0.5s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* FAQ content end */

.footer__container {
  display: flex;
  gap: 3rem 6rem;
  border-bottom: 1px solid black;
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  font-weight: 600;
  color: var(--text-light);
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__bar {
  padding-block: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__bar h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.footer__bar p {
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__socials a {
  display: inline-block;
  padding: 8px 10px;
  font-size: 1rem;
  color: var(--text-dark);
  border-radius: 50%;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.footer__socials a:hover {
  background: var(--gradient);
}
.p_footer_div{
  padding-top: 8px;
}

/* Contact us start */
.contact_us{
  padding: 30px;
}
/* Contact us End */





@media (width > 540px) {
  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 1201px) {
  header::before {
    height: calc(100% - 4rem);
  }

  nav {
    position: fixed;
    /* padding-top: 1rem; */
    /* padding-bottom: 1rem; */
    /* max-width: var(--max-width); */
    /* margin-inline-start: 120px; */
    /* margin-inline: auto; */
    padding-top: 8px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 2rem; */
  }

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__logo a {
    font-weight: 800;
    color: var(--text-dark);
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    width: fit-content;
    flex-direction: row;
    background-color: transparent;
    transform: none;
    z-index: 2;
    padding-bottom: 10px;
  }

  .nav__links a {
    padding-block: 5px;
    color: var(--text-dark);
    border-bottom: 2px solid transparent;
  }



  .nav__links__btn {
    display: none;
  }

  .nav__btns {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
  }

  .nav__btns .btn__primary {
    color: var(--text-dark);
    background-color: transparent;
  }

  .header__container {
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
  }

  .header__container::before {
    right: 5rem;
    width: calc(50% - 4rem);
    height: 100%;
  }

  .header__image {
    grid-column: 3/6;
    z-index: -2;
  }

  .header__content {
    grid-area: 1/1/2/3;
  }

  .steps__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .experience__content img {
    opacity: 1;
  }

  .experience__card:nth-child(1) {
    left: 5rem;
  }

  .experience__card:nth-child(3) {
    left: 5rem;
  }

  .experience__card:nth-child(4) {
    right: 5rem;
  }

  .experience__card:nth-child(6) {
    right: 5rem;
  }

  .download__image {
    display: flex;
    position: relative;
    isolation: isolate;
  }

  .download__image img {
    position: absolute;
    max-width: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
  }

  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__bar {
    flex-direction: row;
  }

  .footer__bar :is(h4, .footer__socials) {
    flex: 1;
  }

  .footer__socials {
    justify-content: flex-end;
  }


}


/* instrument */

.blog-slider {
  width: 95%;
  position: relative;
  max-width: 800px;
  margin: auto;
  background: #fff;
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  padding: 25px;
  border-radius: 25px;
  height: 400px;
  transition: all 0.3s;
}
@media screen and (max-width: 992px) {
  .blog-slider {
    max-width: 680px;
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .blog-slider {
    min-height: 500px;
    height: auto;
    margin: 180px auto;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider {
    height: 350px;
  }
}
.blog-slider__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .blog-slider__item {
    flex-direction: column;
  }
}
.blog-slider__item.swiper-slide-active .blog-slider__img img {
  opacity: 1;
  transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > * {
  opacity: 1;
  transform: none;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
  transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
  transition-delay: 0.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
  transition-delay: 0.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
  transition-delay: 0.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
  transition-delay: 0.7s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
  transition-delay: 0.8s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
  transition-delay: 0.9s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
  transition-delay: 1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
  transition-delay: 1.1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
  transition-delay: 1.2s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
  transition-delay: 1.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
  transition-delay: 1.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
  transition-delay: 1.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
  transition-delay: 1.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
  transition-delay: 1.7s;
}
.blog-slider__img {
  width: 300px;
  flex-shrink: 0;
  height: 300px;
  /* background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%); */
  /* box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2); */
  box-shadow: 4px 13px 30px 1px rgba(56, 95, 252, 0.605);
  border-radius: 20px;
  transform: translateX(-80px);
  overflow: hidden;
}
.blog-slider__img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%); */
  border-radius: 20px;
  opacity: 0.8;
}
.blog-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  border-radius: 20px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .blog-slider__img {
    transform: translateY(-50%);
    width: 90%;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__img {
    width: 95%;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider__img {
    height: 270px;
  }
}
.blog-slider__content {
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  .blog-slider__content {
    margin-top: -80px;
    text-align: center;
    padding: 0 30px;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__content {
    padding: 0;
  }
}
.blog-slider__content > * {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s;
}
.blog-slider__code {
  color: #7b7992;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}
.blog-slider__title {
  font-size: 24px;
  font-weight: 700;
  color: #0d0925;
  margin-bottom: 20px;
}
.blog-slider__text {
  color: #4e4a67;
  margin-bottom: 30px;
  line-height: 1.5em;
}
.blog-slider__button {
  display: inline-flex;
  /* background-image: linear-gradient(147deg, #2A317A 0%, #fd3838 74%); */
  background-color: #F7B800;
  padding: 15px 35px;
  border-radius: 50px;
  color: #fff;
  /* box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4); */
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
}
/* @media screen and (max-width: 576px) {
  .blog-slider__button {
    width: 100%;
  }
} */
.blog-slider .swiper-container-horizontal > .swiper-pagination-bullets, .blog-slider .swiper-pagination-custom, .blog-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.blog-slider__pagination {
  position: absolute;
  /* z-index: 21; */
  right: 20px;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 50%;
  bottom: auto !important;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination {
    transform: translateX(-50%);
    left: 50% !important;
    top: 205px;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}
.blog-slider__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: block;
  border-radius: 10px;
  background: #062744;
  opacity: 0.2;
  transition: all 0.3s;
}
.blog-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  /* background: #fd3838; */
  background: gold;
  height: 30px;
  box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination .swiper-pagination-bullet-active {
    height: 11px;
    width: 30px;
  }
}

