/* Navbar styles */
header{
  position: sticky;
  top:0;
  z-index: 99999;
}
.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #095192;
    padding: 20px;
  }
  
  #desktop .nav-links {
    display: flex;
    justify-content: space-between;
    width: 70%;
    align-items: center;
  }
  
  #desktop .nav-links li{
    list-style: none;
  }

  #desktop .nav-links li a {
    color: #095192;
    text-decoration: none;
  }
  #desktop .nav-links li a:hover {
    color: #01d28e;
    text-decoration: none;
  }

  .mobile .nav-links {
    position: absolute;
    right: 0;
    top: 80px;
    background-color: #01d28e;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height:100vh;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
  }

  .mobile .nav-links li {
    opacity: 0;
    margin:1rem;
  }
  
  .mobile .nav-links li a, .mobile .nav-links li h4{
    color: #fff;

  }

  .mobile .burger {
    display: block;
    cursor: pointer;
  }

  .mobile .line1,
  .mobile .line2,
  .mobile .line3 {
    width: 25px;
    height: 3px;
    background-color: #095192;
    margin: 5px;
    transition: transform 0.3s ease-in-out;
  }
  .mobile .line110{
    width: 15px;
    height: 4px;
    background-color:#095192 ;
    margin: 5px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
  }
  .mobile .line22{
    width: 35px;
    height: 4px;
    background-color:#095192 ;
    margin: 5px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
  }
  .mobile .line33{
    width: 20px;
    height: 4px;
    background-color:#095192 ;
    margin: 5px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
  }


  .mobile .change .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .mobile .change .line2 {
    opacity: 0;
  }

  .mobile .change .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  .mobile .change .line110 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .mobile .change .line22 {
    opacity: 0;
  }

  .mobile .change .line33 {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .mobile .nav-active {
    transform: translateX(0%);
  }

  .mobile .nav-links li {
    opacity: 1;
    transition: opacity 0.5s ease-in;
  }

  .mobile{
    display:flex;
    align-items: center;
    justify-content: flex-end;
  }

  #desktop .menu{
    display:none;
  }

  .green-button {
    background-color: #01D28E;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 25px;
  }
  .green-outline {
    color: rgb(1, 210, 142);
    background-color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 25px;
  }


    .slider-container {
        position: relative;
        width: 100%;
        max-width: 800px; /* Adjust the maximum width as needed */
        margin: 0 auto; /* Center the slider */
      }
      
      .slider {
        display: flex;
        overflow: hidden;
      }
      
      .slider img {
        width: 100%;
        height: auto;
        object-fit: cover; /* Maintain aspect ratio and cover entire slide */
      }
      
      .slider-controls {
        text-align: center;
        margin-top: 10px;
      }
      
      .slider-controls button {
        padding: 5px 10px;
        margin: 0 5px;
      }
      
      .header-heading p{
        color:#01D28E;
      }

      .header-heading button{
        font-weight: bold;
      }
      
      .underline{
        background-color: #01D28E;
        height:5px;
        width: 25px;
        border-radius:3px;
        margin: auto;
      }

      /* slider */

      .btn-get-started {
        padding: 1.5rem 3rem;
        background-color: #0000ff;
        color: white;
        transition: background-color 0.3s ease;
    }

    .btn-get-started:hover {
        background-color: #0000cc;
    }

    #mobile-view{
      display: none;
    }

    .bg-transparent-mobile{
      background-color: #01D28E;
    }
    .desktop-hide{
      display: none;
    }
    .desktop-hide-flex{
      display: none;
    }
    .mobile-hide{
      display: block;
    }
    .mobile-hide-flex{
      display: flex
    }
    .text-mobile img{width: 45px;}

    /* Responsive styles */
    @media (max-width: 1200px) {
      .mobile-hide{
        display: none;
      }
      .mobile-hide-flex{
        display: none
      }
      .desktop-hide{
        display: block;
      }
      .desktop-hide-flex{
        display: flex;
      }
        .btn-get-started {
            padding: 1rem 2rem;
            font-size: 14px;
        }

        #desktop{
          display:none;
        }

        #mobile-view{
          display: flex;
        }
        .appMockup {
            display: none;
        }

        .wrap {
            display: flex;
            flex-wrap: wrap;
        }

        .wrap>div {
            flex-basis: 10%;
        }
        .bg-transparent-mobile{
          background-color: transparent;
        }
        .text-mobile>*{font-size: 0.6rem;}
        .text-mobile img{width: 35px;}
    }

    @media (max-width: 576px) {
        .btn-get-started {
            padding: 0.75rem 1.5rem;
            font-size: 12px;
        }
    }

    @media (max-width: 535px) {

        .wrap {
            flex-wrap: wrap !important;
        }

        .mt-2 {
            margin-top: 1rem !important;
        }

        .mb-3 {
            margin-bottom: 1rem !important;
        }

        .btn-get-started {
            width: 100% !important;
        }
    }

    @keyframes scroll-left {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-100%);
        }
    }
    #ex {
        text-align: center;
        background-color: rgb(9, 81, 146);
        background-attachment: fixed;
    }

    .contact-detail{
      height: 25px;
    }
    
    .contact-detail img{
      padding-inline: 0.2rem; 
      height: inherit;
    }

    .plus-icon:before {
      content: '+';
      cursor: pointer;
      margin-inline: 5px;
    }

    .minus-icon:before {
      content: '-';
      cursor: pointer;
      margin-inline: 5px;
    }

    #mobile{display:none}
   
  
  .bg-change{
    background-color: #095192;
    color: white;
  }

  .text-green{
    color: #01D28E;
  }

  .slider-btn{
    display: flex;
  }

  .item h4{
    color:#01D28E;
  }

  .title p{
    color:#bff3e2;
    font-size: 100px;
  }

  .slider-btn-item{
    background-color: #01D28E;
    height: 5px;
    width:7px;
    margin: 2px;
    border-radius: 50%;
    cursor: pointer;
  }

  .slider-btn-item.active{
    background-color: #01D28E;
    width: 20px;
    border-radius: 30%;
  }

  .height-full{
    height: 200px;
  }

  .height-full-100{
    height: 100%;
  }

  .title{
    height: 150px;
    padding: 50px 0;
  }

  .hc-offcanvas-nav.hc-nav-1 .nav-container{width: 100vw;}