/* ==============================
   SERVICE PAGE STYLES
   Network Maintenance Page
================================ */

/* ==============================
   SERVICE HERO SECTION
================================ */
.service-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 60, 255, 0.95), rgba(0, 191, 166, 0.95)),
                url('https://images.pexels.com/photos/1181244/pexels-photo-1181244.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 20, 45, 0.65);
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    /* max-width: 900px; */
    margin: 0 auto;
    padding: 0 20px;
}

.service-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.service-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.btn-service-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: var(--primary) !important;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.btn-service-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8f9ff;
    gap: 15px;
}

.btn-service-hero i {
    transition: transform 0.3s ease;
}

.btn-service-hero:hover i {
    transform: translateX(5px);
}

.service-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.service-hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

.service-hero-shapes .shape-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: 10%;
    animation-delay: 0s;
}

.service-hero-shapes .shape-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    right: 15%;
    animation-delay: 2s;
}

.service-hero-shapes .shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* ==============================
   SERVICE OVERVIEW SECTION
================================ */
.service-overview {
    padding: 50px 0 80px 0;
}

.service-overview-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); */
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .service-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(10, 60, 255, 0.15);
} */

.service-overview-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(10, 60, 255, 0.3);
}

.service-overview-icon i {
    font-size: 36px;
    color: #fff;
}

.service-overview-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-overview-content {
    text-align: left;
}

.service-overview-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-overview-content p:last-child {
    margin-bottom: 0;
}

.service-overview-content strong {
    color: var(--primary);
    font-weight: 600;
}

/* ==============================
   SECTION HEADER CENTER
================================ */
.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.section-header-center h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-header-center p {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
}

/* ==============================
   MAINTENANCE INTRO SECTION (NEW DYNAMIC DESIGN)
================================ */
.maintenance-intro {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 50%, #f0f7ff 100%);
}

.maintenance-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(10, 60, 255, 0.15);
}

/* Floating Badge */
.floating-badge-maintenance {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 16px;
    padding: 12px 18px;
    box-shadow: 0 8px 25px rgba(10, 60, 255, 0.25),
                0 0 0 2px rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float-badge 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.02);
    }
}

.badge-icon-pulse {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(10, 60, 255, 0.4);
    animation: pulse-icon-badge 2s ease-in-out infinite;
}

@keyframes pulse-icon-badge {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(10, 60, 255, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(10, 60, 255, 0.6), 0 0 0 8px rgba(10, 60, 255, 0.1);
    }
}

.badge-icon-pulse i {
    font-size: 20px;
    color: #fff;
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-label {
    font-size: 11px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-value {
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Decorative Shapes */
.image-decorative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 24px;
}

.decor-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(10, 60, 255, 0.15), rgba(0, 191, 166, 0.15));
    animation: decor-float 8s ease-in-out infinite;
}

.decor-shape-1 {
    width: 120px;
    height: 120px;
    top: -30px;
    left: -30px;
    animation-delay: 0s;
}

.decor-shape-2 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: -20px;
    animation-delay: 2s;
}

.decor-shape-3 {
    width: 100px;
    height: 100px;
    bottom: 100px;
    left: 10%;
    animation-delay: 4s;
}

@keyframes decor-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(15px, -15px) scale(1.1);
        opacity: 0.8;
    }
}

/* Top Stats Bar */
.image-top-stats {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.top-stat-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    animation: slide-in-left 0.6s ease-out;
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.top-stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.top-stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 60, 255, 0.25);
    background: #ffffff;
}

.top-stat-item i {
    font-size: 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.top-stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.top-stat-number {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.top-stat-label {
    font-size: 11px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.maintenance-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 24px;
}

.maintenance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.maintenance-image-wrapper:hover .maintenance-image img {
    transform: scale(1.08);
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 60, 255, 0.3) 0%, 
        rgba(0, 102, 255, 0.2) 50%,
        rgba(0, 191, 166, 0.3) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.maintenance-image-wrapper:hover .image-overlay-gradient {
    opacity: 0.7;
}

.image-stats-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, 
        rgba(10, 60, 255, 0.95) 0%, 
        rgba(0, 191, 166, 0.9) 100%);
    backdrop-filter: blur(10px);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 0 0 24px 24px;
}

.stat-badge-inline {
    background: rgba(255, 255, 255, 0.95);
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-badge-inline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(10, 60, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-badge-inline:hover::before {
    left: 100%;
}

.stat-badge-inline:hover {
    transform: translateX(5px) translateY(-2px);
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(10, 60, 255, 0.25);
    border-color: rgba(10, 60, 255, 0.2);
}

.stat-icon-wrapper {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(10, 60, 255, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stat-badge-inline:hover .stat-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 6px 18px rgba(10, 60, 255, 0.4);
}

.stat-icon-wrapper i {
    font-size: 20px;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.stat-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.stat-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.stat-subtitle {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    opacity: 0.9;
}

.maintenance-content-wrapper {
    padding-left: 20px;
}

.intro-text-card {
    background: linear-gradient(135deg, 
        rgba(10, 60, 255, 0.08) 0%, 
        rgba(0, 191, 166, 0.08) 50%,
        rgba(10, 60, 255, 0.05) 100%);
    padding: 35px;
    border-radius: 24px;
    border-left: 5px solid;
    border-image: linear-gradient(180deg, #0a3cff, #00bfa6) 1;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(10, 60, 255, 0.1);
}

.intro-text-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(10, 60, 255, 0.15), transparent);
    border-radius: 50%;
    animation: float-glow 6s ease-in-out infinite;
}

.intro-text-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 191, 166, 0.12), transparent);
    border-radius: 50%;
    animation: float-glow 8s ease-in-out infinite reverse;
}

@keyframes float-glow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(20px, 20px) scale(1.1);
        opacity: 0.8;
    }
}

.intro-text-card .lead-text {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin: 0;
    position: relative;
    z-index: 1;
}

.intro-text-card .lead-text strong {
    background: linear-gradient(135deg, #0a3cff, #00bfa6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(10, 60, 255, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(10, 60, 255, 0.1);
}

.feature-card-modern:nth-child(1) {
    background: linear-gradient(135deg, #ffffff 0%, rgba(10, 60, 255, 0.03) 100%);
}

.feature-card-modern:nth-child(2) {
    background: linear-gradient(135deg, #ffffff 0%, rgba(0, 191, 166, 0.03) 100%);
}

.feature-card-modern:nth-child(3) {
    background: linear-gradient(135deg, #ffffff 0%, rgba(10, 60, 255, 0.03) 100%);
}

.feature-card-modern:nth-child(4) {
    background: linear-gradient(135deg, #ffffff 0%, rgba(0, 191, 166, 0.03) 100%);
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0a3cff, #0066ff, #00bfa6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(10, 60, 255, 0.4);
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
}

.feature-card-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 60, 255, 0.05) 0%, 
        transparent 50%,
        rgba(0, 191, 166, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-modern:hover::after {
    opacity: 1;
}

.feature-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 45px rgba(10, 60, 255, 0.25),
                0 0 0 1px rgba(10, 60, 255, 0.15);
    border-color: rgba(10, 60, 255, 0.3);
}

.feature-icon-modern {
    width: 45px;
    height: 45px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.feature-card-modern:nth-child(1) .feature-icon-modern {
    background: linear-gradient(135deg, #0a3cff 0%, #0066ff 100%);
    box-shadow: 0 8px 20px rgba(10, 60, 255, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-card-modern:nth-child(2) .feature-icon-modern {
    background: linear-gradient(135deg, #00bfa6 0%, #00d4aa 100%);
    box-shadow: 0 8px 20px rgba(0, 191, 166, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-card-modern:nth-child(3) .feature-icon-modern {
    background: linear-gradient(135deg, #0066ff 0%, #0a3cff 100%);
    box-shadow: 0 8px 20px rgba(10, 60, 255, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-card-modern:nth-child(4) .feature-icon-modern {
    background: linear-gradient(135deg, #00d4aa 0%, #00bfa6 100%);
    box-shadow: 0 8px 20px rgba(0, 191, 166, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-card-modern:hover .feature-icon-modern {
    transform: rotate(8deg) scale(1.15) translateY(-3px);
    box-shadow: 0 12px 30px rgba(10, 60, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-icon-modern i {
    font-size: 20px;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.feature-card-modern:hover .feature-icon-modern i {
    transform: scale(1.1);
}

.feature-card-modern h4 {
    font-size: 19px;
    font-weight: 700;
    background: linear-gradient(135deg, #0a3cff, #00bfa6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-card-modern:hover h4 {
    background: linear-gradient(135deg, #0a3cff, #0066ff, #00bfa6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card-modern p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Stats Bar Modern */
.stats-bar-modern {
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        rgba(10, 60, 255, 0.02) 25%,
        rgba(0, 191, 166, 0.02) 75%,
        #ffffff 100%);
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow: 0 12px 50px rgba(10, 60, 255, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.9),
                0 0 0 1px rgba(10, 60, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 25px;
    position: relative;
    overflow: hidden;
}

.stats-bar-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        #0a3cff 0%, 
        #0066ff 25%,
        #00bfa6 50%,
        #0066ff 75%,
        #0a3cff 100%);
    background-size: 200% 100%;
    animation: gradient-shift 4s ease infinite;
    box-shadow: 0 2px 10px rgba(10, 60, 255, 0.4);
}

.stats-bar-modern::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(10, 60, 255, 0.08), transparent);
    border-radius: 50%;
    animation: pulse-bg 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulse-bg {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.stat-item-modern {
    text-align: center;
    flex: 1;
    min-width: 150px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.stat-item-modern:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #0a3cff 0%, #0066ff 50%, #00bfa6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 4px rgba(10, 60, 255, 0.2));
    transition: all 0.3s ease;
}

.stat-item-modern:hover .stat-number {
    background: linear-gradient(135deg, #0a3cff 0%, #00bfa6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

.stat-label {
    font-size: 13px;
    color: #555;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, rgba(10, 60, 255, 0.1), rgba(0, 191, 166, 0.1));
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.stat-item-modern:hover .stat-label {
    background: linear-gradient(135deg, rgba(10, 60, 255, 0.15), rgba(0, 191, 166, 0.15));
    color: var(--primary);
    transform: scale(1.05);
}

.stat-divider {
    width: 2px;
    height: 70px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(10, 60, 255, 0.2) 20%,
        rgba(0, 191, 166, 0.2) 50%,
        rgba(10, 60, 255, 0.2) 80%,
        transparent 100%);
    border-radius: 2px;
}

/* ==============================
   DEPLOYMENT TYPES SECTION
================================ */
.deployment-types {
    padding: 80px 0;
}

.deployment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.deployment-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.deployment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(10, 60, 255, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.deployment-card:hover::before {
    left: 100%;
}

.deployment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(10, 60, 255, 0.2);
}

.deployment-card > * {
    position: relative;
    z-index: 1;
}

.deployment-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(10, 60, 255, 0.3);
}

.deployment-card-icon i {
    font-size: 32px;
    color: #fff;
}

.deployment-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.deployment-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.deployment-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.deployment-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #555;
}

.deployment-features li i {
    color: var(--secondary);
    font-size: 18px;
    flex-shrink: 0;
}

/* ==============================
   DEPLOYMENT PROCESS SECTION
================================ */
.deployment-process {
    padding: 80px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(10, 60, 255, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.process-card:hover::before {
    left: 100%;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(10, 60, 255, 0.2);
}

.process-card > * {
    position: relative;
    z-index: 1;
}

.process-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(10, 60, 255, 0.1);
    line-height: 1;
}

.process-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(10, 60, 255, 0.3);
}

.process-icon i {
    font-size: 32px;
    color: #fff;
}

.process-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.process-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* ==============================
   MAINTENANCE CAPABILITIES SECTION (MODERN DESIGN)
================================ */
.maintenance-capabilities {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 50%, #ffffff 100%);
}

.maintenance-capabilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(10, 60, 255, 0.2), transparent);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.capability-card {
    position: relative;
    height: 100%;
}

.capability-card-inner {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(10, 60, 255, 0.08);
    box-shadow: 0 8px 30px rgba(10, 60, 255, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

/* .capability-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a3cff, #0066ff, #00bfa6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 15px rgba(10, 60, 255, 0.4);
    z-index: 2;
} */

.capability-card:hover .capability-card-inner::before {
    transform: scaleX(1);
}

.capability-card:hover .capability-card-inner {
    /* transform: translateY(-12px); */
    box-shadow: 0 20px 60px rgba(10, 60, 255, 0.25),
                0 0 0 1px rgba(10, 60, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(10, 60, 255, 0.25);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

.capability-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(10, 60, 255, 0.08), rgba(0, 191, 166, 0.08));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.4s ease;
    z-index: 1;
}

.capability-card:hover .capability-number {
    background: linear-gradient(135deg, rgba(10, 60, 255, 0.15), rgba(0, 191, 166, 0.15));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* transform: scale(1.1); */
}

.capability-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    z-index: 2;
}

.capability-icon {width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 10px 30px rgba(10, 60, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2); */
    transition: all 0.5s 
cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

/* .capability-card:nth-child(1) .capability-icon {
    background: linear-gradient(135deg, #0a3cff 0%, #0066ff 100%);
}

.capability-card:nth-child(2) .capability-icon {
    background: linear-gradient(135deg, #00bfa6 0%, #00d4aa 100%);
}

.capability-card:nth-child(3) .capability-icon {
    background: linear-gradient(135deg, #0066ff 0%, #0a3cff 100%);
}

.capability-card:nth-child(4) .capability-icon {
    background: linear-gradient(135deg, #c5c500 0%, #09a488 100%);
} */

.capability-card.capability-icon {
    background: linear-gradient(135deg, #00c5b3 0%, #0979a4 100%);}
/* 
.capability-card:hover .capability-icon {
    transform: rotate(8deg) scale(1.15) translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 60, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
} */

.capability-icon i {
    font-size: 18px;
    color: #fff;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

/* .capability-card:hover .capability-icon i {
    transform: scale(1.1);
} */

.icon-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 22px;
    border: 3px solid rgba(10, 60, 255, 0.3);
    animation: pulse-ring 2s ease-in-out infinite;
    z-index: 1;
}

.capability-card:hover .icon-pulse-ring {
    animation: pulse-ring-hover 1.5s ease-in-out infinite;
    /* border-color: rgba(10, 60, 255, 0.5); */
}

@keyframes pulse-ring {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.3;
    }
}

@keyframes pulse-ring-hover {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.2;
    }
}

.capability-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.capability-content h3 {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #0a3cff, #00bfa6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.capability-card:hover .capability-content h3 {
    background: linear-gradient(135deg, #0a3cff, #0066ff, #00bfa6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.capability-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.capability-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(10, 60, 255, 0.1);
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(10, 60, 255, 0.08), rgba(0, 191, 166, 0.08));
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
    border: 1px solid rgba(10, 60, 255, 0.1);
}

/* .capability-card:hover .feature-tag {
    background: linear-gradient(135deg, rgba(10, 60, 255, 0.12), rgba(0, 191, 166, 0.12));
    border-color: rgba(10, 60, 255, 0.2);
    transform: translateY(-2px);
} */

.feature-tag i {
    font-size: 14px;
    color: var(--secondary);
    filter: drop-shadow(0 1px 2px rgba(0, 191, 166, 0.3));
}

.capability-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 60, 255, 0.05) 0%, 
        transparent 50%,
        rgba(0, 191, 166, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: 24px;
}

.capability-card:hover .capability-hover-effect {
    opacity: 1;
}

/* ==============================
   WHY CHOOSE SECTION - CIRCULAR INFOGRAPHIC
================================ */
.why-choose {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-circle-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 500px;
    margin: 0px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #009688; */
}

/* Central 4-Part Circle */
.why-circle-infographic {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(10, 60, 255, 0.2);
    z-index: 2;
    background: conic-gradient(
        from 0deg,
        #00bcd4 0deg 90deg,
        #006064 90deg 180deg,
        #00bcd4 180deg 270deg,
        #0097a7 270deg 360deg
    );
}

/* Circle Segment Base - Overlay for hover effects */
.why-circle-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    clip-path: polygon(50% 50%, var(--clip-start), var(--clip-end));
    transition: all 0.4s ease;
    cursor: pointer;
    z-index: 1;
}

.why-circle-segment::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--segment-overlay);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-circle-segment:hover::before {
    opacity: 0.3;
}

.why-circle-segment:hover {
    z-index: 10;
    filter: brightness(1.15);
}

/* Segment Content */
.why-segment-content {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
}

.why-segment-content i {
    font-size: 36px;
    color: #ffffff;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    transition: all 0.3s ease;
}

.why-circle-segment:hover .why-segment-content i {
    transform: scale(1.2) rotate(5deg);
}

/* Segment 1 - Top (0deg to 90deg) */
.why-segment-1 {
    --clip-start: 50% 0%;
    --clip-end: 100% 50%;
    --segment-overlay: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
}

.why-segment-1 .why-segment-content {
    top: 15%;
    left: 69%;
    transform: translateX(-50%);
}

/* Segment 2 - Right (90deg to 180deg) */
.why-segment-2 {
    --clip-start: 100% 50%;
    --clip-end: 50% 100%;
    --segment-overlay: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
}

.why-segment-2 .why-segment-content {
    top: 68%;
    right: 15%;
    transform: translateY(-50%);
}

/* Segment 3 - Bottom (180deg to 270deg) */
.why-segment-3 {
    --clip-start: 50% 100%;
    --clip-end: 0% 50%;
    --segment-overlay: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
}

.why-segment-3 .why-segment-content {
    bottom: 15%;
    left: 32%;
    transform: translateX(-50%);
}

/* Segment 4 - Left (270deg to 360deg) */
.why-segment-4 {
    --clip-start: 0% 50%;
    --clip-end: 50% 0%;
    --segment-overlay: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
}

.why-segment-4 .why-segment-content {
    top: 32%;
    left: 15%;
    transform: translateY(-50%);
}

/* Text Blocks */
.why-text-block {
    position: absolute;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    max-width: 280px;
    z-index: 1;
    transition: all 0.4s ease;
    border: 2px solid rgba(10, 60, 255, 0.05);
}

.why-text-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(10, 60, 255, 0.2);
    border-color: rgba(10, 60, 255, 0.2);
}

.why-text-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.why-text-block p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Text Block Positions */
.why-text-1 {
    top: 1%;
    left: 63%;
    transform: translateX(-50%);
    text-align: center;
}

.why-text-2 {
    top: 62%;
    right: 10%;
    transform: translateY(-50%);
    text-align: center;
}

.why-text-3 {
    bottom: -3%;
    left: 10%;
    transform: translateX(-50%);
    text-align: center;
}

.why-text-4 {
    top: 2%;
    left: 9%;
    transform: translateY(-50%);
    text-align: center;
}

/* ==============================
   BENEFITS SECTION
================================ */
.benefits-section {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(10, 60, 255, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(10, 60, 255, 0.2);
}

.benefit-card > * {
    position: relative;
    z-index: 1;
}

.benefit-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(10, 60, 255, 0.3);
}

.benefit-card-icon i {
    font-size: 32px;
    color: #fff;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* ==============================
   BENEFITS PROCESS FLOW SECTION (NEW DESIGN)
================================ */
.benefits-process-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.benefits-process-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits-process-wrapper {
    display: flex;
    gap: 0;
    /* min-height: 600px; */
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

/* Left Section (70%) */
.benefits-process-left {
    flex: 0 0 100%;
    padding: 60px 50px 40px;
    position: relative;
    background: #f8f9fa;
    background-image: 
        radial-gradient(circle at 85% 90%, rgba(0, 191, 166, 0.05) 0%, transparent 50%);
}

/* Teal Triangle */
.benefits-triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #00bfa6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Title */
.benefits-process-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 50px 0;
    line-height: 1.2;
    letter-spacing: 1px;
}

/* Process Flow */
.benefits-process-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 20px 0 60px;
    margin-bottom: 20px;
}

/* Connecting Line */
.benefits-process-flow::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

/* Step */
.benefits-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

/* Step Icon */
.benefits-step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.benefits-step-icon i {
    font-size: 28px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.benefits-icon-teal {
    background: linear-gradient(135deg, #00bfa6 0%, #009688 100%);
}

.benefits-icon-yellow {
    background: linear-gradient(135deg, #00bfa6 0%, #009688 100%);
}

.benefits-step:hover .benefits-step-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Step Title */
.benefits-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

/* Step Description */
.benefits-step-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    max-width: 250px;
}

/* Website Address */
.benefits-website {
    font-size: 14px;
    color: #666;
    margin-top: auto;
    font-weight: 500;
}

/* Right Section (30%) */
.benefits-process-right {
    flex: 0 0 30%;
    position: relative;
    overflow: hidden;
}

.benefits-process-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.benefits-process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.benefits-process-section:hover .benefits-process-image img {
    transform: scale(1.15);
}

.benefits-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 60, 255, 0.1) 0%, rgba(0, 191, 166, 0.1) 100%);
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .benefits-process-title {
        font-size: 36px;
    }

    .benefits-step-icon {
        width: 100px;
        height: 100px;
    }

    .benefits-step-icon i {
        font-size: 40px;
    }

    .benefits-step-title {
        font-size: 16px;
    }

    .benefits-step-desc {
        font-size: 13px;
    }
}

@media (max-width: 991.98px) {
    .benefits-process-section {
        padding: 60px 0;
    }

    .benefits-process-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .benefits-process-left {
        flex: 1;
        padding: 40px 30px 30px;
    }

    .benefits-process-right {
        flex: 1;
        height: 300px;
    }

    .benefits-process-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .benefits-process-flow {
        flex-wrap: wrap;
        gap: 30px;
        padding-bottom: 40px;
    }

    .benefits-process-flow::before {
        display: none;
    }

    .benefits-step {
        flex: 0 0 calc(50% - 15px);
        padding: 0 10px;
    }

    .benefits-step-icon {
        width: 90px;
        height: 90px;
    }

    .benefits-step-icon i {
        font-size: 36px;
    }
}

@media (max-width: 767.98px) {
    .benefits-process-section {
        padding: 50px 0;
    }

    .benefits-process-container {
        padding: 0 15px;
    }

    .benefits-process-left {
        padding: 30px 20px 25px;
    }

    .benefits-process-right {
        height: 250px;
    }

    .benefits-triangle {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 15px solid #00bfa6;
        margin-bottom: 15px;
    }

    .benefits-process-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .benefits-process-flow {
        flex-direction: column;
        gap: 40px;
        padding-bottom: 30px;
    }

    .benefits-step {
        flex: 1;
        width: 100%;
        padding: 0;
    }

    .benefits-step-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    .benefits-step-icon i {
        font-size: 40px;
    }

    .benefits-step-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .benefits-step-desc {
        font-size: 14px;
        max-width: 100%;
    }

    .benefits-website {
        font-size: 13px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .benefits-process-title {
        font-size: 24px;
    }

    .benefits-step-icon {
        width: 80px;
        height: 80px;
    }

    .benefits-step-icon i {
        font-size: 32px;
    }

    .benefits-step-title {
        font-size: 16px;
    }

    .benefits-step-desc {
        font-size: 13px;
    }
}

/* ==============================
   BENEFITS CREATIVE SECTION (NEW LAYOUT)
================================ */
.benefits-creative-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.benefits-container-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section with Angled Blue Background */
.benefits-header-section {
    position: relative;
    margin-bottom: 60px;
    height: 125px;
}

.benefits-blue-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, #0a3cff 0%, #0066ff 50%, #00bfa6 100%);
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
    display: flex;
    align-items: center;
    padding: 40px 50px;
    box-shadow: 0 10px 40px rgba(10, 60, 255, 0.3);
    z-index: 2;
}

.benefits-header-content {
    position: relative;
    z-index: 1;
}

.benefits-header-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
}

.benefits-header-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.4;
}

/* Cards Container */
.benefits-cards-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

/* Large Benefit Card */
.benefit-card-large {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(10, 60, 255, 0.05);
}

.benefit-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(10, 60, 255, 0.15);
}

/* Card Section (Half of the card) */
.benefit-card-section {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 20px 30px;
    position: relative;
}

.benefit-card-section:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(10, 60, 255, 0.2), transparent);
}

/* Icon Wrapper */
.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #0a3cff 0%, #00bfa6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(10, 60, 255, 0.3);
    transition: all 0.3s ease;
}

.benefit-card-large:hover .benefit-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(10, 60, 255, 0.4);
}

.benefit-icon-wrapper i {
    font-size: 28px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Text Content */
.benefit-text-content {
    flex: 1;
}

.benefit-text-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .benefits-creative-section {
        padding: 60px 0;
    }

    .benefits-header-section {
        height: 180px;
        margin-bottom: 50px;
    }

    .benefits-blue-header {
        width: 50%;
        padding: 30px 40px;
    }

    .benefits-header-title {
        font-size: 36px;
    }

    .benefits-header-subtitle {
        font-size: 18px;
    }

    .benefit-card-large {
        padding: 30px;
        flex-direction: column;
    }

    .benefit-card-section {
        padding: 20px;
    }

    .benefit-card-section:not(:last-child)::after {
        display: none;
    }

    .benefit-card-section:not(:last-child) {
        border-bottom: 1px solid rgba(10, 60, 255, 0.1);
        padding-bottom: 30px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .benefits-creative-section {
        padding: 50px 0;
    }

    .benefits-container-wrapper {
        padding: 0 15px;
    }

    .benefits-header-section {
        height: 150px;
        margin-bottom: 40px;
    }

    .benefits-blue-header {
        width: 60%;
        padding: 25px 30px;
        clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
    }

    .benefits-header-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .benefits-header-subtitle {
        font-size: 16px;
    }

    .benefits-cards-container {
        gap: 25px;
        margin-top: 30px;
    }

    .benefit-card-large {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .benefit-card-section {
        padding: 15px 0;
        gap: 20px;
    }

    .benefit-icon-wrapper {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 10px;
    }

    .benefit-icon-wrapper i {
        font-size: 24px;
    }

    .benefit-text-content p {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .benefits-header-section {
        height: 120px;
    }

    .benefits-blue-header {
        width: 70%;
        padding: 20px 25px;
    }

    .benefits-header-title {
        font-size: 24px;
    }

    .benefits-header-subtitle {
        font-size: 14px;
    }

    .benefit-card-large {
        padding: 20px 15px;
    }

    .benefit-card-section {
        padding: 12px 0;
        gap: 15px;
    }

    .benefit-icon-wrapper {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .benefit-icon-wrapper i {
        font-size: 20px;
    }

    .benefit-text-content p {
        font-size: 13px;
    }
}

/* ==============================
   BENEFITS HEXAGON SECTION (NEW LAYOUT)
================================ */
.benefits-hexagon-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Hexagon Wrapper */
.benefits-hexagon-wrapper {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Hexagon */
.benefits-hexagon-main {
    position: relative;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #0a3cff 0%, #0066ff 50%, #00bfa6 100%);
    clip-path: polygon(0 30%, 51% 0, 100% 30%, 100% 74%, 48% 100%, 0 71%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(10, 60, 255, 0.4),
                0 0 0 8px rgba(255, 255, 255, 0.1);
    z-index: 2;
    transition: all 0.4s ease;
}

.benefits-hexagon-main:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 20px 60px rgba(10, 60, 255, 0.5),
                0 0 0 10px rgba(255, 255, 255, 0.15);
}

.benefits-hexagon-main h2 {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
}

/* Back Hexagon (Layered Effect) */
.benefits-hexagon-back {
    position: absolute;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(10, 60, 255, 0.3) 0%, rgba(0, 191, 166, 0.3) 100%);
    clip-path: polygon(0 30%, 51% 0, 100% 30%, 100% 74%, 48% 100%, 0 71%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(15px, 15px);
    z-index: 1;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.benefits-hexagon-wrapper:hover .benefits-hexagon-back {
    transform: translate(-50%, -50%) translate(20px, 20px);
    opacity: 0.8;
}

/* Cards Grid */
.benefits-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0;
}

/* Benefit Card */
.benefit-card-hexagon {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
    border: 2px solid rgba(10, 60, 255, 0.05);
}

.benefit-card-hexagon.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card-hexagon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(10, 60, 255, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.benefit-card-hexagon:hover::before {
    left: 100%;
}

.benefit-card-hexagon:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(10, 60, 255, 0.2);
    border-color: rgba(10, 60, 255, 0.2);
}

.benefit-card-hexagon > * {
    position: relative;
    z-index: 1;
}

/* Number Circle */
.benefit-number-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0a3cff 0%, #00bfa6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(10, 60, 255, 0.3);
    transition: all 0.4s ease;
}

.benefit-card-hexagon:hover .benefit-number-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(10, 60, 255, 0.4);
}

/* Card Content */
.benefit-card-hexagon h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.benefit-card-hexagon:hover h3 {
    background: linear-gradient(135deg, #0a3cff, #00bfa6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-card-hexagon p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Responsive for Benefits Hexagon Section */
@media (max-width: 991.98px) {
    .benefits-hexagon-section {
        padding: 60px 0;
    }

    .benefits-hexagon-wrapper {
        max-width: 250px;
        height: 250px;
        margin-bottom: 40px;
    }

    .benefits-hexagon-main {
        width: 200px;
        height: 200px;
    }

    .benefits-hexagon-main h2 {
        font-size: 36px;
    }

    .benefits-hexagon-back {
        width: 230px;
        height: 230px;
    }

    .benefits-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .benefit-card-hexagon {
        padding: 30px 25px;
    }

    .benefit-number-circle {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .benefit-card-hexagon h3 {
        font-size: 20px;
    }

    .benefit-card-hexagon p {
        font-size: 14px;
    }
}

@media (max-width: 767.98px) {
    .benefits-hexagon-section {
        padding: 50px 0;
    }

    .benefits-hexagon-wrapper {
        max-width: 200px;
        height: 200px;
        margin-bottom: 30px;
    }

    .benefits-hexagon-main {
        width: 160px;
        height: 160px;
    }

    .benefits-hexagon-main h2 {
        font-size: 28px;
    }

    .benefits-hexagon-back {
        width: 180px;
        height: 180px;
    }

    .benefits-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card-hexagon {
        padding: 25px 20px;
    }

    .benefit-number-circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .benefit-card-hexagon h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .benefit-card-hexagon p {
        font-size: 14px;
    }
}

/* ==============================
   BENEFITS VISUAL SECTION (COMPACT DESIGN)
================================ */
.benefits-visual {
    padding: 60px 0;
    position: relative;
}

.benefits-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit-compact-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.benefit-compact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(10, 60, 255, 0.15);
}

.benefit-compact-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.benefit-compact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.benefit-compact-item:hover .benefit-compact-image img {
    transform: scale(1.1);
}

.benefit-compact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 60, 255, 0.3) 0%, 
        rgba(0, 191, 166, 0.25) 100%);
    z-index: 1;
}

.benefit-compact-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.benefit-compact-item:hover .benefit-compact-icon {
    transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
}

.benefit-compact-icon i {
    font-size: 28px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-compact-content {
    padding: 20px;
}

.benefit-compact-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.benefit-compact-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.benefit-compact-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, 
        rgba(10, 60, 255, 0.1) 0%, 
        rgba(0, 191, 166, 0.1) 100%);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(10, 60, 255, 0.2);
}

/* Responsive for Benefits Compact */
@media (max-width: 991.98px) {
    .benefits-compact-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .benefit-compact-image {
        height: 160px;
    }

    .benefit-compact-icon {
        width: 55px;
        height: 55px;
    }

    .benefit-compact-icon i {
        font-size: 24px;
    }

    .benefit-compact-content {
        padding: 18px;
    }

    .benefit-compact-content h3 {
        font-size: 18px;
    }

    .benefit-compact-content p {
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .benefits-compact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-compact-image {
        height: 150px;
    }

    .benefit-compact-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-compact-icon i {
        font-size: 22px;
    }

    .benefit-compact-content h3 {
        font-size: 17px;
    }

    .benefit-compact-content p {
        font-size: 13px;
    }
}

/* ==============================
   SERVICE CTA SECTION
================================ */
.service-cta {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #0066ff 50%, var(--secondary) 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.service-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 20, 45, 0.3);
    z-index: 0;
}

.service-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse-icon 2s ease-in-out infinite;
}

.service-cta-icon i {
    font-size: 36px;
    color: #fff;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.service-cta-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.btn-service-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: var(--primary) !important;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    animation: pulse-button 2s ease-in-out infinite;
}

@keyframes pulse-button {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

.btn-service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8f9ff;
    gap: 15px;
}

.btn-service-cta i {
    transition: transform 0.3s ease;
}

.btn-service-cta:hover i {
    transform: translateX(5px);
}

.service-cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.cta-shape-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: 10%;
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    right: 15%;
    animation-delay: 2s;
}

/* ==============================
   SECTION PADDING & BACKGROUND
================================ */
.section-padding {
    padding: 80px 0;
}

.section-bg {
    background: #f5f8ff;
}

/* ==============================
   RESPONSIVE STYLES
================================ */
@media (max-width: 991.98px) {
    .service-hero {
        min-height: 450px;
        padding: 120px 0 80px;
    }

    .service-hero-content h1 {
        font-size: 36px;
    }

    .service-hero-content p {
        font-size: 16px;
    }

    .section-header-center h2 {
        font-size: 30px;
    }

    .service-overview-card {
        padding: 40px 30px;
    }

    .service-overview-card h2 {
        font-size: 28px;
    }

    .deployment-grid,
    .process-grid,
    .why-grid,
    .capabilities-grid,
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .capability-card-inner {
        padding: 35px 25px;
    }

    .capability-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }

    .capability-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
    }

    .capability-icon i {
        font-size: 34px;
    }

    .icon-pulse-ring {
        width: 80px;
        height: 80px;
        border-radius: 20px;
    }

    .capability-number {
        font-size: 60px;
        top: 15px;
        right: 15px;
    }

    .capability-content h3 {
        font-size: 20px;
    }

    .service-cta {
        padding: 60px 20px;
    }

    .service-cta-content h2 {
        font-size: 30px;
    }

    .service-cta-content p {
        font-size: 16px;
    }

    .maintenance-image-wrapper {
        min-height: 350px;
        margin-bottom: 40px;
    }

    .maintenance-image {
        min-height: 350px;
    }

    .image-stats-overlay {
        padding: 20px;
    }

    .floating-badge-maintenance {
        top: 15px;
        right: 15px;
        padding: 10px 14px;
    }

    .badge-icon-pulse {
        width: 35px;
        height: 35px;
    }

    .badge-icon-pulse i {
        font-size: 18px;
    }

    .badge-label {
        font-size: 10px;
    }

    .badge-value {
        font-size: 12px;
    }

    .image-top-stats {
        top: 15px;
        left: 15px;
        gap: 8px;
    }

    .top-stat-item {
        padding: 10px 12px;
    }

    .top-stat-item i {
        font-size: 20px;
    }

    .top-stat-number {
        font-size: 16px;
    }

    .top-stat-label {
        font-size: 10px;
    }

    .stat-badge-inline {
        padding: 14px 16px;
        gap: 12px;
    }

    .stat-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .stat-icon-wrapper i {
        font-size: 18px;
    }

    .stat-title {
        font-size: 14px;
    }

    .stat-subtitle {
        font-size: 11px;
    }

    .maintenance-content-wrapper {
        padding-left: 0;
    }

    .features-grid-modern {
        grid-template-columns: 1fr;
    }

    .stats-bar-modern {
        flex-direction: column;
        gap: 30px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, #ddd, transparent);
    }
}

@media (max-width: 767.98px) {
    .service-hero {
        min-height: 400px;
        padding: 100px 0 60px;
    }

    .service-hero-content h1 {
        font-size: 28px;
    }

    .service-hero-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .btn-service-hero {
        padding: 14px 30px;
        font-size: 15px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-header-center h2 {
        font-size: 26px;
    }

    .section-header-center p {
        font-size: 15px;
    }

    .service-overview-card {
        padding: 30px 20px;
    }

    .service-overview-card h2 {
        font-size: 24px;
    }

    .service-overview-icon {
        width: 70px;
        height: 70px;
    }

    .service-overview-icon i {
        font-size: 30px;
    }

    .deployment-grid,
    .process-grid,
    .why-grid,
    .capabilities-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .capability-card-inner {
        padding: 30px 20px;
    }

    .capability-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .capability-icon {
        width: 70px;
        height: 70px;
        border-radius: 18px;
    }

    .capability-icon i {
        font-size: 30px;
    }

    .icon-pulse-ring {
        width: 70px;
        height: 70px;
        border-radius: 18px;
    }

    .capability-number {
        font-size: 50px;
        top: 15px;
        right: 15px;
    }

    .capability-content h3 {
        font-size: 18px;
    }

    .capability-content p {
        font-size: 14px;
    }

    .feature-tag {
        font-size: 11px;
        padding: 5px 12px;
    }

    .deployment-card,
    .process-card,
    .why-card,
    .benefit-card {
        padding: 30px 20px;
    }

    .service-cta {
        padding: 50px 15px;
    }

    .service-cta-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .service-cta-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .service-cta-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .service-cta-icon i {
        font-size: 28px;
    }

    .btn-service-cta {
        padding: 14px 30px;
        font-size: 15px;
    }

    .service-hero-shapes,
    .service-cta-shapes {
        display: none;
    }

    .maintenance-image-wrapper {
        min-height: 300px;
    }

    .maintenance-image {
        min-height: 300px;
    }

    .image-stats-overlay {
        padding: 18px;
        gap: 10px;
    }

    .floating-badge-maintenance {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
        gap: 8px;
    }

    .badge-icon-pulse {
        width: 30px;
        height: 30px;
    }

    .badge-icon-pulse i {
        font-size: 16px;
    }

    .badge-label {
        font-size: 9px;
    }

    .badge-value {
        font-size: 11px;
    }

    .image-top-stats {
        top: 10px;
        left: 10px;
        gap: 6px;
        flex-direction: column;
    }

    .top-stat-item {
        padding: 8px 10px;
    }

    .top-stat-item i {
        font-size: 18px;
    }

    .top-stat-number {
        font-size: 14px;
    }

    .top-stat-label {
        font-size: 9px;
    }

    .stat-badge-inline {
        padding: 12px 14px;
        gap: 10px;
    }

    .stat-icon-wrapper {
        width: 35px;
        height: 35px;
    }

    .stat-icon-wrapper i {
        font-size: 16px;
    }

    .stat-title {
        font-size: 13px;
    }

    .stat-subtitle {
        font-size: 10px;
    }

    .intro-text-card {
        padding: 20px;
    }

    .intro-text-card .lead-text {
        font-size: 15px;
    }

    .feature-card-modern {
        padding: 20px;
    }

    .feature-icon-modern {
        width: 50px;
        height: 50px;
    }

    .feature-icon-modern i {
        font-size: 24px;
    }

    .feature-card-modern h4 {
        font-size: 16px;
    }

    .feature-card-modern p {
        font-size: 13px;
    }

    .stats-bar-modern {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .service-hero-content h1 {
        font-size: 24px;
    }

    .section-header-center h2 {
        font-size: 22px;
    }

    .service-overview-card h2 {
        font-size: 22px;
    }

    .deployment-card h3,
    .process-card h3,
    .why-card h3,
    .benefit-card h3,
    .capability-content h3 {
        font-size: 18px;
    }

    .service-cta-content h2 {
        font-size: 22px;
    }
}

/* ==============================
   USE CASES CYCLE DIAGRAM
================================ */
.use-cases-cycle {
    padding: 80px 0 30px 0;
    position: relative;
    overflow: hidden;
}

.cycle-diagram-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 500px;
    margin: 0px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #00bfa6; */
}

/* Central Circle */
.cycle-center {
    position: absolute;
    top: 69%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.cycle-center-circle {
    width: 100px;
    height: 100px;
    background: #ffffff;
    border: 3px solid #009688 ;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cycle-center-circle i {
    font-size: 48px;
    color: #009688 ;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hexagon Base Styles */
.cycle-hexagon {
    position: absolute;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.cycle-hexagon-shape {
    width: 100%;
    height: 100%;
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cycle-hexagon-shape i {
    font-size: 36px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Hexagon Colors */
.cycle-color-1 {
    background: linear-gradient(135deg, #00bfa6 0%, #009688 100%);
}

.cycle-color-2 {
    background: linear-gradient(135deg, #00bfa6 0%, #009688 100%);
}

.cycle-color-3 {
    background: linear-gradient(135deg, #00bfa6 0%, #009688 100%);
}

.cycle-color-4 {
    background: linear-gradient(135deg, #00bfa6 0%, #009688 100%);
}

.cycle-color-5 {
    background: linear-gradient(135deg, #00bfa6 0%, #009688 100%);
}

.cycle-color-6 {
    background: linear-gradient(135deg, #00bfa6 0%, #009688 100%);
}

/* Hexagon Positions (arranged in circle) */
.cycle-hex-1 {
    top: 21%;
    left: 45.5%;
    transform: translate(-50%, -50%);
}

.cycle-hex-2 {
    top: 36%;
    right: 27%;
    transform: translate(50%, -50%);
}

.cycle-hex-3 {
    top: 67%;
    right: 24%;
    transform: translate(50%, -50%);
}

.cycle-hex-4 {
    top: 37%;
    right: 64%;
    transform: translate(50%, 50%);
}

.cycle-hex-5 {
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.cycle-hex-6 {
    top: 67%;
    left: 24%;
    transform: translate(-50%, -50%);
}

/* Connecting Lines */
.cycle-connector {
    position: absolute;
    width: 2px;
    background: #0a3cff;
    z-index: 1;
    opacity: 0.5;
    top: 50%;
    left: 50%;
    transform-origin: center bottom;
    height: 180px;
}

.cycle-connector-1 {
    transform: translate(-50%, -50%) rotate(-103deg);
}

.cycle-connector-2 {
    transform: translate(-50%, -50%) rotate(-52deg);
}

.cycle-connector-3 {
    transform: translate(-50%, -50%) rotate(0deg);
}

.cycle-connector-4 {
    transform: translate(-50%, -50%) rotate(50deg);
}

.cycle-connector-5 {
    transform: translate(-50%, -50%) rotate(103deg);
}

.cycle-connector-6 {
    transform: translate(-50%, -50%) rotate(103deg);
}

/* Text Boxes */
.cycle-text-box {
    position: absolute;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 280px;
    z-index: 6;
}

.cycle-text-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.cycle-text-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Text Box Positions */
.cycle-text-1 {
    top: -129px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.cycle-text-2 {
    top: -62px;
    right: -189%;
    transform: translateX(50%);
    text-align: center;
}

.cycle-text-3 {
    left: 102px;
    top: 50%;
    transform: translateY(-50%);
}

.cycle-text-4 {
    top: -72px;
    right: 293%;
    transform: translateX(50%);
    text-align: center;
}

.cycle-text-5 {
    bottom: -140px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.cycle-text-6 {
    right: 105px;
    top: 46%;
    transform: translateY(-50%);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .use-cases-cycle {
        padding: 60px 0;
    }

    /* Hide center circle and connectors on mobile */
    .cycle-center,
    .cycle-connector {
        display: none !important;
    }

    .cycle-diagram-wrapper {
        height: auto;
        max-width: 100%;
        position: relative;
        padding: 20px 0;
        flex-direction: column;
    }

    /* Convert hexagons to list layout on mobile */
    .cycle-hexagon {
        position: relative !important;
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }

    .cycle-hexagon-shape {
        width: 70px;
        height: 70px;
        min-width: 70px;
        flex-shrink: 0;
    }

    .cycle-hexagon-shape i {
        font-size: 32px;
    }

    .cycle-text-box {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0;
        background: transparent;
        box-shadow: none;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        text-align: left;
    }

    .cycle-text-box h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .cycle-text-box p {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 767.98px) {
    .use-cases-cycle {
        padding: 60px 0;
    }

    /* Hide center circle and connectors on mobile */
    .cycle-center,
    .cycle-connector {
        display: none !important;
    }

    .cycle-diagram-wrapper {
        height: auto;
        max-width: 100%;
        position: relative;
        padding: 20px 0;
        flex-direction: column;
    }

    /* Convert hexagons to list layout on mobile */
    .cycle-hexagon {
        position: relative !important;
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }

    .cycle-hexagon-shape {
        width: 70px;
        height: 70px;
        min-width: 70px;
        flex-shrink: 0;
    }

    .cycle-hexagon-shape i {
        font-size: 32px;
    }

    .cycle-text-box {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0;
        background: transparent;
        box-shadow: none;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        text-align: left;
    }

    .cycle-text-box h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .cycle-text-box p {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    /* Hide center circle and connectors on mobile */
    .cycle-center,
    .cycle-connector {
        display: none !important;
    }

    .cycle-diagram-wrapper {
        height: auto;
        max-width: 100%;
        padding: 15px 0;
        flex-direction: column;
    }

    .cycle-hexagon {
        padding: 15px;
        margin-bottom: 20px;
        gap: 15px;
    }

    .cycle-hexagon-shape {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .cycle-hexagon-shape i {
        font-size: 28px;
    }

    .cycle-text-box h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .cycle-text-box p {
        font-size: 13px;
    }

    .cycle-text-box p {
        font-size: 11px;
    }
}

/* ==============================
   WHY CHOOSE CIRCULAR INFOGRAPHIC - RESPONSIVE
================================ */
@media (max-width: 991.98px) {
    .why-circle-wrapper {
        height: 700px;
        max-width: 800px;
    }

    .why-circle-infographic {
        width: 300px;
        height: 300px;
    }

    .why-segment-content {
        width: 60px;
        height: 60px;
    }

    .why-segment-content i {
        font-size: 28px;
    }

    .why-text-block {
        max-width: 240px;
        padding: 20px 25px;
    }

    .why-text-block h3 {
        font-size: 16px;
    }

    .why-text-block p {
        font-size: 13px;
    }

    .why-text-2 {
        top: 68%;
        right: 6%;
    }
    .why-text-3 {
        bottom: 6%;
        left: 6%;
    }
    .why-text-4 {
        top: 6%;
        left: 6%;
    }
    .why-text-1 {
        top: 6%;
        left: 64%;
    }
}

@media (max-width: 767.98px) {
    .why-circle-wrapper {
        height: 600px;
        max-width: 600px;
    }

    .why-circle-infographic {
        display: none;
    }

    .why-segment-content {
        width: 50px;
        height: 50px;
    }

    .why-segment-content i {
        font-size: 24px;
    }

    /* .why-text-block {
        max-width: 200px;
        padding: 18px 20px;
        position: static !important;
        margin: 15px auto;
        transform: none !important;
    } */

    .why-text-block {
        max-width: 100%;
        padding: 18px 20px;
        position: static !important;
        margin: 15px;
        transform: none !important;
    }

    .why-text-block h3 {
        font-size: 15px;
    }

    .why-text-block p {
        font-size: 12px;
    }

    /* Stack text blocks vertically on mobile */
    .why-circle-wrapper {
        flex-direction: column;
        height: auto;
        padding: 40px 20px;
    }

    .why-circle-infographic {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .why-circle-wrapper {
        padding: 30px 15px;
    }

    .why-circle-infographic {
        width: 280px;
        height: 280px;
    }

    .why-segment-content {
        width: 45px;
        height: 45px;
    }

    .why-segment-content i {
        font-size: 20px;
    }

    .why-text-block {
        max-width: 100%;
        padding: 15px 18px;
    }

    .why-text-block h3 {
        font-size: 14px;
    }

    .why-text-block p {
        font-size: 11px;
    }
}

