@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}


.bg-custome {
    background-color: #23152e;
}

.bg-yalow2 {
    background-color: #e5b906;
}
.yallow-color2 {
    color: #e5b906;
}

.yallow-color {
    color: #e5b906;
}

.btn-custome {
    background-color: #e5b906 !important;
    color: black;
    border: none !important;
    border-radius: 20px;

}

.nav-link {
    color: white;
}

.arrow {
    margin-left: -10px;
}

.yallowbtn b i {
    margin-left: 0px;
    margin-left: -10px;
    font-size: 30px;


}

.yallowbtn :hover {
    margin-right: 10px;


}

.active {
    color: #e5b906 !important;
}

.herosection {
    height: auto;
    background-color: #23152e;
    color: white !important;
}

.stats-section {
    background-color: #23152e;
    /* Deep dark background */
    color: #fff;
}

.text-accent {
    color: #e5b906;
    /* Orange accent like your example */
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 10%;
    width: 1px;
    height: 80%;
    background: rgba(255, 255, 255, 0.2);
    /* thin divider line */
}

.text-muted {
    color: #b0aebe !important;
    /* soft grey for subtext */
}


.service-box {
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 1px solid gray;
}

/* image hidden initially */
.service-img {
    width: 0px;
    height: 200px;
    object-fit: cover;
    border-radius: 30px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

/* when hover — show image */
.service-box:hover .service-img {
    opacity: 1;
    width: 200px;
    visibility: visible;
    transform: scale(1);
}

/* title color change */
.service-title {
    color: #fff;
    transition: color 0.3s ease;
}

.service-box:hover .service-title {
    color: #e5b906;
    /* yellow color */
}

/* optional: arrow color change */
.service-box:hover .arrow {
    color: #e5b906;
}

.footer-section {
    background-color: #0d0a1f;
    /* dark navy background */
    color: #ddd;
    font-family: 'Poppins', sans-serif;
}

.text-orange {
    color: #e5b906;
}

.footer-logo {
    width: 70px;
    height: auto;
}

.footer-line {
    border-color: rgba(255, 255, 255, 0.1);
}

.social-icons a {
    color: white;
    margin-right: 10px;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #e5b906;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e5b906;
}

.dot {
    color: #e5b906;
    margin: 0 6px;
}

.hero-image {
    background-image: url('/assets/images/heroimage.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    /* or any height you prefer */
    border-radius: 30px;
}



.bg-yalow {
    background-color: #ff6600;

}

.digital-presence {
    background-color: #ff6600;
    /* overflow: hidden; */
    height: 70vh;
}

.image-side {
    position: absolute;

    bottom: 10%;
    right: 40%;
}

.image-side img {
    object-fit: cover;
    width: 800px !important;
    height: 800px !important;
    filter: grayscale(100%);
    z-index: 190000 !important;

}

.text-side {
    min-height: 400px;
    height: 70vh;
}

.mainbtnpossition {
    left: 25%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

@media (max-width: 767px) {
    .image-side img {
        height: 300px;
    }

    .text-side {
        text-align: center;
    }

    .hero-image {
        background-image: url('/assets/images/heroimage.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        height: 400px;
        /* or any height you prefer */
        border-radius: 30px;
        margin-top: 11px;
    }

    .mainbtnpossition {
        display: none;
    }
}

.border-bit {
    border: 3px solid #3c3067;
    border-radius: 10px;
    position: relative;
    padding: 0px;

}

.border-bit img {
    width: 100%;
    height: 100%;

}




:root {
    --h: 44px;
    /* button height */
    --pad-x: 26px;
    /* horizontal padding */
    --radius: 999px;
    /* pill radius */
    --move: 22px;
    /* how far arrow moves on hover (adjust) */
    --grad1: #ffb445;
    --grad2:  #e5b906;
    --text: #231227;
}

.btn-bg {
    background: linear-gradient(90deg, var(--grad1), var(--grad2));
    border-radius: var(--radius);
    border-radius: var(--radius);
    padding: 10px 20px;

}

/* button base */
.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    height: var(--h);
    line-height: 1;
    padding: 0 calc(var(--pad-x));
    /* background: linear-gradient(90deg, var(--grad1), var(--grad2)); */
    color: var(--text);
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    position: relative;
    overflow: visible;
    /* allow arrow to slide out */
    transition: transform .18s ease;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06) inset;
}

/* text inside the pill */
.project-btn .btn-text {
    display: inline-block;
    white-space: nowrap;
    font-size: 15px;
}

/* arrow wrapper (the round knob) */
.project-btn .btn-arrow {
    --size: calc(var(--h) - 6px);
    /* circle size slightly smaller than height */
    width: var(--size);
    height: var(--size);
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--grad1), var(--grad2));
    /* same gradient so it looks merged */
    margin-left: -10px;
    /* small gap so it hugs the pill */
    transform: translateX(0);
    transition:
        transform .32s cubic-bezier(.2, .9, .2, 1),
        box-shadow .28s ease,
        background .28s ease;
    z-index: 2;
    /* sit above pill */
    box-shadow: none;
}

/* arrow icon styling */
.project-btn .btn-arrow i {
    font-size: 20px;
    color: var(--text);
    line-height: 1;
    display: block;
    transform: translateX(0);
    transform: rotate(296deg);
    transition: transform .32s ease;
}

/* hover: separate the knob to the right and add subtle shadow */
.project-btn:hover,
.project-btn:focus {
    text-decoration: none;
    transform: translateY(-1px);
}

.project-btn:hover .btn-arrow,
.project-btn:focus .btn-arrow {
    transform: translateX(var(--move));
    box-shadow: 0 8px 18px rgba(16, 9, 8, 0.18);
    background: linear-gradient(90deg, #ffb445, #ff8b17);
    /* can change to solid if you like */
}

/* optional: nudge arrow icon when separating */
.project-btn:hover .btn-arrow i,
.project-btn:focus .btn-arrow i {
    transform: translateX(2px);
}

/* small screens - scale down */
@media (max-width:420px) {
    :root {
        --h: 40px;
        --pad-x: 20px;
        --move: 18px;
    }

    .project-btn .btn-arrow i {
        font-size: 18px;
    }

    .project-btn .btn-text {
        font-size: 14px;
    }
}

.pulse-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color:  #e5b906;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ffc107;
    opacity: 0.6;
    animation: pulse 1.5s infinite ease-in-out;
}

.team-card {
    border-radius: 20px;
    /* overflow: hidden; */
    /* background-color: #160f2c; */
    /* dark purple base */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* Top section with yellow background */
.team-image {

    position: relative;
    overflow: hidden;
    /* height: 280px; */
    /* adjust to fit your image */
    display: flex;
    align-items: end;
    justify-content: center;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    max-height: 350px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

/* Bottom info section */
.team-info {
    /* background-color: #1a1231; */
    color: #fff;
    text-align: left;
    padding: 18px 20px;
}

.team-info .meet-text {
    color: #a793ff;
    font-weight: 500;
    font-size: 14px;
}

.team-info .name {
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
}

.team-info .role {
    color: #ff8b00;
    font-weight: 600;
    font-size: 15px;
}


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

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

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



.filterimage {
    background-image: url('/assets/images/transpernat.png');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    /* height: 600px; */
    border-radius: 10px 0 0 10px;
    z-index: 999999;
    margin-top: -300px;

}


/* Change Swiper navigation arrow color */
.swiper-button-prev,
.swiper-button-next {
  color: #ffc107 !important; /* arrow color */
  font-weight: bold;
}

/* Optional: arrow background for better visibility */
.swiper-button-prev::after,
.swiper-button-next::after {
  color: #ffc107 !important; /* icon color */
  font-size: 14px;
}


@media (max-width:720px) {
    .filterimage {
        background-image: none;
        background-size: none;
        background-position: none;
        min-height: 10px;
        /* height: 600px; */
        border-radius: 10px 0 0 10px;
        z-index: 999999;
        margin-top: 0px;

    }
    .OnMobile{
        display: none;
    }

}
