/********** Template CSS **********/
:root {
    --primary: #614A7A;
    --secondary: #614A7A;
    --light: #F7F7F7;
    --dark: #614A7A;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 500 !important;
    color: var(--dark);
}

@media (max-width:500px) {
    .back-to-top {
        position: fixed;
        display: none;
        right: 30px;
        bottom: 10px;
        z-index: 99;
    }
    
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn-secondary, .btn-outline-secondary:hover {
    /* color: var(--dark); */
    color: var(--light);
    background-color: orange;
}
.btn {
    background-color: var(--dark);
    color: var(--light);
    transition: .5s;
    font-weight: 500;
}
.btn:hover {
    background-color: var(--light);
    color: var(--dark);
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
    background-color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    background-color: var(--dark);
    color: var(--light);
}

/* marquee section start here */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    /* background-color: #6934D3; */
    padding: 10px 0;

    position: relative;
}

.marquee {
    display: inline-block;
    animation: marquee-scroll 10s linear infinite;
    font-size: 18px;
    color: var(--dark);
}

@keyframes marquee-scroll {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
/* marquee section end here */

/*** Navbar ***/
.top-bars{
    background-color: var(--dark);
}
.top-bars .btn:hover{
    color: var(--light  ) !important;
 }
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}


.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    /* padding: 25px 0; */
    color: black;
    font-size: 18px;
    font-weight: 500;
    outline: none;
    text-align: center;
}

.navbar .navbar-nav .line{
    width: 10px;
    height: 3px;
    background-color: var(--white);
}
.navbar .dropdown .line{
    width: 10%;
    height: 3px;
    background-color: var(--white);
}
.navbar .navbar-nav .home:hover .line{
    width: 80%;
    height: 3px;
    transition: all ease-in-out 0.9s ;
    background-color: var(--primary);
}
.navbar .dropdown:hover .line{
    width: 80px;
    height: 3px;
    transition: all ease-in-out 0.9s ;
    background-color: var(--primary);
}
 
.top-call{
    background-color: var(--light);

    border: 1px solid var(--dark) !important ;
}


.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.dropdown-item:hover{
    background-color: var(--dark);
    color: var(--light);
}

.appointment-btn a{
    text-decoration: none;
    color: #fff;
    background-color: var(--primary);
    padding: 5px 8px;
    border: 2px solid #fff;

}
.appointment-btn:hover a{
    border: 2px solid #000;
    transition: all 0.4s ease-in-out;
    box-shadow: rgba(139, 166, 177, 0.24) 0px 3px 8px;
   
    margin: 0px;
 
}

.appointment-btn:hover{
    transform: scale(1.09);
    transition: 0.5s all ease-in-out;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}
@media (max-width:490px) {
    .navbar .company-logo{
        width: 150px !important;
    }
    
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}
.company-logo{
    width: 200px;
}



.display-3{
    color: #E66238;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
}
.head-section{
    color: var(--dark) !important; 
    font-size: 24px !important;
}
.head-title  span{
    color: var(--light);
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 5px;
    left: -40px;
    background: var(--dark);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 6px;
    left: -60px;
    background: var(--dark);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
/* about us heading start here */
.about-heading{
    font-size: 28px;
    color: #000 !important;
}

.about-us-section .about-read a{
    text-decoration: none;
    background-color: var(--dark);
    color: var(--light);
    padding: 5px 9px;
    border-radius: 5px;

}



.explore-btn{
    background-color: var(--dark);
    color: var(--light);
}
.explore-btn:hover{
    color: var(--dark);
    background-color: var(--light);
}
.bodre{
    border: 1px solid var(--dark);
}
.about-text h1{
    color: var(--dark);
}
.about-text p{
    line-height: 1.9;
}
.about-text .about-text-ab{
    line-height: 1.6;
}
@media (max-width:450px){
    .about-experience {
        position: absolute;
        width: 100%;
        height: auto;
        right: -45px;
        bottom: -45px;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: var(--light);
        background-color: var(--dark);
        justify-content: center;
    }
}

/* about section end here */


 







/*** Team ***/
.client-section{
    color: var(--light) !important;
  
    animation: client 8s infinite;
    transition: 0.5s ease-in-out;

     
}
 
@keyframes client{
    0% {
        background: linear-gradient(rgba(0, 0, 0, 0.905),rgba(0, 0, 0, 0.905)),url("../back-image/wall-company-logo-with-company-company-logo-it_1313177-57894.jpg");
         background-position: center;
        background-size: cover;
        background-attachment: fixed;
        background-repeat: no-repeat;

        
    }
   
    50% {
        background: linear-gradient(rgba(0, 0, 0, 0.905),rgba(0, 0, 0, 0.905)),url("../back-image/wall-company-logo-with-company-company-logo-it_1313177-57894.jpg");
        background-position: center;
        background-size: cover;
        background-attachment: fixed;

        background-repeat: no-repeat;
        
    }
    100%{
        background: linear-gradient(rgba(0, 0, 0, 0.905),rgba(0, 0, 0, 0.905)),url("../back-image/wall-company-logo-with-company-company-logo-it_1313177-57894.jpg");
        background-position: center;
        background-size: cover;
        background-attachment: fixed;

        background-repeat: no-repeat;
    }
}
.team-item {
    position: relative;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border-top: 1px solid var(--dark);
}
.client-item{
    border-radius: 50%; 
    border-bottom: 10px solid var(--light);
}
.client-item:hover{
    border: 2px solid var(--dark);
    transition: all 0.2s ease-in-out;
    border-bottom: 10px solid var(--dark);


}
.team-item:hover {
  background-color: var(--dark);
  color: var(--light);
  transition: all 0.3s ease-in-out;
}
.team-item:hover h5 {
  color: var(--light);
  transition: all 0.3s ease-in-out;
}

.team-item .btn {
    border-color: transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}
.Our-Project{
    color: var(--light) !important;
  
    animation: client-work 8s infinite;
    transition: 0.5s ease-in-out;

     
}
 
@keyframes client-work{
    0% {
        background: linear-gradient(rgba(0, 0, 0, 0.905),rgba(0, 0, 0, 0.905)),url("../img/policy-bazaar.jpg");
         background-position: center;
        background-size: cover;
        background-attachment: fixed;
        background-repeat: no-repeat;

        
    }
   
    50% {
        background: linear-gradient(rgba(0, 0, 0, 0.905),rgba(0, 0, 0, 0.905)),url("../img/nykaa.jpg");
        background-position: center;
        background-size: cover;
        background-attachment: fixed;

        background-repeat: no-repeat;
        
    }
    100%{
        background: linear-gradient(rgba(0, 0, 0, 0.905),rgba(0, 0, 0, 0.905)),url("../img/dlf-cyber-park.jpg");
        background-position: center;
        background-size: cover;
        background-attachment: fixed;

        background-repeat: no-repeat;
    }
}
.Our-Project h1{
    color: var(--light);
}


@media (max-width:450px){
    .client-item{
        border-radius: 50%; 
        border-bottom: 3px solid var(--light);
    }
    .client-item:hover{
        border: 2px solid var(--dark);
        transition: all 0.2s ease-in-out;
        border-bottom: 3px solid var(--dark);
    
    
    }
    .Our-Project h1{
        color: var(--light);
        font-size: 25px;
    }
    .history-info h2{
        font-size: 25px !important;
    }
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
}

.testimonial-img::after {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 200px;
    color: #EEEEEE;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.testimonial-img img {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-img img:nth-child(1) {
    top: 0;
    left: 0;
}

.testimonial-img img:nth-child(2) {
    top: 60%;
    left: 20%;
}

.testimonial-img img:nth-child(3) {
    top: 20%;
    left: 60%;
}

.testimonial-img img:nth-child(4) {
    bottom: 0;
    right: 0;
}

.testimonial-img img .animated.pulse {
    animation-duration: 2s;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 45px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
    color: var(--light);
}


/*** Footer ***/
.footer {
    color: #fff;
    background-color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}
.footer-address a {
    text-decoration: none;
    color: var(--light);

}
.logo-foot img{
    mix-blend-mode: luminosity;

}
.btn-square:hover .fab {
    transform: scale(1.4);
    transition: 0.5s all ease-in-out;
    color: var(--dark);
 }
 .footer .btn-square    :hover{
background-color: var(--light) !important;
 }

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}
.footer .form-control{
    background-color: var(--light) !important;
}
.footer  .btn{
    background-color: var(--dark) !important;
    color: var(--light);
}

.footer .btn.btn-link:hover {
    color: black;
    letter-spacing: 1px;
    box-shadow: none;
}
.footer .btn:hover .bi {
    color: black;
    letter-spacing: 1px;
    box-shadow: none;
}


/* Contact.html css start here */


/* ============================ contact-us start ================== */

.contact-card{
    font-family: "Bai Jamjuree", sans-serif ;
    font-weight: 500;
    background-color: white;
}
.form{
    padding-top: 20px;
    padding-bottom: 70px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: 10px;
 }
.contact-form {
    margin-top: 90px !important;
}
.contact-heading{
    text-align: center;
}
.contact-heading span{
    color: var(--blue);
}
  .address{
    font-size: 18px;
  }
  .address .fa{
    color: var(--darkblue);
  }
  .contact-form{
    background: linear-gradient(rgba(0, 0, 0, 0.279),rgba(0, 0, 0, 0.329)),url("../image/banner/hand-traveler-pressed-button-drinking-water-filling-station-airport-ai-generated_70626-15673.avif");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;  }

  .contact-photo{
    background-color: #091e3ed9;
    /* background: linear-gradient(#0000007b,#00000078),url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSmK-Nl_L5WOR8XZX6hgSiBcmFqkPccphJ4YA&s"); */
    background-repeat: no-repeat;
    padding: 140px 30px;
    background-size: cover;
  }
  .cpatcha-div{
    background: url("../img/card-image/cap.jpg");
    background-size: cover;
    padding: 9px 5px;
    color: black;
    font-size: 18px;

  }
  .contact-form .captcha-para{
    background: url("../img/card-image/cap.jpg");
    background-size: cover;
     color: black;
    font-size: 18px;

  }
  .form-group input{
    padding: 10px 5px;
  }
  .address .fa{
    color: var(--white);
  }
  .address a{
    text-decoration: none;
    color: var(--white);

  }
 
  .form-head{
    background-color: var(--light);
    margin-bottom: 25px !important;
    border: 15px solid var(--blue);
    padding: 2px !important;
  }
  .form-head span{
    color: var(--dark);
  }
  .form-head h2{
    color: var(--dark);
    font-family: "Tinos", serif;
    font-weight: 600;

  }
  .form-name{
    color: black;
    font-weight: 400;
    font-size: 17px;
  }
  .last-name,.first-name{
    border-top: none;
    border: 1px solid gainsboro;

  }
  .mail,.number{
    border: 1px solid gainsboro;


  }
  .name button{
    background-color: var(--dark);
    color: var(--light);
  }
  .name button:hover{
    background-color: var(--light);
    color: var(--dark);
  }
  .last-name{
    margin-left: -5px;
  }
  .name input:hover{
    box-shadow:rgba(140, 155, 209, 0.35) 0px 20px 30px -10px;
   }
  .message{

    border-top: none;
    border: 1px solid gainsboro;
   }
  .message:hover{
    box-shadow:rgba(140, 155, 209, 0.35) 0px 20px 30px -10px;
   }
  .location-product .btn{
    text-align: left;


  }
  .location-product{
    display: flex;
    justify-content: space-between;
    padding: 10px;
  }
  .location-product .dropdown-item{
    color: black;
    font-weight: 500;
    /* font-family: ; */
  }
  .name{
    /* border: 1px solid gainsboro; */
    padding: 10px;
  
  }
  .name-section{
    display: flex;

  }
  .captcha-para{
    background-image:url(../img/cap.jpg);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .captcha-para p{
        margin-top: 4px;
        margin-bottom: 3px;
        font-size: 22px;
        color: black;
        padding: 3px 20px;
        font-style: italic;
        font-weight: bold;
    }
    .submit{
      margin: 10px;
    }
  .submit button{
    /* margin: 10px; */
    background-color: var(--dark);
    padding: 8px;
    border-radius: 5px;
    color: var(--light);
    border: none;
    color: var(--light);
  }
  .submit button:hover{
    background-color: white;
    color: var(--dark);


  }


  @media (min-width:767px) and (max-width:991.5px){
    .contact-map iframe{
        height: 663px;
      }
    
  }

  
  /* ============================ contact-us end ================== */

/* Contact.html css end here */




/* whats app icon start here  */
.whatapp{
    position: relative;

}

.what-icon{
    position: fixed;
    z-index: 999;
    bottom: 110px;
    left: 30px;
}

.what-icon:hover{
    transform: scale(1.2);
    transition: all 0.4s ease-in-out;
  
}

/* whats app icon end here  */


/* call app icon start here  */
.call{
    position: relative;

}
.call img{
    width: 60px;
 
}

.call-icon{
    position: fixed;
    z-index: 888;
    bottom: 110px;
    right: 35px;
}
.call-icon:hover{
    transform: scale(1.2);
    transition: all 0.4s ease-in-out;
  
}
@media (min-width:468px) and (max-width:768px) {  
    .what-icon{
        position: fixed;
        z-index: 999;
        bottom: 90px;
        right: 20px ;
    }
    .call-icon{
        position: fixed;
        z-index: 888;
        bottom: 170px;
        right: 20px ;
    }
    
}
@media (min-width:280px) and (max-width:450px) {  
    .what-icon{
        position: fixed;
        z-index: 999;
        bottom: 68px !important;
        right: 1    0px !important;

    }
    .call-icon{
        position: fixed;
        z-index: 888;
        bottom: 70px;
        right: 10px;
    }

    .call-icon img{
        width: 50px !important;
    }
    
    .what-icon img{
        width: 60px !important;
    }
    
}


.error {
    color: red;
    font-size: 0.9em;
    margin-top: 4px;
}

/* whats app icon end here  */




/* letter banner keyword section start here */

.banner-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.782),rgba(0, 0, 0, 0.671)),url(../img/card-image/banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* Ensures the image covers the section proportionally */
    width: 100%;  
    height: 60vh;  
}

 

           .typed-start .video-bg {
                position: absolute;

                transform: translateY(155px);
                font-size: 55px !important;
                color: #fff;
            }
            .typed-start .video-bg1 {
                position: absolute;

                transform: translateY(155px);
                font-size: 55px !important;
                color: #fff;
            }

            .typed-start .video-bg h1 {
                font-size: 55px !important;
                color: #fff;
            }

            .typed-start  .video-bg .h1 {
                font-size: 55px !important;
                color: #fff;
            }

            .typed-start .aaa {
                display: flex;
                

            }
            .typed-start span{
                color: var(--primary);
            }

            @media (max-width:768px) {
                
.banner-section {
     background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* Ensures the image covers the section proportionally */
    width: 100%;  
    height: 40vh;  
}
                .typed-start .text-content .video-bg .text{
                    position: relative;
                    color: #FAAE01;
                    font-size: 35px !important;
                    font-weight: 600;
                }
                .typed-start  .video-bg {
                    transform: translateY(120px);
                    font-size: 35px !important;
                    color: #fff;
                    margin-bottom: 10px;
                }
                .typed-start .video-bg1 {
                    transform: translateY(100px);
                    font-size: 35px !important;
                    color: #fff;
                    margin-top: 10px;
                }

                .typed-start .video-bg .h1 {
                    font-size: 35px !important;
                    color: #fff;
                }

                .typed-start .typed-cursor {
                    font-size: 35px;
                }
            }

            @media (max-width:500px) {
                
.banner-section {
     background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* Ensures the image covers the section proportionally */
    width: 100%;  
    height: 50vh;  
}
                .typed-start .text-content .video-bg .text{
                    position: relative;
                    color: #FAAE01;
                    font-size: 16px !important;
                    font-weight: 600;
                }
                .typed-start .video-bg {
                    transform: translateY(120px);
                    font-size: 16px !important;
                    color: #fff;
                    margin-bottom: 10px !important;
                }
                .typed-start .video-bg1 {
                    /* transform: translateY(90px); */
                    font-size: 14px !important;
                    color: #fff;
                    margin-top: 10px !important;
                }

                .typed-start .video-bg .h1 {
                    font-size: 16px !important;
                    color: #fff;
                }

                .typed-start .typed-cursor {
                    font-size: 16px;
                }
                .about-heading {
                    font-size: 22px;
                    color: #000 !important;
                }
            }

            @media (max-width:280px) {
                .typed-start  .text-content .video-bg .text{
                    position: relative;
                    color: #FAAE01;
                    font-size: 17px !important;
                    font-weight: 600;
                }
                .typed-start .video-bg {
                    transform: translateY(-10px);
                    font-size: 17px !important;
                    color: #fff;
                    margin-bottom: 10px !important;
                }
                .typed-start .video-bg1 {
                    transform: translateY(10px);
                    font-size: 17px !important;
                    color: #fff;
                    margin-top: 10px !important;
                }

                .typed-start .video-bg .h1 {
                    font-size: 17px !important;
                    color: #fff;
                }

                .typed-start .typed-cursor {
                    font-size: 17px;
                }
            }
            .typed-start .text-content{
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
            }

            .typed-start  .text-content {
                width: 100%;
                height: 100%;
                overflow: hidden;
            }
            .typed-start  .text-content .video-bg .text{
                position: relative;
                color: #FAAE01;
                font-size: 70px;
                font-weight: 600;
            }
            .typed-start  .text-content .video-bg .text.first-text{
                color: #FFF;
            }
            .typed-start  .text.sec-text:before{
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                background-color: #FAAE01;
                border-left: 5px solid #ffffff;
                animation: animate 4s steps(12) infinite;
            }
            @keyframes animate{
                40%, 60%{
                left: calc(100% + 4px);
                }
                100%{
                    left: 0%;
                }
            }

/* letter banner keyword section start here */





/* plane-section start herex */
.plane-section .standard-plan-card h2{
    background: linear-gradient(#614A7A ,#000000f2) ;
    color: var(--light);
    border-radius: 50px;
    text-align: center;
    font-size: 22px;
    padding: 8px;
}


.plane-section .standard-plan-card {
    border: 1px solid black;
    padding: 5px;
    border-radius: 15px !important;
    color: #000;
    padding-top : 5px;
    padding-bottom: 20px;

}
.standard-plan-card:hover{
    transform: scale(1.04);
    transition: 0.9s all ease-in-out;
    background-color: var(--dark);
    color: var(--light);
}
.plane-section .standard-plan-card:hover ul li .fa-check{
    color: var(--light);
    padding-right: 8px;
 
    
 }
.multi-vendo{
    background-color: var(--dark);
    color: var(--light) !important;
}

.plane-section .standard-plan-card .plan-price-head{
    text-align: center  ;
}
.plane-section .standard-plan-card .plan-price-head .plan-price-rate{
    text-align: center  ;
    font-size: 25px;
    font-weight: 600;
}
.plane-section .standard-plan-card .plan-price-head p{
      font-weight: 600;
}
.plane-section .standard-plan-card ul li{
    list-style: none;
    line-height: 2.3;
   
}
.plane-section .standard-plan-card ul li .fa-check{
   color: var(--dark);
   padding-right: 8px;

   
}
.plane-section .multi-vendo ul li .fa-check{
   color: var(--light);
   padding-right: 8px;

   
}
.plane-section .standard-plan-card .plan-call-btn a{
   color: var(--light);
   background-color: var(--dark);
font-size: 18px;   
 padding: 5px;
 
   
}
.plane-section .standard-plan-card .plan-call-btn2 a{
   color: var(--dark);
   background-color: var(--light);
font-size: 18px;   
 padding: 5px;
 
   
}
.plane-section .standard-plan-card .plan-call-btn2 {
   margin-bottom: 20px;
 
   
}
.plan-bottom-colo{
    display: none;
}
.standard-plan-card{
    margin: 9px;
}
.standard-plan-card .plan-call-btn:hover a{
    background-color: white;
    color: var(--dark);
    border: 2px dashed var(--secondary);
    font-weight: 600;
    transition: all ease-in-out 0.6s;
   
}
.standard-plan-card .plan-call-btn2:hover a{
    background-color: white;
    color: var(--dark);
    border: 2px dashed var(--secondary);
    font-weight: 600;
    transition: all ease-in-out 0.6s;
   
}
@media (max-width:500px) {
    .plane-section .standard-plan-card {
         
        margin-top: 20px;
        margin-bottom: 20px;
    }    
}
/* plane-section end herex */


/* service section start here */
.service-cards{
    position: relative;
}
.service-overlay{
    position: absolute;
    height: 10%;
    display: none;
    width: 100%;
    top: 0;
 
}
.plane-section-head h1{
    color: var(--dark) ;
}
.service-overlay p{
    line-height: 1.8;
}
.service-cards:hover .service-overlay{
    display: block;
    background-color: #614a7ad0;
    height: 100%;
    transition: all 5s ease-in-out;

}
.service-image h1{
    font-size: 28px;
    text-align: center;
    background-color: var(--dark);
    color: var(--light);
}
.service-overlay p{
    color: var(--light);
    text-align: center;
}
/* service section end here */



/* accordion section start here */



.accordion-section  .container {
    display: flex;
    flex-direction: column;
    grid-row-gap: 1rem;
    grid-column-gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.accordion {
    background-color: #614A7A;
    border-radius: 1rem;
    justify-content: flex-start;
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: .1fr 0fr;
    overflow: hidden;
    color: var(--light);
    transition: grid-template-rows .3s cubic-bezier(0.19, 1, 0.22, 1);
}

.accordion .top {
    cursor: pointer;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.85rem 1.5rem 1.75rem;
    display: flex;
    position: relative;
}

.accordion .top .text {
    font-size: 1.25rem;
    font-weight: 700;
    white-space: wrap;
    color: var(--light);
}
.accordion .bottom .text {
  
    color: var(--light);
}


.accordion .top .fa-plus {
    width: 2rem;
    align-self: flex-start;
    margin-bottom: .15rem;
    margin-left: 1.5rem;
    color: #fff;
}

.fa-plus {
    display: inline-block;
    max-width: 100%;
    vertical-align: middle;
    border: 0;
    transition: transform .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.accordion .top input {
    position: absolute;
    inset: 0;
    cursor: pointer;
    appearance: none;
}

.accordion .bottom {
    padding-inline: 1.5rem;
    overflow: hidden;
    transition: all .3s cubic-bezier(0.19, 1, 0.22, 1);

}

.accordion .bottom .text {
    margin-left: 0;
    margin: 0;
}

.accordion:has(input:checked) {
    grid-template-rows: .1fr 1fr;
}
.accordion .top img{
    width: 40px;
}


.accordion:has(input:checked) .top img {
    transform: rotateZ(45deg);
}
@media (max-width:500px) {
    .accordion .top .text {
        font-size: 15px;
        font-weight: 700;
        white-space: wrap;
        color: var(--light);
    }
    .accordion .top img {
        width: 30px;
        margin-top: 20px;
    }
    
}
/* accordion section end here */


/* how it going section start here */
.going-section .info-card{
    background: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.467)),url("../img/card-image/one.png");
    background-position:right;
    background-repeat: no-repeat;
    background-size: contain;
     padding: 15px 10px;
    color: var(--light);
 }
 .going-section .going-head p{
    margin-top: 20px;
    font-size: 18px;
 }
.going-section .info-card2{
    background: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.467)),url("../img/card-image/two.png");
    background-position:right;
    background-repeat: no-repeat;
    background-size: contain;
     padding: 15px 10px;
    color: var(--light);
 }
.going-section .info-card3{
    background: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.467)),url("../img/card-image/three.png");
    background-position:right;
    background-repeat: no-repeat;
    background-size: contain;
     padding: 15px 10px;
    color: var(--light);
 }
.going-section .info-card4{
    background: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.467)),url("../img/card-image/four.png");
    background-position:right;
    background-repeat: no-repeat;
    background-size: contain;
     padding: 15px 10px;
    color: var(--light);
 }
.going-section .info-card5{
    background: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.467)),url("../img/card-image/five.png");
    background-position:right;
    background-repeat: no-repeat;
    background-size: contain;
     padding: 15px 10px;
    color: var(--light);
 }

 .going-section h5{
    color: var(--light);
 }
/* how it going section end here */





/* contact us css start here */
.contact-us-section {
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: 2rem;
	background-color: #fafafa;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .form {
	width: 100%;
	max-width: 1200px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	overflow: hidden;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-form {
	background-color: var(--primary);
	position: relative;
  }
  
  .circle {
	border-radius: 50%;
	background: linear-gradient(135deg, transparent 20%, var(--secondary));
	position: absolute;
  }
  
  .circle.one {
	width: 130px;
	height: 130px;
	top: 130px;
	right: -40px;
  }
  
  .circle.two {
	width: 80px;
	height: 80px;
	top: 10px;
	right: 30px;
  }
  
  .contact-form:before {
	content: "";
	position: absolute;
	width: 26px;
	height: 26px;
	background-color: var(--primary);
	transform: rotate(45deg);
	top: 50px;
	left: -13px;
  }
  
  form {
	padding: 2.3rem 2.2rem;
	z-index: 10;
	overflow: hidden;
	position: relative;
  }
  
  .title {
	color: #fff;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 1;
	margin-bottom: 0.7rem;
  }
  
  .input-container {
	position: relative;
	margin: 1rem 0;
  }
  
  .input {
	width: 100%;
	outline: none;
	border: 2px solid #fafafa;
	background: none;
	padding: 0.6rem 1.2rem;
	color: #fff;
	font-weight: 500;
	font-size: 0.95rem;
	letter-spacing: 0.5px;
	border-radius: 5px;
	transition: 0.3s;
  }
  
  textarea.input {
	padding: 0.8rem 1.2rem;
	min-height: 150px;
	border-radius: 5px;
	resize: none;
	overflow-y: auto;
  }
  
  .input-container label {
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
	padding: 0 0.4rem;
	color: #fafafa;
	font-size: 0.9rem;
	font-weight: 400;
	pointer-events: none;
	z-index: 1000;
	transition: 0.5s;
  }
  
  .input-container.textarea label {
	top: 1rem;
	transform: translateY(0);
  }
  
  .btn-form {
	padding: 0.6rem 1.3rem;
	background-color: #fff;
	border: 2px solid #fafafa;
	font-size: 0.95rem;
	color: var(--primary);
	line-height: 1;
	border-radius: 5px;
	outline: none;
	cursor: pointer;
	transition: 0.3s;
	margin: 0;
	width: 100%;
  }
  
  .btn:hover {
	background-color: var(--secondary);
	color: #fff;
  }
  
  .input-container span {
	position: absolute;
	top: 0;
	left: 25px;
	transform: translateY(-50%);
	font-size: 0.8rem;
	padding: 0 0.4rem;
	color: transparent;
	pointer-events: none;
	z-index: 500;
  }
  
  .input-container span:before,
  .input-container span:after {
	content: "";
	position: absolute;
	width: 10%;
	opacity: 0;
	transition: 0.3s;
	height: 5px;
	background-color: #1abc9c;
	top: 50%;
	transform: translateY(-50%);
  }
  
  .input-container span:before {
	left: 50%;
  }
  
  .input-container span:after {
	right: 50%;
  }
  
  .input-container.focus label {
	top: 0;
	transform: translateY(-50%);
	left: 25px;
	font-size: 0.8rem;
  }
  
  .input-container.focus span:before,
  .input-container.focus span:after {
	width: 50%;
	opacity: 1;
  }
  
  .contact-info {
	padding: 2.3rem 2.2rem;
	position: relative;
  }
  
  .contact-info .title {
	color: var(--primary);
  }
  .information .fa-map-marker-alt{
    color: #000;
  }
  
  .text {
	color: #333;
	margin: 0.7rem 0 1.5rem 0;
  }
  
  .information {
	display: flex;
	color: #000;
	margin: 0.7rem 0;
	align-items: center;
	font-size: 0.95rem;
  }
  
  .information i {
	color: #000;
    font-size: 24px;
  }
  
  .icon {
	width: 28px;
	margin-right: 0.7rem;
  }
  
  .social-media {
	padding: 2rem 0 0 0;
  }
  
  .social-media p {
	color: var(--primary);
  }
  
  .social-icons {
	display: flex;
	margin-top: 0.5rem;
  }
  
  .social-icons a {
	width: 35px;
	height: 35px;
	border-radius: 5px;
	background: linear-gradient(45deg, #696969, #544339);
	color: #fff;
	text-align: center;
	line-height: 35px;
	margin-right: 0.5rem;
	transition: 0.3s;
  }
  
  .social-icons a:hover {
	transform: scale(1.05);
  }
  
  .contact-info:before {
	content: "";
	position: absolute;
	width: 110px;
	height: 100px;
	border: 22px solid #544339;
	border-radius: 50%;
	bottom: -77px;
	right: 50px;
	opacity: 0.3;
  }
  
  .big-circle {
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: linear-gradient(to bottom, var(--secondary), var(--primary));
	bottom: 50%;
	right: 50%;
	transform: translate(-40%, 38%);
  }
  
  .big-circle:after {
	content: "";
	position: absolute;
	width: 360px;
	height: 360px;
	background-color: #fafafa;
	border-radius: 50%;
	top: calc(50% - 180px);
	left: calc(50% - 180px);
  }
  
  .square {
	position: absolute;
	height: 400px;
	top: 50%;
	left: 50%;
	transform: translate(181%, 11%);
	opacity: 0.2;
  }
  .btn-refresh {
	background-color: var(--secondary);
	color: var(--white);
  }
  .enq-form .submit .btn{
	background-color: var(--secondary) !important;
	color: var(--white);
  }
  
  @media (max-width: 850px) {
	.form {
	  grid-template-columns: 1fr;
	}
  
	.contact-info:before {
	  bottom: initial;
	  top: -75px;
	  right: 65px;
	  transform: scale(0.95);
	}
  
	.contact-form:before {
	  top: -13px;
	  left: initial;
	  right: 70px;
	}
  
	.square {
	  transform: translate(140%, 43%);
	  height: 350px;
	}
  
	.big-circle {
	  bottom: 75%;
	  transform: scale(0.9) translate(-40%, 30%);
	  right: 50%;
	}
  
	.text {
	  margin: 1rem 0 1.5rem 0;
	}
  
	.social-media {
	  padding: 1.5rem 0 0 0;
	}
  }
  
  @media (max-width: 480px) {
	.store-features {
	  padding: 1rem;
	}
  
	.contact-info:before {
	  display: none;
	}
  
	.square,
	.big-circle {
	  display: none;
	}
  
	form,
	.contact-info {
	  padding: 1.7rem 1.6rem;
	}
  
	.text,
	.information,
	.social-media p {
	  font-size: 0.8rem;
	}
  
	.title {
	  font-size: 1.15rem;
	}
  
	.social-icons a {
	  width: 30px;
	  height: 30px;
	  line-height: 30px;
	}
  
	.icon {
	  width: 23px;
	}
  
	.input {
	  padding: 0.45rem 1.2rem;
	}
  
	.btn {
	  padding: 0.45rem 1.2rem;
	}
  }
  @media (max-width:500px) {
	.contact-us-section {
		position: relative;
		width: 100%;
		min-height: 100vh;
		padding: 0rem;
		background-color: #fafafa;
		overflow: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
	  }
	  .choose-card {
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
        margin: 5px;
    }
	
.sec-title .title {
    position: relative;
    color: var(--primary);
    font-size: 22px;
    font-weight: 700;
    padding-right: 50px;
    /* margin-bottom: 15px; */
    display: inline-block;
    text-transform: capitalize;
}
 
	
  }
  @media (min-width:768px) and (max-width:991px) {
	.company-logos{
		width: 200px;
	}
  }
  
/* contact us css end here */




/* technical support section start here   */
 /* Center the form */

 .technical-head{
    text-align: center;
 }
 .technical-head h1{
    font-size: 28px;
    color: var(--dark);
 }
 .technical-support {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #f0f2f5;
}

/* Form container styles */
.technical-support form {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
}

/* Heading style */
.technical-support h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 24px;
}

/* Label styles */
.technical-support label {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

/* Input and textarea styles */
.technical-support input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.technical-support input:focus, textarea:focus {
    border-color: #007bff;
    outline: none;
    background-color: #fff;
}

/* File input style */
.technical-support input[type="file"] {
    padding: 5px;
}

/* Button styles */
.technical-support button {
    width: 100%;
    padding: 14px;
    background-color: var(--dark);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.technical-support button:hover {
    background-color: gray;
}

.technical-support select {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

/* Option styles */
.technical-support select option {
    padding: 12px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
    border: none;
}

/* Focus styles for select */
.technical-support select:focus {
    border-color: #007bff;
    outline: none;
    background-color: #fff;
}


/* Responsive Design */
@media (max-width: 768px) {
    .technical-support form {
        padding: 20px;
    }

  .technical-support  h2 {
        font-size: 20px;
    }

    .technical-head h1{
        font-size: 19px;
        color: var(--dark);
     }
    .technical-head p{
        font-size: 16px;
      }
   .technical-support label, input, button {
        font-size: 16px;
    }
    .technical-support select {
        padding: 10px;
        font-size: 16px;
    }

    .technical-support select option {
        font-size: 16px;
    }
}

/* technical support section end here   */




/* enquiry banner section css start here */
.enquiry-banner{
    background: linear-gradient(rgba(0, 0, 0, 0.415),rgba(0, 0, 0, 0.492)),url("../img/card-image/google-banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.enquiry-banner h1{
    color: var(--light);
    padding: 120px 10px;
}
.enquiry-text-left p{
    line-height: 2.1;
}
.enquiry-text-left .enquiry-head h2{
    color: var(--secondary);
    line-height: 1.4;
}
.enquiry-image img{
    border-radius: 10px;
}

.enquiry-service{
    background-color: #614a7a57;
    color: black;
    text-align: start;
    border-radius: 10px;
    padding: 5px 9px;
}

.enquiry-service p:hover{
    background-color: var(--primary);
    width: 100%;
    color: var(--light);
    transition: all ease-in-out 0.3s;
}
.enquiry-service p{
    padding: 5px 5px;
 }


 .enquiry-features p{
    color: #000;
    font-weight: 600;
    font-size: 20px;
 }
 .enquiry-features ul li{
    color: #000;
    line-height: 2.2;
    list-style:circle ;
 }







@media (max-width:500px) {
    .enquiry-banner h1{
        color: var(--light);
        padding: 60px 10px;
    }
    
}
/* enquiry banner section css end here */



/* website development section start here */
.enquiry-banner2{
    background: linear-gradient(rgba(0, 0, 0, 0.615),rgba(0, 0, 0, 0.692)),url("../img/card-image/website-development.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.enquiry-banner2 h1{
    color: var(--light);
    padding: 180px 10px;
}


.Enquiry-section2 .enquiry-text-left p{
    line-height: 2.1;
}
.Enquiry-section2 .enquiry-text-left .enquiry-head h2{
    color: var(--secondary);
    line-height: 1.4;
}
.Enquiry-section2 .enquiry-image img{
    border-radius: 10px;
}

.Enquiry-section2 .enquiry-service{
    background-color: #614a7a57;
    color: black;
    text-align: start;
    border-radius: 10px;
    padding: 5px 9px;
}

.Enquiry-section2 .enquiry-service p:hover{
    background-color: var(--primary);
    width: 100%;
    color: var(--light);
    transition: all ease-in-out 0.3s;
}
.Enquiry-section2 .enquiry-service p{
    padding: 5px 5px;
 }


 .Enquiry-section2 .enquiry-features p{
    color: #000;
    font-weight: 600;
    font-size: 20px;
 }
 .Enquiry-section2 .enquiry-features ul li{
    color: #000;
    line-height: 2.2;
    list-style:circle ;
 }

















@media (max-width:500px) {
    .enquiry-banner2 h1{
        color: var(--light);
        padding: 60px 10px;
    }
    
}
/* website development section end here */





/* App development section start here */
.enquiry-banner3,.enquiry-banner4{
    background: linear-gradient(rgba(0, 0, 0, 0.615),rgba(0, 0, 0, 0.692)),url("../img/card-image/website-development.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.enquiry-banner3 h1,.enquiry-banner4 h1{
    color: var(--light);
    padding: 180px 10px;
}


.enquiry-banner3 .enquiry-text-left p,.enquiry-banner4 .enquiry-text-left p{
    line-height: 2.1;
}
.enquiry-banner3 .enquiry-text-left .enquiry-head h2,.enquiry-banner4 .enquiry-text-left .enquiry-head h2{
    color: var(--secondary);
    line-height: 1.4;
}
.enquiry-banner3 .enquiry-image img,.enquiry-banner4 .enquiry-image img{
    border-radius: 10px;
}

.enquiry-banner3 .enquiry-service,.enquiry-banner4 .enquiry-service{
    background-color: #614a7a57;
    color: black;
    text-align: start;
    border-radius: 10px;
    padding: 5px 9px;
}

.enquiry-banner3 .enquiry-service p:hover{
    background-color: var(--primary);
    width: 100%;
    color: var(--light);
    transition: all ease-in-out 0.3s;
}
.enquiry-banner4 .enquiry-service p:hover{
    background-color: var(--primary);
    width: 100%;
    color: var(--light);
    transition: all ease-in-out 0.3s;
}
.enquiry-banner3 .enquiry-service p,.enquiry-banner4 .enquiry-service p{
    padding: 5px 5px;
 }


 .enquiry-banner3 .enquiry-features p{
    color: #000;
    font-weight: 600;
    font-size: 20px;
 }
 .enquiry-banner3 .enquiry-features ul li{
    color: #000;
    line-height: 2.2;
    list-style:circle ;
 }




@media (max-width:500px) {
    .enquiry-banner3 h1{
        color: var(--light);
        padding: 60px 10px;
    }
    
}
/* App development section end here */