/* ==========================================================================
   Clients Section Custom Styling
   ========================================================================== */

.clients-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

/* Header Subtitle with Double Line Accent */
.clients-subtitle-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.clients-subtitle-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 28px;
}

.clients-subtitle-lines span {
    display: block;
    height: 2px;
    background-color: #d96c27;
    width: 100%;
    border-radius: 1px;
}

.clients-subtitle-text {
    color: #d96c27;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1;
}

/* Main Section Title */
.clients-title {
    font-size: 50px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 55px;
    letter-spacing: -0.5px;
}

/* Left Content Column */
.clients-content-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.35;
    color: #1a1a1a;
    margin-bottom: 22px;
}

.clients-content-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 0;
}

/* Right Grid Column */
.clients-grid-container {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.client-logo-box {
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0px 15px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
}

/* Grid Border Handling */
.client-logo-box:nth-child(3n) {
    border-right: none;
}

.client-logo-box:nth-child(4),
.client-logo-box:nth-child(5),
.client-logo-box:nth-child(6) {
    border-bottom: none;
}

.client-logo-box:hover {
    background-color: #fafafa;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.02);
}

.client-logo-box img {
   max-width: 100%;
  max-height: 53%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.client-logo-box:hover img {
    transform: scale(1.05);
}

.tech-name {
    font-size: 15px;
    font-weight: 600;
    color: #222222;
    text-align: center;
    line-height: 1.2;
}


/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .clients-section {
        padding: 60px 0;
    }
    .clients-title {
        font-size: 34px;
        margin-bottom: 35px;
    }
    .clients-content-title {
        font-size: 24px;
    }
    .clients-grid-container {
        margin-top: 35px;
    }
}

@media (max-width: 575.98px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .client-logo-box {
        border-right: 1px solid #e2e8f0 !important;
        border-bottom: 1px solid #e2e8f0 !important;
        min-height: 130px;
    }
    .client-logo-box:nth-child(2n) {
        border-right: none !important;
    }
    .client-logo-box:nth-child(5),
    .client-logo-box:nth-child(6) {
        border-bottom: none !important;
    }
}


/* ==========================================================================
   Hero Slide — .slide-hero-new
   ========================================================================== */

.shn-wrapper { 
    padding: 60px 0 40px;
    padding-left: 0px !important;
 }

.shn-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.shn-label-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #5de0e6;
    border-radius: 2px;
    flex-shrink: 0;
}
.shn-label-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #095ed3;
}

.shn-heading {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.18;
    color: #111111 !important; 
    margin: 0 0 22px;
    letter-spacing: -0.5px;
}
.shn-highlight { color: #095ed3; }

.shn-desc {
	

    line-height: 1.75;
    color: #555555;
    max-width: 480px;
    margin: 0 0 32px;
    text-transform: none !important;
    font-weight: 400;

	letter-spacing: 0.034em !important;
  margin-top: 1rem;
  font-size: 15px !important;
}

.shn-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #095ed3 0%, #095ed3 100%);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: transform .25s, box-shadow .25s;
    /* box-shadow: 0 6px 24px rgba(8,120,193,.4); */
    margin-bottom: 36px;
}
.shn-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px rgba(93,224,230,.45);
    color: #ffffff !important;
}

.shn-trusted-row {
    display: flex !important;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.shn-avatars { display: flex; }

.shn-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-left: -10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.22);
    transition: transform .2s;
}

.shn-avatar:first-child { margin-left: 0; }
.shn-avatar:hover { transform: translateY(-4px) scale(1.1); z-index: 10; }

.shn-trusted-text { display: flex; flex-direction: column; line-height: 1.3; }
.shn-trusted-label { font-size: 12px; color: #666666; text-transform: none; }
.shn-trusted-count { font-size: 15px; font-weight: 700; color: #111111; }

.shn-trusted-tick {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0878c1, #5de0e6);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(93,224,230,.4);
}

.shn-right-col {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

@media (max-width: 991px) {
    .shn-wrapper { padding: 40px 0 20px; text-align: center; }
    .shn-label { justify-content: center; }
    .shn-desc { margin-left: auto; margin-right: auto; }
    .shn-trusted-row { justify-content: center; }
    .shn-right-col { min-height: 160px; }
}

