/********** Template CSS **********/
:root {
    --primary: #F4830B;
    --light: #F5F5F5;
    --dark: #353535;
}
body {
      font-family: 'Open Sauce One' !important;
    }

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


.site-wrapper{
    width: 100%;
    max-width: 1400px; /* choose your width */
    margin: auto;
}


 .btn-primary:hover{
     background: #F4830B !important;
  }


/*** 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 {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.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;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@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;
    }
}


/* Default transparent navbar */
.navbar-light {
    background-color: transparent !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* When scrolled: white background */
.navbar-light.scrolled {
    background-color: #16181F !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Nav links should be white on hero background */
.navbar-light .nav-link {
    color: #fff !important;
}

.navbar-light.scrolled .nav-link {
    color: #000 !important;
}

.navbar-light {
    background-color: transparent ;
}

.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: transparent !important;
}

.navbar.scrolled {
    position: fixed;
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


/* Default transparent navbar */
#mainNavbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999; /* Make sure carousel never covers navbar */
    background: transparent;
    transition: background .3s ease, box-shadow .3s ease;
}

/* navbar links white on hero */
#mainNavbar .nav-link {
    color: #fff !important;
}

/* When scrolled */
#mainNavbar.scrolled {
    background: #16181F  !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Change text color when scrolled */
#mainNavbar.scrolled .nav-link {
    color: #ffffff !important;
}


/* For login page specifically */
body.page #mainNavbar {
    background: #16181F !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body.page #mainNavbar .nav-link {
    color: #FFFFFF !important;
}

body.page #mainNavbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}


body.page #mainNavbar .navbar-toggler {
    border-color: rgba(0,0,0,0.5) !important;
}




/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: transparent;
    border: 1px solid #FFFFFF;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(98.32deg, rgba(0, 0, 0, 0.287) 9.31%, rgba(0, 2, 7, 0.7) 25.89%), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title h1 {
    position: relative;
    display: inline-block;
    padding: 0 60px;
}

.section-title.text-start h1 {
    padding-left: 0;
}

.section-title h1::before,
.section-title h1::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 5px;
    bottom: 0;
    background: var(--dark);
}

.section-title h1::before {
    left: 0;
}

.section-title h1::after {
    right: 0;
}

.section-title.text-start h1::before {
    display: none;
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item img {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.1);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    bottom: 0;
    left: 50%;
    background: rgba(53, 53, 53, .7);
    transition: .5s;
}

.portfolio-item:hover .portfolio-overlay {
    width: 100%;
    height: 100%;
    left: 0;
}

.portfolio-item .portfolio-overlay .btn {
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay .btn {
    opacity: 1;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 38px;
    top: 50%;
    left: -38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    border: 5px solid var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .7)), url(../img/footer.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 300;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
   /* content: "\f105";
    font-family: "Font Awesome 5 Free";*/
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/**/
.hero-header{
font-weight: 500;

font-size: 70px;
line-height: 88.78px;
letter-spacing: -2.5%;
text-align: center;

}

@media (max-width: 768px) {

    .hero-header {
        padding-top: 150px;
        font-size: 45px !important;
        text-align: center;
        line-height: 40px;
    }

    .hero-text{
      
font-weight: 400;

font-size: 18px;
padding-top: 20px;
line-height: 25px !important;

text-align: center;

    }
}


.hero-text{
font-weight: 400;
font-style: Regular;
font-size: 20px;
leading-trim: NONE;
line-height: 30px;
letter-spacing: 0%;
text-align: center;

}

.btn-primary{
    background: #F4830B;
    width: 241;
height: 54;

opacity: 1;
gap: 4px;
padding-top: 10px;
padding-right: 28px;
padding-bottom: 10px;
padding-left: 28px;
border-radius: 100px;
border: none;

}

.btn-light{
    width: 154px;
height: 54;
angle: 0 deg;
opacity: 1;
gap: 4px;
padding-top: 10px;
padding-right: 28px;
padding-bottom: 10px;
padding-left: 28px;
border-radius: 100px;

}


.btn-light2{
    width: 154px;
height: 54;
angle: 0 deg;
opacity: 1;
gap: 4px;
padding-top: 10px;
padding-right: 28px;
padding-bottom: 10px;
padding-left: 28px;
border-radius: 100px;
background: white !important;
}

.service-header{
font-weight: 700;
font-style: bold;
font-size: 22px;
line-height: 35.51px;
letter-spacing: 0%;

}

.service-text{
font-weight: 300;

font-size: 16px;
line-height: 22px;
letter-spacing: 0%;
color: #6C767D;
}


.navbar-toggler {
  border: none !important;     /* remove the border */
  box-shadow: none !important; /* remove blue outline when clicked */
  outline: none !important;
  font-size: 20px;
  color: black;
}


.navbar-toggler:focus {
  box-shadow: none !important;

}

/* Hide the close icon by default */
.navbar-toggler .close-icon {
  display: none;
  font-size: 32px;
  line-height: 1;
}

/* Default hamburger */
.navbar-toggler .default-icon {
  font-size: 26px;
  line-height: 1;
}

/* When navbar is open - show close icon */
.navbar-toggler.active .default-icon {
  display: none;
}

.navbar-toggler.active .close-icon {
  display: inline-block;
}


@media(max-width: 760px){
.btn-light{ 
   width: 225px;
   margin-top: 10px;
   margin-bottom: 20px;
   margin-left: 10px;
}

.btn-light2{ 
   width: 225px;
   margin-top: 10px;
}

}


.form-f input{
    height: 50px;

    box-shadow: 0px 2px 4px -2px #1018280F;

box-shadow: 0px 4px 8px -2px #1018281A;
border-radius: 10px;
} 

.form-f textarea{
    

    box-shadow: 0px 2px 4px -2px #1018280F;

box-shadow: 0px 4px 8px -2px #1018281A;
border-radius: 10px;
} 

.form-f input::placeholder{
    color: #6C767D;
} 

.form-f textarea::placeholder{
    color: #6C767D;
} 


.about-bg{
    background: #16181F;
}

.l{
    color: #F7F7F7 !important;
}
.badges{
    width: 100%;
height: 56;
angle: 0 deg;
opacity: 1;
padding-top: 13px;
padding-right: 13px;
padding-bottom: 13px;
padding-left: 13px;
gap: 10px;
border-radius: 100px;
border-width: 1px;

border: 1px solid #D0D5DD;
color: black;
font-weight: 600;
font-style: SemiBold;
font-size: 17.76px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;

}

@media(max-width: 768px){
 .badges{
    font-size: 15px;
 }
}


.about-img{
    width: 610px;
height: 500px;
angle: 0 deg;
opacity: 1;
border-radius: 20px;
object-fit: cover;
}

.why{
background: #22242A;
opacity: 1;
padding-top: 36.2px;
padding-right: 36.2px;
padding-bottom: 18.1px;
padding-left: 36.2px;

border-radius: 20px;

}


.why2{
background: #22242A;
opacity: 1;
padding-top: 36.2px;
padding-right: 36.2px;
padding-bottom: 18.1px;
padding-left: 36.2px;

border-radius: 20px;
background: #EC9130;
}



.why-header2{
 color: white;
font-weight: 600;
font-style: Medium;
font-size: 48.83px;
leading-trim: NONE;
line-height: 57.71px;
letter-spacing: 0%;

}

@media(max-width: 768px){
.why{

}
}

.industry-head{
    font-family: Open Sauce One;
font-weight: 500;
font-style: Medium;
font-size: 45px;
leading-trim: NONE;
line-height: 57.71px;
letter-spacing: 0%;
color: #12161D;
}

.why-text{
font-weight: 300;
font-style: Regular;
font-size: 17px;
leading-trim: NONE;
line-height: 22px;
letter-spacing: 0%;
vertical-align: middle;
color: #F7F7F7;
}

.why-header{
    font-family: 'Manrope' !important;
font-weight: 700;
font-style: Bold;
font-size: 22px;
leading-trim: NONE;
line-height: 33.94px;
letter-spacing: 0%;
vertical-align: middle;
color: white;

}


.industry-header{
    font-family: 'Manrope' !important;
font-weight: 700;
font-style: Bold;
font-size: 22px;
leading-trim: NONE;
line-height: 33.94px;
letter-spacing: 0%;
vertical-align: middle;
padding-left: 36.2px;
padding-right: 36.2px;
color: #12161D !important;
}

.industry-img{
    padding-left: 36.2px;
padding-right: 36.2px;
}


.industry{

opacity: 1;
padding-top: 36.2px;

padding-bottom: 18.1px;

border-radius: 20px;
border:1px solid #D0D5DD !important;

}

.about-bg3{
    background: #1F3D7E !important;
}


.industry-text{
font-weight: 300;
font-style: Regular;
font-size: 16px;
leading-trim: NONE;
line-height: 22px;
letter-spacing: 0%;
vertical-align: middle;
padding-left: 36.2px;
padding-right: 36.2px;
color: #6C767D;
}

.industry-img2{
    height: 155px; object-fit: cover; border-bottom-right-radius: 20px;border-bottom-left-radius: 20px;
}

/*.tra-bg{
background: linear-gradient(180deg, rgba(0, 0, 0, 0.62) 27.41%, rgba(0, 0, 0, 0) 100%) !important;
}
*/

.tra-bg {
    position: relative;
    width: 100%;
    height: auto;
}

.tra-bg img {
    display: block;
}

.tra-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.62) 27.41%, rgba(0, 0, 0, 0) 100%) !important;

    z-index: 2;
    pointer-events: none;
    border-bottom-right-radius: 20px;border-bottom-left-radius: 20px;
}


.our-edge{

font-weight: 500;
font-style: medium;
font-size: 48px;
leading-trim: NONE;
line-height: 54px;
letter-spacing: 0%;

}

.ready{
  
font-weight: 600;
font-style: SemiBold;
font-size: 48px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: -2%;
text-align: center;
color: white;
}




.ready-text{
 
font-weight: 500;
font-style: Medium;
font-size: 20px;
leading-trim: NONE;
line-height: 120%;
letter-spacing: -2%;
text-align: center;
color: #D0D5DD;
}

.x-show{
    display: none;
}

.x-hide{
    display: block;
}

.bx a{
    font-size: 25px;
}

@media(max-width: 768px){
.our-edge{
   font-size: 40px; 
}

.x-show{
    display: block;
}

.x-hide{
    display: none;
}
}

.edge-header{
  background: #22242A;
font-weight: 600;
font-style: SemiBold;
font-size: 17px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
color: white;
padding:15px;
border-radius: 50px;

}

@media(max-width: 768px){
.edge-header{
   font-size: 11px; 
}
}


.edge{
border:1px solid #22242A !important;
opacity: 1;
padding-top: 36.2px;
padding-right: 36.2px;
padding-left: 36.2px;

border-radius: 20px;

}

@media(max-width: 768px){
.edge{
    padding-right: 10px;
    padding-left: 10px;
}
}


.edge-text{
font-weight: 400;
font-style: Regular;
font-size: 16px;
leading-trim: NONE;
line-height: 22px;
letter-spacing: 0%;
vertical-align: middle;
color: #F7F7F7;
}

.text-primary{
    color: #F4830B !important;
}
.address-p{
font-weight: 300;
font-style: light;
font-size: 15px;
leading-trim: NONE;
line-height: 26.63px;
letter-spacing: 0%;
color: #D0D5DD;

}

.foot-p{
font-weight: 400;
font-style: Regular;
font-size: 15px;
leading-trim: NONE;
line-height: 200%;
letter-spacing: 0%;
color: #D0D5DD;
 }


 .header-carousel {
    position: relative;
}

.header-carousel::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px; /* adjust if you want taller blend */
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        #16181F 100%
    );
    pointer-events: none;
    z-index: 5;
}


.a-text{
font-weight: 400;
font-size: 17.5px;
line-height: 23px;
letter-spacing: 0%;
color: #16181F;
}

.about-t{
font-weight: 550;
font-style: medium;
font-size: 40px;
leading-trim: NONE;
line-height: 57.71px;
letter-spacing: 0%;
text-align: center;
color: #16181F;

}

.about-bg2{
    background: #F4830BF2;
}

@media(max-width: 768px){
.a-text{
font-weight: 400;
font-size: 17px;
line-height: 28.85px;
letter-spacing: 0%;
color: #16181F;
}

.v-text{
font-weight: 400;
font-style: Regular;
font-size: 17px;
leading-trim: NONE;
line-height: 25px;
letter-spacing: 0%;
color: #6C767D

}
}


.v-text{
font-weight: 400;
font-style: Regular;
font-size: 16px;
leading-trim: NONE;
line-height: 25px;
letter-spacing: 0%;
color: #6C767D

}


/*service section*/

.our-services{
    font-family: Open Sauce One;
font-weight: 500;
font-style: Medium;
font-size: 40px;
leading-trim: NONE;
line-height: 57.71px;
letter-spacing: 0%;
color: #FFFFFF;
}



.loading-bars {
    display: flex;
    gap: 8px;
}

.loading-bars span {
    width: 8px;
    height: 30px;
    background: #0d6efd;
    animation: bounce 0.8s infinite ease-in-out;
    border-radius: 4px;
}

.loading-bars span:nth-child(2) {
    animation-delay: 0.1s;
}
.loading-bars span:nth-child(3) {
    animation-delay: 0.2s;
}
.loading-bars span:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes bounce {
    0%, 100% {
        transform: scaleY(0.4);
    }
    50% {
        transform: scaleY(1);
    }
}


input:focus {
    outline: none;
    box-shadow: 0 0 6px rgba(0, 123, 255, 0.4) !important;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

textarea:focus {
    outline: none;
    box-shadow: 0 0 6px rgba(0, 123, 255, 0.4) !important;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}



/* Default: White toggler icon */
#mainNavbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* When scrolled: Black toggler icon */
#mainNavbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,1)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

/* Optional: change border color when scrolled */
#mainNavbar.scrolled .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.5) !important;
}


/* Mobile: force white background when navbar is expanded */
@media (max-width: 991px) {
    #mainNavbar {
        background: #fff !important;
    }

    /* Mobile nav links should be dark */
    #mainNavbar .nav-link {
        color: #000 !important;
    }

    /* Mobile toggler border */
    #mainNavbar .navbar-toggler {
        border-color: rgba(0,0,0,0.5) !important;
    }

    /* Mobile toggler icon black */
    #mainNavbar .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,1)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
    }
}
