@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,100;1,300;1,400;1,500&display=swap');

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all .2s linear;
    text-decoration: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --my-color: #5da2e6;
  }

html{
    font-size: 62.5%;
}

body{
    overflow-x: hidden;
    width: 100vw !important;
}

/* header */

.heading, .clients .section-header h2, .section-head h1, .testimonials .section-header h2, .section-head-1 h4{
    margin: 2rem;
    padding-top: 6rem;
    display: inline-block;
    font-size: 3.5rem;
    color: #000000;
    position: relative;
    letter-spacing: .2rem;
}

.heading::before, .heading::after, .clients .section-header h2::before, .clients .section-header h2::after, .section-head h1::before, .section-head h1::after, .testimonials .section-header h2::before, .testimonials .section-header h2::after, .section-head-1 h4::before, .section-head-1 h4::after{
    content: '';
    position: absolute;
    height: 2.5rem;
    width: 2.5rem;
    border-top: .4rem solid #000000;
    border-left: .4rem solid #000000;
}

.faq .heading::before, .faq .heading::after{
    border-top: .4rem solid #000000;
    border-left: .4rem solid #000000;
}

.heading::before, .clients .section-header h2::before, .section-head h1::before, .testimonials .section-header h2::before, .section-head-1 h4::before{
    top: 5.8rem;
    left: -2rem;
}

.heading::after, .clients .section-header h2::after, .section-head h1::after, .testimonials .section-header h2::after, .section-head-1 h4::after{
    bottom: -.5rem;
    right: -2rem;
    transform: rotate(180deg);
}

.row .btn{
    outline: none;
    border: none;
    border-radius: 5rem;
    background: white;
    border-style: groove;
    border-color: #4873a0;
    font-size: 1.5rem;
    cursor: pointer;
    height: 3.5rem;
    width: 15rem;
    box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
}

.row .btn:hover{
    letter-spacing: .1rem;
    opacity: .9;
    color: white;
    background: #4c6f94;
}

.header{
    display: flex;
    align-items: center;
    background-color: var(--my-color);
    justify-content: space-between;
    width: 100%;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    position: fixed;
}

.header .logo img{
    width: 170px;
    height: auto;
    top: 0;
    left: 0;
}

@media (max-width: 500px){
    .header .logo img{
        width: 100px;
        height: auto;
        top: 0;
        left: 0;
    }
}

.header .navbar{
    position: fixed;
    left: 35%;
}

.nav-button {
    height: 45px;
    width: 150px;
    background-color: transparent;
    border: 2px solid #ffffff; 
    color: white;
    cursor: pointer;
    text-align: left; 
    padding: 10px;
    border-radius: 20px;
    line-height: 20px;
    font-size: 2rem;
    left: 90%;
    position: absolute;
    text-decoration: none;
    transition: 
        background-color 0.3s, 
        width 0.3s, 
        border-color 0.3s, 
        transform 0.3s;
}

.nav-button:hover {
    background-color: white; 
    color: var(--my-color); 
    width: 180px;
    border: 2px solid #ffffff; 
    text-decoration: none;
}

.header .navbar ul{
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 0 !important;
}


.header .navbar ul li{
    margin: 0 1.5rem;
}

.header .navbar ul li a{
    font-size: 2rem;
    color: #fff;
}

.header .navbar ul li:nth-child(7) a {
    display: none;
}


.header .navbar ul li a:hover{
    text-decoration: underline;
}
.header .logo i{
    padding: 0.5rem;
}

.header .fa-bars{
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    display: none;
}

.header2{
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(204, 199, 199); /* Set the background color here */
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 10;
}

.header2 a {
    cursor: pointer;
}

.header2 .navbar ul{
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-right: 48px;
}

.header2 .navbar ul li{
    margin: 0 1.5rem;
}

.header2 .navbar ul li a{
    font-size: 2rem;
    color: black;
}

@media (max-width: 500px){
    .header2 .navbar ul li a{
        font-size: 1.7rem;
    }
}
    

.header2 .navbar ul li a:hover{
    text-decoration: underline;
}

.header2 .fa-bars{
    color: #000000;
    cursor: pointer;
    font-size: 3rem;
    display: none;
}

@media (max-width: 1800px){
    .nav-button {
        left: 80%;
    }
}


@media (max-width: 1500px){
    .header .navbar {
        left: 20%;
    }
    .nav-button {
        left: 75%;
    }
}

@media (max-width: 1150px){
    html{
        font-size: 50%;
    }
    .header .fa-bars{
        display: block;
        color: 	white;
        margin-right: 1rem;
    }
    .header2{
        top: 50px;
    }

    .header .fa-bars:hover{
        color: #ffffff;
    }

    .nav-button{
        display: none;
    }

    .header .navbar{
        position: fixed;
        top: -120%;
        left: 0;
        height: auto;
        width: 100%;
        background-color: rgb(255, 255, 255);
        z-index: 1000;
        border-top: 5px solid var(--my-color);
        border-bottom: 5px solid var(--my-color);
    }

    .header .navbar ul{
        height: 100%;
        width: 100%;
        flex-flow: column;
    }

    .header .navbar ul li{
        margin: 1rem 0;
    }

    .header .navbar ul li a{
        color:var(--my-color);
        font-size: 2.4rem;
    }

    .header .fa-times{
        transform: rotate(90deg);
    }

    .header .nav-toggle{
        top: 5.8rem;
    }

    .header .navbar ul li:nth-child(7) a {
        display:flex;
    }
}

/* end header */

/* footer */

.footer {
    position: relative;
    width: 100vw;
    height: auto;
    /*background: #5da2e6;*/
    background-color: #383535;
    height: 300px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

.footer-logo {
    width: 100px;
    position: absolute;
    top: 20px;
    left: 50px;
}

.cert-logo {
    width: 100px;
    position: absolute;
    top: 140px;
    left: 50px;
}

.qr-container {
    width: 160px;
    height: 160px;
    background-color: white; /* Light gray background for contrast */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px; /* Optional rounded corners */
    position: absolute;
    top: 20px;
    right: 50px;
}

.footer-qr {
    width: 100px;
    border-radius: 10px;
}

.qr-text {
    font-size: 1.5rem !important;
    color: #333 !important; /* Dark text color for better readability */
    text-align: center;
    font-weight: 400 !important;
}

.footer p {
    color: #ffffff;
    margin: 15px 0 10px 0;
    font-size: 1rem;
    font-weight: 300;
}

.terms-container {
    display: flex;
    gap: 20px; 
    justify-content: center;
    align-items: center; 
  }

  .terms {
    text-decoration: none;
    color: white;
    text-decoration-color: white;

  }

  .terms:hover {
    color: white;
    text-decoration: underline;
    
  }

.social-icon,
  .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
  }
  
  .social-icon__item,
  .menu__item {
    list-style: none;
    color: rgb(255, 255, 255);
  }
  
  .social-icon__link {
    font-size: 2rem;
    color: #ffffff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
  }
  .social-icon__link:hover {
    color: white;
    transform: translateY(-5px);
}

.menu__link {
    font-size: 1.7rem;
    color: #ffffff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
  }
  
  .menu__link:hover {
    opacity: 1;
    color: white;
    text-decoration: underline;
  }


@media (max-width: 768px) {
    .footer p{
        margin-right: 0;
    }
    .cert-logo {
        width: 50px;
        position: absolute;
        top: 80px;
        left: 10px;
    }
    .footer-logo {
        width: 50px;
        position: absolute;
        top: 10px;
        left: 10px;
    }
}
@media (max-width: 850px) {
    .footer-qr {
        display: none;
    }
    .qr-container {
        display: none;
    }
}

/* end footer */

/* account.html */


.home-account { 
    width: 100%;
    display: flex;
    flex-direction: row;
}

.rounded-box-account {
    flex: 1;
    box-sizing: border-box;
    color: white;
}

.left-box-account {
    margin-top: 200px;
    margin-left: 200px;
    background-color: white;
    width: 200px; /* Set your desired width */
    margin-bottom: 100px;
}

.right-box-account {
    margin-top: 200px;
    margin-left: 50px;;
    margin-right: 200px;
    background-color: white;
    align-items: center;
    width: 200px; /* Set your desired width */
}


@media (max-width: 1600px) {
    .home-account {
      flex-direction: column; /* Stack boxes vertically */
    }
    .left-box-account {
        margin-top: 150px;
        align-self: center;
        width: 400px;
        max-height: 750px;
        margin-left: 20px;
        margin-right: 20px;
    }
    .right-box-account {
        margin-top: 150px;
        align-self: center;
        width: 400px;
        max-height: 650px;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 150px;
    }
  }

  @media (max-width: 700px) {
    .right-box-account {
        margin-top: 50px;
        margin-bottom: 50px;
    }
  }

.home-account .text-column {
    width: 70%;
    padding: 20px;
}

.home-account img {
    margin-top: 10px;
    width: 200px;
    height: auto;
}

.home-account h3{
    color: #000000;
    font-size: 1.5rem;
    text-align: center;
    font-weight: normal;
}

.login-container {
    width: 300px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
    text-align: center;
}

.login-form-account {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group-account {
    margin-bottom: 15px;
}

.form-group-account label {
    margin-bottom: 1.7rem;
}

.form-group-account input {
    padding: 10px;
    font-size: 2rem;
    border: 1px solid #ccc;
    border-radius: 15px;
}

.login-button-account {
    background-color: white;
    color: var(--my-color);
    padding: 10px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 2rem;
}

.login-button-account:hover {
    color: #0030b5;
}

.home-account h1{
    font-size: 6rem;
    color: white;
    text-align: center;
}

.home-account h2{
    font-size: 1.8rem;
    color: white;
    font-weight: normal;
    text-align: center;
}

.home-account .container {
    display: flex;
    justify-content: center;
    height: 100%;
}

.home-account .blue-box {
    width: 1000px;
    height: auto;
    padding: 50px;
    border-radius: 0 45px 0 45px;
    background-color: #5da2e6;
    align-items: center;
}

.home-account-img{
    width: 200px;
    margin-left: 200px;
}

.expandable-box-container-account {
    cursor: pointer;
    justify-content: space-between;
    border-radius: 10px;
    padding: 15px;
}
.expanded-content-account {
    display: none; 
    padding: 10px; 
}

.expanded-content-account.active {
    display: block;
}


/* end account.html */

/* company.html */

.home-comp{
    width: 100vw;
    background-color: rgb(255, 255, 255);
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    align-items: center;
    padding: 0 1rem;
    position: relative;
    overflow: hidden !important;
    margin-top: 140px;
}

.styled-image-comp{
    width: 1500px;
    height:auto;
}

.blue-background {
    background-color: var(--my-color);
    color: white; /* Makes the text color white for better readability */
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.part {
    flex: 1;
    margin: 10px;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.part h2{
    font-size: 10rem;
}

.number-container {
    font-size: 10rem;
    text-align: center;
}

.number-container2 {
    font-size: 10rem;
    text-align: center;
}

.number-container3 {
    font-size: 10rem;
    text-align: center;
}

@keyframes count-up {
    0% {
        transform: scale(1); /* Initial scale */
        opacity: 0; /* Start with opacity 0 */
    }
    50% {
        transform: scale(1.2); /* Scale up halfway through */
        opacity: 1; /* Fade in */
    }
    100% {
        transform: scale(1); /* Return to normal scale */
    }
}

#number {
    animation: count-up 1s ease-in-out forwards; /* Animation duration and easing */
}

#number2 {
    animation: count-up 1s ease-in-out forwards; /* Animation duration and easing */
}

#number3 {
    animation: count-up 1s ease-in-out forwards; /* Animation duration and easing */
}

.part h3{
    font-size: 4rem;
}
.part h4{
    font-size: 3rem;
}

@media (max-width: 1100px) {
    .part {
        flex: 1 1 100%;
        min-width: calc(33.333% - 20px); /* Adjusts width to 33.333% minus margin */
        margin: 0px;
        padding: 0px;
    }
    .part h2{
        font-size: 6rem;
    }
    
    .part h3{
        font-size: 2rem;
    }
    .part h4{
        font-size: 1.7rem;
    }
}

.fixed-image {
    width: 400px; 
    height: auto; 
}

.text-container-comp {
    max-width: 1700px;
}

.text-container-comp h2 {
    font-size: 4rem;
}

.text-container-comp p {
    padding-left: 20px;
    font-size:1.7rem;
    color: #000000; 
    text-align: left;
}

.text-container-comp h5 {
    padding-left: 20px;
    font-size: 4rem;
    text-decoration: underline;
    color: #000000; 
    text-align: left;
    margin-bottom: 20px;
}
@media (max-width: 2000px) {
    .image-with-text-container-comp {
        padding-left: 100px;
        padding-right: 100px;
    }
    .fixed-image {
        width: 200px; 
        height: auto; 
        margin-top: 50px;
    }
    .text-container-comp {
        margin-top: 150px;
        max-width: 2000px;
    }
    .styled-image-comp{
        width:1000px;
        height:auto;
    }
    
}

@media (max-width: 1400px) {
    .text-container-comp p {
        font-size:1.6rem;
        color: #000000; 
        text-align: left;
    }
    
    .text-container-comp h5 {
        font-size: 4.5rem;
        text-decoration: underline;
        color: #000000; 
        text-align: left;
    }
    .styled-image-comp{
        width:500px;
        height:auto;
    }
    .image-with-text-container-comp {
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 10px;
        flex-direction: column; /* Stack items vertically for small screens */
        align-items: flex-start; /* Align items to the start of the container */
        text-align: center; /* Center text within the container */
        left: 50%; /* Center the container horizontally */
    }
    .fixed-image {
        width: 0px; 
        height: auto; 
        margin-top: 0px;
        margin-right: 0px; /* Remove right margin on small screens */
        margin-left: 0px; /* Remove right margin on small screens */
        margin-bottom: 10px; /* Add bottom margin to separate image and text */
    }
    .text-container-comp {
        margin-right: 0px; /* Remove right margin on small screens */
        margin-left: 0px; /* Remove right margin on small screens */
        margin-top: 0px;
        max-width: 100%; /* Take full width on small screens */
    }
}

@media (max-width: 700px) {
    .styled-image-comp{
        width:330px;
        height:auto;
    }
    .image-with-text-container-comp {
        padding-left: 0px;
        padding-right: 0px;
    }
    .text-container-comp p {
        padding-left: 10px;
        padding-right: 10px;
    }
    .text-container-comp h5 {
        font-size: 3rem;
    }
}

.home-comp .text-column {
    width: 70%;
    padding: 20px;
}
.home-comp h1{
    color: #000000;
    font-size: 5.5rem;
    margin-top: 100px;
}

.home-comp h2{
    color: #000000;
    font-size: 2rem;
    text-align: left;
    margin-left: 400px;
    margin-right: 400px;
    margin-bottom: 120px;
}

.hidden {
    display: none;
}

.home-comp .wave{
    position: absolute;
    bottom: -.5rem;
    left: 0;
    height: 11rem;
    width: 100%;
    background: url(/v2/img/waves/wave2.png);
    background-size: 100rem 11rem;
    animation: waves 8s linear infinite;
    background-repeat: repeat-x;
}

.home-comp .wave2{
    animation-direction: reverse;
    animation-duration: 6s;
    opacity: .2;
}

.home-comp .wave3{
    animation-duration: 4s;
    opacity: .5;
}

@keyframes waves{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 100rem;
    }
}

.image-card{
    width: 500px;
}

@media (max-width: 768px) {
    .image-card{
        width: 300px;
    }
}

.grid-item {
    font-size: 1.7rem;
    border: 1px solid #ddd; 
    padding: 5px;
    text-align: center;
}

.button-comp img {
    width: 20px; 
    height: 20px; 
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    grid-gap: 1px;
    
}

/* end company.html */

/* contact.html */

.home-cont {
    /*background-image: url(/v2/img/backgrounds/build.webp);*/
    background-color: white;
    background-attachment: fixed;
    background-size: cover;
    display: flex; /* Use flexbox */
    justify-content: center;
    align-items: center; /* Center vertically */
    text-align: center;
    overflow: hidden;
    flex-direction: column;
}

.home-cont2 {
    background-color: #383535;
    background-attachment: fixed;
    background-size: cover;
    display: flex; /* Use flexbox */
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center vertically */
    text-align: center;
    overflow: hidden;
    height: 400px;
    width: 100%;
}

.home-cont3 {
    background-color: var(--my-color);
    background-attachment: fixed;
    background-size: cover;
    display: flex; /* Use flexbox */
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center vertically */
    text-align: center;
    overflow: hidden;
    height: 300px;
    width: 100%;
}

.home-cont h1{
    color: #000000;
    font-size: 2.5rem;
    font-weight: normal;
}

.home-cont h2{
    color: #666;
    font-size: 1.7rem;
    font-weight: normal;
}

.home-cont h3{
    color: #666;
    font-size: 1.7rem;
    font-weight: normal;
}

.home-cont h4{
    color: #666;
    font-size: 3rem;
    font-weight: normal;
}


.home-cont2 h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: normal;
}

.home-cont2 h2 {
    color: var(--my-color);
    font-size: 4rem;
    font-weight: normal;
}

.office-icon {
    font-size: 6rem; 
    margin-bottom: 20px;
}

.icon-cont {
    font-size: 4rem; /* Change icon size */
    color: var(--my-color); /* Change icon color */
    margin-top: 20px;
    margin-left: 20px;
}

.icon-cont2 {
    font-size: 4rem !important; 
    color: black; /* Change icon color */
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.icon-cont2:hover {
    color: var(--my-color);
}

.icon-cont2.rotate {
    rotate: 90deg;
    color: var(--my-color);
}

.text-container-cont {
    margin-left: 50px;
    max-width: 600px;
}

@media (max-width: 1050px){
    .text-container-cont {
        margin-left: 50px;
        width: 300px;
    }
}

@media (max-width:550px){
    .text-container-cont {
        margin-left: 50px;
        width: 220px;
    }
}


.expandable-box-container-cont {
    background-color: rgba(255, 255, 255, 1);
    border: 2px solid #383535;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: left;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    justify-content: space-between;
    margin-left: 20px;
    margin-right: 50px;
   }

.expanded-content-cont {
display: none; /* Hide expanded content by default */
padding: 10px; /* Add padding for expanded content */
max-width: 950px;
}

.expanded-content-cont.active {
    display: block; /* Show expanded content when active class is applied */
}

.show-more-cont{
    width: 50px;
    height: auto;
}

.rounded-box-cont {
    background-color: rgba(255, 255, 255, 1);
    border: 2px solid #383535;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    width: 800px;
    height: 160px;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: left;
    display: flex;
    flex-direction: row;
}


.img-cont{
    margin-top: 100px;
    width: 150px;
    height: auto;
}

.home-cont h3{
    color: #000000;
    font-size: 1.5rem;
    text-align: center;
    font-weight: normal;
}

.home-cont3 h1{
    color: #000000;
    font-size: 2rem;
    text-align: center;
    font-weight: normal;
}

.home-cont3 h2{
    color: #000000;
    font-size: 1.7rem;
    text-align: center;
    font-weight: normal;
}



/* end contact.html */

/* error.html */

.home-error{
    width: 100vw;
    height: 1000px;
    background-color: white;
    display: flex;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    align-items: center;
    padding: 0 1rem;
    position: relative;
    overflow: hidden !important;
}

.rounded-box-error {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin-top: 100px;
    margin-bottom: 200px;
    padding: 20px;
    text-align: center;
    width: 1000px;
}

.rounded-box2-error {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 10px;
    margin-top: 100px;
    margin-bottom: 100px;
    padding: 10px;
    text-align: center;
}

.rounded-box3-error {
    width: 350px;
    height: 5px;
    background-color: #45ACFC;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rounded-box4-error {
  width: 350px;
  height: 300px;
  background-color: #ffffff;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-error h5 {
    width: 350px;
    font-size: 3.5rem;
    color: #000000;
    margin: 0;
    font-family: 'Consolas', monospace;
}
.button-error{
    width: 350px;
    background-color: rgb(178, 174, 174, 0.6);
    border: transparent;
    margin: auto;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.home-error .text-column {
    width: 70%;
    padding: 20px;
}
.home-error h1{
    color: #000000;
    font-size: 5.5rem;
}

.home-error h2{
    color: #000000;
    font-size: 1.5rem;
    text-align: center;
}
.home-error h3{
    color: #000000;
    font-size: 3rem;
    text-align: center;
    font-weight: normal;
}
@media (max-width: 1050px){
    .rounded-box3-error {
        width: 280px;
    }
    .button-error{
        width: 280px;
    }
    .home-error h5 {
        width: 280px;
    }
}

/** end error.html */

/** install.html */

.home-inst{
    width: 100vw;
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    align-items: center;
    padding: 0 1rem;
    position: relative;
    overflow: hidden !important;
}

.rounded-box-inst {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin-top: 100px;
    margin-bottom: 200px;
    padding: 20px;
    text-align: center;
    width: 1000px;
}

.rounded-box7-inst {
    width: 500px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hidden-section {
    opacity: 0;
    transition: opacity 0.5s ease;  
}
.show {
    opacity: 1;
}


@media (max-width: 1100px) {
    .rounded-box-inst {
        width: 700px;
    }
    .rounded-box7-inst{
        width: 650px;
    }
}

@media (max-width: 800px) {
    .rounded-box-inst {
        width: 400px;
    }
    .rounded-box7-inst{
        width: 380px;
    }
}
@media (max-width: 1400px) {
    .home-inst{
        min-height: 140vh;
    }
}
.home-inst .text-column {
    width: 70%;
    padding: 20px;
}
.home-inst h1{
    color: #000000;
    font-size: 5.5rem;
}

.home-inst h2{
    color: #000000;
    font-size: 1.5rem;
    text-align: left;
}
.home-inst h3{
    color: #000000;
    font-size: 3rem;
    text-align: center;
    font-weight: normal;
}

.text-container-inst h5 {
    padding-top: 20px;
    padding-left: 50px;
    font-size: 5.5rem;
    color: #000000; 
    text-align: left;
    font-weight: normal;
}

.image-with-text-container-inst {
    padding-left: 200px;
    padding-right: 200px;
    padding-top: 30px;
    top: 30%;
    left: 30%;
    display: flex;
    align-items: center;
}

.text-container-inst p {
    padding-left: 50px;
    padding-right: 50px;
    font-size: 1.8rem;
    color: #000000; 
    text-align: left;
}

.fixed-image-inst{
    width: 600px;
    height: auto;
    padding-top: 100px;
}
@media (max-width: 1550px) {
    .fixed-image-inst{
        width: 300px;
        height: auto;
        padding-top: 0px;
    }
    .image-with-text-container-inst {
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 50px;
    }
}
@media (max-width: 1000px) {
    .fixed-image-inst{
        display: none;
    }
    .image-with-text-container-inst {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 10px;
    }
}

.text-container-inst2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left; /* Center align the text */
}

.transparent-box-inst {
    background-color: transparent; /* RGBA color with alpha value (0.5 for 50% opacity) */
  }

.text-container-inst2 h5 {
    padding-top: 20px;
    padding-left: 50px;
    font-size: 5.5rem;
    color: #000000; 
    text-align: left;
    font-weight: normal;
}

.text-container-inst2 p {
    padding-left: 50px;
    padding-right: 50px;
    font-size: 1.8rem;
    color: #000000; 
    text-align: left;
}

@media (max-width: 700px) {
    .text-container-inst p,
    .text-container-inst2 p {
        padding-left: 10px;
        padding-right: 10px;
    }
    .text-container-inst2 h5,
    .text-container-inst h5{
        font-size: 3rem;
    }
}



/* end install.html */

/* services.html */

.home-serv{
    background-color: #f7f9fb;
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    align-items: center;
    overflow: hidden !important;
    height: 850px;
    width: 100vw;
}

.home-serv2{
    background-color: rgb(148, 211, 233);
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    align-items: center;
    overflow: hidden;
    color: white;
    background-attachment: fixed;
    width: 100vw;
    height: auto;
}

.home-serv3{
    background-color: #ffffff;
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    align-items: center;
    position: relative;
    padding-bottom: 30px;
}

.home-serv4{
    background-color: #000000eb;
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
    background-attachment: fixed;
    height: 830px;
    width: 100vw;
}

.home-serv5{
    background-image: url(/v2/img/backgrounds/road.webp);
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
    height: 600px;
    width: 100vw;
}

.home-serv6{
    background-color: #ffffff;
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    align-items: center;
    position: relative;
    padding-bottom: 30px;
    width: 100vw;
    height: auto;
    overflow: hidden;
}

.home-serv7{
    background-color: #ffffff;
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    align-items: center;
    position: relative;
    padding-bottom: 30px;
    width: 100vw;
    height: auto;
    overflow: hidden;
}


.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq {
    margin: 10px 0;
    overflow: hidden;
    border-top: 1px solid #5d5b5b;
    width: 800px;
}

.question {
    padding-top: 15px;
    padding-bottom: 15px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.show-icon {
    width: 50px; /* Adjust the size as needed */
    height: auto; /* Adjust the size as needed */
    position: absolute;
    right: 10px;
}

.show-more {
    opacity: 1;
}

.show-less {
    opacity: 0;
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 15px;
    padding-left: 0px;
}

.answer.open {
    max-height: 200px; /* Set this to a value large enough to display your largest answer */
    padding: 15px;
    padding-left: 0px;
}

@media (max-width: 850px) {
    .faq-container {
        max-width: 600px;
    }
    
    .faq {
        width: 600px;
    }
}

@media (max-width: 650px) {
    .faq-container {
        max-width: 350px;
    }
    
    .faq {
        width: 350px;
    }
}



.image-with-text-container-serv {
    display: flex;
    align-items: center;
}

.serv-blue-box {
    width: 60vw;
    height: 400px;
    background-color: var(--my-color);
    border-radius: 0 0 80px 0;
    color: white; /* Set text color to white */
    display: flex;
    flex-direction: column; /* Arrange children vertically */
    justify-content: center;
    align-items: center;
    margin-right: 500px !important;
    position: absolute;
    left: 0;
    top: 0;
}

.serv-black-box {
    width: 1100px;
    height: 400px;
    background-color: #000304;
    border-radius: 0 0 80px 0;
    color: white; /* Set text color to white */
    display: flex;
    flex-direction: column; /* Arrange children vertically */
    justify-content: center;
    align-items: center;
    margin-right: 500px !important;
    position: absolute;
    left: 0;
    top: -1000;
}

.serv-blue-box2 {
    width: 60vw;
    height: 350px;
    background-color: var(--my-color);
    border-radius: 80px 0 0 0;
    position: absolute;
    right: 0;
    color: white; /* Set text color to white */
    display: flex;
    flex-direction: column; /* Arrange children vertically */
    justify-content: center;
    align-items: center;
    margin-top: 500px;
    padding: 30px;
}

.serv-blue-box3 {
    width: 85vw;
    height: 100px;
    background-color: var(--my-color);
    border-radius: 80px 0 0 80px;
    color: white; /* Set text color to white */
    display: flex;
    flex-direction: column; /* Arrange children vertically */
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    padding: 30px;
    position: absolute;
    top:0;
    right:0;
    transition: width 0.5s; 
}

.serv-blue-box4 {
    width: 95vw;
    height: 850px;
    background-color: var(--my-color);
    border-radius: 0 80px 90px 0;
    color: white; /* Set text color to white */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    padding: 30px;
    position: absolute;
    top: 150px;
    left:0;
    transition: width 0.5s; 
}

.image-container-serv {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    justify-content: center;
}

.serv-white-box {
    width: 20px;
    height: 350px;
    background-color: #f7f9fb;
    margin-top: 450px; 
    position: absolute;
    top: 0;
    left: 590px;
    z-index: 2;
}

.video-container {
    width: 500px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #f7f9fb;
    margin-top: 400px; 
    position: absolute;
    left: 100px;
}

video {
    width: 100%; 
    height: auto;
    pointer-events: none;
    object-fit: cover; 
}


.slider-container1 {
    position: relative;
    width: 100%;
    height: 570px;
    max-width: 60vw; /* Adjust as needed */
    margin-top: 450px;
    background-color: white;
    overflow: hidden; /* Hide overflow to show only one section at a time */
    border-radius: 80px 80px 80px 80px;
}

.slider1 {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide1 {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    align-items: center;
}

.slider2 {
    position: relative;
    width: 80%;
    max-width: 1200px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #ffffff;
    margin-top: 100px;
    width: 1200px;
    height: 400px;
}

.slides2 {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide2 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 100%;
    box-sizing: border-box;
}

.slide2 img {
    width: 300px;
    height: auto;
    padding: 30px;
    box-sizing: border-box;
}

.home-serv9 {
    background-color: #f8f9fa;
    width: 100vw;
    text-align: center; 
    justify-content: center;
    align-items: center;
}

.home-serv9 h1{
    color: #333;
    font-size: 2rem;
    text-align: left;
    font-weight: 500;
}

.home-serv9 h1.gr{
    color: #333;
    font-size: 2rem;
    text-align: left;
    font-weight: normal;
}

.home-serv9 h2{
    color: #666;
    font-weight: normal;
    font-size: 1.8rem;
}

.gray-box-container {
    display: flex;
    justify-content: center; /* Center aligns items horizontally */
    align-items: center; /* Center aligns items vertically */
}

.gray-box {
    margin: 20px;
    position: relative;
    width: 600px; 
    height: 600px;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, .05);
    display: block;
}

.gray-box img{
    height: 60px;
    width: auto;
}

.gray-box.sub {
    margin: 0;
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    width: 600px; 
    height: 800px;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, .051);
    display: block;
}

.best-selling-box {
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    width: 600px; 
    height: 50px;
    background-color: rgba(93,162,230,255);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px 10px 0 0 ;
    box-shadow: 0 1px 10px rgba(0, 0, 0, .051);
    display: block;
    padding: 10px;
}

.hove-serv2-btn {
    display: inline-block;
    padding: 10px 20px; 
    font-size: 2.5rem; 
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    color: #333;
    border-radius: 10px;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.hove-serv2-btn.gr {
    background-color: rgba(174,236,170,255);
}

.hove-serv2-btn.bl {
    background-color: rgba(93,162,230,255);
}

.hove-serv2-btn.gr:hover {
    background-color: rgba(174,236,170,0.7);
}

.hove-serv2-btn.bl:hover {
    background-color: rgba(93,162,230,0.7);
}


.icon-container {
    display: flex;
    margin-bottom: 20px;
}

.icon {
    margin-right: 10px;
    font-size: 3rem;
    color: #333; 
}

.os-img {
    width: 60px !important;
    height: auto !important;
}

.os-container {
    margin-top: 20px;
    display: flex;
    gap: 20px; 
}

.box-device-img {
    margin-top: 20px; 
    height: 250px !important;
    width: auto !important;
}

.img-serv{
    width: 80px;
    height: auto;
    border-radius: 10px;
    position: absolute;
    top: 20px;
    left: 20px;

}

.home-serv2-container {
    width: 450px;
    text-align: left;
    padding-left: 30px;
}




@media (max-width: 1350px) {
    .gray-box-container {
        display: flex;
        flex-direction: column;
    }
    .gray-box.white{
        display: none;
    }
    .gray-box.sub {
        margin-bottom: 10px;
    }
}

@media (max-width: 750px) {
    .gray-box  {
        width: 280px; 
        height: 300px;
    }
    .gray-box.sub  {
        width: 280px; 
        max-height: 720px;
    }
    .home-serv2-container {
        width: 200px;
        padding-left: 10px;
    }
    .img-serv {
        top: 10px;
        left: 10px;
    }
    .best-selling-box {
        width: 280px; 
    }
    .box-device-img {
        display: none;
    }
    .hove-serv2-btn.gr, .hove-serv2-btn.bl{
        position: absolute;
        bottom: 5px;
    }

}

.button2 {
    position: absolute;
    top: 80%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    color: grey;
    font-size: 4rem;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
    outline: none !important;
}

.button2:hover {
    color: rgb(0, 0, 0);
}

.button2.prev {
    left: 40px;
}

.button2.next {
    left: 100px;
}


.nav-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.arrow {
    background-color: rgba(0, 0, 0, 0);
    color: var();
    padding: 10px;
    cursor: pointer;
    font-size: 6rem;
}


.fixed-image-serv {
    max-width: 400px;
    height: auto;
    position: absolute;
    top: 200px; /* Adjust this value as needed */
    left:70vw;
}

.fixed-image-serv2 {
    max-width: 50px;
    height: auto;
    position: absolute;
    top: 710px; /* Adjust this value as needed */
    left: 260px;
    z-index: 99;
}

.fixed-image-serv3 {
    max-width: 600px;
    height: auto;
    margin-top: 30px;
}

.fixed-image-serv4 {
    max-width: 700px;
    height: auto;
    margin-top: 30px;
}

.fixed-image-serv5 {
    max-width: 200px;
    height: auto;
    margin-top: 30px;
}

.fixed-image-serv6 {
    width: 200px;
    height: auto;
    margin-top: 30px;
}

.fixed-image-serv7 {
    width: 250px;
    height: auto;
    margin-top: 60px;
}

.fixed-image-serv8 {
    width: 50px;
    height: auto;
    margin-top: 0px;
}

.flex-container-serv {
    display: flex;
    align-items: center; /* Align items vertically center */
    justify-content: center; /* Center items horizontally */
    z-index: 999;
}

.stock-flex-container {
    display: flex;
    justify-content: space-around; /* Distributes space evenly */
    align-items: center;
    margin: 20px; /* Adds some margin around the flex container */

}

.stock-image-container {
    width: 400px; /* Adjust the width as needed */
    height: 300px; /* Adjust the height as needed */
    overflow: hidden; /* Hide any overflow to maintain rounded corners */
    border-radius: 20px; /* Set the desired border radius */
    background-color: white;
    margin: 20px;
}


@media (max-width: 1700px) {
    .fixed-image-serv {
        top: 450px; /* Adjust this value as needed */
        left: 600px; /* Position the image at the right edge */
    }
    .serv-blue-box2 {
        margin-top: 700px;
        width: 80vw;
    }
    .serv-blue-box {
        width: 70vw;
    }
    .home-serv{
        height: 1050px;
    }
    .video-container,.serv-white-box,.fixed-image-serv2{
        display: none;
    }
}
@media (max-width: 1200px) {
    .fixed-image-serv {
        display: none;
    }
    .serv-blue-box2 {
        margin-top: 350px;
        width: 100vw;
    }
    .serv-blue-box {
        width: 100vw;
    }
    .home-serv{
        background-color: var(--my-color);
    }
    .home-serv3{
        background-color: var(--my-color);
    }
    .serv-blue-box4 {
        top: 150px;
    }
    .slider-container{
        margin-top: 600px;
        border-radius: 10px;
        max-width: 80vw;
        height: 350px;
    }
    .image-container-serv {
        flex-direction: column;
    }
    .fixed-image-serv3, .fixed-image-serv4, .fixed-image-serv5 {
        display: none;
    }
    .fixed-image-serv2{
        display: inline;
        max-width: 100px;
        top: 310px; /* Adjust this value as needed */
        left: 50%; 
        transform: translateX(-50%);
    }
}

.text-container-serv h2 {
    font-size: 5.5rem;
}

.text-container-serv p {
    padding-left: 50px;
    padding-right: 50px;
    font-size:1.7rem;
    color: #000000; 
    text-align: left;
}

.text-container-serv h3 {
    font-size:1.7rem;
    color: #000000; 
    text-align: left;
    font-weight: normal;
    margin-left: 35px;
}

.text-container-serv h5 {
    padding-top: 20px;
    padding-left: 50px;
    font-size: 4rem;
    color: #000000; 
    text-align: left;
    font-weight: normal;
}

.stock-img {
    max-width: 500px;
    margin-top: 50px;
}

@media (max-width: 1400px) {
    .text-container-serv p {
        font-size:1.6rem;
        color: #000000; 
        text-align: left;
    }
    
    .text-container-serv h5 {
        font-size: 4.5rem;
        text-decoration: underline;
        color: #000000; 
        text-align: left;
    }
    .image-with-text-container-serv {
        padding-left: 20px;
        padding-right: 20px;
        width: 80%;
        padding-bottom: 10px;
        flex-direction: column;
        align-items: flex-start;
        text-align: center; 
        left: 50%; 
    }
    .text-container-serv {
        margin-right: 0px;
        margin-left: 0px; 
        margin-top: 0px;
        max-width: 100%;
    }

    .stock-img {
        margin-top: 80px;
        max-width: 200px;
    }
}
@media (max-width: 800px) {
    .image-with-text-container-serv {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
    }
    .stock-img {
        max-width: 150px;
    }
}

@media (max-width: 800px) {
    .text-container-serv h5 {
        font-size: 3rem;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 0px;
        padding-right: 0px;
    }
    .text-container-serv p {
        padding-left: 0px;
        padding-right: 0px;
    }
    .text-container-serv h3 {
        margin-left: 15px;
    }
}

.grid-container-serv {
    display: grid;
    grid-template-columns: minmax(500px, auto) repeat(2, minmax(300px, 1fr));
    grid-template-rows: 160px auto auto;
    grid-auto-rows: 80px;
    justify-content: center;
  }

.grid-item-serv {
    background-color: #000000e3;
    padding: 20px;
    border: 2px solid rgb(255, 255, 255);
    font-size: 2rem;
    text-align: center; 
    font-weight: normal;
    min-width: 100px;
}

.grid-item-serv2 {
    background-color: #000000e3;
    padding: 20px;
    border: 2px solid rgb(255, 255, 255);
    font-size: 3rem;
    text-align: center; 
    font-weight: normal;
    min-width: 100px;
}

@media (max-width: 1200px){
    .grid-container-serv {
        grid-template-columns: minmax(300px, auto) repeat(2, minmax(100px, 1fr));
        grid-template-rows: 160px auto auto;
      }
}

@media (max-width: 800px){
    .grid-container-serv {
        grid-template-columns: minmax(200px, auto) repeat(2, minmax(100px, 1fr));
        grid-template-rows: 80px auto auto;
        margin-left: 0px;
      }
      .grid-item-serv {
        padding-left: 0px;
        padding-right: 0px;
        font-size: 1.5rem;
      }
      .grid-item-serv2 {
        padding-left: 0px;
        padding-right: 0px;
        font-size: 1.8rem;
      }
}

@media (max-width: 480px){
    .grid-container-serv {
        grid-template-columns: minmax(120px, auto) repeat(2, minmax(120px, 1fr));
        grid-template-rows: 80px auto auto;
      }
}


.home-serv .text-column {
    width: 70%;
    padding: 20px;
}
.home-serv h1{
    color: #000000;
    font-size: 5.5rem;
    margin-top: 100px;
}

.home-serv h2{
    color: #ffffff;
    font-size: 6rem;
    text-align: left;
}

.home-serv2 h2{
    color: #666;
    font-weight: normal;
    font-size: 1.8rem;
    margin-top: 60px;
}

.home-serv2 h3{
    color: #000000;
    font-weight: 600;
    font-size: 2.5rem;
}

.gray-line {
    width: 100%;
    height: 1px; 
    background-color: lightgray; 
    margin-top: 10px;
    margin-bottom: 10px;
}

.home-serv2 h4{
    color: #666;
    font-weight: bold;
    font-size: 1.8rem;
}

.home-serv3 h2{
    color: #ffffff;
    font-size: 6rem;
    text-align: left;
}

.home-serv3 h3{
    color: #ffffff;
    font-size: 2rem;
    text-align: left;
}

.home-serv3 h4{
    color: #ffffff;
    font-size: 6rem;
    text-align: left;
    position: absolute;
    top: 30px;
    padding: 30px;
}

.home-serv3 h5{
    font-size: 2rem;
    color: black;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
}

.home-serv3 h5:hover{
    text-decoration: underline;
}


.home-serv h3{
    color: #ffffff;
    font-size: 2rem;
    text-align: left;
}

.home-serv4 h2{
    color: #ffffff;
    font-size: 6rem;
    text-align: left;
    position: absolute;
    top: 50px;
}

.home-serv4 h3{
    color: #ffffff;
    font-size: 2rem;
    text-align: left;
}

.button-serv {
    background-color: #ffffff;
    border: 2px solid #ffffff; 
    margin-right: 830px;
    color: black; 
    text-align: left; 
    padding: 10px;
    cursor: pointer; 
    border-radius: 30px; 
    width: 200px;
    height: 80px;
    position: absolute;
    top: 650px;
    transform: translateX(50%);
    transition: 
        background-color 0.3s, 
        width 0.3s, 
        border-color 0.3s, 
        transform 0.3s;
}

.button-serv:hover {
    background-color: transparent; 
    color: white; 
    width: 250px;
}

.button-serv .default-text,
.button-serv .hover-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    transition: opacity 0.3s ease;
    padding: 10px;
}

.button-serv .hover-text {
    opacity: 0; /* Initially hidden */
}

.button-serv:hover .default-text {
    opacity: 0; /* Hide default text on hover */
}

.button-serv:hover .hover-text {
    opacity: 1; /* Show hover text on hover */
}

#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #5da2e6;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    padding: 10px;
    z-index: 9;
    cursor: pointer;
}

#backToTopBtn ion-icon {
    font-size: 3em;
}

#backToTopBtn ion-icon:hover {
    color: black;
}

@media (max-width: 900px) {
    .home-serv4{
        height: 950px;
    }
    .stock-flex-container {
        padding-top: 100px;
        display: flex;
        justify-content: space-around;
        flex-direction: column;
        align-items: center;
        margin: 20px; 
    }
    .stock-image-container {
        width: 300px; 
        height: 200px;
        overflow: hidden;
        border-radius: 20px;
        background-color: white;
        margin: 20px;
        padding: 10px;
    }
    .fixed-image-serv6 {
        width: 150px;
        height: auto;
        margin-top: 10px;
    }
    .fixed-image-serv7 {
        width: 180px;
        height: auto;
        margin-top: 30px;
    }
    .button-serv {
        margin-right: 200px;
        width: 200px;
        height: 80px;
        position: absolute;
        top: 830px;
    }
    .home-serv4 h2{
        top: 0px;
    }
    
}

.try{
    width: 100vw;
    height: auto;
    display: flex;
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 10rem;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
}


.try h2{
    color: #000000;
    font-size: 1.4rem;
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
}

.try h4{
    color: #000000;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 4rem;
}


@media (max-width: 700px){
    .try h4{
        color: #000000;
        margin-top: 20px;
        font-size: 3rem;
    }
    .home a{
        margin-bottom: 10px;
        margin-top: 10px;
    }
    
}

.try .row{
    line-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 4rem;
    position: relative;
}

.try .row .content{
    text-align: center;
}

.try .row .content h5{
    font-size: 4rem;
    color: black;

}
.try .row .content h6{
    text-align: center;
    font-size: 2rem;
    color: black;
}

.try .row .content p{
    font-size: 2rem;
    color: #333;
    padding: 1rem 0;
}

.try-btn-container {
    width: 700px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 45px;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}
.gallery-img {
    max-width: 1200px;
    height: auto;
    transition: transform 0.3s ease-in-out;
    border-radius: 5px;
}

.button3 {
    padding: 10px;
    margin: 5px;
    font-size: 1.7rem;
    background-color: transparent;
    color: rgb(0, 0, 0);
    cursor: pointer;
    border: none !important;
    outline: none !important;
}

.button3:hover {
    color: #5da2e6;
    text-decoration: underline;
}

@media (max-width: 600px){
    .try-btn-container {
        flex-direction: column;
    }
    .button3 {
        margin: 0;
    }
}

.rounded-box8 {
    width: 700px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 45px;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}

.rounded-box-try {
    width: 700px;
    height: 200px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: center;
    background-color: transparent;
}

.rounded-box-try2 {
    width: 250px;
    height: 180px;
    background-color: rgb(255, 255, 255);
    margin-left: 50px;
    margin-right: 50px;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, .05);
}

.content-inner {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 35px;
    margin-left: 50px;
}

.app-img{
    width: 45px;
    height: auto;
    border-radius: 10px;
}

.app-img2{
    width: 40px;
    height: auto;
}

@media (max-width: 1050px){
    .try{
        min-height: 38vh;
        width: 100vw;
        margin-top: -3rem;
        margin-bottom: -2rem;
        top: -2rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        line-height: 6rem;
    }
    
    .try .row{
        line-height: 2rem;
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 0 4rem;
    }
    
    .try .row .content{
        text-align: center;
    }
    
    .try .row .content h3{
        font-size: 1.7rem;
        color: var(--color);
        font-weight: normal;
    }
    
    .try .row .content p{
        font-size: 1.3rem;
        color: #333;
        padding: 1rem 0;
    } 
}

@media (max-width: 1200px) {
    .gallery-img {
        max-width: 800px;
        height: auto;
        transition: transform 0.3s ease-in-out;
        border-radius: 5px;
    }
    .rounded-box8 {
        width: 400px;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 45px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .rounded-box-try2 {
        width: 220px;
        height: 150px;
        background-color: transparent;
        border-radius: 10px;
        box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1);
        margin-left: 30px;
        margin-right: 30px;
    }
}

@media (max-width: 900px) {
    .gallery-img {
        max-width: 600px;
        border-radius: 3px;
        height: auto;
    }
}
@media (max-width: 700px) {
    .gallery-img {
        max-width: 300px;
        border-radius: 1px;
        height: auto;
    }
}

@media (max-width: 1050px) {
    .content-inner {
        width: 100%;
        display: flex;
        align-items: center;
        margin-top: 10px;
        margin-left: 20px;
    }
    .rounded-box-try2 {
        width: 180px;
        height: 110px;
        margin-left: 5px;
        margin-right: 5px;
    }
}

/* end services.html */

/* start clients.html */

.clients{
    width: 100vw;
    background: linear-gradient(to bottom, #ffffff 60%, var(--my-color));
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    align-items: center;
    position: relative;
    margin-top: 140px;
}

.clients h1{
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    font-weight: normal!important;
}

.clients h2{
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: normal!important;
}

.clients h3{
    font-size: 2.5rem;
    text-align: left;
}

.clients .box {
    width: 500px; 
    height: 250px; 
    background-color: white;
    border-radius: 20px; 
    padding: 20px;
    text-align: center; 
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1);
    align-items: center;
    display: flex;
    border-top: 3px solid black;
    border-left: 3px solid black;
    margin: 25px;
}

.clients .box2 {
    width: 650px; 
    align-items: left;
    display: flex;
    flex-direction: column; 
    text-align: left;
}

.clients .box3 {
    background-color: white;
    max-width: 1600px; 
    align-items: center;
    text-align: left;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 20px; 
    margin-left: 20px;
    margin-right: 20px;
    border-top: 3px solid var(--my-color);
    border-left: 3px solid var(--my-color);
}

.clients .outer-box {
    display: flex; 
}

@media (max-width: 1600px) {
    .outer-box {
      flex-direction: column; 
    }
}

.client-img{
    width: 250px;
    height: auto;
}

@media (max-width: 650px) {
    .client-img{
        width: 100px;
    }
    .clients .box {
        width: 320px; 
        height: 220px; 
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .clients{
        margin-top: 50px;
    }
}

.clients h2 a {
    margin-left: 20px;
    color: black; 
    font-weight: normal!important;
}

.clients h2 a:hover {
    color: black; 
}


/* end clients.html */

/* start education.html */

.form-container-ed {
    background-color: #fff;
    padding: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 500px;
}
.form-container-ed h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}
.form-group-ed {
    margin-bottom: 15px;
}
.form-group-ed label {
    display: block;
    margin-bottom: 5px;
    font-size: 2rem;
}
.form-group-ed input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    font-size: 2rem;
}

.form-group-ed input, .form-group-ed select {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    font-size: 2rem;
}

.form-group-ed button {
    background-color: #5cb85c;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
    font-size: 2rem;
    margin-top: 20px;
}
.form-group-ed button:hover {
    background-color: #4cae4c;
}

.store-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
    text-align: center;
}

.store-container-box {
    border: 2px solid var(--my-color);
    border-radius: 20px;
    padding: 20px;
}

.store-container h1 {
    margin: 0;
    font-size: 3rem;
}

.store-container p {
    margin: 0;
    font-size: 1.7rem;
}