/* ==========================================
   Hero Section — 3D Cloud Servers (GREEN THEME)
   Light Theme | Border-Radius: 5px | Compact
========================================== */

.hosting-hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 50%, #ecfdf5 100%);
    overflow: hidden;
}

/* -------- Container -------- */

.hosting-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* -------- Grid Layout -------- */

.hosting-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* ==========================================
   Left Content — Text Area
========================================== */

.hosting-hero-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* -------- Badge -------- */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.10);
    border: 1px solid rgba(16, 185, 129, 0.20);
    border-radius: 5px;
    padding: 5px 14px 5px 12px;
    font-size: 11px;
    font-weight: 500;
    color: #059669;
    letter-spacing: 0.2px;
    width: fit-content;
    transition: border-color 0.3s ease;
}

.hero-badge i {
    font-size: 11px;
    color: #059669;
}

.hero-badge:hover {
    border-color: rgba(16, 185, 129, 0.35);
}

/* -------- Heading -------- */

.hosting-hero-text h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    color: #0b0f1a;
    letter-spacing: -0.01em;
    margin: 0;
}

.hosting-hero-text h1 span {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* -------- Paragraph -------- */

.hosting-hero-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    max-width: 520px;
    margin: 0;
}

/* -------- Buttons -------- */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.30);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(16, 185, 129, 0.40);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.04);
    color: #1e293b;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.16);
    transform: translateY(-2px);
}

/* -------- Trust Features (badges) -------- */

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 4px;
}

.hero-features .feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    padding: 4px 12px 4px 8px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 5px;
}

.hero-features .feature i {
    font-size: 14px;
    color: #059669;
}

/* ==========================================
   Right Content — 3D Image + Floating Cards
========================================== */

.hosting-hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

/* -------- Main Image -------- */

.hosting-hero-image > img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    border-radius: 5px;
    filter: drop-shadow(0 20px 60px rgba(16, 185, 129, 0.12));
    animation: floatImage 6s ease-in-out infinite;
    transition: transform 0.4s ease;
}

.hosting-hero-image > img:hover {
    transform: scale(1.02);
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* -------- Floating Cards -------- */

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 16px;
    color: #059669;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.10);
    border-radius: 5px;
    flex-shrink: 0;
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0b0f1a;
    margin: 0;
    line-height: 1.2;
}

.floating-card span {
    font-size: 10px;
    color: #64748b;
}

/* Card positions */
.card-one {
    top: 8%;
    left: -6%;
    animation-delay: 0s;
}

.card-two {
    bottom: 15%;
    left: -4%;
    animation-delay: 2s;
}

.card-three {
    top: 50%;
    right: -6%;
    transform: translateY(-50%);
    animation-delay: 4s;
}

/* -------- Float Animation for Cards -------- */

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.card-two {
    animation-delay: 1.2s;
}

.card-three {
    animation-delay: 2.4s;
}

.card-three {
    animation-name: floatCardRight;
}

@keyframes floatCardRight {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(-6px);
    }
}

/* ==========================================
   Responsive
========================================== */

/* -------- Tablets (<= 1024px) -------- */

@media (max-width: 1024px) {
    .hosting-hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hosting-hero-text {
        align-items: center;
    }

    .hosting-hero-text p {
        max-width: 540px;
    }

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

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

    .hosting-hero-image {
        min-height: 320px;
    }

    .hosting-hero-image > img {
        max-width: 420px;
    }

    .card-one {
        left: 0;
        top: 2%;
    }

    .card-two {
        left: 0;
        bottom: 8%;
    }

    .card-three {
        right: 0;
        top: 50%;
    }

    @keyframes floatCardRight {
        0%, 100% {
            transform: translateY(-50%) translateX(0);
        }
        50% {
            transform: translateY(-50%) translateX(-4px);
        }
    }
}

/* -------- Mobile (<= 640px) -------- */

@media (max-width: 640px) {
    .hosting-hero {
        padding: 40px 0 30px;
        margin-top: 20px;
    }

    .hosting-hero-text h1 {
        font-size: 26px;
    }

    .hosting-hero-text p {
        font-size: 14px;
        line-height: 1.5;
    }

    .hero-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .hero-badge i {
        font-size: 10px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 8px 18px;
        font-size: 13px;
        flex: 1 1 auto;
        min-width: 100px;
    }

    .hero-buttons {
        gap: 10px;
        width: 100%;
    }

    .hero-features {
        gap: 10px;
    }

    .hero-features .feature {
        font-size: 11px;
        padding: 3px 10px 3px 6px;
    }

    .hero-features .feature i {
        font-size: 12px;
    }

    .hosting-hero-image {
        min-height: 240px;
    }

    .hosting-hero-image > img {
        max-width: 280px;
    }

    @keyframes floatImage {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-8px);
        }
    }

    /* Hide floating cards on mobile (or keep only one) */
    .floating-card {
        display: none;
    }

    /* Show one card on mobile */
    .card-one {
        display: flex;
        top: -6%;
        left: 50%;
        transform: translateX(-50%);
        animation: none;
        padding: 8px 12px;
    }

    .card-one i {
        font-size: 14px;
        width: 26px;
        height: 26px;
    }

    .card-one h4 {
        font-size: 12px;
    }

    .card-one span {
        font-size: 9px;
    }
}

/* -------- Small phones (<= 400px) -------- */

@media (max-width: 400px) {
    .hosting-hero {
        margin-top: 15px;
        padding: 30px 0 20px;
    }

    .hosting-hero-text h1 {
        font-size: 22px;
    }

    .hosting-hero-image > img {
        max-width: 220px;
    }

    .hero-features .feature {
        font-size: 10px;
        padding: 2px 8px 2px 5px;
    }

    .hero-features .feature i {
        font-size: 10px;
    }

    .card-one {
        padding: 6px 10px;
        top: -4%;
    }

    .card-one i {
        font-size: 12px;
        width: 22px;
        height: 22px;
    }

    .card-one h4 {
        font-size: 11px;
    }

    .card-one span {
        font-size: 8px;
    }
}


/* ==========================================
   Hosting Process Timeline — BLUE THEME
   Light Background | Blue/Cyan Accents | 5px Radius
   Includes animated "walking" progress dot
========================================== */

.hosting-process {
    position: relative;
    padding: 60px 0 60px;
    background: linear-gradient(135deg, #f0f7ff 0%, #f8fafc 50%, #ecfeff 100%);
    overflow: hidden;
}

/* -------- Container -------- */

.hosting-process .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ==========================================
   Section Heading
========================================== */

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 44px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 165, 233, 0.10);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: 5px;
    padding: 5px 14px 5px 12px;
    font-size: 11px;
    font-weight: 500;
    color: #0284c7;
    letter-spacing: 0.2px;
    margin-bottom: 12px;
}

.section-badge i {
    font-size: 11px;
    color: #0284c7;
}

.section-heading h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0b0f1a;
    margin: 0 0 14px 0;
    letter-spacing: -0.01em;
}

.section-heading h2 span {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-heading p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0 auto;
}

/* ==========================================
   Timeline — Horizontal (Desktop)
========================================== */

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
    padding: 20px 0 10px;
}

/* -------- Individual Step -------- */

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 200px;
    padding: 0 8px;
    position: relative;
}

/* -------- Step Icon -------- */

.step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 5px;
    margin-bottom: 14px;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-icon i {
    font-size: 24px;
    color: #ffffff;
}

.process-step:hover .step-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 36px rgba(14, 165, 233, 0.35);
}

/* -------- Step Text -------- */

.process-step h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0b0f1a;
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
}

.process-step p {
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    margin: 0;
    max-width: 180px;
}

/* -------- Timeline Arrows -------- */

.timeline-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    flex-shrink: 0;
    color: #0ea5e9;
    font-size: 20px;
    opacity: 0.5;
    margin: 0 -4px;
}

.timeline-arrow i {
    transition: transform 0.3s ease;
}

.process-timeline:hover .timeline-arrow i {
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.4;
    }
    50% {
        transform: translateX(4px);
        opacity: 0.8;
    }
}

.timeline-arrow:nth-child(2) i {
    animation-delay: 0s;
}
.timeline-arrow:nth-child(4) i {
    animation-delay: 0.3s;
}
.timeline-arrow:nth-child(6) i {
    animation-delay: 0.6s;
}
.timeline-arrow:nth-child(8) i {
    animation-delay: 0.9s;
}

/* -------- Connecting Line (behind steps) -------- */

.process-timeline::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #bae6fd 0%, #0ea5e9 30%, #0ea5e9 70%, #bae6fd 100%);
    border-radius: 5px;
    z-index: 0;
}

/* -------- Walking Progress Dot -------- */
/* A small glowing dot that continuously travels
   left → right along the connecting line, looping
   forever to suggest ongoing progress/movement. */

.process-timeline::after {
    content: '';
    position: absolute;
    top: 46px;
    left: 10%;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, #ffffff 0%, #0ea5e9 60%);
    border: 3px solid #0284c7;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.18), 0 0 16px rgba(14, 165, 233, 0.55);
    z-index: 2;
    animation: walkAlongLine 6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

@keyframes walkAlongLine {
    0% {
        left: 10%;
        transform: translateX(-50%) scale(0.9);
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) scale(1.15);
    }
    92% {
        opacity: 1;
    }
    100% {
        left: 90%;
        transform: translateX(-50%) scale(0.9);
        opacity: 0;
    }
}

.process-step {
    z-index: 1;
}

/* -------- Step "lit up" pulse as the walker passes -------- */
/* Each icon softly pulses in sequence, timed to roughly
   match the dot passing by, reinforcing the walking motion. */

.process-step:nth-child(1) .step-icon {
    animation: stepGlow 6s ease-in-out infinite;
    animation-delay: 0s;
}
.process-step:nth-child(3) .step-icon {
    animation: stepGlow 6s ease-in-out infinite;
    animation-delay: 1.1s;
}
.process-step:nth-child(5) .step-icon {
    animation: stepGlow 6s ease-in-out infinite;
    animation-delay: 2.2s;
}
.process-step:nth-child(7) .step-icon {
    animation: stepGlow 6s ease-in-out infinite;
    animation-delay: 3.3s;
}
.process-step:nth-child(9) .step-icon {
    animation: stepGlow 6s ease-in-out infinite;
    animation-delay: 4.4s;
}

@keyframes stepGlow {
    0%, 85%, 100% {
        box-shadow: 0 8px 24px rgba(14, 165, 233, 0.25);
    }
    92% {
        box-shadow: 0 8px 32px rgba(14, 165, 233, 0.6), 0 0 0 6px rgba(14, 165, 233, 0.12);
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .process-timeline::after,
    .process-step .step-icon {
        animation: none !important;
    }
}

/* ==========================================
   Responsive
========================================== */

/* -------- Tablets (<= 1024px) -------- */

@media (max-width: 1024px) {
    .process-timeline {
        flex-wrap: wrap;
        gap: 20px 12px;
        justify-content: center;
    }

    .process-timeline::before,
    .process-timeline::after {
        display: none;
    }

    .process-step {
        flex: 0 0 calc(33.33% - 12px);
        max-width: 200px;
        padding: 0 6px;
    }

    .timeline-arrow {
        display: none;
    }

    .step-icon {
        width: 56px;
        height: 56px;
    }

    .step-icon i {
        font-size: 20px;
    }

    .process-step p {
        font-size: 12px;
        max-width: 160px;
    }
}

/* -------- Mobile (<= 640px) -------- */

@media (max-width: 640px) {
    .hosting-process {
        padding: 40px 0 40px;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2 {
        font-size: 24px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .section-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .section-badge i {
        font-size: 10px;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
    }

    .process-timeline::before,
    .process-timeline::after {
        display: none;
    }

    .process-step {
        flex: 0 0 auto;
        max-width: 280px;
        width: 100%;
        padding: 16px 16px;
        flex-direction: row;
        text-align: left;
        gap: 16px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 5px;
        border: 1px solid rgba(14, 165, 233, 0.06);
        transition: all 0.3s ease;
        margin-bottom: 0;
        position: relative;
    }

    .process-step:hover {
        background: #ffffff;
        border-color: rgba(14, 165, 233, 0.15);
        box-shadow: 0 4px 16px rgba(14, 165, 233, 0.06);
    }

    .step-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        margin-bottom: 0;
        box-shadow: 0 4px 16px rgba(14, 165, 233, 0.20);
    }

    .step-icon i {
        font-size: 18px;
    }

    .process-step h3 {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .process-step p {
        font-size: 12px;
        max-width: 100%;
        line-height: 1.4;
    }

    .process-step .step-text {
        display: flex;
        flex-direction: column;
    }

    .timeline-arrow {
        display: flex;
        padding: 4px 0;
        font-size: 14px;
        color: #0ea5e9;
        opacity: 0.4;
        transform: rotate(90deg);
        margin: 0;
    }

    .timeline-arrow i {
        animation: arrowPulseVertical 1.5s ease-in-out infinite;
    }

    @keyframes arrowPulseVertical {
        0%, 100% {
            transform: translateY(0);
            opacity: 0.3;
        }
        50% {
            transform: translateY(4px);
            opacity: 0.7;
        }
    }

    /* Mobile connecting line */
    .process-step::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 16px;
        background: linear-gradient(180deg, #0ea5e9, #bae6fd);
        border-radius: 5px;
        opacity: 0.3;
    }

    .process-step:last-child::after {
        display: none;
    }

    .process-step:hover .step-icon {
        transform: translateY(-2px) scale(1.05);
    }
}

/* -------- Small phones (<= 400px) -------- */

@media (max-width: 400px) {
    .hosting-process {
        padding: 30px 0 30px;
    }

    .section-heading h2 {
        font-size: 20px;
    }

    .section-heading p {
        font-size: 13px;
    }

    .process-step {
        padding: 12px 12px;
        gap: 12px;
        max-width: 100%;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .step-icon i {
        font-size: 15px;
    }

    .process-step h3 {
        font-size: 13px;
    }

    .process-step p {
        font-size: 11px;
    }

    .timeline-arrow {
        font-size: 12px;
        padding: 2px 0;
    }

    .process-step::after {
        height: 12px;
        bottom: -16px;
    }
}


/* ==========================================
   Hosting Services Marquee — Icon Version
   Light Theme | Blue Accents | 5px Radius | Icon: Black
========================================== */

.hosting-services {
    position: relative;
    padding: 60px 0 60px;
    background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 50%, #eef2ff 100%);
    overflow: hidden;
}

/* -------- Container -------- */

.hosting-services .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ==========================================
   Section Title
========================================== */

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 44px;
}

.section-title span {
    display: inline-block;
    background: rgba(56, 98, 255, 0.08);
    border: 1px solid rgba(56, 98, 255, 0.12);
    border-radius: 5px;
    padding: 5px 14px 5px 12px;
    font-size: 11px;
    font-weight: 500;
    color: #4a7aff;
    letter-spacing: 0.2px;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0b0f1a;
    margin: 0 0 14px 0;
    letter-spacing: -0.01em;
}

.section-title h2 span {
    background: linear-gradient(135deg, #4a7aff 0%, #6d3bff 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0 auto;
}

/* ==========================================
   Slider Container
========================================== */

.services-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

/* -------- Gradient overlays (fade edges) -------- */

.services-slider::before,
.services-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.services-slider::before {
    left: 0;
    background: linear-gradient(90deg, rgba(240, 244, 255, 1) 0%, rgba(240, 244, 255, 0) 100%);
}

.services-slider::after {
    right: 0;
    background: linear-gradient(90deg, rgba(240, 244, 255, 0) 0%, rgba(240, 244, 255, 1) 100%);
}

/* ==========================================
   Track — Infinite Scroll Animation
========================================== */

.services-track {
    display: flex;
    gap: 24px;
    animation: scrollCards 20s linear infinite;
    width: max-content;
}

/* -------- Pause on hover -------- */

.services-slider:hover .services-track {
    animation-play-state: paused;
}

/* -------- Animation keyframes -------- */

@keyframes scrollCards {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================
   Individual Service Card (Icon Version)
========================================== */

.service-card {
    flex: 0 0 220px;
    background: #ffffff;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 20px 16px 16px 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(56, 98, 255, 0.08);
    border-color: rgba(56, 98, 255, 0.10);
}

/* -------- Icon Box (gradient background stays blue) -------- */

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-bottom: 14px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
}

/* -------- Icon — BLACK (changed from white) -------- */

.service-icon i {
    font-size: 22px;
    color: #1e293b;  /* ✅ black/dark colour */
}



/* -------- Card Content -------- */

.service-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0b0f1a;
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
    max-width: 180px;
}

/* ==========================================
   Responsive
========================================== */

/* -------- Tablets (<= 1024px) -------- */

@media (max-width: 1024px) {
    .service-card {
        flex: 0 0 180px;
        padding: 16px 12px 12px 12px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
    }

    .service-icon i {
        font-size: 18px;
    }

    .service-card h3 {
        font-size: 15px;
    }

    .service-card p {
        font-size: 12px;
        max-width: 150px;
    }

    .services-track {
        animation-duration: 16s;
    }

    .services-slider::before,
    .services-slider::after {
        width: 60px;
    }
}

/* -------- Mobile (<= 640px) -------- */

@media (max-width: 640px) {
    .hosting-services {
        padding: 40px 0 40px;
    }

    .section-title {
        margin-bottom: 32px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
    }

    .section-title span {
        font-size: 10px;
        padding: 4px 10px;
    }

    .service-card {
        flex: 0 0 150px;
        padding: 14px 10px 10px 10px;
    }

    .service-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .service-icon i {
        font-size: 16px;
    }

    .service-card h3 {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .service-card p {
        font-size: 11px;
        max-width: 130px;
        line-height: 1.4;
    }

    .services-track {
        gap: 16px;
        animation-duration: 14s;
    }

    .services-slider::before,
    .services-slider::after {
        width: 40px;
    }
}

/* -------- Small phones (<= 400px) -------- */

@media (max-width: 400px) {
    .service-card {
        flex: 0 0 130px;
        padding: 12px 8px 8px 8px;
    }

    .service-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 8px;
    }

    .service-icon i {
        font-size: 14px;
    }

    .service-card h3 {
        font-size: 12px;
    }

    .service-card p {
        font-size: 10px;
        max-width: 110px;
    }

    .services-track {
        gap: 12px;
        animation-duration: 12s;
    }

    .services-slider::before,
    .services-slider::after {
        width: 30px;
    }
}

/* -------- Reduced motion preference -------- */

@media (prefers-reduced-motion: reduce) {
    .services-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        width: 100%;
    }

    .service-card {
        flex: 0 0 calc(33.33% - 16px);
        min-width: 160px;
    }

    .services-slider::before,
    .services-slider::after {
        display: none;
    }

    .services-slider:hover .services-track {
        animation-play-state: running;
    }
}

/* ==========================================
   Hosting Features — Premium Hosting Features
   Light Theme | Blue Accents | 5px Radius
========================================== */

.hosting-features {
    position: relative;
    padding: 60px 0 60px;
    background: #ffffff; /* white to contrast with marquee section */
    overflow: hidden;
}

/* -------- Container -------- */

.hosting-features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ==========================================
   Section Title
========================================== */

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 44px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 98, 255, 0.08);
    border: 1px solid rgba(56, 98, 255, 0.12);
    border-radius: 5px;
    padding: 5px 14px 5px 12px;
    font-size: 11px;
    font-weight: 500;
    color: #4a7aff;
    letter-spacing: 0.2px;
    margin-bottom: 12px;
}

.section-badge i {
    font-size: 11px;
    color: #4a7aff;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0b0f1a;
    margin: 0 0 14px 0;
    letter-spacing: -0.01em;
}

.section-title h2 span {
    background: linear-gradient(135deg, #4a7aff 0%, #6d3bff 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0 auto;
}

/* ==========================================
   Features Grid (3 columns on desktop)
========================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ==========================================
   Individual Feature Card
========================================== */

.feature-card {
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 5px;
    padding: 24px 20px 20px 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card:hover {
    background: #ffffff;
    border-color: rgba(56, 98, 255, 0.10);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

/* -------- Feature Icon -------- */

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4a7aff 0%, #6d3bff 100%);
    border-radius: 5px;
    margin-bottom: 14px;
    box-shadow: 0 6px 20px rgba(56, 98, 255, 0.20);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 20px;
    color: #ffffff;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 10px 28px rgba(56, 98, 255, 0.30);
}

/* -------- Card Content -------- */

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0b0f1a;
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* ==========================================
   Responsive
========================================== */

/* -------- Tablets (<= 1024px) -------- */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* -------- Mobile (<= 640px) -------- */

@media (max-width: 640px) {
    .hosting-features {
        padding: 40px 0 40px;
    }

    .section-title {
        margin-bottom: 32px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
    }

    .section-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .section-badge i {
        font-size: 10px;
    }

    .features-grid {
        grid-template-columns: 1fr; /* ✅ single column on mobile for readability */
        gap: 14px;
        max-width: 400px;
        margin: 0 auto;
    }

    .feature-card {
        padding: 18px 16px 16px 16px;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin-bottom: 0;
    }

    .feature-icon i {
        font-size: 16px;
    }

    .feature-card h3 {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .feature-card p {
        font-size: 12px;
        line-height: 1.5;
    }

    .feature-card .feature-text {
        display: flex;
        flex-direction: column;
    }

    .feature-card:hover .feature-icon {
        transform: scale(1.05) rotate(-2deg);
    }
}

/* -------- Small phones (<= 400px) -------- */

@media (max-width: 400px) {
    .hosting-features {
        padding: 30px 0 30px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .section-title p {
        font-size: 13px;
    }

    .feature-card {
        padding: 14px 12px 12px 12px;
        gap: 12px;
    }

    .feature-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .feature-icon i {
        font-size: 14px;
    }

    .feature-card h3 {
        font-size: 13px;
    }

    .feature-card p {
        font-size: 11px;
    }
}

/* -------- Reduced motion preference -------- */

@media (prefers-reduced-motion: reduce) {
    .feature-card {
        transition: none;
    }

    .feature-card:hover {
        transform: none;
    }

    .feature-card:hover .feature-icon {
        transform: none;
    }
}

/* ==========================================
   Managed Hosting Plans — Pricing Section
   Light Theme | Blue Accents | 5px Radius
========================================== */

.hosting-plans {
    position: relative;
    padding: 60px 0 60px;
    background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 50%, #eef2ff 100%);
    overflow: hidden;
}

/* -------- Container -------- */

.hosting-plans .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ==========================================
   Section Title
========================================== */

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 44px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 98, 255, 0.08);
    border: 1px solid rgba(56, 98, 255, 0.12);
    border-radius: 5px;
    padding: 5px 14px 5px 12px;
    font-size: 11px;
    font-weight: 500;
    color: #4a7aff;
    letter-spacing: 0.2px;
    margin-bottom: 12px;
}

.section-badge i {
    font-size: 11px;
    color: #4a7aff;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0b0f1a;
    margin: 0 0 14px 0;
    letter-spacing: -0.01em;
}

.section-title h2 span {
    background: linear-gradient(135deg, #4a7aff 0%, #6d3bff 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0 auto;
}

/* ==========================================
   Pricing Grid (3 columns)
========================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* ==========================================
   Individual Pricing Card
========================================== */

.pricing-card {
    background: #ffffff;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 28px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(56, 98, 255, 0.06);
    border-color: rgba(56, 98, 255, 0.10);
}

/* -------- Featured Card (Business / Most Popular) -------- */

.pricing-card.featured {
    border: 2px solid #4a7aff;
    box-shadow: 0 8px 30px rgba(56, 98, 255, 0.10);
    background: #ffffff;
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 16px 48px rgba(56, 98, 255, 0.15);
}

/* -------- Plan Tag -------- */

.plan-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #4a7aff;
    padding: 4px 14px;
    border-radius: 5px;
    background: rgba(56, 98, 255, 0.08);
    align-self: flex-start;
    margin-bottom: 10px;
}

.pricing-card.featured .plan-tag {
    background: rgba(56, 98, 255, 0.12);
    color: #4a7aff;
}

/* -------- Popular Badge (floating corner) -------- */

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #4a7aff 0%, #6d3bff 100%);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 5px;
    box-shadow: 0 4px 16px rgba(56, 98, 255, 0.25);
}

/* -------- Card Heading -------- */

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0b0f1a;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
}

.pricing-card.featured h3 {
    color: #4a7aff;
}

/* -------- Price Box -------- */

.price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

.price .currency {
    font-size: 20px;
    font-weight: 600;
    color: #0b0f1a;
}

.price .amount {
    font-size: 38px;
    font-weight: 700;
    color: #0b0f1a;
    letter-spacing: -0.02em;
    line-height: 1;
}

.price .duration {
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
    margin-left: 2px;
}

.pricing-card.featured .price .currency,
.pricing-card.featured .price .amount {
    color: #4a7aff;
}

.pricing-card.featured .price .duration {
    color: #94a3b8;
}

/* Enterprise "Custom" pricing */
.pricing-card:last-child .price .currency {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #4a7aff 0%, #a855f7 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* -------- Plan Description -------- */

.plan-description {
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
    margin: 0 0 18px 0;
    min-height: 42px;
}

/* -------- Feature List -------- */

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-card ul li {
    font-size: 14px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.pricing-card ul li i {
    color: #4a7aff;
    font-size: 14px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.pricing-card.featured ul li i {
    color: #4a7aff;
}

/* -------- Pricing Button -------- */

.plan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    width: 100%;
    background: rgba(56, 98, 255, 0.06);
    color: #4a7aff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
    text-align: center;
}

.plan-btn:hover {
    background: rgba(56, 98, 255, 0.10);
    transform: translateY(-2px);
}

.pricing-card.featured .plan-btn {
    background: linear-gradient(135deg, #4a7aff 0%, #6d3bff 100%);
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(56, 98, 255, 0.25);
}

.pricing-card.featured .plan-btn:hover {
    box-shadow: 0 10px 36px rgba(56, 98, 255, 0.35);
    transform: translateY(-2px);
}

/* ==========================================
   Responsive
========================================== */

/* -------- Tablets (<= 1024px) -------- */

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* Featured card spans full width for prominence */
    .pricing-card.featured {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .popular-badge {
        right: 20px;
        top: -10px;
    }

    .pricing-card:last-child .price .currency {
        font-size: 24px;
    }
}

/* -------- Mobile (<= 640px) -------- */

@media (max-width: 640px) {
    .hosting-plans {
        padding: 40px 0 40px;
    }

    .section-title {
        margin-bottom: 32px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
    }

    .section-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .section-badge i {
        font-size: 10px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card {
        padding: 22px 18px 18px 18px;
    }

    .pricing-card.featured {
        grid-column: auto;
        transform: scale(1);
        max-width: 100%;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .pricing-card h3 {
        font-size: 20px;
    }

    .price .amount {
        font-size: 32px;
    }

    .price .currency {
        font-size: 18px;
    }

    .price .duration {
        font-size: 14px;
    }

    .pricing-card:last-child .price .currency {
        font-size: 22px;
    }

    .plan-description {
        font-size: 13px;
        min-height: auto;
    }

    .pricing-card ul li {
        font-size: 13px;
    }

    .plan-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .popular-badge {
        right: 14px;
        top: -10px;
        font-size: 9px;
        padding: 3px 12px;
    }
}

/* -------- Small phones (<= 400px) -------- */

@media (max-width: 400px) {
    .hosting-plans {
        padding: 30px 0 30px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .section-title p {
        font-size: 13px;
    }

    .pricing-card {
        padding: 18px 14px 14px 14px;
    }

    .pricing-card h3 {
        font-size: 18px;
    }

    .price .amount {
        font-size: 28px;
    }

    .price .currency {
        font-size: 16px;
    }

    .price .duration {
        font-size: 12px;
    }

    .pricing-card:last-child .price .currency {
        font-size: 18px;
    }

    .pricing-card ul {
        gap: 8px;
    }

    .pricing-card ul li {
        font-size: 12px;
    }

    .plan-btn {
        font-size: 13px;
        padding: 8px 16px;
    }

    .popular-badge {
        right: 10px;
        top: -8px;
        font-size: 8px;
        padding: 2px 10px;
    }

    .plan-description {
        font-size: 12px;
    }
}

/* -------- Reduced motion preference -------- */

@media (prefers-reduced-motion: reduce) {
    .pricing-card {
        transition: none;
    }

    .pricing-card:hover {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: none;
    }

    .plan-btn {
        transition: none;
    }

    .plan-btn:hover {
        transform: none;
    }
}

