   /* ================= Invent Style How We Work ================= */
 .section-title {
	padding-bottom: 0;
}
.invent-step {
    position: relative;
    background: #f8f9ff;
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
    transition: all 0.4s ease;
}

.invent-step::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #006769, #0a7183);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.invent-step:hover::before {
    opacity: 1;
}

.step-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 64px;
    font-weight: 800;
    color: rgba(70, 229, 207, 0.15);
    transition: all 0.4s ease;
    z-index: 1;
}

.invent-step:hover .step-badge {
    color: rgba(255,255,255,0.35);
    transform: scale(1.15);
}

.step-icon {
    width: 56px;
    height: 56px;
    background: #006769;
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.invent-step:hover .step-icon {
    background: #fff;
    color: #006769;
    transform: rotate(-6deg) scale(1.1);
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.4s ease;
}

.step-content p {
    color: #6b7280;
    transition: color 0.4s ease;
}

.invent-step:hover h4,
.invent-step:hover p {
    color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.25);
   z-index: 1; 
    overflow: hidden;
}

.hero .carousel-container,
.hero .container,
.hero .hero-content {
  position: relative;
  z-index: 2;
}


 /* ================= IT STATS =================  */
.stat-box h2 {
    font-size: 40px;
    font-weight: 700;
    color: #006769;
}

.stat-box p {
    margin-top: 6px;
    color: #475569;
    font-size: 14px;
}


/* ================= /IT CTA ================= */
.it-cta {
    background: linear-gradient(135deg, #006769, #0a7183);
    color: #fff;
}

.it-cta p {
    opacity: 0.9;
}




/* ================= TECHNOLOGY LOGOS ================= */

.tech-logo {
    background: #f8f9ff;
    border-radius: 16px;
    padding: 22px 14px;
    height: 100%;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tech-logo img {
    max-width: 120px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 10px;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.tech-logo span {
    font-size: 14px;
    font-weight: 500;
    color: #006769;
}

.tech-logo:hover {
    background: linear-gradient(135deg, #006769, #0a7183);
}

.tech-logo:hover span {
    color: #ffffff;
}

.tech-logo:hover img {
    transform: scale(1.15);
    filter: brightness(0) invert(1); /* makes logo white if possible */
}

/* ================= 3D GLOBE SYSTEM ================= */

/* ===== Globe Container ===== */
#globe-container {
    width: 100%;
    height: 420px;
    max-width: 420px;
    margin: 0 auto;
}

/* Optional badge reuse */
.creative-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(0,103,105,0.12);
    color: #006769;
    font-size: 18px;
    font-weight: 600;
}

/* ================= GLOBE + SIDE CONTENT ================= */

.globe-js {
    background: #ffffff;
}

#globe-container {
    width: 100%;
    max-width: 420px;
    height: 420px;
    margin: 0 auto;
}

/* Side cards */
.service-side-card {
    background: #f8f9ff;
    border-radius: 18px;
    padding: 22px 20px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-side-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #006769, #0a7183);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-side-card h4,
.service-side-card p {
    position: relative;
    z-index: 1;
}

.service-side-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #006769;
}

.service-side-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* Hover effect */
.service-side-card:hover::before {
    opacity: 1;
}

.service-side-card:hover h4,
.service-side-card:hover p {
    color: #ffffff;
}

/* Mobile */
@media (max-width: 767px) {
    #globe-container {
        max-width: 320px;
        height: 320px;
    }
}


