﻿/* ================= CLOUD STORAGE ================= */

.storage-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    font-family: "Poppins", sans-serif;
}

/* HERO */
.storage-hero {
    background: linear-gradient(135deg, rgba(0,35,75,0.85), rgba(0,120,200,0.55));
    padding: 120px 0;
    height: 600px;
}

.storage-badge {
    background: rgba(255,255,255,0.15);
    padding: 6px 18px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
}

.storage-hero h1 {
    color: white;
    font-size: 44px;
    margin-bottom: 14px;
    margin-top: 80px;
}

.storage-hero p {
    color: white;
    max-width: 650px;
    font-size: 18px;
}

.storage-btn-primary,
.storage-btn-secondary {
    margin-top: 28px;
    display: inline-block;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
}

.storage-btn-primary {
    background: #fff;
    color: #0f4c81;
}

.storage-btn-secondary {
    background: #0f4c81;
    color: #fff;
}

@media (max-width: 1024px) {
    .storage-hero {
        height: auto;
        padding: 90px 0;
    }

        .storage-hero h1 {
            margin-top: 40px;
            font-size: 38px;
        }
}

@media (max-width: 768px) {
    .storage-hero {
        padding: 70px 0;
    }

        .storage-hero h1 {
            font-size: 30px;
            margin-top: 20px;
        }

        .storage-hero p {
            font-size: 16px;
        }
}


/* ================= CLOUD STORAGE - ABOUT ================= */

.storage-about {
    padding: 100px 0;
}

.storage-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

/* LEFT CONTENT */
.storage-about-content h2 {
    font-size: 35px;
    color: black;
    margin-bottom: 16px;
}

.storage-intro {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 14px;
    color: #333;
}

.storage-about-content p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 14px;
}

/* RIGHT BOX */
.storage-about-box {
    background: #ffffff;
    padding: 36px;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

    .storage-about-box h4 {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .storage-about-box ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .storage-about-box li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 15px;
        margin-bottom: 14px;
        color: #333;
    }

        .storage-about-box li i {
            font-size: 20px;
            color: #1e88e5;
        }

/* RESPONSIVE */
@media (max-width: 768px) {
    .storage-about-content h2 {
        font-size: 28px;
    }

    .storage-intro {
        font-size: 16px;
    }

    .storage-about-box {
        padding: 28px 22px;
    }
}



/* WHY */
.storage-why {
    margin-top: -80px;
    padding: 90px 0;
}

.storage-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 30px;
}

.storage-card {
    background: #fff;
    padding: 34px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

    .storage-card i {
        font-size: 34px;
        color: #1e88e5;
        margin-bottom: 12px;
    }

@media (max-width: 768px) {
    .storage-why {
        margin-top: 0;
        padding: 70px 0;
    }

    .storage-card {
        padding: 28px 22px;
    }
}


/* ================= TYPES OF CLOUD STORAGE ================= */

.storage-types {
    padding: 100px 0;
    background: linear-gradient(180deg, #f5f9fd 0%, #ffffff 100%);
}

.storage-type-list {
    max-width: 900px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Individual row */
.storage-type-item {
    display: flex;
    gap: 24px;
    padding: 28px 30px;
    background: #ffffff;
    border-radius: 22px;
    border-left: 6px solid #1e88e5;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .storage-type-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 28px 55px rgba(0,0,0,0.12);
    }

/* Icon */
.type-icon {
    min-width: 56px;
    height: 56px;
    background: #eef4ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .type-icon i {
        font-size: 26px;
        color: #1e88e5;
    }

/* Content */
.type-content h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.type-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 600px) {
    .storage-type-item {
        padding: 24px 22px;
        gap: 18px;
    }

    .type-content h4 {
        font-size: 16px;
    }

    .type-content p {
        font-size: 14.5px;
    }
}

/* ================= STORAGE FEATURES – SPECTRUM ================= */

.storage-features.spectrum {
    padding: 120px 0;
    background: radial-gradient(circle at 20% 30%, rgba(30,136,229,0.06), transparent 40%), radial-gradient(circle at 80% 70%, rgba(66,165,245,0.06), transparent 40%), #ffffff;
}

/* HEADER */
.storage-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 90px;
}

    .storage-section-header h2 {
        font-size: 42px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 12px;
    }

    .storage-section-header p {
        font-size: 18px;
        color: #64748b;
    }

/* SPECTRUM */
.feature-spectrum {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 60px;
    column-gap: 80px;
    position: relative;
}

/* ITEM */
.spectrum-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    font-weight: 500;
    color: #0f172a;
    position: relative;
}

    /* ICON */
    .spectrum-item i {
        font-size: 22px;
        color: #1e88e5;
    }

    /* TYPOGRAPHIC LINE */
    .spectrum-item::before {
        content: "";
        position: absolute;
        left: -40px;
        width: 24px;
        height: 2px;
        background: linear-gradient( 90deg, rgba(30,136,229,0.6), rgba(30,136,229,0) );
    }

    /* SUBTLE HOVER */
    .spectrum-item:hover {
        color: #1e88e5;
    }

        .spectrum-item:hover i {
            transform: scale(1.15);
            transition: 0.25s ease;
        }

/* RESPONSIVE */
@media (max-width: 992px) {
    .feature-spectrum {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 50px;
    }
}

@media (max-width: 576px) {
    .feature-spectrum {
        grid-template-columns: 1fr;
    }

    .storage-section-header h2 {
        font-size: 32px;
    }

    .spectrum-item::before {
        display: none;
    }
}



/* ================= SECURITY & DATA PROTECTION ================= */

.storage-security {
    /*    margin-left:160px;*/
    padding: 100px 0;
    margin-top: -60px;
}

.storage-security-grid {
    margin-left: 160px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

/* Left content */
.storage-security-content h2 {
    color: black;
    font-size: 35px;
    margin-bottom: 14px;
}

.storage-security-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    max-width: 520px;
}

/* Right list – NO BOX */
.storage-security-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .storage-security-list li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 16px;
        font-size: 15.5px;
        line-height: 1.6;
    }

        .storage-security-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0;
            color: #7dd3fc;
            font-weight: 600;
        }

@media (max-width: 1024px) {
    .storage-security {
        margin-left: -130px;
        padding: 80px 0;
    }
    .storage-security-list {
        margin-top:-100px;
    }
}

@media (max-width: 768px) {
    .storage-security-content h2 {
        font-size: 28px;
    }

    .storage-security-content p {
        max-width: 100%;
        font-size: 15.5px;
    }
}


/* ================= STORAGE SERVICES – TIMELINE ================= */

.storage-services.timeline {
    padding: 130px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

/* HEADER */
.storage-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 100px;
}

    .storage-section-header h2 {
        font-size: 42px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 12px;
    }

    .storage-section-header p {
        font-size: 18px;
        color: #64748b;
    }

/* TIMELINE */
.storage-timeline {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

    /* CONNECTING LINE */
    .storage-timeline::before {
        content: "";
        position: absolute;
        top: 36px;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient( 90deg, rgba(30,136,229,0.2), rgba(30,136,229,0.6), rgba(30,136,229,0.2) );
    }

/* STEP */
.timeline-step {
    width: 18%;
    text-align: center;
    position: relative;
}

/* ICON MARKER */
.step-marker {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: conic-gradient(#1e88e5 0deg, #1e88e5 270deg, #e6eef8 270deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    position: relative;
    z-index: 2;
}

    .step-marker::after {
        content: "";
        position: absolute;
        width: 62px;
        height: 62px;
        background: #ffffff;
        border-radius: 50%;
        z-index: -1;
    }

    .step-marker i {
        font-size: 26px;
        color: #1e88e5;
    }

/* HOVER */
.timeline-step:hover .step-marker {
    transform: scale(1.1) rotate(6deg);
    transition: 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .storage-timeline {
        flex-direction: column;
        gap: 60px;
    }

        .storage-timeline::before {
            display: none;
        }

    .timeline-step {
        width: 100%;
        text-align: left;
        display: flex;
        gap: 24px;
        align-items: flex-start;
    }

    .step-number {
        margin-bottom: 0;
    }
}




/* ================= WHY CHOOSE LEXERON CLOUD STORAGE ================= */

.storage-why-lexeron {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
    text-align: center;
}

    .storage-why-lexeron .storage-section-header p {
        max-width: 720px;
        margin: 0 auto;
        color: #555;
    }

/* Grid */
.storage-lexeron-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 28px;
    margin-top: 55px;
}

/* Card */
.storage-lexeron-card {
    background: #ffffff;
    padding: 34px 26px;
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .storage-lexeron-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 26px 55px rgba(0,0,0,0.12);
    }

    .storage-lexeron-card i {
        font-size: 34px;
        color: #1e88e5;
        margin-bottom: 14px;
    }

    .storage-lexeron-card h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .storage-lexeron-card p {
        font-size: 14.5px;
        line-height: 1.6;
        color: #555;
    }

/* Top row */
.storage-lexeron-grid .storage-lexeron-card:nth-child(1) {
    grid-column: 1 / span 2;
}

.storage-lexeron-grid .storage-lexeron-card:nth-child(2) {
    grid-column: 3 / span 2;
}

.storage-lexeron-grid .storage-lexeron-card:nth-child(3) {
    grid-column: 5 / span 2;
}

/* Bottom row (centered between top cards) */
.storage-lexeron-grid .storage-lexeron-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.storage-lexeron-grid .storage-lexeron-card:nth-child(5) {
    grid-column: 4 / span 2;
}

/* Responsive */
@media (max-width: 1024px) {
    .storage-lexeron-grid {
        grid-template-columns: repeat(2, 1fr);
    }

        .storage-lexeron-grid .storage-lexeron-card {
            grid-column: auto !important;
        }
}

@media (max-width: 600px) {
    .storage-why-lexeron {
        padding: 70px 0;
    }

    .storage-lexeron-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .storage-lexeron-card {
        padding: 26px 22px;
    }
}



/* ================= 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 */
.storage-section-header {
    font-size: 25px;
    color: black;
    text-align: center;
    margin-bottom: 50px;
}

    .storage-section-header p {
        font-size: 17px;
        color: #555;
    }

    .storage-section-header.light {
        color: #fff;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .storage-about-grid,
    .storage-security-grid {
        grid-template-columns: 1fr;
    }

    .storage-hero h1 {
        font-size: 34px;
    }
}
