﻿/* ================= CLOUD SERVER ================= */

.cloud-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    font-family: "Poppins", sans-serif;
}

/* HERO */
.cloud-hero {
    background: linear-gradient(135deg, rgba(0,35,75,0.85), rgba(0,120,200,0.55));
    padding: 120px 0;
    height: 600px;
}

.cloud-badge {
    background: rgba(255,255,255,0.15);
    padding: 6px 18px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
}

.cloud-hero h2 {
    margin-top:10px;
    color: #fff;
    font-size: 44px;
    margin-bottom: 14px;
    margin-top: 80px;
}

.cloud-hero p {
    color: #fff;
    max-width: 650px;
    font-size: 18px;
}

.cloud-btn-primary,
.cloud-btn-secondary {
    margin-top: 28px;
    display: inline-block;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
}

.cloud-btn-primary {
    background: #fff;
    color: #0f4c81;
}

.cloud-btn-secondary {
    background: #0f4c81;
    color: #fff;
}

/* ================= WHAT IS CLOUD SERVER ================= */

.cloud-about {
    padding: 100px 0;
}

.cloud-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

/* LEFT CONTENT */
.cloud-about-content h2 {
    color: black;
    font-size: 34px;
    margin-bottom: 14px;
}

.cloud-about-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.cloud-section-tag {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #1e88e5;
}

.cloud-about-highlight {
    margin-top: 20px;
    padding-left: 18px;
    border-left: 4px solid #1e88e5;
    font-size: 16px;
    color: #333;
    background: rgba(30,136,229,0.05);
    padding: 14px 18px;
    border-radius: 8px;
}

/* RIGHT CARD */
.cloud-about-card {
    background: #ffffff;
    padding: 34px;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

    .cloud-about-card h4 {
        font-size: 18px;
        margin-bottom: 18px;
        color: #0f4c81;
    }

    .cloud-about-card ul {
        list-style: none;
        padding: 0;
    }

    .cloud-about-card li {
        font-size: 15.5px;
        margin-bottom: 12px;
        color: #444;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .cloud-about-grid {
        grid-template-columns: 1fr;
    }

    .cloud-about-content h2 {
        font-size: 28px;
    }
}


/* WHY CLOUD */
.cloud-why {
    padding: 120px 0;
    background: radial-gradient(circle at 25% 30%, rgba(30,136,229,0.08), transparent 45%), radial-gradient(circle at 75% 70%, rgba(66,165,245,0.08), transparent 45%), #f8fafc;
}

/* HEADER */
.cloud-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 90px;
}

    .cloud-section-header h2 {
        font-size: 42px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 14px;
    }

    .cloud-section-header p {
        font-size: 18px;
        color: #64748b;
    }

/* PATH */
.cloud-path {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

    /* CONNECTING LINE */
    .cloud-path::before {
        content: "";
        position: absolute;
        top: 34px;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient( 90deg, transparent, rgba(30,136,229,0.5), transparent );
    }

/* STEP */
.cloud-step {
    text-align: center;
    position: relative;
}

/* NODE */
.cloud-node {
    width: 68px;
    height: 68px;
    margin: 0 auto 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e88e5, #42a5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 45px rgba(30,136,229,0.35);
    transition: transform 0.4s ease;
    z-index: 2;
    position: relative;
}

    .cloud-node i {
        font-size: 30px;
        color: #fff;
    }

/* TEXT */
.cloud-step h4 {
    font-size: 21px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.cloud-step p {
    font-size: 15.5px;
    color: #64748b;
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

/* HOVER */
.cloud-step:hover .cloud-node {
    transform: translateY(-10px) scale(1.12);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .cloud-path {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }

        .cloud-path::before {
            display: none;
        }
}

@media (max-width: 576px) {
    .cloud-path {
        grid-template-columns: 1fr;
    }

    .cloud-section-header h2 {
        font-size: 32px;
    }
}




/* ================= CLOUD DEPLOYMENT MODELS ================= */

.cloud-deployment {
    padding: 100px 0;
}

.cloud-deploy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 30px;
}

.deploy-card {
    background: #ffffff;
    padding: 36px 30px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .deploy-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 26px 55px rgba(0,0,0,0.12);
    }

    .deploy-card i {
        font-size: 36px;
        color: #1e88e5;
        margin-bottom: 14px;
    }

    .deploy-card h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .deploy-card p {
        font-size: 15.5px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 16px;
    }

.deploy-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #1e88e5;
    background: rgba(30,136,229,0.08);
    padding: 6px 14px;
    border-radius: 20px;
}

/* ================= CLOUD FEATURES ================= */

.cloud-features {
    padding: 120px 0;
    background: radial-gradient(circle at 30% 20%, rgba(30,136,229,0.06), transparent 40%), #f8fafc;
}

/* HEADER */
.cloud-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 90px;
}

    .cloud-section-header h2 {
        font-size: 42px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 12px;
    }

    .cloud-section-header p {
        font-size: 18px;
        color: #64748b;
    }

/* HORIZONTAL RAIL */
.features-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-top: 40px;
}

    /* TOP ACCENT LINE */
    .features-horizontal::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient( 90deg, rgba(30,136,229,0.15), rgba(30,136,229,0.6), rgba(30,136,229,0.15) );
        border-radius: 2px;
    }

/* FEATURE ITEM */
.feature-item {
    position: relative;
    padding-top: 10px;
    transition: transform 0.3s ease;
}

    /* ICON */
    .feature-item i {
        font-size: 30px;
        color: #1e88e5;
        margin-bottom: 14px;
        display: inline-block;
    }

    /* TEXT */
    .feature-item h4 {
        font-size: 20px;
        font-weight: 600;
        color: #0f172a;
        margin-bottom: 6px;
    }

    .feature-item p {
        font-size: 15.5px;
        color: #64748b;
        line-height: 1.6;
        max-width: 320px;
    }

    /* HOVER POLISH */
    .feature-item:hover {
        transform: translateY(-6px);
    }

/* RESPONSIVE */
@media (max-width: 992px) {
    .features-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .features-horizontal {
        grid-template-columns: 1fr;
    }

    .cloud-section-header h2 {
        font-size: 32px;
    }
}




/* ================= SECURITY & COMPLIANCE ================= */

.cloud-security {
    padding: 100px 0;
    background: linear-gradient(180deg, #f5f9fd 0%, #ffffff 100%);
}

.cloud-security-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.cloud-security-content h2 {
    font-size: 35px;
    color: black;
    margin-bottom: 14px;
}

.cloud-security-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.cloud-section-tag {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #1e88e5;
}

/* Security cards */
.cloud-security-cards {
    display: grid;
    gap: 18px;
}

.security-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

    .security-card i {
        font-size: 24px;
        color: #1e88e5;
        margin-top: 4px;
    }

    .security-card h4 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .security-card p {
        font-size: 14.5px;
        color: #555;
    }


/* ================= OUR CLOUD SERVICES ================= */

.cloud-services {
    margin-top: -80px;
    padding: 100px 0;
    background: linear-gradient(180deg, #f5f9fd 0%, #ffffff 100%);
}

.cloud-services-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 26px;
    margin-top: 50px;
}

.cloud-service-card {
    background: #f9fbff;
    padding: 34px 28px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 14px 35px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .cloud-service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 45px rgba(0,0,0,0.1);
    }

    .cloud-service-card i {
        font-size: 34px;
        color: #1e88e5;
        margin-bottom: 14px;
    }

    .cloud-service-card h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .cloud-service-card p {
        font-size: 14.5px;
        color: #555;
        line-height: 1.6;
    }

/* Top row */
.cloud-services-grid .cloud-service-card:nth-child(1) {
    grid-column: 1 / span 2;
}

.cloud-services-grid .cloud-service-card:nth-child(2) {
    grid-column: 3 / span 2;
}

.cloud-services-grid .cloud-service-card:nth-child(3) {
    grid-column: 5 / span 2;
}

/* Bottom row (centered between top cards) */
.cloud-services-grid .cloud-service-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.cloud-services-grid .cloud-service-card:nth-child(5) {
    grid-column: 4 / span 2;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .cloud-security-grid {
        grid-template-columns: 1fr;
    }

    .cloud-security-content h2 {
        font-size: 28px;
    }
}


/* ================= LEXERON PILLARS ================= */

.lexeron-pillars {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.pillar-list {
    max-width: 900px;
    margin: 80px auto 0;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.pillar-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding-bottom: 26px;
    border-bottom: 1px solid #e5ecf3;
}

    .pillar-item i {
        font-size: 36px;
        color: #1e88e5;
        flex-shrink: 0;
    }

    .pillar-item h4 {
        font-size: 20px;
        margin-bottom: 6px;
        color: #0f172a;
    }

    .pillar-item p {
        font-size: 15.5px;
        color: #555;
        line-height: 1.6;
    }

    /* Subtle hover */
    .pillar-item:hover i {
        transform: scale(1.1);
        transition: 0.3s ease;
    }



/* ================= CTA SECTION ================= */
.cta-section {
    padding: 0 20px;
    background: #ffffff;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #f8fbfd;
    border-radius: 6px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* CTA text */
.cta-text h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #1d1b1b;
}

/* CTA button */
.cta-btn {
    background: #1e88e5;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

    .cta-btn:hover {
        background: #1e88e5;
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(255, 77, 79, 0.25);
    }

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 25px;
    }

    .cta-text h3 {
        font-size: 22px;
    }
}

/* HEADERS */
.cloud-section-header {
    color: black;
    font-size: 25px;
    text-align: center;
    margin-bottom: 50px;
}

    .cloud-section-header p {
        color: #555;
        font-size: 18px;
    }

    .cloud-section-header.light {
        color: #fff;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .cloud-about-grid,
    .cloud-security-grid {
        grid-template-columns: 1fr;
    }

    .cloud-hero h1 {
        font-size: 34px;
    }
}
