@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    background-color: #231f20;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 1.7rem;
    color: #231f20;
    font-weight: 400;
    line-height: 1.7;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    user-select: none;
}

a {
    display: inline-block;
    color: #231f20;
    text-decoration: none;
    transition: all .3s ease-in-out !important;
}

a.imp-link {
    display: inline;
    color: #2f2f2f !important;
}

a.imp-link:hover {
    color: #f96020 !important;
}

/* Hide Default Icon */
.nav-link.dropdown-toggle::after {
    display: none !important;
}

.nav-link .arrow-icon {;
    display: inline-block;
    position: relative;
    margin-left: 6px;
    /*height: 0.6em;*/
    /*width: 0.6em;*/
    /*transform: rotate(-90deg);*/
}

.nav-link .arrow-icon svg {
    fill: rgba(255, 255, 255, 0.5);
}

.dropdown-submenu > .dropdown-menu > .dropdown-item-wrapper > .dropdown-item {
    color: rgba(255, 255, 255, 0.5) !important;
}

.navbar-dark {
    height: 77px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.5);
    padding-left: 2rem !important;
}

/*#navbarNavPrimary .dropdown-item.active,*/
/*#navbarNavPrimary .dropdown-item.focus {*/
/*    color: rgba(255, 255, 255, 0.8);*/
/*}*/

.navbar-nav .nav-link:hover,
/*.nav-item>.nav-item>.nav-link.active,*/
/*.navbar-nav .nav-link.active,*/
.dropdown-item.active,
.dropdown-submenu > .dropdown-menu > .dropdown-item-wrapper > .dropdown-item:hover,
li.dropdown-item-wrapper.dropdown-submenu:hover a,
footer a.active,
.pptc a:hover, 
.pptc a.active {
    color: rgba(255, 255, 255, 0.8) !important;
}

.dropdown-item i {
    margin-left: 0.4rem;
    vertical-align: middle;
    font-size: 1.3rem;
}

.dropdown-item.active {
    background-color: transparent;
}

.navbar-toggler {
    padding: 0;
    border: none !important;
}

.navbar-toggler:active,
.navbar-toggler:focus {
    border: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 2.5rem;
    transition: transform .3s ease-in-out;
}

.navbar-toggler-icon:hover {
    transform: rotate(180deg);
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

#header {
    background-color: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 991.98px) {
    #header {
        display: none !important;
    }

    #secondary-header {
        display: none !important;
    }
    
    #mobile-header {
        display: block;
    }
}

#secondary-header,
#mobile-header{
    background-color: #1c1c1c;
    /*box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.7);*/
    border-bottom: 1px solid rgba(0, 0, 0, 0.8);
}
    
#mobile-header {
    vertical-align: middle !important;
    z-index: 9999 !important;
}

#mobile-header ul {
    padding: 0 !important;
}

#mobile-header li.nav-item.dropdown {
    width: 100%;
}

#mobileNavbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  background-color: #1c1c1c !important;
  z-index: 999 !important; 
  /*padding-top: 4rem; */
}

#mobileNavbar .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%; 
  overflow-y: auto; 
  padding-top: 4rem;
}

#mobileNavbar .navbar-nav {
  width: 100%;
  align-items: center;
}

#mobileNavbar .collapse ul.collapse {
  max-height: 70vh; 
  overflow-y: auto;
  background-color: rgba(255, 255, 255, 0.05);     
  padding: 10px 0;
  margin: 0;
  text-align: center;
  border-radius: 6px;
}

/* Centering individual submenu items */
#mobileNavbar .collapse ul.collapse li {
  display: flex;
  justify-content: center;
}

/*.nav-item.dropdown:hover .dropdown-menu {*/
/*    display: block;*/
/*    min-width: 25rem;*/
/*    margin-top: 0;*/
/*}*/

/*.dropdown-menu {*/
/*    font-size: 1.7rem;*/
/*    background-color: rgba(0, 0, 0, 0.7);*/
/*    border-radius: 0.5rem;*/
/*    padding: 0 1rem !important;*/
/*    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.4);*/
/*    transition: all 0.3s ease;*/
/*    z-index: 1;*/
/*}*/

.dropdown-menu {
    font-size: 1.7rem;
    background-color: #0a0a0a;
    border-radius: 0.5rem;
    padding: 0 1rem !important;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.4);
    min-width: 29rem;
    margin-top: 0;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute; /* ensure it overlays correctly */
    z-index: 1;
    pointer-events: none;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block; /* Ensure it's visible */
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.nav-item.dropdown .arrow-icon svg {
    display: inline-block; /* Ensure transform works properly */
    transition: transform 0.3s ease;
    transform-origin: center;
}

.nav-item.dropdown:hover .arrow-icon svg {
    transform: rotate(-180deg);
}

#secondary-header .dropdown-menu {
    background-color: #0a0a0a;
}

/* Style dropdown items */
.dropdown-item-wrapper {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 1rem;
}

.dropdown-item-wrapper:last-child {
    border-bottom: none;
}

/* On hover over each dropdown item */
.dropdown-item {
    color: rgba(255, 255, 255, 0.5);
    padding: 1rem 0;
    font-weight: 500;
    /*transition: background-color 0.2s ease, color 0.2s ease;*/
}

.dropdown-item:hover {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    /*transform: translateY(-1px) !important;*/
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    padding-left: 1.5rem !important;
    /*margin-top: -0.5rem;*/
    display: none !important;
    border-radius: 0.5rem;
    z-index: 2;
}

.dropdown-submenu .submenu-left {
    left: auto;
    right: 100%; /* Open towards left */
}

.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu > .dropdown-menu:hover {
    display: block !important;
}

section#services,
section#why-choose-us,
section#how-it-works,
section#contact-us,
section#get-quote,
section#service-web,
section#service-mobile,
section#service-seo,
section#service-ecommerce,
section#service-maintenance,
section#service-custom,
section#privacy-policy,
section#terms,
section#faq,
section#tools {
    padding: 10rem 2rem;
    background-color: #f6f6f6;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

section#services>h2,
section#why-choose-us>h2,
section#how-it-works>h2,
section#services .card-title,
section#service-web>h2,
section#service-mobile>h2,
section#service-seo>h2,
section#service-ecommerce>h2,
section#service-maintenance>h2,
section#service-custom>h2 {
    color: #2f2f2f;
    text-align: center;
}

section#services li,
section#services p {
    font-size: 1.8rem;
    color: #797979;
    letter-spacing: 1.3px;
    line-height: 1.7;
}

section#services li a {
    color: #797979;
}

section#services li a:hover {
    color: #2f2f2f;
}

.title h1 span,
.underline {
    display: inline !important;
}

.underline {
    border-bottom: 1rem solid #f96020;
}

@media (max-width: 991.98px) {
    .underline {
        border-bottom: 0.5rem solid #f96020;
    }
}

.content-contact h2 a {
    font-size: 3rem;
    font-weight: 900;
    color: #2e7ed8;
    line-height: 1.2;
}

.content-contact h3 a {
    font-size: 2rem;
    font-weight: 900;
    color: #5c6164;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

section#services p.card-text {
    text-align: justify;
}

section#testimonials p.city {
    font-size: 1.3rem;
    color: #aaa !important;
    margin-bottom: 0;
}

.bg-dark {
    background-color: transparent !important;
}

/*section#services h2 {*/
/*    color: #2e7ed8;*/
/*}*/

/*section#services h3,*/
section#service-web h3,
section#service-mobile h3,
section#service-seo h3,
section#service-ecommerce h3,
section#service-maintenance h3,
section#service-custom h3 {
    margin: 3rem 0 1.2rem;
    font-size: 2.8rem; 
    font-weight: 700;
    text-decoration: uppercase;
}

section#privacy-policy h3,
section#terms h3 {
    font-size: 2.8rem; 
    font-weight: 700;
    margin: 3rem 0 1.2rem; 
}

section#service-web li,
section#service-mobile li,
section#service-seo li,
section#service-ecommerce li,
section#service-maintenance li,
section#service-custom li,
section#privacy-policy li,
section#terms li {
    padding-bottom: 1.3rem;
}

section#privacy-policy .sm-text,
section#terms .sm-text {
    font-size: 1.6rem; 
    color: rgba(0, 0, 0, 0.7);
}

section#privacy-policy .lg-text,
section#terms .lg-text {
    font-size: 1.9rem; 
    color: rgba(0, 0, 0, 0.7);
}

section#privacy-policy .sm-text a,
section#privacy-policy .lg-text a,
section#terms .sm-text a,
section#terms .lg-text a { 
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
}

section#privacy-policy ul,
section#terms ul {
    list-style: none; 
    font-size: 1.6rem; 
    color: rgba(0, 0, 0, 0.7);
}

section#privacy-policy ul li,
section#terms ul li {
    padding-bottom: 1rem;
}

section#privacy-policy ul li:last-child,
section#terms ul li:last-child {
    padding-bottom: 0;
}

section#services ul {
    list-style: none;
}

section#privacy-policy ul li i,
section#terms ul li i,
section#services ul li i {
    font-size: 1.4rem;
    font-weight: bold !important;
    color: #f96020;
    vertical-align: middle;
    margin-right: 1rem;
    margin-left: -0.5rem;
}

section#services ul.services-list li a,
section#services ul.services-list li p {
    line-height: 1.5 !important;
    margin-bottom: 1.6rem;
}

section#services ul li:last-child p {
    margin-bottom: 0;;
}

/* Shortcut Buttons */
@media (max-width: 991.98px) {
    .shortcut-btns {
        display: none;
    }
}

.shortcut-btns {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    z-index: 999;
}

.fa-solid.fa-phone {
    transform: rotate(-90deg);
}

.shortcut-btns #btnPhone {
    transition: all .3s ease-in-out !important;
}

.shortcut-btns #btnScrollTop {
    margin-top: 1rem;
    transition: all .3s ease-in-out !important;
}

.shortcut-btns #btnPhone,
.shortcut-btns #btnScrollTop {
    display: block;
    width: 5rem;
    height: 5rem;
    color: #efefef;
    background-color: #f96020;
    border: 2px solid #f1f1f1;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.shortcut-btns #btnPhone:hover,
.shortcut-btns #btnScrollTop:hover {
    color: #f96020 !important;
    background-color: #f1f1f1;
    border: 2px solid #f96020;
    transform: scale(1.02) translateY(-2px) !important;
}

.show-mobile-image,
.show-mobile {
    display: none;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #333;
        margin-top: 1.4rem;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: auto;
    }

    .navbar-nav .nav-link {
        font-size: 2rem;
        padding: 1rem !important;
    }
    
    #mobileNavbar ul.collapse a.nav-link {
        font-size: 1.6rem;
        background-color: rgba(255, 255, 255, 0.05) !important; 
    }

    .text-block {
        text-align: center;
    }

    .show-mobile-image,
    .show-mobile {
        display: block;
        text-align: center;
    }

    .right-image {
        width: 30rem !important;
        height: 30rem !important;
        float: unset !important;
    }

    .left-image {
        width: 10rem !important;
        height: 10rem !important;
        float: unset !important;
    }

    .hide-mobile-image,
    .hide-mobile {
        display: none;
    }

    .content .container .row {
        margin-top: 0 !important;
    }

    .card {
        padding: 3rem 3.2rem;
    }

    /* header, */
    footer {
        padding: 0 1.5rem;
    }

    .navbar>.container {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .navbar-brand,
    .navbar-toggler {
        padding: 0 1.5rem !important;
    }

    .navbar-collapse a.main-btn {
        display: none;
    }

    .footer-column {
        margin-top: 3rem;
    }

    .content .subtitle,
    .banner-content .subtitle {
        font-size: 1.8rem !important;
    }
}

.content {
    height: 100vh;
}

.content,
.banner-content {
    max-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    font-family: 'Raleway', sans-serif;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    background-image: url('../images/bg-1.jpg');
    background-position: center;
    background-size: cover;
    perspective: 100rem;
    z-index: 0;
}

/* Service Banners */
#dot-inspection-service.banner-content {
    background-image: url('../images/services/dot-inspection.jpg');
}

#preventive-maintenance-service.banner-content {
    background-image: url('../images/services/preventive-maintenance.jpg');
}

#dpf-cleaning-service.banner-content {
    background-image: url('../images/services/dpf-cleaning.jpg');
}

#express-lube-service.banner-content {
    background-image: url('../images/services/express-lube.jpg');
}

#medium-duty-repair-service.banner-content {
    background-image: url('../images/services/medium-duty-repair.jpg');
}

#on-site-repairs-service.banner-content {
    background-image: url('../images/services/on-site-repairs.jpg');
}

#roadside-assistance-service.banner-content {
    background-image: url('../images/services/roadside-assistance.jpg');
}

#wet-kit-installation-service.banner-content {
    background-image: url('../images/services/wet-kit-installation.jpg');
}

#yard-truck-repair-service.banner-content {
    background-image: url('../images/services/yard-truck-repair.jpg');
}

#trailer-axle-repair-service.banner-content {
    background-image: url('../images/services/trailer-axle-repair.jpg');
}

#trailer-brake-repair-service.banner-content {
    background-image: url('../images/services/trailer-brake-repair.jpg');
}

#trailer-suspension-repair-service.banner-content {
    background-image: url('../images/services/trailer-suspension-repair.jpg');
}

#truck-alignment-service.banner-content {
    background-image: url('../images/services/truck-alignment.jpg');
}

/* Repair Banners */
#engine-repair.banner-content {
    background-image: url('../images/repairs/engine-repair.jpg');
}

#coolant-system-repair.banner-content {
    background-image: url('../images/repairs/coolant-system-repair.jpg');
}

#hvac-system-repair.banner-content {
    background-image: url('../images/repairs/hvac-system-repair.jpg');
}

#diagnostics-electrical-repair.banner-content {
    background-image: url('../images/repairs/diagnostics-electrical-repair.jpg');
}

#egr-dpf-cleaning-repair.banner-content {
    background-image: url('../images/repairs/egr-dpf-cleaning.jpg');
}

#air-dryer-repair.banner-content {
    background-image: url('../images/repairs/air-dryer-repair.jpg');
}

/* Overlay appears above the image */
/* .content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
} */

.content .title span {
    font-size: 6.5rem;
}

.banner-content .title span,
.content-about .title span {
    font-size: 4.5rem;
}

section#services>h2,
section#why-choose-us>h2,
section#how-it-works>h2,
section#testimonials h2.title,
.content .title span,
.banner-content .title span,
.content-about .title span,
section#service-web>h2,
section#service-mobile>h2,
section#service-seo>h2,
section#service-ecommerce>h2,
section#service-maintenance>h2,
section#service-custom>h2 {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
}

section#services h3 {
    font-size: 2.4rem;
    color: #2f2f2f;
    font-weight: 700;
    line-height: 1.3;
}

hr.gap {
    color: rgba(0, 0, 0, 0.3);
    margin-top: 6rem;
    margin-bottom: 4rem;
}

.content-about ul {
    font-size: 2rem;
    line-height: 2;
    margin-bottom: 0;
}

.content .subtitle,
.banner-content .subtitle {
    font-size: 2rem;
}

.banner-content .subtitle a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: color .3s;
}

.banner-content .subtitle a:hover {
    color: rgba(255, 255, 255, 1);
}

.content .subtitle,
.content .title span,
.banner-content .subtitle,
.banner-content .title span {
    text-shadow: 1px 1px 1px #000;
}

.content .subtitle {
    margin-top: 1rem;
}

.main-btn {
    display: inline-block;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 2px;
    border-radius: 1rem;
    text-transform: uppercase;
    transition: all .3s;
}

.blue-btn {
    padding: 1.4rem 3.8rem;
    background-color: #2e7ed8;
    border: 1px solid #2e7ed8;
}

.blue-btn:hover {
    background-color: #2d78cd;
    border: 1px solid #2d78cd;
}

@media (max-width: 576px) {
    .full-button-mobile {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    a.main-btn.orange-btn.full-button-mobile {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
}

.orange-btn {
    padding: 1.4rem 3.8rem;
    background-color: #f96020;
    border: 1px solid #f96020;
}

.orange-btn:hover {
    background-color: #df5419;
    border: 1px solid #df5419;
}

.white-btn {
    padding: 1.4rem 3.8rem;
    color: #122344;
    background-color: #fff;
    border: 1px solid #fff;
}

.white-btn:hover {
    color: #333;
    background-color: #eee;
    border: 1px solid #eee;
}

@media (max-width: 767.98px) {
    .content .title span {
        font-size: 2.6rem !important;
        letter-spacing: 3px;
        line-height: 1.4 !important;
    }
    
    .show-mobile {
        display: block;
        text-align: center;
    }
}

@media (max-width: 991.98px) {
    .content .title span {
        font-size: 3.5rem;
        letter-spacing: 3px;
        line-height: 1.2;
    }

    .main-btn {
        font-size: 1.1rem !important;
    }

    .content .text-block {
        margin-top: 1rem;
    }

    #services .card,
    #how-it-works .card {
        padding: 2rem !important;
    }

    #services .card {
        height: 30rem;
        max-height: 150rem !important;
    }
    
    #how-it-works .card {
        height: 24rem;
        max-height: 26rem;
    }

    section#services>h2,
    section#why-choose-us>h2,
    section#how-it-works>h2,
    section#testimonials h2.title,
    .banner-content .title span,
    .content-about .title span,
     section#service-web>h2,
     section#service-mobile>h2,
     section#service-seo>h2,
     section#service-ecommerce>h2,
     section#service-maintenance>h2,
     section#service-custom>h2 {
        font-size: 3rem;
    }
    
    .content-about .title span {
        text-align: center;
    }
    
    .content-contact .contact-left {
        text-align: center;
        padding-right: 0 !important;
    }
    
    #contact-us ul {
        justify-content: center;
    }
    
    .content-contact .contact-right {
        margin-top: 2rem;
    }
    
    .content-contact .contact-right h3,
    .content-contact .contact-right .submit-btn {
        text-align: center;
    }
}
    
.card-text {
    text-align: center;
}

@keyframes moveRight {
    0% {
        opacity: 0;
        -o-transform: translateX(-15rem);
        -moz-transform: translateX(-15rem);
        -webkit-transform: translateX(-15rem);
        transform: translateX(-15rem);
        visibility: hidden;
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
        -moz-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
        visibility: visible;
    }
}

.content .text-block,
.content-about .title,
.content-about .subtitle,
.content-about .about-features,
.content-contact .contact-left {
    -o-animation: moveRight .9s ease-out forwards;
    -moz-animation: moveRight .9s ease-out forwards;
    -webkit-animation: moveRight .9s ease-out forwards;
    animation: moveRight .9s ease-out forwards;
    transition: opacity 0.5s ease-out;
}

#services .card-text,
.content-about .subtitle {
    opacity: 0.75 !important;
}

@keyframes moveLeft {
    0% {
        opacity: 0;
        -o-transform: translateX(15rem);
        -moz-transform: translateX(15rem);
        -webkit-transform: translateX(15rem);
        transform: translateX(15rem);
        visibility: hidden;
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0);
        -moz-transform: translateX(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
        visibility: visible;
    }
}

.content .right-image,
#why-choose-us .right-image,
.content-about .right-image {
    width: 60rem;
    height: 60rem;
    -o-animation: moveLeft .9s ease-out .1s;
    -moz-animation: moveLeft .9s ease-out .1s;
    -webkit-animation: moveLeft .9s ease-out .1s;
    animation: moveLeft .9s ease-out .1s;
    transition: transform 0.1s ease-out, opacity 0.5s ease-out;
    will-change: transform;
}

.content-contact .contact-right {
    -o-animation: moveLeft .9s ease-out .1s;
    -moz-animation: moveLeft .9s ease-out .1s;
    -webkit-animation: moveLeft .9s ease-out .1s;
    animation: moveLeft .9s ease-out .1s;
    transition: transform 0.1s ease-out, opacity 0.5s ease-out;
    will-change: transform;
}

.form-check-label,
.terms {
    margin-left: .5rem;
    vertical-align: middle;
}

.terms {
    font-size: 1.6rem;
}

.terms a {
    display: inline;
    color: #2e7ed8;
}

.terms a:hover {
    text-decoration: underline;
}

.dotted-bg {
    position: absolute;
    opacity: 0.7;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 2rem 2rem;
    z-index: -2;
}

.vert-space-1 {
    color: transparent;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.vert-space-2 {
    color: transparent;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

footer {
    background-color: #231f20;
}

.footer-links {
    padding-left: 25px;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .footer-links {
    flex-direction: column !important;
  }
}

a.nav-link,
.logo,
.footer-logo img,
footer .share-btn-light {
    transition: all .3s;
}

a.nav-link:hover,
/*li.dropdown-item-wrapper.dropdown-submenu:hover a,*/
.logo:hover,
.footer-logo img:hover,
footer .share-btn-light:hover
{
    transform: translateY(-1px) !important;
}

li.dropdown-item-wrapper li.dropdown-item-wrapper a {
    color: rgba(255, 255, 255, 0.5) !important;
}

li.dropdown-item-wrapper li.dropdown-item-wrapper:hover a {
    color: rgba(255, 255, 255, 0.8) !important;
}

/*.arrow-icon svg {*/
/*    display: inline-block;*/
/*    transition: transform 0.3s ease;*/
/*}*/

.dropdown-submenu > a.dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-submenu i.fas.fa-angle-right {
    display: inline-block;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.dropdown-submenu:hover i.fas.fa-angle-right {
    transform: rotate(90deg);
}

a.main-btn,
button.main-btn {
    transition: all .3s;
}

a.main-btn:hover,
button.main-btn:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transform: translateY(-2px) !important;
}

a#cred {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.15);
}

.copyright {
    font-size: 1.6rem;
    padding: 1rem 2rem;
    margin-top: 5rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 991.98px) {
    .copyright {
        background-color: transparent !important;
    }
    
    #contact-us ul.social-links {
        display: flex;
        gap: 0.5rem;
        list-style: none;
        padding-left: 0;
    }
    
    #contact-us ul.social-links li a,
    #contact-us ul.social-links li a:active {
        color: #231f20 !important;
        background-color: transparent !important;
        border: 1px solid #231f20 !important;
    }
}

footer .footer-container {
    margin-top: 5rem;
}

footer ul.social-links,
#contact-us ul.social-links {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding-left: 0;
}

footer ul li {
    line-height: 1.9;
}

footer ul.social-links li a,
#contact-us ul.social-links li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s ease-in-out !important;
}

footer ul.social-links li a {
    color: #efefef;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#contact-us ul.social-links li a {
    color: #231f20;
    background-color: transparent;
    border: 1px solid #231f20;
}

footer ul.social-links li a:hover,
#contact-us ul.social-links li a:hover {
    color: #fff;
    background-color: #f96020;
    border: 1px solid #f96020;
    transform: translateY(-2px) !important;
}

#contact-us ul.social-links li a:hover {
    color: #fff;
    background-color: #f96020;
    transform: translateY(-2px) !important;
}

footer a,
footer p,
footer span {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

footer a:hover {
    color: rgba(255, 255, 255, 0.8);
}

footer .widget-title h3 {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 3.2rem 3rem;
    margin-bottom: 1.6rem;
    border: none;
    background-color: rgba(35, 31, 32, 0.05);
    transition: background-color .5s, transform .3s, box-shadow .5s;
}

.services-card {
    position: relative;
    overflow: hidden;
    align-items: center;
}

.hover-logo {
    width: 10rem !important;
    height: 10rem !important;
    position: absolute;
    top: -10%;
    right: -10%;
    opacity: 0;
    transition: all 0.3s ease;
}

.services-card:hover .hover-logo {
    top: 0;
    right: 0;
    opacity: 0.15;
}

.card:hover {
    /*cursor: default;*/
    /*background-color: rgba(46, 126, 216, 0.1);*/
    background-color: rgba(35, 31, 32, 0.15);
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.card-img-top {
    width: auto;
    max-width: 8rem;
}

.card-body {
    padding: 1rem 0 0;
}

.card-title {
    font-size: 2.4rem;
    margin: 1rem 0 1.2rem 0;
}

.card-text {
    line-height: 1.4;
}

#why-choose-us,
#service-mobile, 
#service-ecommerce, 
#service-custom,
#faq,
#tools {
    background-color: rgba(35, 31, 32, 0.1);
}

/* FAQs */
#faq .faq-header {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

#faq .accordion-button {
    font-size: 1.7rem;
    font-weight: 500;
    padding: 2rem;
}

#faq .accordion-button.collapsed {
    color: rgba(35, 31, 32, 0.7);
    line-height: 1.4;
}

#faq .accordion-item {
    border-radius: .6rem;
    overflow: hidden;
    margin-bottom: 1rem;
    border: none;
}

#faq .accordion-item:first-child,
#faq .accordion-item:last-child {
    border-radius: .6rem;
}

#faq .accordion-item:not(:last-child) {
    margin-bottom: 1.4rem;
}

#faq .accordion-button:not(.collapsed) {
    background-color: #231f20;
    color: #fff;
    line-height: 1.4;
}

#faq .accordion-button.collapsed::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgba(35, 31, 32, 0.7)' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}

#faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}

#faq .accordion-button:focus {
    box-shadow: none;
}

#faq .accordion-body {
    font-size: 1.6rem;
    color: rgba(35, 31, 32, 0.7);
    padding: 2rem;
}
/* /FAQs */

/* Tools */
#tools .row {
    justify-content: center;
}

#tools hr {
    color: rgba(46, 126, 216, 0.5);
    margin-top: 8rem;
    margin-bottom: 4rem;
}

#tools h4 {
    margin-bottom: 5rem;
}

#tools .card img {
    margin-top: 1rem;
}

#tools .card-body p {
    font-weight: 600;
    color: #6c757d;
}

#tools .card {
    background-color: rgba(46, 126, 216, 0.03);
}

#tools .card:hover {
    box-shadow: none;
    /* background-color: #fff; */
}
/* /Tools */

#why-choose-us .card {
    margin-bottom: 0;
    background-color: rgba(46, 126, 216, 0.05);
}

#why-choose-us .card:hover {
    background-color: rgba(46, 126, 216, 0.1);
}

#why-choose-us .card-img-top {
    max-width: 6rem;
}

#why-choose-us .card-title,
#why-choose-us .card-text,
#how-it-works .card-title,
#how-it-works .card-title {
    text-align: center;
}



@media (max-width: 767.98px) {
    #subscribe .col-md-4,
    #subscribe h2,
    #subscribe p {
        text-align: center;
    }
    
    #subscribe div {
        justify-content: center;
    }
    
    #subscribe .btns {
        justify-content: center !important;
    }
    
    #subscribe .btns a.contact-btn {
        display: none;
    }
    
    .main-btn {
        font-size: 1.3rem !important;
        font-weight: 700;
    }
    
    #services-section,
    #repairs-section,
    #parts-section {
        scroll-margin-top: 41rem !important;
    }
    
    #services-section hr.vert-space-1,
    #repairs-section hr.vert-space-1,
    #parts-section hr.vert-space-1 {
        display: none;
    }
}

#services h2,
#why-choose-us h2,
#how-it-works h2,
#testimonials h2,
#subscribe h2,
#about-us h2,
#service-web h2,
#service-mobile h2,
#service-seo h2,
#service-ecommerce h2,
#service-maintenance h2,
#service-custom h2 {
    font-size: 4rem;
    font-weight: 700;
}

#testimonials h3 {
    font-size: 1.8rem !important;
}

.carousel-item .card {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.2);
}

.carousel-item .card:hover {
    transform: none;
}

#testimonials {
    position: relative;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

#testimonials .container {
    position: relative;
    z-index: 2;
}

#testimonials h2.title,
#testimonials span.subtitle {
    text-shadow: 1px 1px 1px #000;
}

#testimonials p.review-text {
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    height: 12rem;
    color: #212529;
    background-color: rgba(0, 0, 0, 0.03);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    letter-spacing: 1px;
    padding: 2rem;
    border-radius: 1rem;
    text-align: justify; 
    line-height: 1.4 !important;
}

#testimonials .item {
    color: #000 !important;
    margin-bottom: 0;
    border-radius: 2rem;
}

.owl-carousel .owl-item {
    transition: transform 0.5s ease-out !important;
}

.owl-item:not(:last-child) {
    border-right: 2px solid #f5f5f5;
    margin-right: 10px;
    padding-right: 10px;
}

.owl-item:last-child {
    margin-right: 10px;
    padding-right: 10px;
}

.owl-carousel .owl-stage {
    transition: transform 0.5s ease-out !important;
}

.owl-carousel .item .container {
    position: relative;
}

.owl-carousel .item .container p {
    line-height: 1.6 !important;
}

.owl-stage-outer {
    overflow: hidden;
    border-radius: 2rem; /* Match item border-radius */
    background: #fff; /* Adjust to match your item’s background */
    padding: 0 5px; /* Helps smooth the transition */
    margin-bottom: 2rem;
}

.owl-theme .owl-dots .owl-dot span {
    background-color: #9e9e9e;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #fff;
}

#review-us {
    display: flex !important;
    justify-content: center !important;
    margin-top: 2rem;
    margin-left: 0 !important;
}

#review-us a {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.8rem;
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 2rem;
    box-shadow: rgba(0, 0, 0, .16) 0 1px 4px;
    -webkit-transition: .3s;
    -ms-transition: .3s;
    transition: all .3s ease;
}

#review-us a:hover {
    transform: translateY(-2px) !important;
    /* background-color: #2d64e2; */
    box-shadow: rgba(0, 0, 0, .24) 0 3px 8px;
}

#review-us a>svg {
    background-color: #fff;
    border-radius: 5rem;
    padding: 2px;
}

#g-map {
    margin-bottom: -9px;
}

#subscribe {
    background-color: #f96020;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

#subscribe::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/*#subscribe::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background: linear-gradient(to right, rgba(255, 215, 0, 0.95), rgba(255, 215, 0, 0.85), rgba(255, 215, 0, 0.95));*/
/*    z-index: 2;*/
/*}*/

#subscribe img {
    max-width: 20rem;
    opacity: 0.8;
}

#subscribe h2 {
    position: relative;
    z-index: 3 !important;
}

#subscribe h2,
#subscribe p {
    color: rgba(255, 255, 255, 0.8);
}

#subscribe .container {
    position: relative;
    display: flex;
    z-index: 3;
}

@media (max-width: 991.98px) {
    .shortcut-btns {
        display: none;
    }
}


.form-control,
.form-select {
    font-size: 1.6rem; 
    color: #212529;
    padding: 0.5rem 1rem;
}

.form-control:focus,
.form-select:focus {
    border: 1px solid #878787;
    box-shadow: none;
}

input[type="checkbox"]:focus {
    box-shadow: none;
    border: 1px solid #dee2e6;
}

input[type="checkbox"]:checked {
    border-color: red;
    border: 1px solid #0d6efd;
}

.form-label {
    font-weight: 600;
}

.form-check-label {
    font-size: 1.6rem;
}

i.asterisk {
    font-size: .8rem;
    vertical-align: super;
}

.flag-container {
    position: relative;
    padding: 0;
    margin: 0;
}

.flag-img {
    position: absolute;
    margin-top: 0 !important;
    top: 50%;
    left: 2rem;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    filter: none !important;
    transition: none !important;
}

input#phone {
    padding-left: 4rem !important;
}

.contact-info {
    font-size: 1.6rem;
    color: #5c6164;
}

.contact-info span {
    display: block;
}

.contact-phone a {
    color: #5c6164;
    font-size: 2rem;
    font-weight: 500;
}

.contact-phone a:hover,
.terms a:hover {
    color: #2e7ed8 !important;
}

.share-btn-dark {
    background-color: #2e7ed8;
    color: #fff;
    padding: 4px 16px;
    border: none;
    border-radius: 1rem;
    transition: all .3s;
}

.share-btn-dark:hover {
    transform: translateY(-1px) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    background-color: #3277c3 !important;
}

.contact-info {
    font-size: 1.6rem;
    color: #5c6164;
}

.office-hours {
    margin-top: 1.6rem;
}

.office-hours h3 {
    font-size: 1.6rem;
    font-weight: 600;
}

.status-chip {
    display: inline-block !important;
    padding: 4px 16px !important;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 1rem;
    text-align: center;
    color: white;
}

.open {
    background-color: #28a745;
}

.closed {
    background-color: #dc3545;
}

textarea#message {
    height: 15rem;
}

::placeholder {
  color: #ccc !important;
  opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12-18 */
  color: #ccc !important;
}

#quoteForm {
    max-width: 700px; 
    background: #f8f9fa; 
    padding: 2.4rem !important; 
    border-radius: 8px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Modal */
.popup-banner .modal-content { 
    border-radius: 1.2rem; 
    border: none; 
} 

.popup-banner .btn-close { 
    position: absolute; 
    right: 1rem; 
    top: 1rem; 
    background: #2e7ed8; 
    width: 2.4rem; 
    height: 2.4rem; 
    line-height: 2.4rem; 
    text-align: center; 
    border-radius: 50%; 
    font-size: 1.8rem; 
    color: #fff; 
    opacity: 1; 
    transition: all 0.3s ease-out 0s; 
    z-index: 2; 
} 

.popup-banner .btn-close:hover { 
    background: #fc6464; 
    color: #fff; 
    transform: rotate(-90deg); 
} 

.popup-banner .modal-body { 
    padding: 0; 
} 

.popup-banner-content { 
    position: relative; 
    z-index: 1; 
} 

.popup-banner-img img { 
    width: 100%; 
    border-radius: 1rem 0 0 1rem; 
} 

@media (max-width: 991.98px) { 
    .popup-banner-img img { 
        border-radius: 1rem 1rem 0 0; 
    } 
} 

.img, img { 
    max-width: 100%; 
    height: auto; 
    -webkit-transition: all 0.3s ease-out 0s; 
    -moz-transition: all 0.3s ease-out 0s; 
    -ms-transition: all 0.3s ease-out 0s; 
    -o-transition: all 0.3s ease-out 0s; 
    transition: all 0.3s ease-out 0s;
} 

.popup-banner-info { 
    padding: 2rem 3.5rem 2rem 1rem; 
} 

.popup-banner-info h6 { 
    background: #fc6464; 
    color: #fff; 
    border-radius: 50px; 
    padding: 6px 15px; 
    font-weight: 500; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    display: inline-block; 
    text-shadow: 0px 0px 2px #000;
} 

h6 { 
    font-size: 16px; 
    color: #081828; 
    margin: 0px; 
    font-weight: 600; 
    line-height: 1.2; 
} 

.popup-banner-info h2 { 
    font-size: 30px; 
    font-weight: 700; 
    margin: 20px 0 12px 0; 
    line-height: 1.4; 
} 

.popup-banner-info h2 span { 
    color: #2e7ed8; 
} 

.popup-banner-info .theme-btn { 
    margin-top: 25px; 
} 

.popup-banner-info p { 
    font-size: 1.6rem; 
    color: #757f95; 
} 

a:hover { 
    outline: none; 
    -webkit-transition: all 0.3s ease-out 0s; 
    -moz-transition: all 0.3s ease-out 0s; 
    -o-transition: all 0.3s ease-out 0s; 
    -ms-transition: all 0.3s ease-out 0s; 
    transition: all 0.3s ease-out 0s; 
    text-decoration: none; 
} 

.theme-btn { 
    margin-top: 25px; 
    position: relative; 
    font-size: 16px; 
    background: #2e7ed8; 
    color: #fff; 
    padding: 10px 20px; 
    display: inline-block; 
    vertical-align: middle; 
    text-transform: capitalize; 
    border-radius: 10px; 
    font-weight: 500; 
    cursor: pointer; 
    text-align: center; 
    overflow: hidden; 
    border: none; 
    box-shadow: var(--box-shadow); 
    transition: all 0.3s ease-out 0s; 
    z-index: 1; 
} 

.theme-btn:hover { 
    color: #fff; 
    transform: translateY(-1px); 
} 

.theme-btn::before { 
    content: ""; 
    height: 30rem; 
    width: 30rem; 
    background: #e5a90e; 
    border-radius: 50%; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translateY(-50%) translateX(-50%) scale(0); 
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    z-index: -1; 
} 

.theme-btn:hover::before { 
    transform: translateY(-50%) translateX(-50%) scale(1);
}




















