* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #040C18;
    overflow-x: hidden !important; 
}

html,
body {
    /* overflow-x: hidden; */
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Ensure all elements fit within viewport */

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
    color: #fff;
}

li {
    list-style: none;
}

.nav_menu ul li {
    color: #fff;
    list-style: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.nav_menu ul {
    display: flex;
    gap: 30px;
    margin-right: 100px;
}

.navbar_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
}

.isg_btn {
    font-weight: 500;
    font-size: 16px;
    padding: 10px 20px;
    background-color: #f89e52 !important;
    border: none;
    border-radius: 20px;
}

.isg_btn:hover {
    background-color: #444;
    color:#fff !important;
}
.btn:hover {
    /* background-color: #444; */
    color:#ebdfdf !important;
}
.nav_menu .nav-item {
    position: relative;
    padding: 5px 15px;
    cursor: pointer;
    color: white;
}

/* Active Gradient Border Effect */
.nav_menu .nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: linear-gradient(90deg, #ff00ff, #00ffff, #007bff, #ff9900);
    background-size: 300%;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease-in-out;
}

.hamburger {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.mobile_menu {
    display: none;
    position: absolute;
    border: 2px solid #fff;
    top: 0;
    right: 0;
    z-index: 2;
    width: 250px;
    height: 60%;
    background: #222;
    padding-top: 50px;
    transition: 0.5s ease-in-out;
    background: linear-gradient(135deg, #1e1e1e, #000000);
    padding-top: 60px;
    transition: right 0.4s ease;
    border: 4px solid transparent;
    border-radius: 12px 0 0 12px;
    background-clip: padding-box, border-box;
    background-origin: border-box;
    border-image: linear-gradient(45deg, #00f0ff, #ff00f0, #00ff6a) 1;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}


.mobile_menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile_menu ul li {
    padding: 15px;
    /* border-bottom: 1px solid #444; */
    color: white;
}

.close_menu {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: white;
}


/* Show Active Border */
.nav_menu .nav-item.active::after {
    transform: scaleX(1);
}

/* Animated Gradient Effect */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.nav_menu .nav-item.active::after {
    animation: gradientMove 2s infinite linear;
}

/* Button Base Style */
.glow-btn {
    position: relative;
    background-color: black;
    /* Black background */
    color: white;
    font-size: 18px;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s;
    z-index: 1;
}

/* Glowing Border Effect */
.glow-btn::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 12px;
    padding: 3px;
    background: linear-gradient(270deg, #ff00ff, #00ffff, #007bff, #ff9900);
    background-size: 300% 300%;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

/* Making Border Visible */
.glow-btn::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: black;
    /* Ensures inner button remains black */
    border-radius: 8px;
    z-index: -1;
}

/* Moving Gradient Border Animation */
@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Bubble and Star Effect */
.bubble,
.star {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #007bffb3;
    border-radius: 50%;
    pointer-events: none;
    opacity: 1;
    animation: spreadEffect 1s linear forwards;
}

.star {
    width: 15px;
    height: 15px;
    background-color: rgb(172, 252, 255);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* Spreading Animation */
@keyframes spreadEffect {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--x-move), var(--y-move)) scale(0.5);
        opacity: 0;
    }
}

.e {
    width: 40px;
    height: 40px;
    background-color: #3ABD98;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    /* margin: 0 10px; */
}

.e::before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #062547;
    position: absolute;
    bottom: 0;
    left: 76%;
    transform: translateX(-50%);
}

.header_text {
    font-weight: 800;
    font-size: 63px;
    color: #fff;
}

.o {
    width: 50px;
    height: 50px;
    background-color: #F46F61;
    /* Red Circle */
    border-radius: 50%;
    display: inline-block;
    /* margin: 0 10px; */
}

.d {

    width: 24px;
    height: 38px;
    background-color: #3A8EEF;
    /* Blue color */
    border-top-right-radius: 50px;
    display: inline-block;
    border-bottom-right-radius: 50px;
}

.blur {
    position: absolute;
    width: 580px;
    height: 600px;
    /* background: rgba(0, 122, 255, 0.4); */
    background: rgba(7, 50, 95, 1);

    filter: blur(200px);
    border-radius: 50%;
    z-index: -1;
}

.blurR {
    position: absolute;
    width: 300px;
    height: 300px;
    /* background: rgba(0, 122, 255, 0.4); */
    background: rgba(7, 50, 95, 1);

    filter: blur(200px);
    border-radius: 50%;
    z-index: -1;
}


.left {
    top: -24%;
    left: -118px;
}

.right {
    top: 39%;
    right: 9px;
}

.InsightHCM_header {
    padding: 120px 0px 60px 0px;
}

.p_text {
    font-weight: 400;
    font-size: 18px;
    color: rgb(205 200 200);
    padding-top: 14px;
}

.h_btn {
    padding: 20px 55px;
    /* border-radius: 50px; */
}

.h_img {
    padding-left: 65px;
    margin-top: -25px;
}

.header_right {
    position: relative;
}

.g_shape {
    position: absolute;
    left: 45px;
    top: 40px;
}

.p_shape {
    position: absolute;
    left: 74%;
    top: 24%;
}

.ps_shape {
    position: absolute;
    left: 26%;
    top: -28px;
}

.Pu_shape {
    position: absolute;
    right: 45px;
    top: 20px;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 40px;
    border-radius: 15px;

    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.stat {
    text-align: center;
    margin: 0 20px;
    font-size: 18px;
    font-weight: 400;
}

.number {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.separator {
    height: 40px;
    width: 2px;
    background-color: #ff7b00;
    margin: 0 20px;
}

.contact_icon {
    display: flex;
    margin-top: 30px;
    gap: 30px;
}

.stats-main {
    background-color: rgba(4, 12, 24, 1);
    border: 1px solid rgba(243, 243, 243, 1);
    box-shadow: 0px 15px 30px 0px rgba(61, 90, 125, 0.08);
    padding: 25px 30px 10px 30px;
    border-radius: 20px;
    color: #fff;
    margin-top: 30px;
    text-align: left;
}

.statBorder {
    border-right: 5px solid rgba(239, 110, 43, 1);
}

.InsightHCM_about {
    padding: 100px 0px 0px 0px;
}

.title {
    font-family: Poppins;
    font-weight: 500 !important;
    font-size: 20px !important;
    color: rgba(248, 158, 82, 1) !important;
    padding-bottom: 15px !important;

}

.text {
    font-family: Poppins;
    font-weight: 700;
    font-size: 47px;
    color: #fff;
}

.fig_text {
    font-family: Poppins;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.fig_text_p {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    color: rgba(215, 210, 210, 1)
}

.about_bottom {
    padding-top: 30px;
}

.about_bottom figure {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.about_hr_line {
    background: rgba(248, 158, 82, 1);
    height: 1px;
    width: 100%;
    display: inline-block;
}

.abt_btn {
    display: flex;
    justify-content: end;
}

.InsightHCM_service {
    padding-top: 80px;
    /* background: linear-gradient(to right, #007bff 40%, #0a0f24 100%); */
}

.b_title {
    font-family: Poppins;
    font-weight: 700 !important;
    font-size: 50px;
    color: #fff !important;

}

.ser_fig_text {
    font-family: Poppins;
    font-weight: 700;
    font-size: 24px;
    padding: 30px 0px 15px 0px;
}

.ser_fig_text_p {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
}

.service_box {
    background: rgba(4, 12, 24, 1);
    border: 1px solid rgba(243, 243, 243, 1);
    box-shadow: 0px 15px 30px 0px rgba(61, 90, 125, 0.08);
    border-radius: 20px;
    padding: 30px 20px;
    /* margin-bottom: 30px; */
}

.custom-btn {
    width: 130px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
}

/* 12 */
.btn-12 {
    position: relative;
    right: 20px;
    bottom: 20px;
    border: none;
    box-shadow: none;
    width: 130px;
    height: 40px;
    line-height: 42px;
    -webkit-perspective: 230px;
    perspective: 230px;
}

.btn-12 span {
    background: rgb(0, 172, 238);
    background: linear-gradient(0deg, rgba(0, 172, 238, 1) 0%, rgba(2, 126, 251, 1) 100%);
    display: block;
    position: absolute;
    width: 130px;
    height: 40px;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    border-radius: 5px;
    margin: 0;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.btn-12 span:nth-child(1) {
    box-shadow:
        -7px -7px 20px 0px #fff9,
        -4px -4px 5px 0px #fff9,
        7px 7px 20px 0px #0002,
        4px 4px 5px 0px #0001;
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: 50% 50% -20px;
    -moz-transform-origin: 50% 50% -20px;
    transform-origin: 50% 50% -20px;
}

.btn-12 span:nth-child(2) {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: 50% 50% -20px;
    -moz-transform-origin: 50% 50% -20px;
    transform-origin: 50% 50% -20px;
}

.btn-12:hover span:nth-child(1) {
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.btn-12:hover span:nth-child(2) {
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    color: transparent;
    -webkit-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
}
.fact-bg{
    /* background: url(../assets/img/slider3.jpg); */
    background: url(../assets/img/footer-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.service_inner {
    padding: 50px 0px;
}

.swiper-nav-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 10px;
    /* Space between arrows and slider */
    position: absolute;
    top: 50px;
    right: 0;
}

.swiper-button-next,
.swiper-button-prev {
    position: static !important;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    background: #fff;
    /* White background */
    border-radius: 30%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    color: #000;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.service_heading {
    position: relative;
}

.our_team {
    padding: 30px 0px; /* Changed from 60px 0px; */
}

.team_img {
    height: 100%;
    padding-left: 90px;
}

.work {
    padding: 50px 0px;
    background-color: rgb(4 44 84);
    border-top-left-radius: 200px;
}

.work-card img {
    width: 300px !important;
    border-radius: 30px;
}

.mySwiper2 {
    margin-top: 80px;
}

.work-card {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.view-btn {
    position: absolute;
    bottom: 50%;
    top: 50%;
    /* left: 50%; */
    transform: translateX(-50%) translateY(20px);
    /* background: #ff5722; */
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-size: 14px;
    cursor: pointer;
    height: 40px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
    opacity: 0;
    /* border-radius: 30px; */
    transition: opacity 0.3s ease;
}

.work-card:hover {
    border: 2px solid #fff;
    border-radius: 30px;
}

.work-card:hover .overlay {
    opacity: 1;

}

.work-card:hover .view-btn {
    opacity: 1;
    transform: scale(1);
}

.work-card:hover .view-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.testimonial {
    padding: 50px 0px;
    background-color: rgb(3 27 51);
    border-bottom-right-radius: 200px;

}

.testi_text {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    color: rgb(185 182 182);
    padding-top: 20px;
}

.testi_desig {
    font-family: Poppins;
    font-weight: 400;
    font-size: 15px;
    color: rgb(221, 219, 219);

}

.testimonail_box {
    background-color: rgba(4, 12, 24, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 30px;
    padding: 30px 20px;
    position: relative;
    margin-top: 20px;
}

.testimonail_box figure {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.testi_name {
    font-family: Poppins;
    font-weight: 700;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
}

/* Ensure the pagination is positioned below the testimonial boxes */
.mySwiper3-pagination {
    position: relative !important;
    margin-top: 20px;
    /* Space between last testimonial and pagination */
    text-align: center;
}

/* Center the pagination dots */
.swiper-pagination-bullet {
    /* background: #ff5722 !important; */
    opacity: 0.6;
    border: 1px solid #fff;
}

.swiper-pagination-bullet-active {
    background: #ff5722 !important;
    opacity: 1;
    border: 1px solid #fff;
}

.contact_insight {
    padding: 70px 0px;
}

.c_text {
    font-family: Poppins;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
}

.contact_icon {
    display: flex;
    margin-top: 30px;
}

.contact_icon figure {
    display: flex;
    gap: 20px;
    align-items: center;
}

.form-container {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    /* margin-top:50px; */
    margin: 0 auto;
}

.btn-submit {
    background-color: #f26322;
    border: none;
    padding: 10px;
    width: 100%;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
    text-transform: inherit;
}

.btn-submit:hover {
    background-color: #d6521a;
}

.form-container h4 {
    color: #000;
    font-weight: 500;
    font-size: 30px;
}

.cus-form {
    height: 50px;
}

.newsletter {
    position: relative;
    background: url(../assets/img/nt_bg.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin: 0 auto;
    width: 80%;
    margin-top: 30px;
}

.newsletter-form input {
    /* background-color: rgba(255, 255, 255, 0.1); */
    border: none;
    padding: 10px;
    width: 100%;
    height: 60px;
    border-radius: 20px;
    color: #fff;
    font-size: 16px;
    /* border-radius: 5px; */
    transition: 0.3s;
    text-transform: inherit;
}

.cus-nt-btn {
    width: 20%;
    border-radius: 20px;
}

.newsletter-form input::placeholder {
    text-align: center;
}

.nt1 {
    position: absolute;
    top: 20%;
    left: 15%;
}

.nt2 {
    position: absolute;
    top: 30%;
    right: 10%;
}

.nt3 {
    position: absolute;
    bottom: 10%;
    left: 30%;
}

.nt4 {
    position: absolute;
    bottom: 1%;
    right: 40%;
}

.nt5 {
    position: absolute;
    top: 25px;
    left: 72%;
}

.footer {
    padding: 50px 0px;
    background-color: rgba(4, 44, 84, 1);
}

.f_text {
    font-family: Poppins;
    font-weight: 500;
    font-size: 15px;
    color: #d6521a;
    padding-top: 10px;

}

.f_title {
    font-family: Poppins;
    font-weight: 800;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: rgba(239, 110, 43, 1);
}

.f_right ul li a {
    padding-bottom: 10px;
    color: #fff;
}

.f_right ul li {
    padding-bottom: 10px;
    color: #fff;
}

.copyright {
    padding: 5px 0px;
    background-color: rgb(4 12 24);
    text-align: center;
    font-family: Poppins;
    font-weight: 500;
    font-size: 15px;
    color: rgba(255, 255, 255, 1);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.header_text2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 35px; /* Changed from 50px */
}

.name {
    font-family: Poppins;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin-top: 15px;

}

.role {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    color: #bfbbbb;
}

.counter1_abt {
    background-color: rgba(7, 14, 27, 1);
    box-shadow: 0px 0px 18px 1px rgba(138, 196, 255, 1);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
    /* width:40px; */
}

.counter_main {
    display: flex;
    gap: 30px;
    padding-left: 30px;
}

.g2 {
    position: absolute;
    left: -75px;
    top: -50px;
}

.p2 {
    position: absolute;
    top: 53%;
    right: -17%;
    left: 0;
}

.pu2 {

    top: 100%
}

.ps2 {
    position: absolute;
    left: 62%;
    top: -28px;
}

.n1 {
    color: rgba(248, 237, 20, 1);
}

.n2 {
    color: rgba(235, 34, 57, 1);
}

.n3 {
    color: rgba(243, 109, 36, 1);
}

.n4 {
    color: rgba(139, 189, 84, 1);
}

.team {
    position: relative;
}



.containerTeam {
    position: relative;
    /* width:240px; */
    height: 300px;
    overflow: hidden
}

.containerTeam:before {
    content: '';
    position: absolute;
    left: 170%;
    z-index: 1;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(45deg);
    transition: .8s;
}

.containerTeam:hover:before {
    left: -170%;
    transition-delay: .8s;
}

.containerTeam img {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    transition: 1s
}

.containerTeam:hover img {
    filter: grayscale(0);
    transform: scale(1.2)
}

.containerTeam h2 {
    position: absolute;
    background: #fff;
    width: 100%;
    margin: 0;
    text-align: center;
    color: #272727;
    bottom: 0;
    line-height: 40px;
    transition: .5s;
    transform: perspective(300px)rotateX(90deg);
    transform-origin: bottom;
}

.containerTeam:hover h2 {
    transform: perspective(300px)rotateX(0deg);
}

.containerTeam ul {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.containerTeam ul li {
    background: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(90deg);
    transition: .5s;
    transform-origin: left;
}

.containerTeam ul li .fa {
    color: #272727;
}

.containerTeam:hover ul li {
    transform: rotateX(0deg);
}

.containerTeam ul li:nth-child(1) {
    transition-delay: .2s;
}

.containerTeam ul li:nth-child(2) {
    transition-delay: .4s;
}

.containerTeam ul li:nth-child(3) {
    transition-delay: .6s;
}

.team {
    padding: 40px 0px 40px 0px;
}

.company_success {
    background-color: rgb(1, 8, 19);
    padding: 40px 0px; /* Changed from  90px 0px; */
}

.success_text {
    font-weight: 400;
    font-size: 12px;
    color: rgba(255, 255, 255, 1);

}

.skill {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.skill img {
    /* width: 40px; */
    /* height: 40px; */
    border-radius: 50%;
    background: #fff;
    padding: 5px;
}

.progress-bar {
    flex: 1;
    height: 5px;
    background: rgb(191 187 187);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.progress {
    height: 100%;
    transition: width 1s ease-in-out;
}


.timeline-container {
    position: relative;
    max-width: 100%;
    margin-top: 60px;
    /* Reduced margin to lower the timeline height */
    overflow-x: hidden;
}

.timeline-svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50px;
    /* Reduced height while keeping the bend */
}

.timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    /* Slightly reduced spacing */
    padding: 5px;
    margin-top: 30px;
    /* Lowering the timeline */
}

.timeline-item {
    position: relative;
    text-align: center;
    flex: 1 1 130px;
    /* Adjusted to balance spacing */
    min-width: 130px;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    background-color: #28a745;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    /* Adjusted positioning */
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item span {
    display: block;
    margin-top: 15px;
    /* Adjusted spacing */
    font-size: 13px;
    color: #fff;
}

.cus-2 {
    margin-top: -10px;
}

.his_img {
    float: right;
}

.list-unstyled li {
    color: #fff;
}

.com_right {
    background-color: rgba(4, 12, 24, 1);
    padding: 31px 30px;
    float: left;
    margin-left: -13px;
}

.company_history {
    background-color: rgba(3, 27, 52, 1);
    padding: 30px 0px;
    position: relative;
}

.bg_shape {
    position: absolute;
    background: url(../assets/img/bg_his.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* z-index: -1; */
}

.cus_service_shape {
    position: relative;
}

.s_g_shape {
    position: absolute;
    left: 14%;
    top: 20%;
}

.sps {
    position: absolute;
    left: 26%;
    top: 61%;
}

.pp {
    position: absolute;
    right: 45px;
    top: 56%;
}

.ps {
    position: absolute;
    left: 83%;
    top: 24%;
}

.team {
    padding: 40px 0px 70px 0px;
}

.dot {
    position: absolute;
    top: 48%;

    z-index: -1;
    right: 31%;
}

.cir {
    position: absolute;
    top: 35%;
    /* z-index: -1; */
    right: 67%;
}

.service {
    padding: 70px 0px 50px 0px;
}

.get_update_inner {
    background-color: rgba(3, 27, 52, 1);
    position: relative;
    box-shadow: 7px 7px 14px 1px rgba(170, 216, 250, 1);
    border-top-left-radius: 100px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 50px 30px 90px 30px;
}

.nL_img {

    position: absolute;
    left: -1%;
    top: 30%;
}

.roc {
    position: absolute;
    top: -50px;
    right: -41px;

}

.nt_g {
    position: absolute;
    left: 45px;

}

.get_update {
    position: relative;
    padding: 80px 0px;
}

.contact-section {
    position: relative;
    /* max-width: 900px; */
    margin: auto;
    padding: 20px;
    margin-top: 80px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 10px;
    /* overflow: hidden; */
}

.map-container iframe {
    width: 80%;
    height: 100%;
    border: none;
}

.form-box2 {
    position: absolute;
    top: -18%;
    right: 20px;
    width: 500px;
    background-color: #0d1b2a;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 1);
}

.form-control2 {
    background-color: #1b263b;
    border: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 1);
}

.form-control2:focus {
    background-color: #1b263b;
    color: white;
    border-color: #ff7b00;
    box-shadow: 0 0 5px rgba(255, 123, 0, 0.8);
}

.btn-custom {
    background-color: #ff7b00;
    color: white;
    border: none;
}

.btn-custom:hover {
    background-color: #e06900;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    color: #fff;
    text-align: left;
}

.icon-box i {
    font-size: 24px;
    color: #ff7b00;
}

.form-box2 input::placeholder {
    color: #fff;
}

/*back to top css*/

.m-backtotop {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: fixed;
    bottom: -50px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #222;
    border-radius: 25px;
    text-align: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    opacity: 0;
    overflow: hidden;
    color: #fff;
}

.m-backtotop.active {
    bottom: 15px;
    opacity: 1;
}

.m-backtotop>div {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    opacity: 1;
}

.m-backtotop>div.text {
    font-size: 5px;
    font-size: 0.5rem;
    line-height: 10px;
    text-transform: uppercase;
    font-weight: 900;
    font-family: "Open Sans", sans-serif;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(50%) translateX(-50%);
    opacity: 0;
    margin-top: 1px;
}

.m-backtotop:hover {
    transform: scale(1.1);
    bottom: 20px;
    cursor: pointer;
    background: black;
    box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
    transform: translateY(-150%) translateX(-50%);
    opacity: 0;
}

.m-backtotop:hover>div.text {
    transform: translateY(-50%) translateX(-50%);
    opacity: 1;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff0000, #ff7300, #ffeb00, #47ff00, #00ffee, #4700ff, #ff00eb);
    background-size: 400% 400%;
    animation: scrollbar-animation 4s infinite linear;
    border-radius: 5px;
}

@keyframes scrollbar-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}



@keyframes fadeOut {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

.robot {
    position: absolute;
}


.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.2);
    z-index: -1;
}

canvas {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
}





#gallery {
    width: 98vw;
}

#gallery h3 {
    font-family: "" Azeret Mono "", monospace;
}

#gallery header,
#gallery footer {
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-group-container {
    height: 500vh;
    position: relative;
}

.img-group-container>div {
    position: sticky;
    top: 0;
    overflow: hidden;
    height: 100vh;
}

.img-group {
    display: flex;
}

.img-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#gallery header h2 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -3px;
    line-height: 1.2;
    text-align: center;
    margin: 0;
}

.img-container h3 {
    margin: 0;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -3px;
    line-height: 1.2;
    position: relative;
    bottom: 30px;
    display: inline-block;
}

.img-container img {
    width: 300px;
    height: 400px;
}

/* .progress {
    position: fixed;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #ff0000, #ff7300, #ffeb00, #47ff00, #00ffee, #4700ff, #ff00eb);
    bottom: 50px;
    transform: scaleX(0);
} */

.brand-slider {
    overflow: hidden;
    background: #d3dce6;
    padding: 20px 0px;
    border: 5px solid #f89e52;
    position: relative;
    border-radius: 20px;
    margin-top: 50px;
}

.brand-track-wrapper {
    display: flex;
    width: 200%;
    /* 2x for seamless loop */
    animation: scroll 20s linear infinite;
}

.brand-track {
    display: flex;
    width: 50%;
    /* half is visible, half is for loop */
}

.brand-item {
    flex: 0 0 auto;
    width: 350px;
    height: 150px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.brand-item img:hover {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}


.brand-slider img {
    width: 200px;
    height: 200px;
}

.cus_card {
    border: 1px solid #fff;
    padding: 30px;
    border-radius: 20px;
}

.cus_card h3 {
    color: #f89e52;
    font-weight:700;
}

.cus_card p {
    color: rgb(205 200 200);
    padding-top: 10px;
}
.cus_card ul li{
  color: rgb(205 200 200);
}
.brand-slider-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    margin: 30px 0px;
    background: aliceblue;
    padding: 10px 0px;
    border-radius: 20px;
}

.brand-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.brand-logo {
    display: inline-block;
    margin-right: 1rem;
}

.brand-logo img {
    max-height: 160px;
    width: auto;
}

.cus_mob_brand_slider {
    display: none;
}

@media (min-width: 768px) {
    .brand-slider-wrapper {
        display: flex;
        justify-content: center;
        overflow: hidden;
        white-space: normal;
        margin: 30px 0px;
    }

    .brand-logo {
        margin-right: 2rem;
    }
}



.cus-bg{
 background-color: rgb(14 25 45);
    box-shadow:inset 0px 0px 18px 0px rgba(138, 196, 255, 1) ;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
}
.cus_h_bg{
  background-color: rgb(4 12 24) !important;;
}

.cus-bg-p{
 color:#ebeaea;
 padding-top:5px;

}
.cus_icon i{
    /* background-color: #fff; */
    border-radius: 50%;
    padding: 10px;
    margin-right: 20px
}

span, a, a:hover {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.blog img{
    max-width: 100%;
}
.blog-head {
  margin-bottom: 70px;
}

.blog-head h6{
  color: #f05907;
  position: relative;
  display: inline-block;
  text-transform: capitalize;
}

.blog-head h6:after, .blog-head h6:before{
  position: absolute;
  content: "";
  width: 50px;
  height: 3px;
  background: #f05907;
  top: 50%;
}

.blog-head h6:after{
  right: 120%;
}

.blog-head h6:before{
  left: 120%;
}

.overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.blog{
  /* background-color: #f7f7f7; */
      padding: 30px 0;
    /* min-height: 100vh; */
}

.blog .item{
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.blog .item .more{
  position: absolute;
  right: 30px;
  bottom: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  color: #f05907;
  font-size: 19px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  transform: translate(0 , 100px);
  transition: all 0.3s ease-in-out;
}

.blog .item:hover .more{
  transform: translate(0 , 0)
}

.blog .item:hover .img img{
  transition: all 0.4s ease;
}

.blog .item:hover .img img{
  transform: rotate(-5deg) scale(1.2 , 1.2);
}

.blog .item .img{
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%, 0 75%);
}

.blog .item .info{
  padding: 30px;
  position: relative;
}

.blog .item .info .date{
  position: absolute;
  left: calc(50% - 25px);
  top: -54px;
  width: 50px;
  height: 50px;
  line-height: 20px;
  text-align: center;
  background-color: #f05907;
  color: #fff;
  padding: 5px;
  transform: rotate(45deg);
}

.blog .item .info .date span {
    transform: rotate(-45deg);
    display: inline-block;
}
.blog .item .info h5:hover{
  color: #f05907;
}

.blog .item .info .user{
  margin-top: 20px;
  color: #f05907;
}

.blog .item .info .user i{
  margin-right: 5px;
  font-size: 14px;
}

.blog_inner .swiper-pagination{
 
        position: static;
}

  #portfolio-grid {
            width: 100%;
            overflow: hidden;
        }

        .grid-item {
            float: left;
            width: 33.33%;
            padding: 15px;
            box-sizing: border-box;
        }

        @media (max-width: 768px) {
            .grid-item {
                width: 50%;
            }
        }

        @media (max-width: 576px) {
            .grid-item {
                width: 100%;
            }
        }

        /* Ensure counter visibility */
        .counter-wraper, .stats-mainn {
            visibility: visible !important;
            opacity: 1 !important;
            padding-bottom: 60px;
            padding-top: 60px;
            margin-top:50px;
        }

        /* Blog Slider Styling */
        .blog-card {
            background: #fff;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin: 15px;
        }

        .blog-card .img img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .blog-card .info {
            padding: 10px 20px 40px 20px;
        }

      .blog-card .date {
    background: #f89e52;
    color: #fff;
    padding: 10px;
    position: absolute;
    top: 13px;
    right: 15px;
    text-align: center;
    width: 60px;
    border-radius: 5px;
    margin-bottom: 15px;
}

        .blog-card h5 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .blog-card p {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 15px;
        }

        .blog-card .user, .blog-card .more {
            font-size: 0.9rem;
            color: #f89e52;
            text-decoration: none;
            margin-right: 10px;
        }

        .blog-card .more i {
            margin-left: 5px;
        }

       .blog_footer {
    position: absolute;
    bottom: -30px;
    background: #031b34;
    padding: 5px 9px;
    left: 20px;
    border-radius: 10px;
    display: flex
;
    right: 15px;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}


.blog-card:hover .blog_footer {
    bottom: 10px;
}

.footer-2{
    background: url(../assets/img/footer-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* position: relative; */
    padding:100px 0px;
}

.footer-bg{
    background: url(../assets/img/04.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* position: relative; */
    padding:100px 0px;
}

.footer_logo{
    width:200px !important;
}

.widget-contact ul li{
        color: #999b9f;
    font-weight: 400;
}

/* Client Showcase Section */
.client-showcase-section {
    position: relative;
    background-color: #222429;
    overflow: hidden;
    padding: 40px 0px; /* Changed from 90px 0px; */
}

.client-showcase-section .sec-wrapper h5.title {
    color: #ff6200;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.client-showcase-section .sec-wrapper h2.b_title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
}

.client-showcase-slider {
    padding: 20px 0;
    width: 100%;
    overflow: hidden;
    border-radius:20px 0px 20px 0px;
    background: #babbbe;
}

/* Ensure the slider track is flexible */
.client-showcase-slider .slick-track {
    display: flex !important;
    align-items: center;
}

/* Style for each slide item */
.client-slide-item {
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 10px;
    min-height: 120px;
    width: auto !important; /* Ensure width is controlled by Slick */
}

.client-slide-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 98, 0, 0.2);
}

.client-logo {
    max-width: 150px;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(50%);
    transition: filter 0.3s ease;
}

.client-slide-item:hover .client-logo {
    filter: grayscale(0%);
}

/* Slick Slider Dots */
.client-showcase-slider .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.client-showcase-slider .slick-dots li {
    margin: 0 5px;
}

.client-showcase-slider .slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    border: none;
    opacity: 0.5;
    cursor: pointer;
}

.client-showcase-slider .slick-dots li.slick-active button {
    opacity: 1;
    background: #ff6200;
}

/* Fallback for mobile if Slick fails */
@media (max-width: 768px) {
    .client-showcase-section .sec-wrapper h2.b_title {
        font-size: 1.8rem;
    }

    .client-showcase-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 10px 0;
    }

    .client-slide-item {
        flex: 0 0 150px; /* Fixed width for mobile */
        margin: 0 5px;
        padding: 10px;
        scroll-snap-align: center;
        min-height: 100px;
    }

    .client-logo {
        max-width: 100px;
        max-height: 60px;
    }
}


@media (max-width: 576px) {
    .client-showcase-section .sec-wrapper h2.b_title {
        font-size: 1.5rem;
    }

    .client-slide-item {
        flex: 0 0 120px; /* Smaller width for smaller screens */
        margin: 0 3px;
        padding: 8px;
        min-height: 80px;
    }

    .client-logo {
        max-width: 80px;
        max-height: 50px;
    }
}



    .collapsible-content {
      max-height: 330px;
      overflow: hidden;
      transition: max-height 0.6s ease;
    }

    .collapsible-content.expanded {
      max-height: 5000px;
    }

    .text-toggle-btn {
      margin-top: 20px;
    }

    .arrow-btn {
      background: none;
      border: none;
      cursor: pointer;
    }

    .arrow {
      display: inline-block;
      width: 20px;
      height: 20px;
      border-left: 4px solid #444;
      border-bottom: 4px solid #444;
      transform: rotate(315deg);
      transition: transform 0.3s ease;
    }

    .arrow.up {
      transform: rotate(135deg);
    }

    .name {
      font-weight: bold;
      margin-top: 20px;
    }
        /* Updated Breadcrumb Styling */
        .breadcrumb-section {
            /* background: linear-gradient(135deg, #4b0082, #1a2a6c); */
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            font-family: 'Poppins', sans-serif;
            position: relative;
            overflow: hidden;
        }
        .breadcrumb-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url(../assets/img/bd-1.jpg) no-repeat center center/cover;
            z-index: -1;
            /* opacity: 0.3; */
        }
            /* background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJ3YXZlcyIgd2lkdGg9IjEwMCIgaGVpZ2h0PSIxMDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxwYXRoIGQ9Ik0wIDUwQzI1IDEwIDc1IDkwIDEwMCA1MFYwSDEwMFYwSDBWMHoiIGZpbGw9InJnYmEoMjU1LCAyNTUsIDI1NSwgMC4xKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCN3YXZlcykiLz48L3N2Zz4=') repeat-x; */
            
      
        .breadcrumb-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.2), transparent);
            z-index: 0;
        }
        .breadcrumb {
            background: transparent;
            padding: 20px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 10; /* Ensure breadcrumb is above particles */
        }
        .breadcrumb-item {
            position: relative;
            display: flex;
            align-items: center;
        }
        .breadcrumb-item a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.2rem;
            padding: 8px 15px;
            transition: color 0.3s ease, transform 0.3s ease;
            position: relative;
            z-index: 11; /* Ensure links are clickable */
            text-shadow: 0 0 8px rgba(0, 255, 255, 0.7);
        }
        .breadcrumb-item a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(to right, #00ffff, #ff00ff);
            transition: width 0.3s ease, left 0.3s ease;
        }
        .breadcrumb-item a:hover::after {
            width: 100%;
            left: 0;
        }
        .breadcrumb-item a:hover {
            color: #00ffff;
            transform: translateY(-3px);
        }
        .breadcrumb-item.active {
            color: #ffffff;
            font-weight: 600;
            font-size: 1.2rem;
            padding: 8px 15px;
            background: linear-gradient(135deg, #ff00ff, #00ffff);
            border-radius: 5px;
            text-shadow: 0 0 8px rgba(0, 255, 255, 0.7);
        }
        .breadcrumb-item + .breadcrumb-item::before {
            content: "➔";
            color: #ffffff;
            font-size: 1.3rem;
            margin: 0 10px;
            font-weight: 400;
            text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
        }
        @media (max-width: 576px) {
            .breadcrumb-section {
                height: 200px;
            }
            .breadcrumb {
                padding: 10px 0;
            }
            .breadcrumb-item a,
            .breadcrumb-item.active {
                font-size: 0.9rem;
                padding: 6px 10px;
            }
            .breadcrumb-item + .breadcrumb-item::before {
                font-size: 1rem;
                margin: 0 5px;
            }
        }

        /* Particle Animation for Breadcrumb Section */
        .breadcrumb-section .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        .breadcrumb-section .particles span {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #00ffff;
            border-radius: 50%;
            box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
            animation: float 8s infinite linear;
            z-index: 1;
        }
        .breadcrumb-section .particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .breadcrumb-section .particles span:nth-child(2) { top: 50%; left: 30%; animation-delay: 2s; }
        .breadcrumb-section .particles span:nth-child(3) { top: 70%; left: 60%; animation-delay: 4s; }
        .breadcrumb-section .particles span:nth-child(4) { top: 30%; left: 80%; animation-delay: 6s; }
        @keyframes float {
            0% { transform: translateY(0) scale(1); opacity: 1; }
            50% { transform: translateY(-50px) scale(0.8); opacity: 0.5; }
            100% { transform: translateY(0) scale(1); opacity: 1; }
        }

        /* Mission and Vision Card Styling (Unchanged from Previous Update) */
        .mission-vision-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(241, 243, 245, 0.7));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 40px 30px;
            height: 100%;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .mission-vision-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }
        .mission-vision-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(to right, #007bff, #00d4ff);
            border-radius: 20px 20px 0 0;
        }
        .mission-vision-card .icon {
            font-size: 2.5rem;
            color: #007bff;
            margin-bottom: 20px;
        }
        .mission-vision-card h3 {
            font-size: 1.9rem;
            color: #1a1a1a;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .mission-vision-card p {
            font-size: 1.1rem;
            color: #333333;
            line-height: 1.7;
            margin-bottom: 0;
        }
        .mission-vision-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .mission-vision-card ul li {
            font-size: 1.1rem;
            color: #333333;
            margin-bottom: 12px;
            position: relative;
            padding-left: 30px;
            transition: color 0.3s ease;
        }
        .mission-vision-card ul li:hover {
            color: #007bff;
        }
        .mission-vision-card ul li::before {
            content: '★';
            position: absolute;
            left: 0;
            color: #00d4ff;
            font-size: 1.2rem;
        }
        @media (max-width: 768px) {
            .mission-vision-card {
                padding: 30px 20px;
            }
            .mission-vision-card h3 {
                font-size: 1.6rem;
            }
            .mission-vision-card p,
            .mission-vision-card ul li {
                font-size: 1rem;
            }
            .left_about{
                margin-top:30px !important;
            }
        }

     
        .b_title {
            color: #b0b0b0;
            font-weight: 500;
        }

        .p_text {
            color: #b0b0b0;
            line-height: 1.8;
        }

        /* About Section */
        .about_inner {
            background: linear-gradient(145deg, #0e192d, #17485f);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            margin: 50px 0 90px 0px;
        }

        .right_about h6.title {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .about_hr_line {
            height: 2px;
            background: linear-gradient(to right, #00c6ff, #0072ff);
            margin-top: 30px;
        }

        /* Mission/Vision Section */
        .mission-vision-section {
            padding: 60px 0;
        }

        .mission-vision-card {
            background: #0e192d;
            padding: 30px;
            border-radius: 12px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid #333;
        }

        .mission-vision-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
        }

        .mission-vision-card i {
            color: #00c6ff;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .mission-vision-card h3 {
            color: #ffffff;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .mission-vision-card p, .mission-vision-card ul {
            color: #b0b0b0;
        }

        .mission-vision-card ul li {
            list-style: none;
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
            color: #b0b0b0 !important;
        }

        .mission-vision-card ul li:before {
            content: '✔';
            color: #00c6ff;
            position: absolute;
            left: 0;
        }

        /* Our Approach, Clients, Our Impact, Awards & Recognition Sections */
        section.py-5 {
            padding: 40px 0px; /* Changed from 60px 0px; */
        }

     .cus-bg {
            position: relative; /* Ensure ::before positioning works */
            padding: 20px;
            border-radius: 12px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid #333;
            height: 100%;
        }

        .cus-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(to right, #007bff, #00d4ff);
            border-radius: 20px 20px 0 0;
        }

        .cus-bg:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
        }

        .cus-bg i {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .cus-bg h5 {
            color: #ffffff;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .cus-bg-p {
            color: #b0b0b0;
            font-size: 0.95rem;
        }

        .cus_h_bg {
            background: #181818;
        }

        /* Company History Section */
        .company_history {
            position: relative;
            padding: 60px 0;
        }

        .company_history .bg_shape {
            background: url('assets/img/bg_shape.svg');
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
        }

        .his_img {
            filter: brightness(0.8);
            border-radius: 12px;
        }

        .com_right h2 {
            font-size: 1.8rem;
            color: #ffffff;
        }

        .com_right ul li {
            color: #b0b0b0;
            margin-bottom: 10px;
        }

        .timeline-container {
            position: relative;
            margin-top: 40px;
        }

        .timeline-svg {
            width: 100%;
            height: 20px;
        }

        .timeline {
            display: flex;
            justify-content: space-between;
            position: relative;
        }

        .timeline-item {
            position: relative;
            text-align: center;
        }

        .timeline-dot {
            width: 12px;
            height: 12px;
            background: #00c6ff;
            border-radius: 50%;
            position: absolute;
            top: -5px;
            left: 50%;
            transform: translateX(-50%);
        }

        .timeline-item span {
            color: #b0b0b0;
            font-size: 0.9rem;
            display: block;
            margin-top: 20px;
        }
.widget-contact ul li {
    color: #999b9f;
    font-weight: 400;
    align-items: baseline;
    display: flex
;
    gap: 10px;
}
.widget-contact ul li{
    margin-bottom:15px;
    }

    .cus_left{
        top:60% !important;
    }


/* Creative Journey Section Styling */
.creative-journey-section {
    /* background: #12151b; */
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* background: url(../assets/img/dot.png); */
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 

}
.cus_t_title {
    padding-top:50px;
}
.creative-journey-section .particle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><circle cx="10" cy="10" r="1" fill="rgba(29, 78, 216, 0.3)"/><circle cx="50" cy="50" r="1" fill="rgba(29, 78, 216, 0.3)"/><circle cx="90" cy="90" r="1" fill="rgba(29, 78, 216, 0.3)"/></svg>') repeat;
    opacity: 0.1;
    animation: particleMove 20s linear infinite;
}
.vertical-arrow {
  width: 20px;
  height: 80px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}


@keyframes particleMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.neon-text {
    color: #1d4ed8;
    text-shadow: 0 0 5px rgba(29, 78, 216, 0.5), 0 0 10px rgba(29, 78, 216, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.neon-title {
    color: #fff;
    text-shadow: 0 0 10px rgba(29, 78, 216, 0.7), 0 0 20px rgba(29, 78, 216, 0.5);
    font-weight: 700;
}

.text-light {
    color: #b0b3b8;
}

.journey-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
}

.journey-card {
    background: #040c18;
    border-radius: 20px;
    padding: 35px 25px;
    width: 100%;
    /* max-width: 260px; */
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* box-shadow: 0 0 20px rgba(29, 78, 216, 0.15); */
    border: 1px solid rgb(234 236 244 / 40%);
}

.journey-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(29, 78, 216, 0.6);
}

.card-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #1d4ed8, #3b82f6);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(29, 78, 216, 0.5);
    border: 2px solid #12151b;
}

.card-icon {
    font-size: 30px;
    color: #fff;
    background: linear-gradient(45deg, rgba(239, 110, 43, 1), rgb(115 43 5));
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
    /* box-shadow: 0 0 15px rgba(29, 78, 216, 0.5); */
}

.journey-card:hover .card-icon {
    transform: rotate(360deg);
}

.card-content h4 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.card-content p {
    font-size: 15px;
    color: #b0b3b8;
    line-height: 1.6;
}

.journey-arrow {
    position: relative;
}

.horizontal-arrow {
    width: 100px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diagonal-arrow {
    width: 20px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-svg {
    width: 100%;
    height: 100%;
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: drawArrow 2s ease-in-out infinite;
}

.arrow-svg path {
    filter: drop-shadow(0 0 5px rgba(29, 78, 216, 0.7));
}

@keyframes drawArrow {
    0% {
        stroke-dashoffset: 120;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 120;
    }
}

@media (max-width: 992px) {
    .journey-row {
        flex-direction: column;
    }

    .journey-card {
        max-width: 320px;
    }

    .horizontal-arrow, .diagonal-arrow {
        width: 20px;
        height: 80px;
        margin: 0 auto;
    }

    .horizontal-arrow .arrow-svg {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .journey-card {
        max-width: 100%;
        padding: 25px 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 26px;
    }

    .card-content h4 {
        font-size: 20px;
    }

    .card-content p {
        font-size: 14px;
    }
}


.add_project_img img {
    width: 100%;
    height: 550px;
    border-radius: 20px;
    border: 2px solid #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease; /* Smooth transition for zoom effect */
}

.add_project_img img:hover {
    transform: scale(1.05); /* Zoom effect on hover */
}

.add_project_img2 img {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    border: 2px solid #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease; /* Smooth transition for zoom effect */
}

.add_project_img2 img:hover {
    transform: scale(1.05); /* Zoom effect on hover */
}

.add_project_img3 img {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    border: 2px solid #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    transition: transform 0.3s ease; /* Smooth transition for zoom effect */
}

.add_project_img3 img:hover {
    transform: scale(1.05); /* Zoom effect on hover */
}

.add_project_img4 img {
    width: 100%;
    height: 560px;
    border-radius: 20px;
    border: 2px solid #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    margin-top: -155px;
    transition: transform 0.3s ease; /* Smooth transition for zoom effect */
}

.add_project_img4 img:hover {
    transform: scale(1.05); /* Zoom effect on hover */
}

.add_project{
    padding:70px 0px;
}

.projects-section {
        background: linear-gradient(135deg, #040c18 0%, #08111b 100%);
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0.3;
}

.subtitle.text-neon {
    color: #00ffcc;
    text-shadow: 0 0 15px #00ffcc, 0 0 30px #00ffcc;
    letter-spacing: 4px;
}



.project-card {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform: perspective(1000px) rotateY(0deg);
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.project-card:hover {
    transform: perspective(1000px) rotateY(5deg) translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
}

.bg-dark-gradient {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
}

.project-img img {
    transition: transform 0.5s ease, filter 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-card:hover .overlay {
    opacity: 1;
}

.btn-neon-gradient {
    background: linear-gradient(90deg, #00ffcc, #ff00cc);
    color: #121212;
    border: none;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-neon-gradient:hover {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.5);
    transform: scale(1.05);
}

.btn-outline-neon {
    border: 2px solid #00ffcc;
    color: #00ffcc;
    text-shadow: 0 0 5px #00ffcc;
    transition: all 0.3s ease;
}

.btn-outline-neon:hover {
    background: linear-gradient(90deg, #00ffcc, #ff00cc);
    color: #121212;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.animate-glow {
    animation: glow 2s infinite alternate;
}

.animate-slide-in {
    animation: slideIn 1s ease-out;
}

.animate-fade-in {
    animation: fadeIn 1.5s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc; }
    to { text-shadow: 0 0 20px #00ffcc, 0 0 40px #00ffcc; }
}

@keyframes slideIn {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .title {
        font-size: 2rem !important;
    }
    .project-card {
        transform: perspective(1000px) rotateY(0deg);
    }
    .project-card:hover {
        transform: translateY(-10px);
    }
}

/*Added on 23/06*/
.cus-hr {
    border: 0;
    height: 2px;
    background: rgba(239, 110, 43, 1) !important; /* Light white line for dark background */
    margin: 40px 0;
    width: 100%;
}

.p_text strong {
    color: #f9f4f2;
}

/* Project Section Styles */
.project-section {
  position: relative;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 0px;
  /* height: 100vh; */
  overflow: hidden;
  background: #111113;
background-image: radial-gradient(circle at top left, #062546 10%, #08111b 30%);
}

.project-section-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.project-section-container {
  width: 80%;
}

.project-section-swiper {
  width: 100%;
  padding: 50px 0;
}

.project-section-swiper .swiper-slide {
  position: relative;
  width: 200px;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  transition: 1s;
  user-select: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  box-sizing: border-box;
}

.project-section-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(130, 13, 13, 0.8), rgba(39, 8, 92, 0.8));
  mix-blend-mode: multiply;
  z-index: 1;
}

.project-section-swiper .swiper-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
  transition: 1s;
  z-index: 0;
}

.project-section-swiper .swiper-slide p {
  position: relative;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 2px;
  z-index: 2;
  margin-bottom: 10px;
}

.project-section-btn {
  position: relative;
  z-index: 2;
  padding: 8px 16px;
  background: #6f1223;
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.project-section-btn:hover {
  background: #950923;
}

.project-section-swiper .swiper-slide-active {
  width: 750px;
}

.project-section-swiper .swiper-slide-active::after {
  background: rgba(123, 123, 123, 0.4);
}

.project-section-swiper .swiper-slide-active img {
  /* transform: scale(0.8); */
  /* object-position: 80% 80%; */
}

.project-section-swiper .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.6s ease-in-out;
}

.project-section-swiper .swiper-pagination-bullet-active {
  width: 32px;
  background-color: #6f1223;
  border-radius: 14px;
}


  /* Client Section Styles */
        .client-showcase-section {
            position: relative;
            overflow: hidden;
        }

        .client-logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .client-logo {
            max-width: 100%;
            max-height: 60px;
            width: auto;
            height: auto;
            object-fit: contain;
            transition: all 0.3s ease;
            filter: grayscale(30%) brightness(0.8);
            opacity: 0.8;
        }

        .client-logo-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .client-logo-container:hover .client-logo {
            filter: grayscale(0%) brightness(1);
            opacity: 1;
        }

        /* Responsive adjustments */
        @media (max-width: 767px) {
            .client-logo-container {
                height: 80px;
                padding: 15px;
            }

            .client-logo {
                max-height: 50px;
            }
        }

        @media (max-width: 575px) {
            .client-logo-container {
                height: 70px;
                padding: 10px;
            }

            .client-logo {
                max-height: 40px;
            }
        }



        .InsightHCM_navbar{
            padding:20px 0px 0px 0px;
        }




        .my-loader {
  position: fixed;          /* stays on top */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;         /* white background */
  z-index: 1050;            /* above Bootstrap modals */
}

.my-loader .gegga {
  width: 0;
}

.my-loader .snurra {
  filter: url(#gegga);
}

.my-loader .stopp1 {
  stop-color: #f700a8;
}
.my-loader .stopp2 {
  stop-color: #ff8000;
}

.my-loader .halvan {
  animation: Snurra1 10s infinite linear;
  stroke-dasharray: 180 800;
  fill: none;
  stroke: url(#gradient);
  stroke-width: 23;
  stroke-linecap: round;
}

.my-loader .strecken {
  animation: Snurra1 3s infinite linear;
  stroke-dasharray: 26 54;
  fill: none;
  stroke: url(#gradient);
  stroke-width: 23;
  stroke-linecap: round;
}

.my-loader .skugga {
  filter: blur(5px);
  opacity: 0.3;
  position: absolute;
  transform: translate(3px, 3px);
}

@keyframes Snurra1 {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -403px; }
}


.my-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #062546;
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease; /* smooth fade */
}

.my-loader.loader-hidden {
  opacity: 0; /* fade out */
  pointer-events: none;
}


.filter-btn {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  /* background: #ffffff; */
  font-family: sans-serif;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid #000000;
  margin: 10px;
  transition: background 0.3s;
}

.filter-btn:hover {
  background-color: #ff8000;
  color:#fff;
}
.isg_btn:active{
  background-color: rgb(79 184 255);
}
.filter-btn:active,
.filter-btn.is-checked {
  /* background-color: rgba(0,0,0,0.1); */
  
    background-color: rgb(79 184 255);
  outline: none;
}

.filter-group {
  margin: 20px 0;
  text-align: center;
}

.filter-group:after {
  content: '';
  display: block;
  clear: both;
}

.portfolio-grid img {
  vertical-align: middle;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.portfolio-grid .portfolio-item {
  background-color: #3a3a3a;
  display: block;
  float: left;
  /* margin: 1%; */
  /* width: 23%; */
}

@media (max-width: 1024px) {
  .portfolio-grid .portfolio-item {
    width: 31.3%;
  }
}

@media (max-width: 767px) {
  .portfolio-grid .portfolio-item {
    width: 48%;
  }
}

@media (max-width: 479px) {
  .portfolio-grid .portfolio-item {
    margin: 2% 0;
    width: 100%;
  }
}

.filter-btn:active, .filter-btn.is-checked {
    /* background-color: rgba(0, 0, 0, 0.1); */
    background-color: rgb(16 16 16);
    outline: none;
    color: #fff;
    border: 1px solid #f89e3e;
}

/*=================== Added for portfolio on 19/08 =====================*/
/* Default portfolio item style */
.portfolio-item {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  height: 350px !important; /* default height for all */
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keep aspect ratio without distortion */
  display: block;
  transition: transform 0.3s ease;
}

/* Website items have larger height */
.portfolio-item.website {
  height: 700px !important;
}

.portfolio-item.website .hover-btn {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  z-index: 10;
}

.portfolio-item.website:hover .hover-btn {
  display: block;
}

.portfolio-item:not(.website) {
  cursor: pointer;
}

.portfolio-item:not(.website) img {
  transition: transform 0.3s ease;
}

.portfolio-item:not(.website):hover img {
  transform: scale(1.05);
}

/* Overlay */
.portfolio-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}

/* Buttons */
.filter-btn {
  margin: 5px;
  padding: 8px 16px;
  border: none;
  background-color: #f8f9f9;
  cursor: pointer;
}

.isg_btn_cus {
  background-color: #000000 !important;
  color: #fff !important;
  border: 1px solid #f89e3e !important;
  width: 70% !important;
}

/* Modal */
#portfolioModal img {
  max-width: 100%;
  height: auto;
}

.modal-header {
  padding: 5px 20px;
}

.modal-content {
  background-color: #04172c !important;
}

/* Responsive image class */
.img-responsive {
  display: block;
  width: 100%;
  height: 100%; /* equal height */
  object-fit: cover; /* prevent stretching */
}
