body {
    font-family: "Inter", sans-serif;
    color: white;
    background-color: #0B1220;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Space Grotesk", sans-serif;
}

header{
    background-color: #0B1220;
}

.navbar-light .navbar-nav .nav-link {
    color: #FFFFFF;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
    color: white;
}

.btn-yellow {
    background-color: #F09525;
    color: white;
    font-size: 18px;
    padding: 10px 25px;
    border-radius: 8px;
    border: 1px solid #F09525;
    transition: all 0.4s ease;
}

.navbar {
    padding: 5px 0;
}

.navbar-nav li.nav-item {
    margin: 0px 12px;
}

ul.navbar-nav {
    margin-right: 40px;
}

.navbar-light .navbar-nav .nav-link:hover{
    color: #0DCCC5 !important;
}

p.badge-blue {
    border: 1px solid #0DCCC5;
    display: inline-block;
    color: #0DCCC5;
    border-radius: 100px;
    font-size: 16px;
    letter-spacing: 0.35px;
    padding: 5px 23px;
    background-color: #0B1D2A;
    position: relative;
    padding-left: 34px;
}

p.badge-blue:before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #0DCCC5;
    position: absolute;
    border-radius: 50px;
    top: 17px;
    left: 17px;
}

a{
    text-decoration: none;
}

.banner-content h1 {
    letter-spacing: -3.52px;
    font-size: 78px;
    font-weight: bolder;
    line-height: 88px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    line-height: 32px;
}

.btn-white {
    background-color: transparent;
    color: white;
    font-size: 18px;
    padding: 10px 25px;
    border-radius: 8px;
    border: 1px solid #FFFFFF1A;
}

.home-banner .banner-button a {
    margin: 0px 5px;
}

.home-banner .banner-button {
    margin-top: 30px;
}

.home-banner{
    background-image: url(../img/home-bg.png);
    padding: 150px 0px;
    background-repeat: no-repeat;
    background-size: cover;
}

section.trusted {
    background-color: #0B1220;
    padding: 40px 0px 20px;
}

.section-heading h5 {
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 22px;
    font-family: "Inter", sans-serif;
}

.marquee-band {
    padding: 22px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marqueeLine 50s linear infinite;
}

@keyframes marqueeLine {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
    color: white;
    font-size: 20px;
    font-family: "Space Grotesk", sans-serif;
}

.section-heading h6 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    color: #0DCCC5;
    margin-bottom: 20px;
    font-weight: 400;
}
.section-heading h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin-bottom: 0;
}

section.services {
    background-image: url(../img/services-bg.png);
    padding: 120px 0 120px;
    background-size: cover;
}

.service-card {
    background-color: #232936;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 28px 28px 32px;
    height: 100%;
    transition: border-color 0.25s ease, transform 0.25s ease;
    /* transition: all 0.4s ease; */
}
.service-card:hover {
    border-color: rgba(13, 204, 197, 0.35);
    transform: translateY(-3px);
}

/* Top row: icon + status */
.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

/* Icon box */
.service-icon {
    width: 52px;
    height: 52px;
    background-color: #2C323F;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #2C323F14;
    margin-bottom: 20px;
}
.service-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);   /* makes any dark PNG white */
}

/* Status badge */
.status-dot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: #ffffffdb;
    font-family: "Space Grotesk", sans-serif;
}
.status-dot .dot {
    width: 10px;
    height: 10px;
    background-color: #0dccc5e3;
    border-radius: 50%;
    display: inline-block;
}

/* Card text */
.service-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.service-card p {
    font-size: 16px;
    line-height: 24px;
    color: #ffffffdb;
    margin-bottom: 0;
    font-family: "Space Grotesk", sans-serif;
}

section.ai-infra {
    background-image: url(../img/ai-infra-bg.png);
    padding: 120px 0 120px;
    background-size: cover;
}

/* Visual container */
.ai-infra-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: #080f1c;
    border: 1px solid rgba(255, 255, 255, 0.06);
    min-height: 420px;
}

/* Main brain image */
.ai-infra-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    display: block;
    opacity: 1;
}

/* Dark fade at bottom so stats sit cleanly over image */
.ai-infra-visual::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%;
    /* background: linear-gradient(to top, rgba(8, 15, 28, 0.97) 0%, rgba(8, 15, 28, 0.6) 60%, transparent 100%); */
    pointer-events: none;
}

/* Stats row overlaid at bottom */
.ai-infra-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 0 40px 36px;
    z-index: 2;
}

.ai-stat {
    text-align: center;
}

.ai-stat h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 4px;
    line-height: 1;
}

.ai-stat span {
    font-size: 13px;
    color: #0DCCC5;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

section.ai-infra .section-heading h6 {
    color: white;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ Process Section ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ */
section.process {
    background-image: url(../img/process-bg.png);
    padding: 120px 0 120px;
    background-size: cover;
}

/* Steps row */
.process-step {
    padding-right: 0;
    position: relative;
}


/* Icon circle */
.process-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 100px;
}

.process-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 1;
}

/* Step number */
.process-number {
    display: block;
    font-size: 22px;
    font-weight: 400;
    color: #FFFFFF66;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* Step title */
.process-step h5 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
}

/* Step description */
.process-step p {
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF99;
    margin-bottom: 0;
    font-family: "Space Grotesk", sans-serif;
}


section.case-studies {
    padding: 120px 0 120px;
}

.case-card {
    background-color: #232A36;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 28px 28px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.25s ease, transform 0.25s ease;
    padding-bottom: 0;
}

.case-card:hover {
    border-color: rgba(13, 204, 197, 0.3);
    transform: translateY(-3px);
}

/* Top row: tags + arrow */
.case-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Tags */
.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.case-tag {
    display: inline-block;
    font-size: 12px;
    font-family: "Inter", sans-serif;
    color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 3px 10px;
    letter-spacing: 0.3px;
}

/* Arrow link */
.case-arrow {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.case-card:hover .case-arrow {
    color: #0DCCC5;
}

/* Card title */
.case-card h4 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.3px;
    margin-top: 6px;
    margin-bottom: 4px;
}

/* Card description */
.case-card p {
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF99;
    margin: 0;
    flex-grow: 1;
    font-family: "Space Grotesk", sans-serif;
}

/* Metric highlight */
.case-metric {
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #0DCCC5;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 12px;
    margin-top: 15px;
}

section.insights {
    background-image: url(../img/insights-bg.png);
    padding: 120px 0 120px;
    background-size: cover;
}

section.insights .section-heading h2 {
    /* font-size: 36px; */
}

/* Left image */
.insights-img {
    border-radius: 14px;
    overflow: hidden;
    height: 500px;
}

.insights-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.85);
}

.insight-card {
    background-color: #222935;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 24px 22px 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: border-color 0.25s ease, transform 0.25s ease;
    transform: none !important;
}

.insight-card:hover {
    border-color: rgba(13, 204, 197, 0.3);
    transform: translateY(-3px);
}

/* Meta row: category + read time */
.insight-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.insight-category {
    font-size: 13px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: white;
}

.insight-read {
    font-size: 13px;
    font-family: "Inter", sans-serif;
    color: rgba(255, 255, 255, 0.3);
}

.insight-read::before {
    content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â·";
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.2);
}

/* Card title */
.insight-card h5 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 25px;
    font-weight: bold;
    color: #ffffff;
    line-height: 35px;
}

/* Read link */
.insight-link {
    font-size: 16px;
    font-weight: 400;
    color: #0DCCC5;
    text-decoration: none;
    display: inline-block;
    transition: gap 0.2s ease, opacity 0.2s ease;
}

.insight-link:hover {
    opacity: 0.75;
    color: #0DCCC5;
}

.insight-link img {
    width: 20px;
    margin-left: 1px;
}

section.faq {
    padding: 120px 0;
}

section.faq .section-heading h2 {
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background-color: #232A36;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq-item.open {
    border-color: rgba(13, 204, 197, 0.25);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    gap: 16px;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #0DCCC5;
}

/* Chevron */
.faq-chevron {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: #0DCCC5;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 26px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 26px 22px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 26px;
    color: white;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
}

section.contact {
    background-image: url(../img/contact-bg.png);
    padding: 120px 0;
    background-size: cover;
}

.contact-sub {
    font-size: 18px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 10px;
    margin-bottom: 0;
}

.contact-card {
    background-color: #222936;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    overflow: hidden;
    padding: 8px 0 32px;
}

.contact-field {
    padding: 22px 28px 0;
}

/* Remove right border on even fields (right column) */
.col-md-6:nth-child(even) .contact-field,
.col-md-12 .contact-field {
    border-right: none;
}

/* Remove bottom border on last field row */
.contact-field--textarea {
    border-bottom: none;
}

/* Label */
.contact-field label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: white;
    margin-bottom: 10px;
}

/* Input & Select */
.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    outline: none;
    color: #ffffff;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    padding: 6px 0 12px;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.2s ease;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-bottom-color: #0DCCC5;
}

.contact-field select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
}

.contact-field select option {
    background-color: #111827;
    color: #ffffff;
}

.contact-field textarea {
    resize: none;
    line-height: 26px;
    border-bottom: none;
}

/* Placeholder color */
.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.contact-field select:invalid,
.contact-field select option[value=""] {
    color: rgba(255, 255, 255, 0.2);
}

/* Submit row */
.contact-submit {
    padding: 24px 28px 0;
}

.contact-submit .btn-yellow {
    font-size: 16px;
    padding: 12px 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.site-footer {
    background-color: #080e1a;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.footer-top {
    padding: 120px 0 50px;
}

.footer-logo img {
    width: 250px;
    display: block;
    margin-bottom: 18px;
}

.footer-tagline, .footer-tagline p {
    font-size: 15px;
    line-height: 25px;
    color: #7D8289;
    margin: 0;
    max-width: 260px;
}

/* Column headings */
.footer-heading {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #FFFFFF;
    margin-bottom: 18px;
}

/* Link lists */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links li a {
    font-size: 16px;
    font-family: "Inter", sans-serif;
    color: #7D8289;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: #0DCCC5;
}

.footer-marquee-wrap {
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 10px 0;
    user-select: none;
}

.footer-marquee-track {
    display: inline-flex;
    align-items: center;
    animation: footerMarquee 30s linear infinite;
}

@keyframes footerMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.footer-marquee-word {
    font-family: "Space Grotesk", sans-serif;
    font-size: 150px;
    font-weight: bold;
    letter-spacing: -9.6px;
    color: #101724;
    padding: 0 20px;
    line-height: 1;
}

.footer-marquee-dot {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.07);
    line-height: 1;
}

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copy {
    font-size: 15px;
    color: #7D8289;
    margin: 0;
    font-family: "Inter", sans-serif;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 24px;
}

.footer-legal li a {
    font-size: 15px;
    font-family: "Inter", sans-serif;
    color: #7D8289;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal li a:hover {
    color: #0DCCC5;
}

.btn-yellow:hover {
    background-color: #0DCCC5;
    color: white;
    border-color: #0DCCC5;
}

.btn-white:hover {
    background-color: #0DCCC5;
    color: white;
    border-color: #0DCCC5;
}

.text-teal {
    color: #0DCCC5;
}

.about-hero {
    padding: 60px 0 100px;
}

.about-hero-title {
    font-size: 58px;
    font-weight: bolder;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin: 22px 0 20px;
}

.about-hero-text, .about-hero-text p {
    color: #ffffffdb;
}

.about-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 40px;
}

.about-hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(13, 204, 197, 0.18) 0%, transparent 70%);
    z-index: 0;
    opacity: 0;
}

.about-hero-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: top;
}

section.vision {
    padding: 60px 0 40px;
    background-color: #F0F6FF0A;
}

.vision-panel {
    /* background: linear-gradient(180deg, rgba(13, 204, 197, 0.06) 0%, rgba(11, 18, 32, 0) 100%); */
    border-radius: 24px;
    padding: 70px 40px;
}

.vision-text, .vision-text p {
    max-width: 900px;
    margin: 18px auto 0;
    color: white;
}

section.competencies {
    padding: 120px 0;
}

.service-card--accent {
    background-color: #0DCCC5;
    border-color: #0DCCC5;
}

.service-card--accent .service-icon {
    background-color: rgba(11, 18, 32, 0.15);
}

.service-card--accent h4,
.service-card--accent p {
    color: #0B1220;
}

section.methodology {
    padding: 80px 0 120px;
}

.method-step {
    background-color: #232936;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 20px 22px;
    height: 100%;
}

.method-step.active {
    background-color: #0DCCC5;
}

.method-number {
    display: block;
    font-size: 20px;
    color: #ffffffdb;
    font-family: "Space Grotesk", sans-serif;
    margin-bottom: 6px;
}

.method-step.active .method-number {
    color: rgba(11, 18, 32, 0.6);
}

.method-step h5 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.method-step.active h5 {
    color: #0B1220;
}

section.why-us {
    padding: 40px 0 120px;
}

.feature-card {
    background-color: #232A36;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 26px 24px;
    height: 100%;
}

.feature-card--accent {
    background-color: #0DCCC5;
    border-color: #0DCCC5;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background-color: #2C323F;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-card--accent .feature-icon {
    background-color: rgba(11, 18, 32, 0.15);
}

.feature-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.feature-card--accent .feature-icon img {
    filter: none;
}

.feature-card h5 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.feature-card--accent h5,
.feature-card--accent p {
    color: #0B1220;
}

.feature-card p {
    font-size: 16px;
    line-height: 26px;
    color: #ffffffdb;
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
}

.service-card:hover {
    background-color: #0DCCC5;
    border-color: #0DCCC5;
}

.service-card:hover * {
    color: black;
}

.method-step:hover {
    background: #0DCCC5;
}

.method-step:hover * {
    color: black;
}

.feature-card:hover {
    background-color: #0DCCC5;
    border-color: #0DCCC5;
}

.feature-card:hover * {
    color: black;
}

.services-hero {
    padding: 120px 0 120px;
}

.services-hero-title {
    font-size: 70px;
}

.services-hero-text {
    max-width: 800px;
    margin: 0 auto;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Technology Stack ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
section.tech-stack {
    padding: 100px 0 120px;
}

.tech-pill {
    background-color: #232936;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 16px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    color: #ffffffdb;
    text-align: left;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    padding-left: 25px;
    font-weight: 500;
}

.tech-pill:hover,
.tech-pill--active {
    background-color: #0DCCC5;
    border-color: #0DCCC5;
    color: black;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Engagement Cards (extends .feature-card) ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.engagement-card p {
    margin-bottom: 18px;
    width: 100%;
}

.engagement-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.engagement-list li {
    position: relative;
    font-size: 15px;
    font-family: "Space Grotesk", sans-serif;
    color: #ffffffdb;
    padding-left: 0;
}

.feature-card--accent .engagement-list li,
.feature-card--accent .engagement-list li::before {
    color: #0B1220;
    border-color: #0B1220;
}

.engagement-card:hover .engagement-list li,
.engagement-card:hover .engagement-list li::before {
    color: #0B1220 !important;
    border-color: #0B1220 !important;
}

.service-card:hover {
    background-color: #0DCCC5;
    border-color: #0DCCC5;
}

.service-card:hover * {
    color: black;
}

.service-card:hover .status-dot .dot {
    background-color: black;
}

.engagement-list li img {
    margin-right: 6px;
}

.feature-card:hover img {
    filter: invert(4) brightness(0);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Process Detail Rows Ã¢â€â‚¬Ã¢â€â‚¬ */
section.process-detail {
    padding: 40px 0 100px;
}

.process-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background-color: #232936;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    transition: border-color 0.25s ease;
}

.process-row--accent {
    background-color: #0DCCC5;
    border-color: #0DCCC5;
}

.process-row-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-row--accent .process-row-icon {
    background-color: rgba(11, 18, 32, 0.12);
    border-color: rgba(11, 18, 32, 0.25);
}

.process-row-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.process-row--accent .process-row-icon img {
    filter: none;
}

.process-row-content h4 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.process-row-content p {
    font-size: 17px;
    line-height: 28px;
    color: #ffffffdb;
    font-family: "Space Grotesk", sans-serif;
    margin-bottom: 10px;
}

.process-row--accent .process-row-content h4,
.process-row--accent .process-row-content p {
    color: #0B1220;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-pill {
    display: inline-block;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    color: #ffffffdb;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 10px 20px;
    letter-spacing: 0.2px;
}

.process-row--accent .tag-pill {
    background-color: rgba(11, 18, 32, 0.12);
    border-color: rgba(11, 18, 32, 0.2);
    color: #0B1220;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Engagement Timeline Ã¢â€â‚¬Ã¢â€â‚¬ */
section.engagement-timeline {
    padding: 40px 0 140px;
}

.timeline-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 130px;
}

.timeline-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #232936;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffffdb;
    margin-bottom: 14px;
}

.timeline-circle.active, .timeline-circle:hover {
    background-color: #0DCCC5;
    border-color: #0DCCC5;
    color: #0B1220;
}

.timeline-step p {
    font-size: 15px;
    color: #ffffffdb;
    margin: 0;
}

.timeline-connector {
    flex: 1;
    max-width: 60px;
    height: 1px;
    border-top: 2px dashed rgba(255, 255, 255, 0.15);
    margin-top: 28px;
}

@media (max-width: 991px) {
    .process-row {
        flex-direction: column;
    }
    .timeline-connector {
        display: none;
    }
}

.process-row-content {
    display: flex;
    gap: 30px;
}

.process-row-icon > div:first-child {
    flex: 0 0 217px;
}

.process-row-content div:first-child {
    flex: 0 0 200px;
}

.process-row:hover {
    background-color: #0DCCC5;
    border-color: #0DCCC5;
}

.process-row:hover * {
    color: black;
}

.process-row:hover .tag-pill {
    border-color: black;
    color: black;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Featured Project Ã¢â€â‚¬Ã¢â€â‚¬ */
section.featured-project {
    padding: 100px 0 100px;
}

.featured-panel {
    background-color: #232936;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 32px;
}

.featured-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.read-article {
    font-size: 15px;
    font-family: "Space Grotesk", sans-serif;
    color: #0DCCC5;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s ease;
}

.read-article:hover {
    opacity: 0.75;
}

.read-article img {
    width: 16px;
}

.featured-label {
    display: block;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff99;
    margin-bottom: 14px;
}

.featured-panel .row p {
    font-size: 16px;
    line-height: 26px;
    color: #ffffffdb;
    font-family: "Space Grotesk", sans-serif;
    margin: 0;
}

.result-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.result-list li {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-family: "Space Grotesk", sans-serif;
    color: #ffffffdb;
    padding-left: 18px;
}

.result-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #0DCCC5;
    border-radius: 50%;
}

/* Tag pills reused from Process page Ã¢â‚¬â€ active/teal variant */
.tag-pill--active {
    background-color: #0DCCC5;
    border-color: #0DCCC5;
    color: #0B1220;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Case Card accent (reuses .case-card from homepage) Ã¢â€â‚¬Ã¢â€â‚¬ */
.case-card--accent, .case-card:hover {
    background-color: #0DCCC5;
    border-color: #0DCCC5;
}

.case-card--accent h4,
.case-card--accent p,
.case-card--accent .case-tag {
    color: #0B1220;
}

.case-card--accent .case-tag {
    background-color: rgba(11, 18, 32, 0.1);
    border-color: rgba(11, 18, 32, 0.2);
}

.case-card--accent .case-arrow {
    color: rgba(11, 18, 32, 0.5);
}

.case-card--accent:hover .case-arrow {
    color: #0B1220;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Impact At Scale Ã¢â€â‚¬Ã¢â€â‚¬ */
section.impact-scale {
    padding: 60px 0 120px;
}

.stat-card {
    background-color: #232936;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
}

.stat-card h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-card p {
    font-size: 16px;
    color: #ffffff99;
    font-family: "Space Grotesk", sans-serif;
    margin: 0;
}

.case-card:hover * {
    color: black;
}

.case-card:hover * {
    border-color: black;
}

.case-studies-banner{
    position: relative;
    overflow: hidden;
}

.case-studies-banner:before{
    content: "";
    position: absolute;
    background-image: url(../img/case-studies-banner-bg.png);
    width: 60%;
    height: 100%;
    bottom: -30%;
    background-size: 100% 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Featured Article panel (extends .featured-panel) Ã¢â€â‚¬Ã¢â€â‚¬ */
.featured-panel--article {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-panel--article > .tag-list {
    align-items: center;
    border-bottom: none;
    padding-bottom: 0;
}

.read-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #ffffffe8;
    font-family: "Inter", sans-serif;
}

.read-time img {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.featured-article-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.25;
    margin: 0;
}

.featured-panel--article p {
    font-size: 16px;
    line-height: 26px;
    color: #ffffffdb;
    font-family: "Space Grotesk", sans-serif;
    margin: 0;
}

.featured-panel-top--bottom {
    border-bottom: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 0;
    padding-top: 24px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Insight Filter Tabs (Bootstrap nav-pills) Ã¢â€â‚¬Ã¢â€â‚¬ */
.insight-filter {
    flex-wrap: wrap;
    gap: 10px;
    border: none;
}

.insight-filter .nav-link {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    color: #ffffffdb;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    padding: 10px 25px;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.insight-filter .nav-link:hover {
    border-color: rgba(13, 204, 197, 0.5);
    color: #0DCCC5;
}

.insight-filter .nav-link.active, .insight-filter .nav-link:hover {
    background-color: #0DCCC5;
    border-color: #0DCCC5;
    color: white;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Insight Grid (extends homepage .insight-card) Ã¢â€â‚¬Ã¢â€â‚¬ */
section.insight-grid {
    padding: 40px 0 120px;
}

.insight-card--accent {
    background-color: #0DCCC5;
    border-color: #0DCCC5;
}

.insight-card--accent .insight-category,
.insight-card--accent h5,
.insight-card--accent .insight-excerpt,
.insight-card--accent .insight-link {
    color: #0B1220;
}

.insight-card--accent .insight-read {
    color: rgba(11, 18, 32, 0.6);
}

.insight-card--accent .insight-read img {
    filter: brightness(0);
    opacity: 0.6;
}

.insight-card h5 {
    font-size: 20px;
    line-height: 28px;
}

.insight-excerpt {
    font-size: 16px;
    line-height: 25px;
    color: #ffffffbd;
    font-family: "Space Grotesk", sans-serif;
    margin: 0;
    flex-grow: 1;
}

.insight-read img {
    width: 13px;
    height: 13px;
    opacity: 0.5;
    margin-right: 2px;
}

.insight-read::before {
    content: none; /* replaced by clock icon */
}

.insight-empty {
    color: #ffffff99;
    font-family: "Space Grotesk", sans-serif;
    padding: 40px 0;
}

.insight-card:hover {
    background-color: #0DCCC5;
    border-color: #0DCCC5;
}

.insight-card:hover * {
    color: black;
}

.insight-card:hover .insight-link img {
    filter: invert(4) brightness(0);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ FAQ Page Groups Ã¢â€â‚¬Ã¢â€â‚¬ */
section.faq-page {
    padding-top: 100px;
}

.faq-group {
    margin-bottom: 80px;
}

.faq-group:last-child {
    margin-bottom: 0;
}

.faq-group-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    color: #0DCCC5;
    font-weight: 400;
    margin-bottom: 18px;
}

/* Bootstrap accordion resets so it doesn't fight your custom styling */
.faq-page .accordion-header {
    margin: 0;
}

.faq-page .faq-question::after {
    display: none; /* remove Bootstrap's default chevron, keep your icon-angle-down.png */
}

/* Open/teal state Ã¢â‚¬â€ driven by JS syncing with Bootstrap's collapse events */
.faq-item.open {
    background-color: #0DCCC5;
    border-color: #0DCCC5;
}

.faq-item.open .faq-question {
    color: #0B1220;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-item.open .faq-chevron img {
    filter: brightness(0);
}

.faq-item.open .faq-answer p {
    color: #0B1220;
    border-top-color: rgba(11, 18, 32, 0.15);
}

/* Bootstrap's .collapse/.show handle the height animation now,
   so the old max-height transition on .faq-answer is no longer needed
   for this page Ã¢â‚¬â€ safe to leave for the homepage FAQ, harmless here */
.faq-page .faq-answer.show {
    padding: 0 26px 22px;
}

.faq-page .faq-answer:not(.show) {
    padding: 0 26px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Blog Meta (shared: cards, featured, article header) Ã¢â€â‚¬Ã¢â€â‚¬ */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-family: "Space Grotesk", sans-serif;
    color: #ffffffe8;
}

.blog-meta--center {
    justify-content: center;
    margin-top: 22px;
}

.blog-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-meta-dot {
    opacity: 0.4;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Featured Blog (split image/content, extends .featured-panel language) Ã¢â€â‚¬Ã¢â€â‚¬ */
.featured-blog {
    display: flex;
    background-color: #232936;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.25s ease;
}

.featured-blog:hover {
    border-color: rgba(13, 204, 197, 0.35);
}

.featured-blog-img {
    flex: 0 0 44%;
    min-height: 320px;
}

.featured-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-blog-content {
    flex: 1;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
}

.featured-blog-content p {
    font-size: 16px;
    line-height: 26px;
    color: #ffffffdb;
    font-family: "Space Grotesk", sans-serif;
    margin: 0;
}

@media (max-width: 767px) {
    .featured-blog {
        flex-direction: column;
    }
    .featured-blog-img {
        min-height: 220px;
    }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Blog Card (grid thumbnail card) Ã¢â€â‚¬Ã¢â€â‚¬ */
.blog-card {
    display: block;
    background-color: #232936;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    height: 100%;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.blog-card:hover {
    border-color: rgba(13, 204, 197, 0.35);
    transform: translateY(-3px);
}

.blog-card-img {
    position: relative;
    height: 250px;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: rgba(11, 18, 32, 0.75);
    backdrop-filter: blur(4px);
    color: #0DCCC5;
    font-size: 12px;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 5px 12px;
    border-radius: 100px;
}

.blog-card-body {
    padding: 24px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-card-body h5 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.35;
    margin: 0;
}

.blog-card-body p {
    font-size: 16px;
    line-height: 25px;
    color: #ffffffc4;
    font-family: "Space Grotesk", sans-serif;
    margin: 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Pagination Ã¢â€â‚¬Ã¢â€â‚¬ */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border-radius: 10px;
    background-color: #232936;
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: #ffffffdb;
    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.page-btn:hover {
    border-color: rgba(13, 204, 197, 0.4);
    color: #0DCCC5;
}

.page-btn.active {
    background-color: #0DCCC5;
    border-color: #0DCCC5;
    color: #0B1220;
}

.page-btn.disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Article Hero / Breadcrumb Ã¢â€â‚¬Ã¢â€â‚¬ */
section.article-hero {
    padding: 60px 0 0;
}

.breadcrumb-nav {
    font-size: 14px;
    font-family: "Inter", sans-serif;
    color: #ffffffd9;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.breadcrumb-nav a {
    color: #ffffffd9;
    transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
    color: #0DCCC5;
}

.breadcrumb-current {
    color: #ffffffd9;
    text-decoration: underline;
}

.article-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1.2;
    margin: 22px 0 0;
}

.article-featured-img {
    border-radius: 20px;
    overflow: hidden;
    max-height: 480px;
}

.article-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Article Body Typography Ã¢â€â‚¬Ã¢â€â‚¬ */
section.article-body-section {
    padding: 60px 0 100px;
}

.article-body p {
    font-size: 18px;
    line-height: 30px;
    color: #ffffffdb;
    font-family: "Space Grotesk", sans-serif;
    margin-bottom: 22px;
}

.article-body h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
    margin: 40px 0 18px;
}

.article-body ul {
    margin: 0 0 22px;
    padding-left: 22px;
}

.article-body ul li {
    font-size: 17px;
    line-height: 28px;
    color: #ffffffdb;
    font-family: "Space Grotesk", sans-serif;
    margin-bottom: 8px;
}

.article-body blockquote {
    border-left: 3px solid #0DCCC5;
    background-color: #232936;
    padding: 24px 28px;
    border-radius: 0 12px 12px 0;
    margin: 30px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 19px;
    font-style: italic;
    line-height: 30px;
    color: #ffffff;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Article Tags / Share Ã¢â€â‚¬Ã¢â€â‚¬ */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 30px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.article-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.article-share > span {
    font-size: 15px;
    font-family: "Space Grotesk", sans-serif;
    color: #ffffffe8;
}

.share-links {
    display: flex;
    gap: 12px;
}

.share-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #232936;
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.share-links a:hover {
    background-color: #0DCCC5;
    border-color: #0DCCC5;
}

.share-links img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Author Card Ã¢â€â‚¬Ã¢â€â‚¬ */
.author-card {
    display: flex;
    gap: 20px;
    background-color: #232936;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 28px;
    margin-top: 30px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-card h6 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.author-card p {
    font-size: 15px;
    line-height: 24px;
    color: #ffffff99;
    font-family: "Space Grotesk", sans-serif;
    margin: 0;
}

.related-posts {
    padding-top: 0;
}

div#serviceModal {}

div#serviceModal .modal-content {
    background-color: #232936;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
}

div#serviceModal .modal-content .modal-header {
    padding-left: 28px;
}

div#serviceModal .modal-content .modal-body input, div#serviceModal .modal-content .modal-body select {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-family: "Inter", sans-serif;
    color: white;
    padding-left: 0;
}

div#serviceModal .modal-content .modal-body input, div#serviceModal textarea.form-control{
    background-color: transparent;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-family: "Inter", sans-serif;
    color: white;
    padding-left: 0;
}

div#serviceModal .modal-content .modal-header h5 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 0;
}

div#serviceModal .modal-content .modal-body select option {
    color: black;
}

.modal-header .btn-close {
    opacity: 1;
    background-color: white;
    width: 15px;
    height: 15px;
    font-size: 12px;
    position: relative;
    top: -9px;
}

div#serviceModal .modal-content .modal-body {
    padding: 30px;
}

a.navbar-brand img {
    width: 250px;
}