.services-hero-section {
    background: #04242d;
    position: relative;
    min-height: 60vh;
}

.services-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(13, 90, 111, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(13, 90, 111, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

.services-hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 70% 30%, rgba(13, 90, 111, 0.12), transparent 40%),
        radial-gradient(circle at 85% 50%, rgba(13, 90, 111, 0.08), transparent 35%),
        radial-gradient(circle at 15% 80%, rgba(13, 90, 111, 0.1), transparent 45%);
    pointer-events: none;
    z-index: 2;
    animation: gradientBreathe 6s ease-in-out infinite;
}

@keyframes gradientBreathe {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.services-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: none;
    pointer-events: none;
}

.floating-icons-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 4rem;
    color: rgba(13, 90, 111, 0.08);
    animation: float 6s ease-in-out infinite, drift 8s linear infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-duration: 6s, 8s;
}

.floating-icon:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-duration: 7s, 10s;
}

.floating-icon:nth-child(3) {
    top: 50%;
    left: 5%;
    animation-duration: 8s, 12s;
}

.floating-icon:nth-child(4) {
    bottom: 15%;
    right: 10%;
    animation-duration: 6.5s, 9s;
}

.floating-icon:nth-child(5) {
    top: 60%;
    right: 8%;
    animation-duration: 7.5s, 11s;
}

.floating-icon:nth-child(6) {
    bottom: 25%;
    left: 12%;
    animation-duration: 6s, 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }
}

@keyframes drift {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(100px);
    }
}

.connection-line {
    animation: drawLine 3s ease-in-out infinite;
}

.connection-line:nth-child(2) {
    animation-delay: 0.5s;
}

.connection-line:nth-child(3) {
    animation-delay: 1s;
}

@keyframes drawLine {

    0%,
    100% {
        stroke-dasharray: 1000;
        stroke-dashoffset: 0;
        opacity: 0.1;
    }

    50% {
        opacity: 0.4;
    }
}

.services-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.services-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #f2faf8;
    margin-bottom: 1rem;
    text-shadow: none;
}

.services-hero-content p {
    font-size: 1.2rem;
    color: #a0a8b8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.nimbuz-product-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(13, 174, 207, 0.12);
    background: rgba(20, 40, 50, 0.6);
    backdrop-filter: blur(8px);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    animation: badgeGlow 3s ease-in-out infinite, fadeUp 0.6s ease-out 0.8s both;
    box-shadow: 0 0 20px rgba(13, 174, 207, 0.12), inset 0 0 20px rgba(13, 174, 207, 0.08);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nimbuz-product-badge:hover {
    border-color: rgba(13, 174, 207, 0.25);
    box-shadow: 0 0 25px rgba(13, 174, 207, 0.18), inset 0 0 20px rgba(13, 174, 207, 0.1);
}

.badge-arrow {
    font-size: 1rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
    color: #d4e6e3;
}

.nimbuz-product-badge:hover .badge-arrow {
    transform: translateX(4px);
}

.badge-icon {
    font-size: 1.2rem;
    animation: iconSpin 3s ease-in-out infinite;
}

.badge-text {
    font-size: 0.95rem;
    color: #d4e6e3;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.badge-text strong {
    color: #d4e6e3;
    font-weight: 700;
}

.badge-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(13, 90, 111, 0.2));
    transition: all 0.3s ease;
}

.nimbuz-product-badge:hover .badge-logo {
    filter: drop-shadow(0 4px 8px rgba(13, 174, 207, 0.12));
    transform: scale(1.1);
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(13, 174, 207, 0.12), inset 0 0 10px rgba(13, 174, 207, 0.08);
        transform: translateY(0px);
    }

    50% {
        box-shadow: 0 0 25px rgba(13, 174, 207, 0.12), inset 0 0 15px rgba(13, 174, 207, 0.08);
        transform: translateY(-3px);
    }
}

@keyframes iconSpin {

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

    50% {
        transform: rotate(15deg) scale(1.1);
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2.5rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .nimbuz-product-badge {
        padding: 10px 16px;
        font-size: 0.85rem;
        margin-top: 16px;
        gap: 8px;
    }

    .badge-icon {
        font-size: 1rem;
    }

    .badge-logo {
        height: 24px;
    }

    .badge-text {
        font-size: 0.85rem;
    }

    .floating-icon {
        font-size: 2.5rem;
    }

    .connection-line {
        display: none;
    }
}

/* Hero Content Layout */
.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 60px;
    position: relative;
    z-index: 10;
}

.hero-left-content {
    flex: 1;
    min-width: 0;
}

.hero-right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    animation: slideInRight 1s ease-out;
}

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

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

/* Process Flow Diagram */
.process-flow-diagram {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.process-box {
    background: rgba(13, 90, 111, 0.3);
    border: 2px solid #0d7a9f;
    border-radius: 8px;
    padding: 16px 20px;
    min-width: 140px;
    text-align: center;
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.process-label {
    font-size: 0.85rem;
    color: #e0e8ff;
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

.process-arrow {
    color: #0d7a9f;
    font-size: 1.5rem;
    font-weight: bold;
    animation: slideUp 0.8s ease-out 0.1s forwards;
    opacity: 0;
}

/* Service Category Tabs - Pyramid Layout */
.service-tabs-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.pyramid-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    width: 100%;
}


.service-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 14px;
    border: 1.5px solid rgba(13, 90, 111, 0.5);
    border-radius: 8px;
    background: rgba(13, 90, 111, 0.15);
    color: #a0a8b8;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 110px;
    text-align: center;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    animation: buildingBlockSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 20;
}

.pyramid-row-1 .service-tab:nth-child(1) {
    animation-delay: 0s;
}

.pyramid-row-1 .service-tab:nth-child(2) {
    animation-delay: 0.15s;
}

.pyramid-row-2 .service-tab:nth-child(1) {
    animation-delay: 0.3s;
}

.pyramid-row-2 .service-tab:nth-child(2) {
    animation-delay: 0.45s;
}

.pyramid-row-2 .service-tab:nth-child(3) {
    animation-delay: 0.6s;
}

.service-tab::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(13, 174, 207, 0.2), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.service-tab:hover::before {
    left: 100%;
}

.service-tab i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.service-tab:hover {
    border-color: #0d7a9f;
    background: rgba(13, 90, 111, 0.3);
    color: #d4e6e3;
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 20px rgba(13, 90, 111, 0.3);
}

.service-tab:hover i {
    transform: scale(1.2) rotateZ(10deg);
    color: #d4e6e3;
}

.service-tab.active {
    border-color: #d4e6e3 !important;
    background: rgba(13, 90, 111, 0.5) !important;
    color: #d4e6e3 !important;
    box-shadow: 0 0 20px rgba(13, 174, 207, 0.12), inset 0 0 10px rgba(13, 174, 207, 0.08) !important;
    animation: pulse 2s ease-in-out infinite;
    transform: scale(1.05) !important;
}

.service-tab.active i {
    color: #d4e6e3;
    transform: scale(1.2) rotateZ(-5deg);
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes buildingBlockSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pyramidSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(13, 90, 111, 0.3), inset 0 0 10px rgba(13, 174, 207, 0.08);
    }

    50% {
        box-shadow: 0 0 30px rgba(13, 174, 207, 0.12), inset 0 0 15px rgba(13, 174, 207, 0.08);
    }
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1.15) rotateZ(-5deg) translateY(0);
    }

    50% {
        transform: scale(1.15) rotateZ(-5deg) translateY(-4px);
    }
}

@media (max-width: 1024px) {
    .hero-content-wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .hero-right-content {
        justify-content: center;
    }

    .process-flow-diagram {
        justify-content: center;
    }

    .service-tabs-container {
        justify-content: center;
    }

    .services-hero-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        padding: 0 15px;
        gap: 30px;
    }

    .hero-right-content {
        gap: 30px;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 0.9rem;
    }

    .process-flow-diagram {
        gap: 8px;
    }

    .process-box {
        min-width: 110px;
        padding: 12px 14px;
    }

    .process-label {
        font-size: 0.7rem;
    }

    .process-arrow {
        font-size: 1rem;
    }

    .service-tabs-container {
        gap: 12px;
    }

    .pyramid-row {
        gap: 12px;
    }

    .service-tab {
        min-width: 90px;
        padding: 12px 10px;
        font-size: 0.65rem;
    }

    .service-tab i {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .service-tab:hover {
        transform: translateY(-4px) scale(1.02);
    }
}

.who-we-are-title {
    text-align: left;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.who-we-are-title h2 {
    color: #04242d;
    font-weight: 700;
    font-size: 2.2rem;
    margin: 0;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.who-we-are-title h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #0d5a6f, #145a72, #0d5a6f);
    background-size: 200% 100%;
    border-radius: 2px;
    animation: underlineGradientShimmer 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(13, 90, 111, 0.3);
}

.services-categories-section {
    background:
        radial-gradient(circle at 12% 22%, rgba(13, 90, 111, 0.08), transparent 36%),
        radial-gradient(circle at 86% 78%, rgba(13, 122, 159, 0.07), transparent 34%),
        url("../assets/img/right-triangle-bg.png") right top/contain no-repeat,
        linear-gradient(180deg, #f8fbf9 0%, #f2f8f5 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.services-categories-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(13, 90, 111, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(13, 90, 111, 0.06) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.55;
    pointer-events: none;
}

.services-categories-section::after {
    content: "";
    position: absolute;
    top: -18%;
    right: -10%;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(13, 90, 111, 0.1), transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}

.services-categories-section .section-title {
    color: #04242d;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.services-categories-section .container {
    position: relative;
    z-index: 1;
}

.services-categories-section .section-title p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 0.8rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-category-card {
    background:
        linear-gradient(90deg, rgba(13, 90, 111, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(13, 90, 111, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, #ffffff 0%, #f8fcfa 100%);
    background-size: 20px 20px, 20px 20px, auto;
    border: 1px solid #e0e4e8;
    border-radius: 12px;
    padding: 35px 28px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0d5a6f, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-category-card:hover {
    background:
        linear-gradient(90deg, rgba(13, 90, 111, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(13, 90, 111, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, #ffffff 0%, #f4fbf8 100%);
    background-size: 20px 20px, 20px 20px, auto;
    border-color: #0d5a6f;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(13, 90, 111, 0.08);
}

.service-category-card:hover::before {
    opacity: 1;
}

.service-icon {
    display: none;
}

.service-category-card:hover .service-icon {
    display: none;
}

.service-category-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #04242d;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.service-card-title-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #eaf4ef;
    color: #0d5a6f;
    font-size: 1rem;
    flex-shrink: 0;
}

.service-category-card>p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.service-list li i {
    color: #0d5a6f;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.service-category-card:hover .service-list li {
    color: #04242d;
    transform: translateX(3px);
}

.service-category-card.highlighted {
    background:
        linear-gradient(90deg, rgba(13, 90, 111, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(13, 90, 111, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, #dce8e6 0%, #e8f5f3 100%) !important;
    background-size: 20px 20px, 20px 20px, auto;
    border: 2px solid #6a8d87 !important;
    border-color: #6a8d87 !important;
    box-shadow: 0 0 30px rgba(26, 90, 106, 0.4), inset 0 0 20px rgba(26, 90, 106, 0.15) !important;
    transform: translateY(-8px) scale(1.02) !important;
    animation: cardHighlight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.service-category-card.highlighted h3,
.service-category-card.highlighted>p {
    color: #04242d !important;
    font-weight: 600;
}

.service-category-card.highlighted .service-list li {
    color: #04242d !important;
    font-weight: 500;
}

@keyframes cardHighlight {
    0% {
        transform: translateY(-8px) scale(0.95);
        opacity: 0.8;
        box-shadow: 0 0 15px rgba(26, 90, 106, 0.2), inset 0 0 10px rgba(26, 90, 106, 0.08);
    }

    50% {
        box-shadow: 0 0 40px rgba(26, 90, 106, 0.5), inset 0 0 30px rgba(26, 90, 106, 0.2);
    }

    100% {
        transform: translateY(-8px) scale(1.02);
        opacity: 1;
        box-shadow: 0 0 30px rgba(26, 90, 106, 0.4), inset 0 0 20px rgba(26, 90, 106, 0.15);
    }
}

@media (max-width: 1024px) {
    .services-categories-section {
        padding: 50px 0;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .service-category-card {
        padding: 28px 24px;
    }
}

@media (max-width: 768px) {
    .services-categories-section {
        padding: 45px 0;
    }

    .services-categories-section .section-title p {
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-category-card {
        padding: 25px 20px;
    }

    .service-category-card h3 {
        font-size: 1.1rem;
    }

    .service-category-card>p {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }

    .service-list li {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .services-categories-section {
        padding: 35px 0;
    }

    .services-categories-section .section-title {
        margin-bottom: 40px;
    }

    .services-categories-section .section-title p {
        font-size: 0.86rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-category-card {
        padding: 18px 14px;
    }

    .service-category-card h3 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .service-category-card>p {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .service-list li {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }
}

.tech-ecosystem-section {
    background: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
}


.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: white;
    border-radius: 15px;
    padding: 40px 0;
    z-index: 1;
}

.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
    gap: 60px;
    padding: 0 30px;
}

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

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

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

.tech-icon-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    cursor: pointer;
}

.tech-icon-item:hover {
    background: transparent;
    transform: translateY(0);
    box-shadow: none;
}

.tech-icon-item i {
    font-size: 1.8rem;
    color: #999;
    transition: all 0.3s ease;
}

.tech-icon-item:hover i {
    color: #0d7a9f;
    transform: scale(1.1);
}

.tech-icon-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #999;
    text-align: center;
    letter-spacing: -0.2px;
}

.tech-logo-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #aaa;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    letter-spacing: -0.3px;
}

.tech-logo-item i {
    font-size: 1.4rem;
    color: #aaa;
    transition: all 0.3s ease;
}

.tech-logo-item:hover {
    color: #0d7a9f;
}

.tech-logo-item:hover i {
    color: #0d7a9f;
    transform: scale(1.1);
}

.nimbuz-logo-img {
    height: 1.4rem;
    width: auto;
    object-fit: contain;
    color: #aaa;
    transition: all 0.3s ease;
}

.tech-logo-item:hover .nimbuz-logo-img {
    filter: brightness(0) saturate(100%) invert(52%) sepia(72%) saturate(500%) hue-rotate(170deg) brightness(100%);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .tech-ecosystem-section {
        padding: 40px 0;
    }

    .ecosystem-header h2 {
        font-size: 1.5rem;
    }

    .ecosystem-header p {
        font-size: 0.9rem;
    }

    .marquee-wrapper {
        padding: 30px 0;
    }

    .marquee-content {
        gap: 40px;
        padding: 0 20px;
    }

    .tech-icon-item {
        min-width: 100px;
        padding: 15px;
        gap: 8px;
    }

    .tech-icon-item i {
        font-size: 2rem;
    }

    .tech-icon-item span {
        font-size: 0.75rem;
    }

    .tech-logo-item {
        font-size: 0.95rem;
    }

    .tech-logo-item i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .tech-ecosystem-section {
        padding: 30px 0;
    }

    .ecosystem-header h2 {
        font-size: 1.3rem;
    }

    .ecosystem-header p {
        font-size: 0.85rem;
    }

    .marquee-wrapper {
        padding: 20px 0;
        border-radius: 10px;
    }

    .marquee-content {
        gap: 25px;
        padding: 0 15px;
    }

    .tech-logo-item {
        font-size: 0.85rem;
    }

    .tech-logo-item i {
        font-size: 1rem;
    }
}

.service-models-section {
    position: relative;
    overflow: hidden;
    /* border-top: 1px solid rgba(13, 90, 111, 0.18); */
    border-bottom: 1px solid rgba(13, 90, 111, 0.18);
    background:
        url("../assets/img/triangle-bg.png") left center/contain no-repeat,
        linear-gradient(180deg, #f8fbf9 0%, #f2f8f5 100%);
}

.engagement-models-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.engagement-models-grid>.engagement-model-card {
    grid-column: span 2;
}

.engagement-models-grid>.engagement-model-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.engagement-models-grid>.engagement-model-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.engagement-model-card {
    background: #fff;
    border: 1px solid rgba(13, 90, 111, 0.15);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(8, 30, 40, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    animation: modelCardFloatIn 0.45s ease both;
}

.engagement-model-card:hover {
    transform: translateY(-4px);
    border-color: rgba(13, 90, 111, 0.32);
    box-shadow: 0 14px 26px rgba(8, 30, 40, 0.1);
}

.model-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.model-head i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #eaf4ef;
    color: #0d5a6f;
    font-size: 1rem;
}

.engagement-model-card h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #123a2f;
    font-weight: 700;
}

.engagement-model-card p {
    margin: 0;
    color: #4b616f;
    line-height: 1.65;
    font-size: 0.95rem;
}

@keyframes modelCardFloatIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@media (max-width: 991px) {
    .engagement-models-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .engagement-models-grid>.engagement-model-card {
        grid-column: auto;
    }

    .engagement-models-grid>.engagement-model-card:nth-child(4),
    .engagement-models-grid>.engagement-model-card:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 600px) {
    .engagement-models-grid {
        grid-template-columns: 1fr;
    }
}