/********** 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;
}

.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: #ff9933;
}

@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;
        left: -80px;
    }

    .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(rgb(0, 10, 12), rgba(0, 3, 3, 0.4)), 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: #ff9933;
    margin-right: 10px;
}

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

.footer .btn.btn-square {
    color: #ff9933;
    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: #ff9933;
}

.footer .copyright a:hover {
    color: var(--primary);
}

.navbar-brand img {
    width: 200px;
    margin-top: -4px;
    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 {
    border-left: 6px solid #0b4f9c;
    padding-left: 12px;
    color: #0b4f9c;
}

.welcome {
    background-image: url("../img/dots.png");
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 28% 100%;
}

.welcomeImg img {
    margin: 0 auto;
    display: block;
}

/**/
.counterBox {
    /* background-size: 100% 100% !important; */
    background-position: center !important;
    background: 0 0/cover no-repeat fixed #000;
    background-image: linear-gradient(0deg, #000000d3 0, rgba(0, 0, 0, 0.8) 99%), url(../img/abcounterbg.jpg);
    background-size: 100% 100%;
}

.hproduct {
    background-position: fixed;
    background-size: 100% 100%;
    background-position: center !important;
    background: no-repeat fixed #000;
    background-image: linear-gradient(0deg, #000000de 0, #00142bcc 99%), url(../img/hproductsbg.jpg);
}

.counterhead h1 span {
    color: #C9A227;
}

.hcounterBox {
    position: relative;
    margin-top: -130px;
}

.counter-box {
    transition: 0.3s;
    padding: 14px 30px;
    background: #ffffffb0;
    margin-bottom: 20px;
}

.counter-box1 {
    /* background: #01bd8b; */
    border-left: 6px solid #ff9933;
}

.counter-box2 {
    /* background: #1382e9; */
    border-left: 6px solid #ff9933;
}

.counter-box3 {
    /* background: #efa310; */
    border-left: 6px solid #ff9933;
}

.counter-box4 {
    /* background: #efa310; */
    border-left: 6px solid #ff9933;
}

.counter-box:hover {
    transform: translateY(-8px);
}

.counter-box h2 {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin-bottom: 2px;
}

.counter-box p {
    color: #111;
    margin-bottom: 0px;
}

.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("");
    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: #E31E24;
}

.footer-add p {
    color: #fff;
    display: flex;
}

.footer-add p a {
    color: #fff;
}

.footer-add p i {
    color: #ff9933;
}

.footer {
    background-image: url("../img/footer-bg.jpg");
    background-size: cover;
}

.growth {
    background-image: url();
    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: 150px;
        margin-top: -7px;
    }

    .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: 100% 50%;
    }

    .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;
    }
}

/**/
/*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: 15px;
}

.contact-area .quick-contact ul li {
    font-size: 18px;
    position: relative;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
    background-color: #131313;
    padding: 19px 20px;
    padding-left: 65px;
}

.quick-contact ul {
    padding-left: 0px;
}

.contact-area .quick-contact ul li i {
    position: absolute;
    left: 25px;
    top: 20px;
    font-size: 25px;
    color: #ff9933;
}

.contact-area .quick-contact ul li a {
    display: block;
    font-weight: 400;
    font-size: 15px;
    color: #ffffff;
}

/*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));
    z-index: 1;
}

.tfacebook {
    background: #1877F2;
    padding: 8px 0px 0px 0px;
    border-radius: 20px;
    width: 30px;
    height: 30px;
    font-size: 14px;
}

.tyoutube {
    background: #FF0000;
    padding: 7px 8px 0px 0px;
    border-radius: 20px;
    width: 30px;
    height: 30px;
    font-size: 14px;
}

.tlinkedin {
    background: #1e85ec;
    padding: 8px 8px 0px 0px;
    border-radius: 20px;
    width: 30px;
    height: 30px;
    font-size: 14px;
}

.tinstagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    padding: 8px 3px 0px 0px;
    border-radius: 20px;
    width: 30px;
    height: 30px;
    font-size: 14px;
}

.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%;
}

.home-weserve {
    background-image: url("../img/hweservebg.jpg");
    background-repeat: no-repeat;
    background-size: 100% 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: 0px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 18s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.company-heading {
    font-size: 62px;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-text-stroke: 1px #E31E24;
    color: #fff;
    white-space: nowrap;
    padding-right: 40px;
    margin-bottom: 0;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/*company name scroll closed*/
.flogo img {
    width: 200px;
}

/**/
.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: 36px;
    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: 0px;
}

.prodetails-features {
    padding: 20px 10px 10px 10px;
}

.prodetals-list-page li {
    margin-bottom: 10px;
    color: #000;
    display: flex;
    align-items: center;
}

.prodetals-list-page i {
    width: 20px;
    height: 20px;
    background: #ff9933;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    font-size: 10px;
}

.prod-btn {
    padding: 12px 34px;
}

.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: 30px;
    }

    .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-btn {
    background: #ff9933;
    color: #fff;
    padding: 16px 24px;
    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: #ff9933;
}

.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: 700;
    font-size: 17px;
    margin-bottom: 0px;
    margin-top: 10px;
}

.hweserve img {
    width: 50px;
}

/*home page welcome video start*/
.welcome-video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.welcome {
    width: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.welcome-establishment {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
    backdrop-filter: blur(8px);
    z-index: 2;
}

@media(max-width:768px) {
    .welcome {
        min-height: auto;
        margin-bottom: 22px;
    }

    .welcome-establishment {
        top: 12px;
        left: 12px;
        font-size: 12px;
        padding: 8px 12px;
    }

    .mobile-hide {
        display: none;
    }
}

/**/
.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;
}

.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: 116px;
        background-color: #fff;
        padding: 16px 0 6px;
    }

    .prod-btn {
        padding: 12px 20px;
    }
}

/*products in page closed*/
th {
    background-color: #ff9933 !important;
    color: white !important;
    font-size: 16px;
}











/* =========================================
   Floating Contact Buttons
========================================= */

.contact-float {
    position: fixed;
        left: 25px;
    bottom: 25px;
    z-index: 9999;
    /* top: 62px; */
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* =========================================
   Common Button
========================================= */

.float-btn {
    position: relative;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;
    text-decoration: none;

    font-size: 24px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.20),
        inset 0 1px 1px rgba(255, 255, 255, 0.35);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

    overflow: visible;
}


/* =========================================
   Call Button
========================================= */

.call-btn {
    background: linear-gradient(
        135deg,
        #1677ff,
        #005bea
    );
}

.call-btn:hover {
    color: #fff;
    transform: translateY(-6px) scale(1.08);

    box-shadow:
        0 14px 30px rgba(0, 91, 234, 0.40),
        0 0 0 6px rgba(0, 91, 234, 0.10);
}


/* =========================================
   WhatsApp Button
========================================= */

.whatsapp-btn {
    background: linear-gradient(
        135deg,
        #25d366,
        #128c7e
    );
}

.whatsapp-btn:hover {
    color: #fff;
    transform: translateY(-6px) scale(1.08);

    box-shadow:
        0 14px 30px rgba(18, 140, 126, 0.40),
        0 0 0 6px rgba(37, 211, 102, 0.12);
}


/* =========================================
   Icon Animation
========================================= */

.float-btn i {
    transition: transform 0.35s ease;
}

.float-btn:hover i {
    transform: scale(1.15);
}

.call-btn:hover i {
    animation: phoneShake 0.6s ease-in-out;
}

@keyframes phoneShake {

    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    40% {
        transform: rotate(15deg);
    }

    60% {
        transform: rotate(-10deg);
    }

    80% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}


/* =========================================
   Pulse Ring
========================================= */

.whatsapp-btn::before {
    content: "";

    position: absolute;
    inset: -5px;

    border-radius: 50%;

    border: 2px solid rgba(37, 211, 102, 0.45);

    animation: whatsappPulse 2s infinite;

    pointer-events: none;
}

@keyframes whatsappPulse {

    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.25);
        opacity: 0;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}


/* =========================================
   Tooltip
========================================= */

.float-btn::after {
    position: absolute;

    right: 72px;
    top: 50%;

    transform: translateY(-50%) translateX(10px);

    padding: 7px 12px;

    border-radius: 6px;

    background: #111;
    color: #fff;

    font-size: 13px;
    font-weight: 500;

    white-space: nowrap;

    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;

    pointer-events: none;
}

.float-btn:hover::after {
    opacity: 1;
    visibility: visible;

    transform: translateY(-50%) translateX(0);
}


/* =========================================
   Mobile Responsive
========================================= */

@media (max-width: 767px) {

    .contact-float {
        right: 15px;
        bottom: 18px;
        gap: 11px;
    }

    .float-btn {
        width: 52px;
        height: 52px;
        font-size: 21px;
    }

    /* Hide tooltip on mobile */
    .float-btn::after {
        display: none;
    }
}


/* =========================================
   Small Mobile
========================================= */

@media (max-width: 400px) {

    .contact-float {
        right: 12px;
        bottom: 15px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 19px;
    }
}