:root {
    --primary-color: #d3ed31;
    --secondary-color: #000;
    --light-color: #fff;
    --background-bg: #191a18;
    --text-grey: #bcbdb9;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif !important;
    color: #fff !important;
    background-color: #000;
    background-image: url("../images/gradient.png");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 77%;
    overflow-x: hidden;
}

h1 {
    font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Manrope', sans-serif !important;


}

p,
a,
span {
    font-family: 'Manrope', sans-serif !important;
}

/* Hero section */
.hero {
    min-height: 100vh;
    background: transparent;

}


/* Navbar */
.navbar-brand img {
    width: 90%;
}

.custom-navbar {
    background: var(--background-bg);
    border: 1px solid #282926;
    border-radius: 14px;
    margin: 20px;
    padding: 5px 10px;
    backdrop-filter: blur(10px);
}

.nav-link {
    color: var(--text-grey) !important;
    margin: 0 0px;
    font-weight: 600;
}

.nav-link {
    padding: 10px;
}




.nav-link:hover {
    color: var(--primary-color) !important;
}

.phone-link {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    color: inherit;
}

.phone-link:hover {
    text-decoration: none !important;
}

.phone-cntct {
    display: flex;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
}

.phone-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.phone-number {
    margin-left: 10px;
    white-space: nowrap;
    color: var(--light-color);
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.phone-cntct:hover .phone-number {
    opacity: 1;
    max-width: 160px;
}


/* button  */

.btn-start {
    position: relative;
    background: var(--primary-color) !important;
    color: var(--secondary-color);
    border-radius: 30px;
    padding: 5px 5px 5px 20px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

/* sliding background */
.btn-start::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--secondary-color);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-start:hover::before {
    width: 100%;
}

.btn-start:hover {
    color: var(--light-color);
}

.btn-start i {
    color: var(--light-color);
    background-color: var(--secondary-color);
    padding: 10px;
    border-radius: 50%;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

/* rotate icon when hovering button */
.btn-start:hover i {
    transform: rotate(0deg);
}
/* button  */
/* Navbar */





/* Hero Content */
.hero-content {
    /* display: flex; */
    align-items: flex-start;
    padding-top: 120px;
    margin: 20px;
}

/* .icon-box {
    
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.icon-box span {
    color: var(--primary-color);
    font-size: 28px;
}

.hero-content {
    padding-top: 115px;
}

.hero-title {
    /* font-size: 85px; */
    font-size: 70px;
    line-height: 1.1;
    color: var(--light-color);
    font-weight: 600;
    padding: 0px 220px 0px 0px;
}

/* Each animated line */
.line {
    display: block;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 0.8s ease forwards;
}

.line1 {
    animation-delay: 0.2s;
}

.line2 {
    animation-delay: 0.7s;
}

.line3 {
    animation-delay: 1.2s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Cube pulsing */
.pulse-cube {
    width: 70px;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}



.icon-box img {
    width: 95px;
}


/* Responsive */
/* @media (max-width: 992px) {
    .hero h1 {
        font-size: 42px;
    }

    .hero-content {
        flex-direction: column;
    }

    .icon-box {
        margin-bottom: 20px;
    }
} */

/* sub hero  */
.sub-hero {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.sub-hero span {
    font-weight: 500;
    vertical-align: sub;
}

.sub-hero span i {
    color: var(--primary-color);
    border: 1px solid #7e7878;
    border: 50%;
    border-radius: 50%;
    padding: 3px;
    font-size: 12px;
    margin: 0px 5px 0px 5px;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.margin-pd {
    margin-top: 9rem;

}






/* about section start */
.about-left-col img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    /* margin: 1rem; */
    transform: scale(1.2);
    opacity: 0;
    animation: zoomInImage 3s ease forwards;
}

/* .about-right-col {
    padding: 50px;
    
    height: 100%;
    background: url("../images/h7-card-bg.webp") no-repeat center;
    background-size: cover;
   
    border-radius: 20px;
   
    position: relative;
    overflow: hidden;
} */
.about-box {
    background: url("../images/h7-card-bg.webp") no-repeat center;
    background-size: cover;

    padding: 25px;
    border-radius: 20px;
    /* margin: 1rem; */
}

/* .about-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../images/h7-card-bg.webp") no-repeat center;
    background-size: cover;
    padding: 50px;
    border-radius: 20px;
   
} */

/* Big number */
.big-number {
    font-size: 85px;
    font-weight: 600;
    color: #000;
}

.avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -10px;
}

.avatars {
    text-align: right;
    width: 49%;
    display: none;
}

.mini-text {
    font-size: 15px;
    margin-top: 10px;
    color: #000;

}


.badge-custom {
    background: #000;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
    font-size: 14px;
    margin-top: 20px;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 20px;
    color: #000;
}

.about-desc {
    font-size: 15px;
    margin-top: 15px;
    color: #000;
    padding-right: 15px;
}

/* Learn More */
.learn-more {
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

.learn-more:hover {
    text-decoration: underline;
}

.about-title a {
    background-image: linear-gradient(to bottom, currentColor 0%, currentColor 100%);
    background-size: 0% 1px;
    background-repeat: no-repeat;
    background-position: 0 95%;
    display: inline;
    transition: background-size 0.4s ease;
}

.about-title a:hover {
    background-size: 100% 1px;
}

.learn-more:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.learn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}



/* about section end */



/* why choose us  */
.main-title-section {
    text-align: center;
    margin-bottom: 2rem;
}

.sect-sub-title {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.15rem;
    margin-bottom: 18px;
    font-weight: 500;
}

.why-choose-card h2 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.why-choose-card p {
    font-size: 15px;
    color: #b1b2ae;
}


/* Card hover */
.why-choose-card {
    border: 1px solid #282926;
    padding: 35px;
    border-radius: 25px;
    background-color: var(--background-bg);
    transition: all 0.3s ease;
}

.why-choose-card i {
    border: 1px solid #282926;
    padding: 20px;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 40px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    display: inline-block;
    transform-style: preserve-3d;
    transition: transform 0.6s ease, background-color 0.3s ease, color 0.3s ease;
}


.why-choose-card:hover {
    border: 1px solid var(--primary-color);
}


.why-choose-card:hover i {
    transform: rotateY(180deg);
    color: var(--secondary-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}


/* about our company */
.about-compant-sec {
    padding: 25px;
}

.about-compant-sec .d-flex h2 {
    font-size: 70px;
    font-weight: 600;
    color: var(--primary-color);
}

.about-compant-sec img {
    border-radius: 10px;
    transform: scale(1.2);
    opacity: 0;
    animation: zoomInImage 3s ease forwards;

}


.company-ranking {
    padding: 22px;
    margin: 10px;
    background-color: var(--background-bg);
    border-radius: 10px;
}

.medal-sec {
    background-color: var(--primary-color);
    padding: 25px;
    width: 40%;
    color: #000;
    position: absolute;
    bottom: 65px;
    margin-left: 20px;
    border-radius: 10px;
}

.medal-sec i {
    font-size: 50px;
    margin-bottom: 2rem;

}



.carousel-inner {
    overflow: visible;
}

.carousel-item {
    overflow: visible;
}

.service-slider {
    overflow-x: auto;
    scroll-behavior: smooth;
    overflow-y: hidden;
}

.service-slider::-webkit-scrollbar {
    display: none;
}

.service-slider .col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    transition: transform 0.3s ease;
}


.service-card {
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.service-card img {
    border-radius: 15px;
}

.service-card h4 {
    color: #fff;
    margin-top: 20px;
}

.service-card p {
    color: #aaa;
    font-size: 14px;
    margin: 15px 0;
}

.service-card a {
    color: var(--primary-color);
    text-decoration: none;
}


/* Dots */
.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators [data-bs-target] {
    background-color: #666;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
}

.service-card-icon {
    color: var(--secondary-color);
    background-color: var(--primary-color);
    padding: 15px;
    /* width: 60px; */
    /* height: 63px; */
    font-size: 30px;
    text-align: center;
    border-radius: 7px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 1;
    overflow: hidden;

}

.service-card-icon-wrap {
    padding-inline-start: 15px;
    padding-top: 15px;
    background-color: var(--secondary-color);
    border-start-start-radius: 8px;
    position: absolute;

    inset-inline-end: 0;
    margin-right: 50px;
    bottom: 220px;
}

.service-card a:hover {
    text-decoration: underline;
}

.service-card a:hover i {
    transform: translateX(5px);
}

.service-card a i {
    margin-left: 8px;
    transition: transform 0.3s ease;

}

.background-bg-mini-dark {
    background-color: var(--background-bg);
}

.sec-bg-pd {
    padding-top: 100px;
    padding-bottom: 100px;
}

.image-wraper {
    overflow: hidden;
    border-radius: 20px;
}

.image-wraper img {
    width: 100%;
    transition: transform 0.6s ease;
}

/* Zoom only image when hovering card */
.image-wraper:hover img {
    transform: scale(1.15);
}

.image-wraper img {
    transition: transform 0.6s ease;
}

.service-card-icon i {
    transition: transform 0.6s ease;
    display: inline-block;
}

.service-card:hover .image-wraper img {
    transform: scale(1.15);
}

.service-card:hover .service-card-icon i {
    transform: rotateY(360deg);
    transition: all 0.3s ease-in-out 0s;
}

.portfolio-section {
    border-bottom: 1px solid #282926;
    padding-bottom: 70px;
}

.portfolio-wrapper {
    display: flex;
    gap: 20px;
    height: 500px;
}

.portfolio-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: flex 0.6s ease;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item.active {
    flex: 3;
}

.portfolio-item:hover {
    flex: 3;
}

.portfolio-wrapper:hover .portfolio-item {
    flex: 1;
}

.portfolio-wrapper:hover .portfolio-item:hover {
    flex: 3;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    background-color: var(--secondary-color);
    padding: 20px 20px 20px 20px;
    display: flex;
}

.portfolio-btn a i {
    transform: rotate(-45deg);
    background-color: var(--background-bg);
    padding: 10px;
    border: 1px solid #666;
    border-radius: 25px;
    color: var(--light-color) !important;
}

.portfolio-btn a i:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color) !important;
    transform: rotate(0);
    transition: transform 0.6s ease;

}

.portfolio-content .badge {
    color: var(--primary-color);
    background-color: var(--background-bg);
    padding: 6px 10px;
    border: 1px solid #666;
    border-radius: 25px;
    margin-bottom: 10px;
}


.portfolio-wrapper {
    display: flex;
    gap: 20px;
    height: 500px;
}



.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.portfolio-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-item.active .portfolio-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



.portfolio-item.active .portfolio-content,
.portfolio-item:hover .portfolio-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.portfolio-explore-btn {
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Testimonial  */
.testimonial-section {
    padding-top: 50px;
}

.client-profile {
    display: flex;
}

.client-profile img {
    width: 80%;
    border-radius: 50%;
}

.client-section {
    padding: 30px;
    background-color: var(--background-bg);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.client-section span {
    color: #fdb900;
    font-size: 25px;
}

.client-say {
    color: #999b97;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 1px solid #282926;
    padding-bottom: 35px;
}

.client-profile p {
    color: #999b97;
}

.client-profile-image {
    width: 25%;
}

p.client-name {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0rem;
}

.client-right-column h1 {
    font-size: 4rem;
}

.client-right-column span i {
    color: var(--secondary-color);
    background-color: var(--primary-color);
    padding: 14px;
    border-radius: 50%;
    font-size: 50px;
}

.client-right-column {
    position: sticky;
    top: 100px;

}




/* Team  */

html {
    scroll-behavior: smooth;
}

.team-slider-wrapper {
    overflow: hidden;
}

#teamSlider {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.4s ease;
}

/*#teamSlider .col-lg-3 {*/
/*    flex: 0 0 calc(100% / 4);*/
/*    max-width: calc(100% / 4);*/
/*}*/

/* Desktop – 4 columns */
#teamSlider .col-lg-3{
    flex: 0 0 calc(100% / 4);
    max-width: calc(100% / 4);
}

/* Tablet – 2 columns */
@media (max-width: 992px){
    #teamSlider .col-lg-3{
        flex: 0 0 calc(100% / 2);
        max-width: calc(100% / 2);
    }
}

/* Mobile – 1 column */
@media (max-width: 576px){
    #teamSlider .col-lg-3{
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}
.team-card {
    background: #141614;
    padding: 30px 20px;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.team-img-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.4s ease;
}

/* Green circle border */
.team-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    opacity: 0;
    transition: all 0.4s ease;
}

/* Social Icons */
.team-social {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-social a {
    background: #000;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover + Focus */
.team-social a:hover,
.team-social a:focus {
    background-color: var(--primary-color);
    color: #000;
}

.team-img-wrapper::after {
    pointer-events: none;
}

.team-social {
    z-index: 2;
}

.team-social a {
    cursor: pointer;
}

/* 
.team-social a {
    background: #000;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: #000;
} */

/* Hover Effects */
.team-card:hover .team-img-wrapper::after {
    opacity: 1;
}

.team-card:hover img {
    filter: brightness(0.4);

}

.team-card:hover .team-social {
    opacity: 1;
}

.team-card h4 {
    color: #fff;
    margin-bottom: 5px;
}

.team-card p {
    color: #999;
}

.team-img-wrapper img {
    transition: transform 0.6s ease;
}

.team-img-wrapper:hover img {
    transform: scale(1.15);
}


/* 
.footer-fluid{
    background-color: var(--primary-color);
    filter: blur(150px);
} */


/* Footer  */

.footer-fluid::before {

    left: 42%;
    right: auto;
    max-width: 396px;
    width: 100%;
    height: 396px;
    transform: translateX(-50%);
    content: "";
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    -webkit-filter: blur(150px);
    filter: blur(150px);
    opacity: 1;
    z-index: 2;
    pointer-events: none;

}

.footer-section {
    padding-top: 100px;
    background-color: #191a18;
}

.footer-enquiry-left-col h1 {
    font-size: 55px;
    font-weight: 600;
}

.footer-enquiry-left-col h1 span {
    color: var(--primary-color);
}

.vertical-center {
    display: flex;
    align-items: center;
    height: 100%;
}

.contact-form-wrapper {
    padding: 40px;
    background: linear-gradient(145deg, #000, #000);
    border-radius: 20px;
}

.contact-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 30px;
}

.custom-input {
    background: #000;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 14px 20px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    background: #000;
    border-color: var(--primary-color);
    box-shadow: none;
    color: #fff;
}

.custom-input::placeholder {
    color: #888;
}

.form-select.custom-input {
    appearance: none;
    background-color: #000;
    color: #888;
}


textarea.custom-input {
    resize: none;
}

.footer-end {
    padding: 70px 30px 70px 30px;
    background-color: #000;
    margin: 5px;
    border-radius: 10px;
    /* margin-top: 75px; */
}

.footer-social-col {
    gap: 7px;
    display: flex;
}

.footer-social-col a i {
    color: var(--secondary-color);
    background-color: var(--primary-color);
    padding: 10px;
    font-size: 15px;
    border-radius: 50%;
}

.footer-widget li {
    list-style: none;
    margin-bottom: 10px;

}

.footer-widget li a {
    color: var(--text-grey) !important;

}

.footer-widget li a:hover {
    color: var(--primary-color) !important;

    margin-left: 8px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.left-footer-widget img {
    width: 40%;
    margin-bottom: 20px;
}

.footer-widget {
    color: var(--text-grey);
}

.footer-widget h5 {
    color: var(--light-color);
}

.footer-widget a {
    color: var(--text-grey);
    text-decoration: none;
}

.address-right a {
    margin-bottom: 5px;
}

.address-right span i {
    color: var(--primary-color) !important;
}

.copy-right {
    justify-content: space-between;
    display: flex;
    color: var(--text-grey);
}

.copy-right p a {
    margin-right: 5px;
}

.copy-right p i {
    color: var(--text-grey);
    font-size: 5px;
}

.sticky-sec {
    position: sticky;
    top: 100px;
}

.top-slider {
    background: var(--primary-color);
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
}

.slide-track {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.slide-track span {
    margin-right: 50px;
    font-size: 35px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Smooth continuous right ➝ left */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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


/* Hide hamburger on desktop */
.mobile-toggle {
    display: none;
}

/* Tablet & Mobile */
@media (max-width: 991px) {

    .desktop-nav {
        display: none;
    }

    .desktop-menu {
        display: none !important;
    }

    .mobile-toggle {
        display: block;
    }

    .menu-btn {
        background-color: #000 !important;
        border: none;
        color: #fff;
        font-size: 22px;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        cursor: pointer;
    }
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(2px);
    transition: right 0.4s ease;
    z-index: 9999;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-content {
    width: 85%;
    height: 100%;
    background: #000;
    padding: 30px;
    overflow-y: auto;
    margin-left: 4rem;
}

.mobile-menu-header {
    margin-bottom: 40px;
}

.close-menu {
    background-color: transparent !important;
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    display: none;
}

.mobile-nav-list li {
    padding: 15px 0;
    border-bottom: 1px solid #222;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.mobile-nav-list li a {
    color: var(--light-color);
}

.mobile-nav-list li a:hover {
    color: var(--primary-color);
}

.mobile-contact {
    margin-top: 40px;
    color: #aaa;
}

.mobile-contact h5 {
    color: #fff;
    margin-bottom: 15px;
}
.mobile-contact {
    margin-top: 30px;
}

.mobile-contact p {
    margin: 15px 0 5px;
    color: #888;
    font-size: 14px;
}

.mobile-contact a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.mobile-contact a:hover {
    color: var(--primary-color);
}

.mobile-social {
    margin-top: 20px;
}

.mobile-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111;
    color: #fff;
    margin-right: 8px;
    transition: 0.3s;
}

.mobile-social a:hover {
    background: var(--primary-color);
    color: #000;
}
/* GLOBAL MOBILE FIXES  */


img {
    max-width: 100%;
    height: auto;
}

body {
    overflow-x: hidden;
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}


@media (max-width: 992px) {



    .sub-hero {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .hero-content {
        padding-top: 80px;
    }

    .sub-hero span {
        display: block;
    }

}


/* ABOUT SECTION */


@media (max-width: 992px) {

    .about-right-col {
        width: 100%;
        padding: 30px;
        margin-top: 20px;
    }

    .big-number {
        font-size: 50px;
    }

    .avatars {
        width: 100%;
        text-align: left;
        margin-top: 15px;
    }

}

/* WHY CHOOSE */


@media (max-width: 992px) {

    .why-choose-card {
        margin-bottom: 20px;
    }

}


/* ABOUT COMPANY */


@media (max-width: 992px) {

    .about-compant-sec .d-flex {
        flex-direction: column;
    }

    .company-ranking {
        width: 100%;
    }

    .medal-sec {
        position: static;
        width: 100%;
        margin-top: 20px;
        margin-left: 0px;
    }

}

/* SERVICES */


@media (max-width: 992px) {

    .service-slider .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .service-card {
        padding: 25px;
    }

    .service-card-icon-wrap {
        bottom: 150px;
        margin-right: 20px;
    }

    .company-ranking {
        margin-left: 0px;
    }
}


/* PORTFOLIO */


@media (max-width: 992px) {

    .portfolio-wrapper {
        flex-direction: column;
        height: auto;
    }

    .portfolio-item {
        flex: unset !important;
        height: 250px;
    }

    .portfolio-item.active {
        flex: unset !important;
    }

    .portfolio-content {
        left: 15px;
        bottom: 15px;
    }

}

/* TESTIMONIAL */


@media (max-width: 992px) {

    .client-right-column {
        position: static;
        margin-top: 40px;
    }

    .client-right-column h1 {
        font-size: 2rem;
    }

}

/* TEAM SECTION */


@media (max-width: 992px) {

    .team-img-wrapper {
        width: 180px;
        height: 180px;
    }

}

/* FOOTER */


@media (max-width: 992px) {

    .footer-enquiry-left-col h1 {
        font-size: 32px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .footer-end {
        padding: 40px 20px;
    }

    .copy-right {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

}

/* EXTRA SMALL DEVICES */

@media (max-width: 576px) {

    .hero-title {
        /* font-size: 40px; */
        font-size: 30px;
        padding: 0px 0px 0px 0px;
    }

    .about-title {
        font-size: 25px;
    }

    .main-title-section h1 {
        font-size: 28px;
    }

    .sect-sub-title {
        font-size: 12px;
    }

    .body {
        background-size: 125% !important;
    }

    .icon-box img {
        width: 50px;
    }

    .portfolio-item {
        height: 300px;
    }

    .testimonial-section {
        padding-top: 0px;
    }

    .avatars {
        text-align: right;
    }

    .mobile-menu-header img {
        width: 50%;
    }

    .about-box {
        margin-top: 20px;
        padding: 30px;
    }

    .footer-end {
        text-align: center;
    }

    .footer-social-col {
        display: block;
    }

    .margin-pd {
        margin-top: 4rem;
    }

    .hero-content {
        padding-top: 40px;
    }

    .pulse-cube {
        width: 45px;
    }

    .d-mb-none {
        display: none;
    }

    .footer-fluid::before {
        opacity: 0.5 !important;
    }

    .footer-widget {
        margin-top: 15px;
    }

    .copy-right {
        gap: 0px;
    }

    .copy-right p {
        margin-bottom: 10px !important;
        font-size: 10px;
    }


}





/* projects page  */


.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding-top: 30px;
    padding-top: 50px;
    padding-bottom: 70px;
}

.page-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
}

.breadcrumb a {
    color: #b4ff00;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .separator {
    color: #ccc;
}

.breadcrumb .current {
    color: #fff;
    font-weight: 500;
}

.page-portfolio-section {
    background-color: var(--secondary-color);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.page-portfolio-item {

    position: relative;
    overflow: hidden;

    cursor: pointer;
    transition: flex 0.6s ease;
    margin-bottom: 2rem;
    border-radius: 20px;

}



.page-portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 20px;

}

.page-portfolio-item:hover .portfolio-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.page-portfolio-item:hover img {
    transform: scale(1.05);

}

.project-detail-col img {
    width: 1000px;
    height: 500px;
    border-radius: 20px;
    margin-bottom: 2rem;
}

/* project single page  */
section.project-detail-section {
    padding-top: 5rem;
    background-color: var(--secondary-color);
    padding-bottom: 5rem;
}

.project-description li::marker {
    color: var(--primary-color);
}

/* sidebar section  */
.infos-item {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.project-icon i {
    color: var(--secondary-color);
    background-color: var(--primary-color);
    padding: 14px;
    border-radius: 50px;
}

.project-text span {
    color: #666;
}

.project-info {
    background-color: #191a18;
    padding: 20px;
    border: 1px solid #282926;
    border-radius: 20px;
}

.project-info h4 {
    padding-top: 18px;
    padding-bottom: 30px;
    border-bottom: 1px solid #282926;
}

.infos-item {
    margin-top: 1rem;
}

.info-social {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.info-social span {
    font-weight: 700;
    margin-left: 10px;
}

.info-social span a i {
    color: var(--secondary-color);
    background-color: #666;
    padding: 10px;
    border-radius: 50px;
}

.info-social span a i:hover {
    background-color: var(--primary-color);
}

.featured-box {
    background-color: #191a18;
    padding: 20px;
    border: 1px solid #282926;
    border-radius: 20px;
    margin-top: 2rem;
}

.featured-box h2 {
    font-weight: 600;
    color: var(--light-color);
    font-size: 60px;
}

.featured-box h5 {
    color: #666;
    margin-bottom: 2rem;
}

.featured-box a {
    color: var(--light-color);
    text-decoration: none;
    border: 4px solid var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    margin-top: 1rem;
    font-size: 19px;
}

.featured-box-img img {
    width: 80%;
    border-radius: 50%;
}

.featured-box-img {
    text-align: center;
    margin-top: 3rem;

}

.featured-box::before {
    left: 70%;
    right: auto;
    max-width: 396px;
    width: 52%;
    height: 260px;
    transform: translateX(-50%);
    content: "";
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    -webkit-filter: blur(150px);
    filter: blur(120px);
    opacity: 1;
    z-index: 2;
    pointer-events: none;
}




/* about page  */
.about-page-section {
    /* background-color: var(--background-bg); */
    padding: 40px 0px 50px 0px;
}

.about-page-section img {
    border-radius: 30px;
    animation: zoomInImage 3s ease forwards;
}

.about-me-content p {
    color: #535351;
    font-weight: 600;
}

.abt-v-m {
    border: 1px solid #101010;
    padding: 20px;
    border-radius: 20px;
    background-color: var(--secondary-color);
}

.abt-v-m p {
    color: #535351;
    font-weight: 600;
}

.abt-v-m h4 {
    font-weight: 600;
}

.about-content-col {
    padding: 40px 40px;
}



.countup-item {
    padding-top: 50px;
    padding-bottom: 100px;
}

.countup-col i {
    color: var(--primary-color);
    font-size: 40px;
}

.countup-col h2 {
    font-weight: 700;
    font-size: 60px;

}

.countup-col h2 span {
    color: var(--light-color);
}

.countup-col span {
    color: var(--text-grey);
}


.countup-item-row {
    margin: 1rem;
    border: 1px solid var(--secondary-color);
    background-color: var(--background-bg);
    border-radius: 20px;
}

.countup-col {
    padding: 3rem;
}

.countup-col::before {
    content: "";
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 20px;
    position: absolute;
    inset-inline-end: 0;
    top: 50%;
    transform: translate(50%, -50%);
    z-index: 1;
}

.countup-item-row .col-lg-3:nth-child(1) .countup-col::before,
.countup-item-row .col-lg-3:nth-child(3) .countup-col::before {
    animation: running-up 3s linear infinite;
}

.countup-item-row .col-lg-3:nth-child(2) .countup-col::before {
    animation: running-down 3s linear infinite;
}

.countup-item-row .col-lg-3:nth-child(4) .countup-col::before {
    display: none;
}

/* up running  */
@keyframes running-up {
    0% {
        transform: translate(50%, -50%) translateY(100px);
    }

    50% {
        transform: translate(50%, -50%) translateY(-100px);
    }

    100% {
        transform: translate(50%, -50%) translateY(100px);
    }
}

/* down running  */
@keyframes running-down {
    0% {
        transform: translate(50%, -50%) translateY(-100px);
    }

    50% {
        transform: translate(50%, -50%) translateY(100px);
    }

    100% {
        transform: translate(50%, -50%) translateY(-100px);
    }
}

.countup-col::after {
    content: "";
    position: absolute;
    top: 0;
    inset-inline-end: 0px;
    width: 1px;
    height: calc(100% - 0px);
    border-right: 1px solid var(--secondary-color);
}


@media (max-width: 768px){

/* change border to bottom */
.countup-col::after {
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    width: 100%;
    height: 1px;
    border-right: none;
    border-bottom: 1px solid var(--secondary-color);
}

/* dot position for horizontal movement */
.countup-col::before {
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

/* horizontal animation for odd items */
.countup-item-row .col-lg-3:nth-child(1) .countup-col::before,
.countup-item-row .col-lg-3:nth-child(3) .countup-col::before {
    animation: running-right 3s linear infinite;
}

/* horizontal animation reverse */
.countup-item-row .col-lg-3:nth-child(2) .countup-col::before {
    animation: running-left 3s linear infinite;
}


}

/* left → right */
@keyframes running-right {
    0% {
        transform: translate(-50%, 50%) translateX(-100px);
    }
    50% {
        transform: translate(-50%, 50%) translateX(100px);
    }
    100% {
        transform: translate(-50%, 50%) translateX(-100px);
    }
}

/* right → left */
@keyframes running-left {
    0% {
        transform: translate(-50%, 50%) translateX(100px);
    }
    50% {
        transform: translate(-50%, 50%) translateX(-100px);
    }
    100% {
        transform: translate(-50%, 50%) translateX(100px);
    }
}
.meet-our-team {
    padding-bottom: 150px;
}
























/* careers page  */
input.custom-input.file {
    padding: 30px 35px;
    font-size: 12px;
    padding-top: 10px;
    /* margin-top: 0px; */
}

input.wpcf7-form-control.wpcf7-file.wpcf7-validates-as-required.form-control.custom-input {
    padding: 12px 16px 15px 30px;
    font-size: 9px;
}

.career-form-col {
    padding: 30px;
}

.career-img-col {
    padding: 30px;
}

.career-img-col img {
    border-radius: 20px;
}

.career-img-wrapper {
    overflow: hidden;
}

.career-zoom-img {
    width: 100%;
    height: auto;
    transform: scale(1.2);
    opacity: 0;
    animation: zoomInImage 3s ease forwards;
}

@keyframes zoomInImage {
    0% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

h2.career-title {
    margin-bottom: 3rem;
}

.career-form-wrapper input {
    border: 1px solid #444444;
}

.career-form-wrapper textarea {
    border: 1px solid #444444;
}

.footer-last-sec {
    background-color: #191a18;
    padding-top: 45px;
}

section.careers-section {
    /* background-color: #191a18; */
    padding-top: 3rem;
}

.career-form-wrapper {
    background-color: #000;
    padding: 2rem;
    border-radius: 20px;
}



.services-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.services-slider {
    display: flex;
    transition: transform .6s ease;
}

/*.service-item {*/
/*    flex: 0 0 33.333%;*/
/*    padding: 15px;*/
/*}*/
/* Desktop – 3 columns */
.service-item {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 15px;
}

/* Tablet – 2 columns */
@media (max-width: 992px) {
  .service-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Mobile – 1 column */
@media (max-width: 768px) {
  .service-item {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .service-card-icon-wrap{
      bottom:225px !important;
      margin-right:35px !important;
  }
}
.slider-dots {
    text-align: center;
    margin-top: 40px;
}

.slider-dots span {
    height: 8px;
    width: 8px;
    background: #777;
    display: inline-block;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
}

.slider-dots span.active {
    background: var(--primary-color);
}







.scroll-top-wrapper{
    position: fixed;
    right: 30px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
}

/* round button */
.scroll-btn{
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#000;
    font-size:18px;
}

/* vertical text */
.scroll-text{
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color:#fff;
    font-size:14px;
    margin-top:10px;
}

/* hover */
.scroll-btn:hover{
    transform: translateY(-4px);
    transition:0.3s;
}

/* MOBILE */
@media (max-width:768px){

    .scroll-top-wrapper{
        right:20px;
        bottom:40px;
    }

    .scroll-text{
        display:none; /* hide vertical text on mobile */
    }

    .scroll-btn{
        width:50px;
        height:50px;
        font-size:16px;
    }

}
@media (max-width:768px){
    .main-h1-title{
        font-size:22px;
    }
}

.row.contact-us-pg {
    text-align: center;
}
.contact-us-pg a{
	color:var(--text-grey);
	text-decoration: none;
}
.why-choose-card.contact-col-pg {
    height: 300px;
}
.map iframe {
    filter: grayscale(100%) invert(92%) contrast(120%) brightness(85%);
}
.map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    filter: grayscale(100%) invert(90%) contrast(95%) brightness(90%);
}
.contact-us-pg-form{
	padding-bottom:100px;
}
.single-infos-item  li{
	list-style:none;
}
.single-infos-item {
	padding-left:0rem;
}
.single-infos-item li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background: #000;
    padding: 20px 15px 17px 25px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.3s ease;
}

/* Sliding background */
.single-infos-item li a::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background:var(--primary-color); 
    z-index: -1;
    transition: width 0.4s ease;
}

/* Hover effect */
.single-infos-item li a:hover::before{
    width: 100%;
}

/* Optional text color change */
.single-infos-item li a:hover{
    color: #000;
	text-decoration:none;
}

.footer-widget ul{
	padding-left:0rem;
}

