/********** Template CSS **********/
:root {
    --primary: #E31E24;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #000;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    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 {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    color: var(--primary);
    background: transparent;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 24px;
    height: 24px;
}

.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 ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    /* background-color: #0B4F9C;
    position: relative; */
    border-bottom: 1px solid #a6a6a638;
}
.top-bar::before {
    /* content: "";
    position: absolute;
    inset: 0;
    background: #033d80;
    clip-path: polygon(0 0, calc(60% - 20px) 0, calc(60% + 20px) 100%, 0 100%);
    z-index: 0; */
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #fff;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color:#ef6224;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: var(--dark);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 550px;
    }
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.page-header {
    padding-top: 10rem;
    padding-bottom: 5rem;
    background-size: 100% 100% !important;
    background: linear-gradient(135deg, #783404cc 0%, #151210d9 60%, #151210d9 100%), url(../img/breadcrumbs.jpg) center center no-repeat;
}
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}
/*** Causes ***/
.causes-item .progress {
    height: 5px;
    border-radius: 0;
    overflow: visible;
}

.causes-item .progress .progress-bar {
    position: relative;
    overflow: visible;
    width: 0px;
    border-radius: 0;
    transition: 5s;
}

.causes-item .progress .progress-bar span {
    position: absolute;
    top: -7px;
    right: 0;
    width: 40px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--primary);
    color: #FFFFFF;
}

.causes-item .causes-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.causes-item:hover .causes-overlay {
    height: 100%;
    opacity: 1;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}


/*** Donate ***/
.donate {
    background: rgba(0, 29, 35, .8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--primary);
    border-color: var(--primary);
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial{
    background-image: url("../img/feedbackicon.png");
    background-repeat: repeat-x repeat-y;
    background-position:top right;
    background-size: 4% 16%;
}
.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 {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: #ff9933;
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: #ff9933 !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    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: #ff9933;
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color:#fff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    display: flex;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color:#ef6224;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color:#ef6224;
    border: 1px solid rgba(255,255,255,0.5);
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #fff;
}

.footer .copyright a:hover {
    color: var(--primary);
}
.navbar-brand img {
    width: 280px;
    margin-top: 0px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.hero-video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.devider{
    border-top: 2px solid #e31e24;
    width: 100px;
    height: 2px;
    margin-bottom: 6px;
}
.wel-vdots {
    position: relative;
    overflow: visible; /* allow image to go outside */
}
.welcome-video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.wel-vdots img {
    position: absolute;
    bottom: -20px;
    right: -30px;
    width: 350px;
    z-index: -1;
    opacity: 0.9;
    transform: rotate(0deg); /* thoda tilt look */
}
.welcome h1 span{
    color: #C9A227;
    font-size: 50px;
}
.welcome h1{
    color: #020d26;
}
.welcome{
    background-image: url("../img/dots2.png");
    background-repeat: no-repeat;
    background-position: top right;
}
.welcomeImg img{
    margin: 0 auto;
    display: block;
}
/**/
.counterhead h1 span{
    color: #C9A227;
}
.hcounter {
    background-position: fixed;
    background-size: 100% 100%;
    background-position: center !important;
    background: no-repeat fixed #000;
    background-image: linear-gradient(0deg, #000000bf 0), url(../img/hcounterbg.jpg);
}
.hcounterBox{
    position: relative;
    margin-top: -130px;
}
.counter-box {
    transition: 0.3s;
    padding: 20px 30px;
    margin-bottom: 20px;
    color: #fff;
    border-radius: 10px;
    backdrop-filter: blur(6px);
    background-color: rgba(0, 0, 0, .4);
}
.counter-box:hover{
    background-color: #ef6224;
    transform: translateY(-8px);
}
.counter-box:hover h2,
.counter-box:hover p,
.counter-box:hover .counter {
    color: #fff;
}
.counter-box h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ef6224;
    margin-bottom: 2px;
}
.counter-box p {
    color: #fff;
    margin-bottom: 0px;
    font-weight: 500;
}
.home-wedo ul li{
    color: #001D23;
    margin-bottom: 6px;
    font-weight: 700;
}
.wedoImg img{
    transition: 0.3s;
    border-radius: 8px;
}
.wedoImg img:hover{
    transform: translateY(-8px);
}
.whatwedo{
    background-image: url("../img/whatwedobg.png");
    background-repeat: no-repeat;
    background-position: top right;
}
.wedoImg {
    position: relative;
}
.wedoImg .main-img {
    width: 100%;
    border-radius: 10px;
}
.wedoImg .dots-img {
    position: absolute;
    bottom: -70px;
    left: -20px;
    width: 178px;
    z-index: 2;
}
.our-clients{
    background-image: url("../img/counter-bg.jpg");
    background-size: cover;
}
/*client logo scrolling*/
.brands-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.brands-track {
  display: flex;
  width: max-content;
  gap: 30px;
  animation: scrollBrands 20s linear infinite;
}
.brands-track img {
  height: 140px;
  object-fit: contain;
  flex-shrink: 0;
    border: 1px solid #c9c9c9;
    border-radius: 10px;
}
@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}
@media (max-width: 1024px) {
  .brands-track {
    gap: 25px;
    animation-duration: 15s;
  }
}
@media (max-width: 768px) {
  .brands-track {
    gap: 20px;
    animation-duration: 30s;
  }
  .brands-track img {
    height: auto;
  }
}
/**/
.footer-add a:hover{
    color: #ef6224;
}
.footer-add p{
    color: #fff;
    display: flex;
}
.footer-add p a{
    color: #fff;
}
.footer-add p i{
    color: #ef6224;
}
.footer{
    background-image: url("../img/footer-bg.jpg");
    background-size: cover;
}
.growth {
    background-image: url(../img/cornerbg.png);
    background-repeat: no-repeat;
    background-position: top left;
}
/**/

.highlight-box {
  background: #FFB7031F;
  border-radius: 15px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.highlight-box:hover {
  transform: translateY(-8px);
}
.highlight-box .icon {
  font-size: 40px;
  margin-bottom: 15px;
}
.highlight-box h4 {
  font-size: 22px;
  font-weight: 700;
  color: #C9A227;
  margin-bottom: 5px;
}
.highlight-box p {
  font-size: 14px;
  color: #fff;
}
/*responsive*/
@media (max-width: 768px) {
    .wel-vdots img {
        bottom: -50px;
        right: 0px;
        width: 220px;
    }
    .hero-video {
        height: 550px !important;
    }
    .mbanner{
        margin: 30px;
    }
    .nav-link {
        padding: .6rem 1.6rem;
    }
    .highlight-box {
        padding: 14px 6px;
    }
    .flogo img{
        width: 300px;
        margin-bottom: 10px;
    }
    .footer {
        background-size: auto;
        background-position: top;
    }
    .wedoImg .dots-img {
        bottom: -24px;
        left: -8px;
        width: 130px;
    }
    .navbar-brand img {
        width: 220px;
        margin-top: 0px;
    }
    .carousel-control-prev, .carousel-control-next {
        width: 15%;
    }
    .page-header {
        padding-top: 8rem;
        padding-bottom: 4rem;
        background-size: 100% 100% !important;
    }
    .ab-img-conetnt{
        margin-top: -20px;
    }
    .ab-img-conetnt h5{
        padding: 15px 4px !important;
        font-size: 16px !important;
    }
    .leaddership-order{
        order: 1;
    }
    .welcome{
        background-size: 72%;
    }
    .hservice-card-overlay p{
        display: none;
    }
    .footer .btn.btn-link{
        display: flex;
    }
    .hcounterBox{
        margin-top: -90px;
    }
    .bg-dark .navbar .navbar-nav .nav-link {
        color: #fff !important;
    }
    .bg-dark .navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
        /* color: #ff9933 !important; */
    }
    .home-weserve{
        background-size: cover !important;
    }
    .navheader{
        /* border-top: 4px solid #ff9933; */
    }
    .abenquiry h5{
        margin-bottom: 20px;
        text-align: center;
    }
    .mission-vision1{
        display: flex;
        flex-direction: column;
    }
    .mission-vision1 .mv-image-box{
        order: 1;
    }
    .mission-vision1 .mv-box-content{
        order: 2;
    }
    .testimonial{
        background-size: 20% 16%;
    }
        .slick-dots{
        bottom: -46px !important;
    }
        .counter-box{
        /* background: #ffffff; */
    }
    .gallery-tab{
        display: flex !important;
    }
    .prodetals-list-page{
        margin-top: 10px !important;
    }
    .counter-box p{
        font-size: 12px;
    }
    .aborder{
        order: 1;
    }
    .about{
        background-size: 100% !important;
    }
    .leadership-main {
        background-size: 90% !important;
    }
    .counter-box h2{
        font-size: 26px;
    }
    .hweserve{
        order: 1;
    }
    .why-choose img{
        margin-bottom: 20px !important;
    }
}
/**/
/*service page start*/
.service-page-main{
    margin: 20px 0;
    padding: 0px 0;
}
.service-box{
    background-color: #fff0e6;
    padding: 34px 20px;
    border-radius: 10px;
}
.service-box h4 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}
.service-box p {
    color: #000;
}
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 15px;
    margin-bottom: 10px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    width: 96%;
}
.service-list li:hover {
    transform: translateX(5px);
    background: #f8f9ff;
}
.service-list i {
    color: #C9A227;
    font-size: 20px;
    margin-top: 3px;
    min-width: 20px;
}
.service-list span {
    font-size: 15px;
    font-weight: 500;
    color: #000;
}
.service-img img{
    border-radius: 10px;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .service-order{
        order: 1;
    }
    .service img{
        margin-bottom: 10px;
    }
}
/*service page closed*/
.areas-work-card{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #c9a227;
    border-top: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}
.areas-work-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.areas-work-icon i{
    font-size: 22px;
    color: #c9a227;
    min-width: 30px;
    text-align: center;
}
.areas-work-content h5{
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
/*contact page start*/
.contact-area .quick-contact h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0px;
    color: #000;
}
.contact-area .quick-contact {
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    padding: 0px;
}
.contact-area .quick-contact ul li {
    font-size: 18px;
    position: relative;
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
    background-color: #fff;
    padding: 19px 20px;
    padding-left: 65px;
    list-style-type: none;
    border: 1px solid #ef6224;
}
.quick-contact ul{
    padding-left: 0px;
}
.contact-area .quick-contact ul li i {
    position: absolute;
    left: 25px;
    top: 20px;
    font-size: 25px;
    color: #ef6224;
}
.contact-area .quick-contact ul li a {
    display: block;
    font-weight: 400;
    font-size: 15px;
    color: #000;
}
@media only screen and (max-width:768px) {
    .contact-area .quick-contact ul li i{
	    left: 14px;
    }
    .contact-area .quick-contact ul li{
        padding-left: 54px;
    }
}
/*contact page closed*/
/*photo gallery start*/
.gallery-main {
  background-color: #fff;
  padding: 80px 0 50px;
}
.gallery-main h2 {
  text-align: center;
  margin: 10px 0 20px;
  text-transform: uppercase;
  font-size: 20px;

}
.main .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main .card-image {
  background: #fff;
  display: block;
  /* padding-top: 70%; */
  position: relative;
  width: 100%;
  height: 250px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 3px #606060a3;
  padding: 10px;
}
.main .card-image:hover {
  transform: scale(1.05);
}
.main .card {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
  color: #333;
  border-radius: 2px;
  /* width: 100%; */
}
.fancybox-button--share {
  display: none !important;
}
.card-event-gallery {
  margin-bottom: 30px;
}
@media only screen and (max-width:768px) {
  .main .card-image {
    height: 140px !important;
  }
  .gallery-main {
    padding: 50px 0 0px;
  }
  .main {
    margin-bottom: 0px !important;
  }

  .mo-hide {
    display: none;
  }
  .gallery-caption {
    padding: 8px 4px !important;
  }
  .gallery-caption p {
    font-size: 10px !important;
  }
}
.fancybox-share_button {
  color: #000000;
}
.fancybox-caption {
    text-align: center !important;
    font-weight: 500;
    color: #ffffff;
    padding: 10px;
}
.gallery-caption {
    background: #0606067a;
    padding: 10px 10px;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
.gallery-caption p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
}
.gallery-vdo video{
    width: 100%;
}
/*photo gallery closed*/
.ab-sqss{
    transition: all 0.3s ease;
}
.ab-sqss:hover{
    background-color: #FFF0E6;
    border-radius: 12px;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.ab-sqss img{
    width: 60px;
}
.ab-sqss h5{
    font-size: 22px;
    margin: 18px 0px;
}
/**/
.mv-image-box{
    border-radius: 15px;
    overflow: hidden;
}
.mv-image-box img{
    width: 100%;
    border-radius: 15px;
    transition: .5s;
    transform: scale(1.1);
}
.mv-image-box img:hover{
    transform: scale(1.2);
    transition: .5s;
}
.mv-box-content{
    padding: 10px;
}
.mv-box-content h5{
    font-size: 22px;
    margin: 10px 0;
    font-weight: 700;
}
/**/
.project-main{
    border-radius: 15px;
    background-color: #FFF0E6;
    height: 100%;
}
.project-img{
    border-radius: 15px;
    overflow: hidden;
    border-bottom: 5px solid #C9A227;
}
.project-img img{
    width: 100%;
    border-radius: 15px;
    transition: .5s;
    transform: scale(1.1);
}
.project-img img:hover{
    transform: scale(1.2);
    transition: .5s;
}
.project-content{
    padding: 20px;
}
.project-main{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.project-content{
    display: flex;
    flex-direction: column;
    flex: 1;
}
.project-content h4{
    font-size: 20px;
    margin-bottom: 10px;
}
.project-content h6{
    font-size: 14px;
}
.project-content p{
    font-size: 15px;
    margin-bottom: 10px;
}
.project-content .btn{
    margin-top: auto;
    align-self: flex-start;
}
/**/
.top-head a{
    color: #fff;
    z-index: 9999999;
    position: relative;
    position: relative;
}
.top-head a:hover{
    color: #C9A227;
}
.ab-img-conetnt {
    position: relative;
    overflow: hidden;
}
.ab-img-conetnt img {
    width: 100%;
    display: block;
    border-radius: 10px;
}
.ab-img-conetnt h5 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/**/
.why-work-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.why-work-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 16px;
    color: #001D23;
    line-height: 1.7;
    transition: all 0.3s ease;
}
.why-work-list li:last-child {
    margin-bottom: 0;
}
.why-work-list li i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 6px;
    flex-shrink: 0;
}
.why-work-list li span {
    flex: 1;
}
.why-work-list li:hover {
    transform: translateX(8px);
    color: var(--primary);
}
/**/
.career-card {
    background:#e3f6fb;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s, transform 0.35s;
    height: 100%;
    padding: 20px;
}
.career-card:hover {
    border-color: rgba(0, 0, 0, 0.4);
    transform: translateY(-6px);
}
.career-card-battery{
    background-color: #e9e5fb;
}
.career-card-Charger{
    background-color: #fde8e1;
}
.career-card-Motor{
    background-color: #fde3e9;
}
.career-card p{
    color: #000;
}
.career-icon {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 10px;
}
.icon-ev{
    background:#fff;
}
.career-title {
    font-size: 26px;
    color: #000;
    font-weight: 600;
}
.career-form{
    background-color: #e4e4e4;
    padding: 10px;
    margin-top: 24px;
}
.career-form h5{
    text-align: left;
}
.career-form h5 span{
    color: #C9A227;
}
.career-form h6{
    text-align: left;
}
.career-form h6 span{
    color: #C9A227;
}
.careerpost-img img{
    border-radius: 16px;
    margin: 0 auto;
    display: block;
}
/**/
.com-pro-details-main h4{
    font-size: 30px;
    font-weight: 700;
}
.com-pro-details-main p{
    color: #001D23;
}
.section-title {
    margin-bottom: 10px;
    font-weight: 700;
    color: #000;
    font-size: 30px;
}
th {
    background-color: #001D23 !important;
    color: white !important;
    font-size: 16px;
}
td{
    color:#001D23;
}
.com-pro-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.com-pro-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 16px;
    color: #001D23;
    line-height: 1.7;
    transition: all 0.3s ease;
}
.com-pro-details-list li:last-child {
    margin-bottom: 0;
}
.com-pro-details-list li i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}
.com-pro-details-list li span {
    flex: 1;
}
.com-pro-details-list li:hover {
    transform: translateX(8px);
    color: var(--primary);
}
.cp-carousel-caption h5 {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    bottom: 40px !important;
    position: absolute;
    background-color: #00000070;
    padding: 8px 16px;
}
.cp-carousel-caption{
    background: none;
}
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* background: linear-gradient(to bottom, black, transparent, rgba(0, 0, 0, 0.0)); */
    /* background: #000000bf; */
    z-index: 1;
    background: linear-gradient(135deg, #783404cc 0%, #151210bf 60%, #15121000 100%);
}
.tfacebook{
    background: #1877F2;
    padding: 7px 9px 0px 0px;
    border-radius: 20px;
    width: 26px;
    height: 26px;
    font-size: 13px;
}
.tyoutube{
    background: #FF0000;
    padding: 7px 6px 0px 0px;
    border-radius: 20px;
    width: 26px;
    height: 26px;
    font-size: 13px;
}
.tlinkedin{
    background: #1e85ec;
    padding: 6px 7px 0px 0px;
    border-radius: 20px;
    width: 26px;
    height: 26px;
    font-size: 13px;
}
.xtwitter{
    background: #252525;
    padding: 6px 6px 0px 0px;
    border-radius: 20px;
    width: 26px;
    height: 26px;
    font-size: 13px;
}
.tinstagram{
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    padding: 6px 8px 0px 0px;
    border-radius: 20px;
    width: 26px;
    height: 26px;
    font-size: 13px;
}
.hservicescard{
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin: 10px;
}
.hservicescard:hover{
    transform: translateY(-8px);
}
.hservicescard img{
    border-radius: 10px;
}
.hservicescard h4{
    font-size: 16px;
    font-weight: 700;
    margin: 14px 0;
}
.hservicebtn a{
    color: #E31E24;
    font-weight: 700;
    font-size: 14px;
}
.hservicebtn a:hover{
    color:#111;
}
.hservice-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.hservice-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hservice-card:hover img {
  transform: scale(1.05);
}
.hservice-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  z-index: 11;
}
.hservice-card-overlay h4 {
  color: #fff;
  font-weight: 700;
  font-size: 26px;
}
.hservice-card-overlay p {
  color: #fff;
}
.hservice-card:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .95), transparent);
  opacity: 1;
  z-index: 1;
  width: 100%;
  height: 100%;
}
/**/
.single-choose {
  position: relative;
  padding-left: 60px;
  margin-bottom: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.single-choose i {
  font-size: 22px;
  background-color: #111;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 4%;
  display: inline-block;
  color: #ff9933;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;

}
.single-choose h3 {
  margin-bottom: 4px;
  color: #000 !important;
  font-weight: 600;
  font-size: 18px;
}
.single-choose:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}
/*company name scroll start*/
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
}
.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee-scroll 18s linear infinite;
}
.marquee-track:hover {
    animation-play-state: paused;
}
.client-logo {
    margin-right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.client-logo img {
    max-width: 150px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 4px;
}
/* Smooth Infinite Marquee */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* Mobile */
@media (max-width: 767px) {
    .client-logo {
        height: 75px;
        margin-right: 20px;
    }
    .marquee-track {
        animation-duration: 14s;
    }
    .marquee-wrapper{
        padding: 10px 0 0px;
    }
}
/*company name scroll closed*/
.flogo img{
    /* width: 160px; */
}
/**/
.read-more-btn {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #0000004f;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.4s ease;
    border: none;
    padding: 0;
}
.read-more-btn:hover {
    background-color: #E31E24; /* Blue color */
}
/* Rotating SVG */
.rotating-svg {
    width: 68px;
    height: 68px;
    animation: rotate 8s linear infinite;
  }
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.arrow {
    position: absolute;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    pointer-events: none; /* Taaki hover mein dikkat na ho */
}
/*service page start*/
.prodetals-inpage{
    margin: 80px 0;
}
.prodetals-content{
    position:relative;
    z-index:2;
}
.prodetals-number{
    position:absolute;
    top:-55px;
    left:0;
    font-size:130px;
    font-weight:800;
    color:#ffd8d9;
    z-index:-1;
    line-height:1;
}
.prodetals-title{
    font-size:26px;
    font-weight:700;
    margin-bottom:10px;
    color:#111;
}
.prodetals-desc{
    line-height:26px;
    color:#000;
    margin-bottom:10px;
}
.prodetals-list-page{
    padding:0;
    margin:0;
    list-style:none;
    margin-top:14px;
}
.prodetails-features{
    padding: 20px 10px 10px 10px;
}
.prodetals-list-page li{
    margin-bottom:6px;
    color:#000;
    display:flex;
    font-weight: 500;
}
.prodetals-list-page i{
    /* min-width:20px;
    height:20px;
    background:#f02449; */
    color:#ef6224;
    border-radius:50%;
    display:flex;
    justify-content:center;
    /* align-items:center; */
    margin-right:12px;
    font-size:12px;
    margin-top: 8px;
}
.prod-btn{
    padding:10px 22px;
}
.prodetals-btn{
    background:#ff9933;
    color:#fff;
    padding:12px 34px;
    font-weight:600;
    border-radius:5px;
    transition:.4s;
}
.prodetals-btn:hover{
    background:#000;
    color:#fff;
}
.pro-details-image img{
    transition:.5s;
    border-radius:14px;
    margin: 0 auto;
    display: block;
}
.pro-details-image:hover img{
    transform:scale(1.06);
}
.prodetals-list-main{
    display: flex;
}
.prodcuct-contant {
    width: 100%;
    gap: 15px;
}
@media(max-width:991px){
    .prodetals-number{
        font-size:90px;
        top:-35px;
    }
    .prodetals-title{
        font-size:36px;
    }
    .prodetals-image img{
        height:450px;
    }
}
@media(max-width:767px){
    .prodetals-number{
        font-size:70px;
    }
    .prodetals-title{
        font-size:24px;
    }
    .prodetals-desc{
        font-size:15px;
        line-height:27px;
    }
    .prodetals-image img{
        height:350px;
    }
    .prodetals-list-page li{
        font-size:15px;
    }
    .serviceOrder{
        order: -9;
    }
    .prodetals-inpage{
        margin: 40px 0;
    }
}
/*service page closed*/
.home-gallery img{
    border-radius: 10px;
    height: 160px;
    transition: all 0.5s;
}
.home-gallery img:hover{
    transform: translateY(-5px);
    cursor: pointer;
}
@media(max-width:767px){
    .hservice-card-overlay h4{
        font-size: 24px;
    }
    .home-gallery img{
        height: 124px;
    }
    .promotedby{
        display: block;
    }
}
.navheader{
    /* background-color: #ffffffc7; */
}
.fixed-top.bg-dark {
    /* background-color: #fff !important; */
}

@media (min-width: 769px) {
    .bg-dark .navbar .navbar-nav .nav-link{
        /* color: #000 !important; */
    }
    .bg-dark .navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
        /* color: #ff9933 !important; */
    }
}
/**/
.header-info{
    display: flex;
    gap: 15px;
}
/**/
.about{
}
.about-btn {
    background: #ef6224;
    color: #fff;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    transition: 0.3s;
}
.about-btn:hover {
    background: #f88e23;
    color: #fff;
}
.call-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.call-icon i {
    font-size: 38px;
    color: #f02449;
}
.call-box span {
    display: block;
    color: #000;
    font-size: 16px;
    margin-bottom: 5px;
}
.call-box h5 {
    margin: 0;
    color: #111;
    font-size: 20px;
    font-weight: 700;
}
@media(max-width:576px){
    .d-flex.align-items-center.gap-4{
        flex-direction: column;
        align-items: flex-start !important;
    }

    .about-btn{
        padding: 15px 25px;
    }
}

.hservicescard .btn {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
}
.hservicescard .btn-view {
    background: #fff;
    border-color: #0b4f9c;
    color: #0b4f9c;
}
.hservicescard .btn-enquiry {
    background: #ff9933;
    border-color: #ff9933;
    color: #fff;
}
.hservicescard .btn:hover {
    opacity: 0.85;
}
.fcontent{
    /* background-color: #fff;
    padding: 12px;
    border-radius: 8px; */
}
.hweserve{
    /* background-color: #f3eeee; */
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.hweserve:hover{
    transform: translateY(-8px);
}
.hweserve h5{
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0px;
    margin-top: 10px;
    color: #000;
}
.hweserve img{
    width: 50px;
}
.hwelcome span{
    font-weight: 600;
}


/**/
.cabin-process-subtitle{
    display:inline-block;
    padding:8px 18px;
    background:#0d6efd;
    color:#fff;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
}
.cabin-process-title{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}
.cabin-process-desc{
    max-width:700px;
    margin:auto;
    color:#666;
}
.cabin-process-card{
    position:relative;
    background:#fff;
    border-radius:18px;
    padding:70px 30px 20px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}
.cabin-process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}
.cabin-process-number{
    position:absolute;
    top:18px;
    right:18px;
    font-size:42px;
    font-weight:800;
    color:#ffe1c2;
}
.cabin-process-icon{
    width:85px;
    height:85px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:linear-gradient(135deg,#d27315,#ffc080);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    transition:.4s;
}
.cabin-process-card:hover .cabin-process-icon{
    transform:rotateY(180deg);
}
.cabin-process-card h4{
    font-size:18px;
    font-weight:700;
    color:#111;
    margin-bottom:0px;
    min-height:60px;
}
.cabin-process-card p{
    color:#001D23;
    margin:0;
}
@media(min-width:992px){
    .cabin-process-card::after{
        content:"";
        position:absolute;
        top:110px;
        right:-40px;
        width:80px;
        height:3px;
        background:linear-gradient(to right,#0d6efd,#7ec8ff);
    }
    .col-lg-3:last-child .cabin-process-card::after{
        display:none;
    }
}
@media(max-width:991px){
    .cabin-process-title{
        font-size:34px;
    }
    .cabin-process-card h4{
        min-height:auto;
    }
}
@media(max-width:767px){
    .cabin-process-title{
        font-size:28px;
    }
    .cabin-process-card{
        padding:60px 22px 30px;
    }
    .cabin-process-icon{
        width:75px;
        height:75px;
        font-size:30px;
    }
    .cabin-process-card h4{
        font-size:20px;
    }
    .cabin-process-number{
        font-size:34px;
        color: #feca94;
    }
}
/**/
.abenquiry{
    padding: 40px 30px;
}
.abenquiry h5{
    color: #fff;
    font-size: 30px;
}
/*products in page start*/
.nav-pills .nav-link {
    text-align: left;
    margin-bottom: 10px;
    background-color: #f3e8dde8;
}
.nav-pills {
    padding-right: 20px;
}
.pro-tab-content {
    padding: 20px;
    background-color: #f3e8dd;
    border-radius: 8px;
}
.sticky-tabs{
    position: sticky;
    top: 100px;
    align-self: flex-start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}
@media(max-width:767px){
    .nav-pills {
        white-space: nowrap;
        display: ruby;
        width: 100%;
    }
    .pro-tab-content{
        width: 100%;
    }
    .pro-tab-content {
        padding: 10px;
    }
    .sticky-tabs{
        top: 98px;
        background-color: #fff;
        padding: 16px 0 6px;
        z-index: 11;
    }
    .prod-btn {
        padding: 12px 20px;
    }
}
/*products in page closed*/
th {
    background-color: #ef6224 !important;
    color: white !important;
    font-size: 16px;
}
/**/
/*h-strip start*/
.h-strip-wrapper{
    position: absolute;
    top: 520px;
    left: 0;
    width: 100%;
    z-index: 999;
    overflow: hidden;
}
.h-strip{
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 12px 0;
}
.h-strip-track{
    display: flex;
    align-items: center;
    width: max-content;
    gap: 50px;
}
.h-strip-track span{
    display: inline-flex;
    align-items: center;
 
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}
.h-strip-top{
    background: rgb(0 0 0 / 20%);
}
.h-strip-top .h-strip-track{
    animation: hStripLeft 25s linear infinite;
}
.h-strip-bottom{
    background: rgb(0 0 0 / 20%);
    margin-top: 10px;
}
.h-strip-bottom .h-strip-track{
    animation: hStripRight 25s linear infinite;
}
@keyframes hStripLeft{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-50%);
    }
}
@keyframes hStripRight{
    0%{
        transform: translateX(-50%);
    }
    100%{
        transform: translateX(0);
    }
}
.h-strip:hover .h-strip-track{
    animation-play-state: paused;
}
@media (max-width:991px){
    .h-strip{
        padding: 10px 0;
    }
    .h-strip-track{
        gap: 35px;
    }
    .h-strip-track span{
        font-size: 12px;
        letter-spacing: 1.5px;
    }
}
@media (max-width:767px){
    .h-strip{
        padding: 8px 0;
    }
    .h-strip-track{
        gap: 25px;
    }
    .h-strip-track span{
        font-size: 10px;
        letter-spacing: 1px;
    }
    .h-strip-wrapper{
        top: 462px;
    }
}
@media (max-width:480px){
    .h-strip-track{
        gap: 20px;
    }
    .h-strip-track span{
        font-size: 9px;
    }
}
/*h-strip closed*/

/*home products start*/
.product-card {
    position: relative;
    border: none;
    overflow: hidden;
    width: 350px;
    border-radius: 0px;
    transition: transform 0.4s ease, box-shadow 0.4s ease; /* Card smooth animation */
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3) !important;
}
.product-card img {
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease; /* Image zoom effect on card hover */
}
.product-card:hover img {
    transform: scale(1.08);
}
.card-img-overlay {
    background: linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px;
}
.card-title {
    color: white;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}
.hover-arrow {
    background-color: white;
    color: #f02449;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.hover-arrow:hover {
    background-color: #f02449;
    color: white;
    transform: scale(1.1);
}
.product-card:hover .hover-arrow {
    background-color: #f02449;
    color: white;
}
.hover-arrow:active {
    transform: scale(0.95);
}
/*home products closed*/
.network-card{
    background:#fff;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.4s ease;
    border:1px solid #f1f1f1;
    overflow:hidden;
    position:relative;
}
.network-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height: 4px;
    background: #f13849;
}
.network-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}
.network-img{
    width:130px;
    height:130px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.network-img img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.4s;
}
.network-card:hover .network-img img{
    transform:scale(1.08);
}
.network-content h5{
    font-size:22px;
    font-weight:700;
    color:#222;
    margin-bottom:8px;
}
.network-content p{
    margin:0;
    font-size:15px;
    color:#777;
    line-height:1.6;
}
/**/
.why-choose img{
    margin: 0 auto;
    display: block;
    border-radius: 12px;
}
.whychoose{
    padding: 20px;
    border-radius: 12px;
    background-color: #000;
}
/**/
.requestbg{
    background-color: #ef6224;
    padding: 30px;
}
.request-btn {
    background: #fff;
    color: #e14805;
    padding: 16px 24px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    transition: 0.3s;
}
.request-btn:hover {
    background: #000;
    color: #fff;
}
.hnetwork{
    background-image: url("../img/bg1.png");
    background-repeat: repeat-x;
    background-position:top center;
    background-size: 36% 50%;
}
/**/
.leadership-main {
    background-image: url("../img/leadershipbg.jpg");
    background-color: #000;
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: right bottom;
}
.leadership img{
    border-radius: 10px;
    width: 400px;
    margin: 0 auto;
    display: block;
}
/**/
.mv-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    position:relative;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}
.mv-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}
.mv-image{
    position:relative;
    height:180px;
}
.mv-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.mv-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.25);
}
.mv-title{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#fff;
    font-size:26px;
    font-weight:600;
    letter-spacing:2px;
    z-index:2;
}
.mv-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-top:-45px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    border:6px solid #fff;
    position:relative;
    z-index:5;
}
.mv-content{
    padding:10px 25px 35px;
}
.mv-content h4{
    font-weight:700;
    margin-bottom:15px;
}
.mv-content p{
    color:#000;
    line-height:28px;
    margin:0;
}
.ab-mision{
    background-color: #0056A6 !important;
}
.ab-vision{
    background-color: #374151 !important;
}
.ab-core{
    background-color: #F97316 !important;
}
@media(max-width:767px){
    .mv-image{
        height:180px;
    }
    .mv-title{
        font-size:28px;
    }
}
/*certificates start*/
.certificate-img {
    cursor: pointer;
    transition: 0.3s;
}
.certificate-img:hover {
    transform: scale(1.05);
}
/*certificate closed*/
.proindetails h6 {
    display: flex;
    align-items: center;
    gap: 6px;
}
.proindetails h6::after {
    content: "";
    height: 1px;
    width: 40px;
    background: #dc3545;
    margin-top: 8px;
}
.proindetails h6 i {
    color: #f19e4c;
    margin-right: 0px;
    font-size: 14px;
}
.hwhychooselist{
    margin-top: 100px;
}
/**/
.subtitle1 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ef6224 !important;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
}
.subtitle1::after {
    content: "";
    width: 60px;
    height: 1px;
    background-color: #ef6224;
    margin-left: 10px;
    display: inline-block;
}
/*home page products start*/
.hprobg {
    background-image: url(../img/hprobg.svg);
}
.hpro-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.hpro-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hpro-card:hover img {
  transform: scale(1.05);
}
.hpro-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 24px;
  text-align: center;
  z-index: 11;
}
.hpro-card-overlay h4 {
  color: #f2a905;
  font-weight: 400;
  font-size: 16px;
  transform: translateY(0);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.hpro-card:hover .hpro-card-overlay h4 {
    transform: translateY(-20px);
}
/**/
.hpro-card-enquiry {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 11;
}
.hpro-card-enquiry h4 {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 15px;
    max-width: 100%;
}
.hpro-card-enquiry .about-btn1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
/**/
.hpro-card:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .6), transparent);
  opacity: 1;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.hpro-sticky {
    position: sticky;
    top: 90px;
    align-self: flex-start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}
/*home page products closed*/

.hweserve-slider img{
    border-radius: 10px;
}
.hweserve-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.hweserve-slider img {
    width: 100%;
    display: block;
    border-radius: 10px;
}
.hweserve-slider::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.925),
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0)
    );
    border-radius: 10px;
    pointer-events: none;
}
/**/

/*logo preloader start*/
#logo-mask-loader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}
#logo-mask-loader::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: #fff;
    -webkit-mask-image: url("../img/prelogo.png");
    mask-image: url("../img/prelogo.png");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
.mask-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.logo-mask {
    width: 360px;
    height: 360px;
    flex-shrink: 0;
}
.loader-welcome {
    position: relative;
    margin-top: 25px;
    width: 100%;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(12px);
    animation: welcomeText 0.7s ease 0.4s forwards;
}
@keyframes welcomeText {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#logo-mask-loader.loader-finished {
    opacity: 0;
    visibility: hidden;
}
@media (max-width: 767px) {
    #logo-mask-loader::after {
        width: 250px;
        height: 250px;
    }
    .loader-welcome {
        margin-top: -10px;
        font-size: 16px;
        letter-spacing: 2px;
        white-space: normal;
        padding: 0 20px;
        line-height: 1.5;
    }
    .logo-mask {
        width: 300px;
        height: 300px;
    }
}
/*logo preloader closed*/
/*ab table start*/
.adhunik-table{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid #ececec;
}
.adhunik-table table{
    margin:0;
}
.adhunik-table tbody tr{
    transition:.3s;
}
.adhunik-table tbody tr:hover{
    background:#f8fbff;
}
.adhunik-table th{
    width:35%;
    color:#fff;
    padding:16px 25px;
    font-size:16px;
    font-weight:600;
    border:1px solid rgba(255,255,255,.08);
    vertical-align:middle;
    position:relative;
}
.adhunik-table td{
    background:#fff;
    color:#000;
    padding:12px 24px;
    font-size:15px;
    border:1px solid #bbbbbb;
    vertical-align:middle;
    font-weight:500;
}
.adhunik-table tbody tr:nth-child(even) td{
    background:#ede8e6;
}
.adhunik-table tbody tr:hover td{
    color:#ef6224;
}
@media(max-width:767px){
    .adhunik-table th,
    .adhunik-table td{
        padding:14px;
        font-size:14px;
    }
    .adhunik-table th{
        width:40%;
    }
}
/*ab table closed*/

/*founder message start*/
.founder-section{
    padding:80px 0;
}
.founder-card{
    background:#efefef;
    border-radius:14px;
    overflow:hidden;
    padding:20px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
}
.founder-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}
.founder-img-box{
    display:flex;
    justify-content:center;
    align-items:center;
}
.founder-img{
    width:300px;
    object-fit:cover;
    border-radius:16px;
    border:4px solid #fff;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    transition:.4s;
}
.founder-card:hover .founder-img{
    transform:scale(1.05);
}
.founder-subtitle{
    display:inline-block;
    color:#ef6224;
    font-size:14px;
    font-weight:700;
    margin-bottom:12px;
}
.founder-name{
    font-size:26px;
    font-weight:700;
    color:#001a31;
    margin-bottom:8px;
}
.founder-designation{
    color:#ef6224;
    margin-bottom:12px;
    font-weight:500;
    font-size:16px;
}
.title-line{
    width:80px;
    height:4px;
    background:#ef6224;
    border-radius:20px;
    margin-bottom:25px;
}
.founder-card p{
    color:#000;
    line-height:1.9;
    font-size:16px;
    margin-bottom: 6px;
}
.founder-list{
    list-style:none;
    padding:0;
    margin:0;
}
.founder-list li{
    position:relative;
    padding-left:35px;
    margin-bottom:15px;
    font-weight:600;
    color:#000;
}
.founder-list li::before{
    content:"\F26E";
    position:absolute;
    left:0;
    top:0;
    width:22px;
    height:22px;
    background:#ef6224;
    color:#fff;
    border-radius:50%;
    text-align:center;
    line-height:22px;
    font-size:13px;
    font-family: "bootstrap-icons";
}
blockquote{
    margin-top:10px;
    background:#feedc7;
    border-left:5px solid #ef6224;
    padding:18px 25px;
    font-style:italic;
    color:#000;
    border-radius:8px;
}
@media(max-width:991px){
  .founder-card{
      padding:30px;
      text-align:center;
  }
  .founder-img{
      margin-bottom:30px;
  }
  .title-line{
      margin:20px auto;
  }
  .founder-list{
      text-align:left;
      margin-bottom:20px;
  }
  .founder-name{
      font-size:30px;
  }
}
/*founder message closed*/

/*journey page design start*/
.company-timeline{
    background:#f8f9fa;
}
.timeline-wrapper{
    position:relative;
    max-width:1100px;
    margin:auto;
    padding:20px 0;
}
.timeline-wrapper::before{
    content:'';
    position:absolute;
    left:50%;
    top:0;
    width:4px;
    height:100%;
    background:linear-gradient(to bottom,#ef6224,#ff7784);
    transform:translateX(-50%);
}
.timeline-item{
    position:relative;
    width:50%;
    padding:25px 45px;
}
.timeline-item.left{
    left:0;
    text-align:right;
}
.timeline-item.right{
    left:50%;
    text-align:left;
}
.timeline-content{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    position:relative;
    transition:.3s;
}
.timeline-content:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}
.timeline-year{
    display:inline-block;
    background:#ef6224;
    color:#fff;
    font-size:18px;
    font-weight:700;
    padding:8px 20px;
    border-radius:30px;
    margin-bottom:15px;
}
.timeline-content p{
    margin:0;
    color:#000;
    line-height:1.8;
}
.timeline-item::before{
    content:'';
    position:absolute;
    top:45px;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#fff;
    border:5px solid #ef6224;
    z-index:5;
}
.timeline-item.left::before{
    right:-11px;
}
.timeline-item.right::before{
    left:-11px;
}
.timeline-item.left .timeline-content::after{
    content:'';
    position:absolute;
    top:35px;
    right:-12px;
    border-width:12px 0 12px 12px;
    border-style:solid;
    border-color:transparent transparent transparent #fff;
}
.timeline-item.right .timeline-content::after{
    content:'';
    position:absolute;
    top:35px;
    left:-12px;
    border-width:12px 12px 12px 0;
    border-style:solid;
    border-color:transparent #fff transparent transparent;
}
@media(max-width:991px){
  .timeline-wrapper::before{
      left:25px;
  }
  .timeline-item,
  .timeline-item.left,
  .timeline-item.right{
      width:100%;
      left:0;
      text-align:left;
      padding-left:70px;
      padding-right:15px;
  }
  .timeline-item::before{
      left:15px !important;
  }
  .timeline-item.left::before{
      right:auto;
  }
  .timeline-item.left .timeline-content::after,
  .timeline-item.right .timeline-content::after{
      left:-12px;
      right:auto;
      border-width:12px 12px 12px 0;
      border-color:transparent #fff transparent transparent;
  }
}
/*journey page design closed*/
.quilityin img{
    border-radius: 10px;
}
.adhunik-policy-section {
    background: #f7f9fb;
}
.adhunik-policy-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1d6b4f;
    margin-bottom: 8px;
}
.adhunik-policy-title {
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}
.adhunik-policy-intro {
    max-width: 700px;
    margin: 0 auto;
    color: #000;
    font-size: 16px;
    line-height: 1.7;
}
.adhunik-policy-card {
    height: 100%;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
    transition: all 0.35s ease;
}
.adhunik-policy-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.11);
}
.adhunik-policy-image {
    position: relative;
    height: 270px;
    overflow: hidden;
}
.adhunik-policy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.adhunik-policy-card:hover .adhunik-policy-image img {
    transform: scale(1.06);
}
.adhunik-policy-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.72),
        rgba(0, 0, 0, 0.05)
    );
}
.adhunik-policy-image-title {
    position: absolute;
    left: 25px;
    bottom: 22px;
    z-index: 2;
    color: #fff;
}
.adhunik-policy-image-title span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 4px;
    opacity: 0.8;
}
.adhunik-policy-image-title h3 {
    margin: 0;
    font-size: 27px;
    font-weight: 700;
    color: #fff;
}
.adhunik-policy-content {
    padding: 30px;
}
.adhunik-policy-content > p {
    color: #000;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 25px;
}
.adhunik-policy-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.adhunik-policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-top: 1px solid #edf0f2;
}
.policy-icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e8f4ee;
    color: #ef6224;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.adhunik-policy-list strong {
    display: block;
    color: #000;
    margin-bottom: 4px;
}
.adhunik-policy-list p {
    margin: 0;
    color: #000;
}
@media (max-width: 991px) {
    .adhunik-policy-title {
        font-size: 32px;
    }
    .adhunik-policy-image {
        height: 240px;
    }
}
@media (max-width: 767px) {
    .adhunik-policy-section {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }
    .adhunik-policy-image {
        height: 220px;
    }
    .adhunik-policy-image-title {
        left: 20px;
        bottom: 18px;
    }
    .adhunik-policy-content {
        padding: 22px;
    }
    .adhunik-policy-title {
        font-size: 26px;
    }
}
.product-btn {
    margin-top: 20px;
    border-top: 1px dashed #d9c8c1;
    padding-top: 8px;
}
.product-btn h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}
.gw-all-products-btn {
  display: inline-block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 4px;
}
.gw-all-products-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
  transform: skewX(-60deg);
  animation: shineLTR 1.5s linear infinite;
  pointer-events: none;
}
@keyframes shineLTR {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
.gw-all-products-btn:hover {
  transform: translateY(-3px);
}
