/********** Template CSS **********/
:root {
    --primary: #FD5D14;
    --secondary: #FDBE33;
    --light: #F4F6F8;
    --dark: #040F28;
}

.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.btn {
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    transition: .5s;
}

.btn::after {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: .5s;
}

.btn.btn-primary::after {
    background: var(--dark);
}

.btn:hover::after,
.btn.active::after {
    width: 50%;
    left: 25%;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    left: 50%;
    bottom: 0;
    margin-left: -22px;
    border-radius: 0;
    z-index: 99;
}

.bg-dark-radial {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-size: 3px 3px;
}

.bg-light-radial {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-size: 3px 3px;
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    padding: 35px 15px;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--light);
    outline: none;
    transition: .5s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 15, 40, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h4 {
        font-size: 18px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.page-header {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(4, 15, 40, .7), rgba(4, 15, 40, .7)), url(../img/breadcrumb-bg.jpg) center center no-repeat;
    background-size: cover;
}

.service-item .service-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.service-item .service-icon i {
    transition: .2s;
}

.service-item:hover .service-icon i {
    font-size: 60px;
}

.portfolio-item {
    margin-bottom: 60px;
}

.portfolio-title {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 120px;
    padding: 0 30px;
    right: 30px;
    left: 30px;
    bottom: -60px;
    background: #FFFFFF;
    z-index: 3;
}

.portfolio-btn {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
    font-size: 120px;
    line-height: 0;
    transition: .1s;
    transition-delay: .3s;
    z-index: 2;
    opacity: 0;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
}

.portfolio-box::before,
.portfolio-box::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    transition: .5s;
    z-index: 1;
    background: rgba(4, 15, 40, .7);
}

.portfolio-box::before {
    left: 0;
}

.portfolio-box::after {
    right: 0;
}

.portfolio-item:hover .portfolio-box::before {
    left: 0;
    width: 50%;
}

.portfolio-item:hover .portfolio-box::after {
    right: 0;
    width: 50%;
}

@media (min-width: 992px) {
    .testimonial,
    .contact-form {
        margin-left: -90px;
    }
}

@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--primary)
    }
}

.footer-shape::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 100%;
    top: 0;
    left: -40px;
    background: var(--primary);
    transform: skew(40deg);
}
.text-secondary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}
.justify {
    text-align: justify;
}
.text-secondary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}
.blog .blog-heading a {
    font-size: 35px;
    font-weight: bold;
    color: black;
    text-decoration: none;
}
.blog img {
    border-radius: 10px 10px 0px 0px;
}
img, svg {
    vertical-align: middle;
}
@media (min-width: 992px) {
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}
.blog {
    border: 1px solid #cccccc;
    border-radius: 10px;
    width: 100%;
}
.blog-right-side .img-icon {
    border-radius: 30px;
    height: 100px;
}
.search-input {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #f1f1f1;
    background-color: #f6f6f6;
}
.search-box {
    position: relative;
    margin-top: 50px;
}
.fa-solid, .fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.about div {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 2px;
}
.p-0 {
    padding: 0 !important;
}
.m-0 {
    margin: 0 !important;
}
.about .about-right i {
    font-size: 80px;
    padding-left: 80px;
    color: #b3cdff;
    margin-top: 30px;
    opacity: 0.5;
}
.fa-solid, .fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.about .about-left {
    height: auto;
    overflow: hidden;
    background-color: #ff5e14;
    border-radius: 20px 0px 0px 20px;
} 
.about h1 a {
    color: white;
    text-decoration: none;
}
.about h1 {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 12px;
}
.about-data .icon-box {
    width: 75px;
    height: 75px;
    background-color: #ffe2d5;
    padding: 18px;
    border-radius: 100%;
}
.zoom-in-out-box {
  display: inline-block;
  animation: zoomInOut 2s infinite;
  transition: transform 0.6s ease-in-out;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2); /* Zoom in */
  }
  100% {
    transform: scale(1); /* Zoom out */
  }
}
.work {
    background-image: url(../img/work-bg.jpg);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.pb-10 {
    padding-bottom: 100px;
}
.pt-10 {
    padding-top: 100px;
}
.mt-5 {
    margin-top: 1rem !important;
}
* {
    margin: 0;
    padding: 0;
    font-family: 'Saira Semi Condensed', sans-serif;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.section {
    display: block;
    unicode-bidi: isolate;
}
.dashed {
    border: 1px dashed #2371ff;
    border-radius: 5px;
    width: 40%;
    margin: auto;
}
.work-box {
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    margin: auto;
}
.work img {
    background-color: #2371ff;
    padding: 20px;
    border-radius: 5px;
    width: 100%;
}
.work img:hover {
    background-color: #ff5e14;
    transform: 0.6s;
}
.work-box img {
  transition: transform 0.6s ease-in-out;
}

.work-box img:hover {
  transform: rotate(360deg);
}
.text-center {
    text-align: center !important;
}
.work div a {
    font-weight: bold;
    text-decoration: none;
    color: black;
    letter-spacing: 1px;
}
.mt-4 {
    margin-top: 1.5rem !important;
}
.progress-bar-custom {
  background-color: #e0e0e0;
  border-radius: 10px;
  height: 8px;
  width: 100%;
  overflow: hidden;
}

.bar {
  height: 100%;
  width: 0;
  transition: width 1s ease-in-out;
}

.orange-bar {
  background-color: rgb(24, 137, 32);
  width: 90%;
}

.black-bar {
  background-color: rgb(235, 13, 157);
  width: 80%;
}

.blue-bar {
  background-color: #0b6dd6;
  width: 90%;
}
.logoMarqueeSection {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f1f1f1;
}
.img {
    overflow-clip-margin: content-box;
    overflow: clip;
}
.marquee a {
    display: inline-block;
    white-space: nowrap;
    padding-right: 5.4rem;
}
.marquee-wrapper {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeScroll 57s linear infinite;
}

.marqueelogo {
  display: inline-block;
  margin: 0 10px;
  height: 50px;
  object-fit: contain;
}

/* Keyframe for scrolling */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.contact-now-btn {
  display: inline-block;
  background-color: #007bff; /* Blue color */
  color: #fff;
  padding: 12px 25px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-right: 70%;
}
.contact-now-btn:hover {
  background-color: #e2a857;
  transform: scale(1.05);
}
.about .about-left i {
    font-size: 100px;
    padding-left: 50px;
    color: #ffcbb3;
    opacity: 0.9;
}
.about .about-right {
    height: auto;
    overflow: hidden;
    padding-bottom: 30px;
    background-color: #1d284b;
    border-radius: 0px 20px 20px 0px;
}
.about .about-right i {
    font-size: 80px;
    padding-left: 80px;
    color: #b3cdff;
    margin-top: 34px;
    opacity: 0.9;
}
.about h2 a {
    color: white;
    text-decoration: none;
}
.about div a {
    color: white;
    text-decoration: none;
}
.newicon1 .box1 {
    background-color: #f9f9f9;
    border-radius: 20px;
    padding: 16px 2px;
}
.newicon1 {
    margin-top: 30px;
    margin-bottom: 30px;
}
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex
;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}
.projects-done div {
    color: white;
    font-size: 50px;
    letter-spacing: 2px;
    font-weight: bold;
    line-height: 55px;
}
.projects-done {
    background-color: #1d284b;
    height: 220px;
    margin-top: 5px;
    padding: 25px;
}
.header-btn {
    padding: 0.8em 1.75em;
    background-color: #ff5e14;
    border-radius: 50px;
    border: 0.3px solid #ff5e14;
    transition: 0.5s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    font-weight: bold;
    font-size: 17px;
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    text-transform: uppercase;
    color: #ffffff;
}

.header-btn::before,
.header-btn::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #1d284b;
    top: 0;
    left: 0;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.header-btn:hover::before {
    transform: scaleX(1);
}

.header-btn:hover {
    color: #ffffff; /* Optional: Change text color on hover if needed */
}
.record {
  background-image: url('../img/record.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
}

.overlay {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
}

.record-group h5 {
  font-weight: bold;
  color: white;
  letter-spacing: 1px;
}

.record-box {
  border: 2px dashed orange;
  border-radius: 100%;
  padding: 15px;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 165, 0, 0.1); /* light orange background */
  transition: transform 0.6s ease-in-out;
}

.record-box img {
  width: 50%;
  height: auto;
}

.record-box:hover {
  transform: scale(1.1);
}

.pt-10 {
  padding-top: 100px;
}

.pb-10 {
  padding-bottom: 100px;
}
.record-box img {
  width: 50%;
  height: auto;
  filter: brightness(0) saturate(100%) invert(63%) sepia(85%) saturate(401%) hue-rotate(-10deg) brightness(100%) contrast(110%);
  transition: transform 0.6s ease-in-out;
}

.record-box:hover img {
  transform: rotate(-360deg);
}
.why-us-para {
    background-image: url(../img/work-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50px;
    right: 0;
    width: 60%;
    padding: 50px;
    border-radius: 0 0 0 20px;
    line-height: 1.6;
    color: #080000;
    z-index: 2;
}

.why-us {
    position: relative;
    overflow: hidden;
}

.text-services1 a {
    font-weight: 600;
    font-size: 20px;
    color: #ff5e14;
    text-decoration: none;
}

.text-services1 p {
    margin-top: 5px;
    font-size: 15px;
    color: #080000;
}

.reason-1 img{
    background-color: #2371ff;
    border-radius: 100%;
    padding: 15px;
    border: 5px solid #b3cdff;
}
.why-choose-us .reason-2 {
    background-color: #ff5e14;
    border-radius: 100%;
    padding: 15px;
    border: 5px solid #ffcbb3;
}

.flip-card {
    transition: 0.4s;
}

.flip-card:hover {
    transform: scale(1.02);
}
.flip-card {
  perspective: 1000px;
}
.flip-card:hover .reason-1,
.flip-card:hover .reason-2 {
  transform: rotateY(180deg);
}

.reason-1 img, .reason-2 img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
  border-radius: 10px;
}
.testinomials .repair-man {
    margin-top: -50px;
    margin-left: -200px;
}
.testinomials {
    background-color: #1d284b;
    position: relative;
    margin-top: 150px;
}
.home-blog .blog-heading a {
    font-size: 20px;
    font-weight: bold;
    color: black;
}
.home-blog button:hover {
    border: 1px solid #ff5e14;
    background-color: #ff5e14;
    color: white;
    transition: 0.6s;
}

.form-shadow {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}