.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
    linear-gradient(135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.2) 100%),
    url('../../assets/images/textile.jpeg') center / cover no-repeat;
}

.hero .hero-inner {
    text-align: center;
    padding: 120px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero .hero-tagline {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D1E3FF;
    margin-bottom: 12px;
}

.hero .hero-h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 20px;
    max-width: 860px;
}

.hero .hero-subheading {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #E6F0FF;
    margin-bottom: 14px;
    max-width: 680px;
}

.hero .hero-supporting {
    font-size: 16px;
    font-weight: 400;
    color: #BFD8FF;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 580px;
}

.hero .hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero .hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    background: var(--blue);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s, transform .2s;
}

.hero .hero-btn-primary:hover {
    background: var(--blue-mid);
    transform: translateY(-2px);
}

.hero .hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    background: transparent;
    padding: 12px 28px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: background .2s, transform .2s;
}

.hero .hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero .hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.hero .hero-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.hero .hero-feature-item:last-child {
    border-right: none;
}

.hero .hero-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.hero .hero-feature-item span {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .hero .hero-h1 {
        font-size: 38px;
    }

    .hero .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero .hero-feature-item:nth-child(2) {
        border-right: none;
    }

    .hero .hero-feature-item:nth-child(1),
    .hero .hero-feature-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
}

@media (max-width: 575px) {
    .hero .hero-h1 {
        font-size: 28px;
    }

    .hero .hero-inner {
        padding: 80px 0 0;
    }

    .hero .hero-subheading {
        font-size: 15px;
    }

    .hero .hero-features {
        grid-template-columns: 1fr;
    }

    .hero .hero-feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .hero .hero-feature-item:last-child {
        border-bottom: none;
    }

    .hero .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}







/* ── CLOUD OVERVIEW – scoped under .cov-section ─────
   Requires: Bootstrap Icons, Manrope + Source Sans 3
   and your existing :root CSS variables.
   ─────────────────────────────────────────────────── */

.cov-section {
    padding: 88px 0;
    background: var(--white);
}

.cov-section .cov-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}


.cov-section .cov-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r-lg);
    display: block;
}


.cov-section .cov-heading {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 18px;
}

.cov-section .cov-desc {
    font-size: .95rem;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 28px;
}

.cov-section .cov-cta-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--blue-pale);
    border-left: 3px solid var(--blue);
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin-bottom: 28px;
}

.cov-section .cov-cta-text i {
    font-size: 1.1rem;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.cov-section .cov-cta-text p {
    font-family: 'Manrope', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.55;
}

.cov-section .cov-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cov-section .cov-right-label {
    font-family: 'Manrope', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.cov-section .cov-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cov-section .cov-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    position: relative;
    overflow: hidden;
    transition: box-shadow .22s, transform .22s, border-color .22s, background .22s;
}

.cov-section .cov-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--blue), var(--blue-mid));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .25s ease;
    border-radius: 3px 0 0 3px;
}

.cov-section .cov-item:hover {
    box-shadow: var(--sh-md);
    transform: translateX(4px);
    border-color: transparent;
    background: var(--white);
}

.cov-section .cov-item:hover::before {
    transform: scaleY(1);
}

.cov-section .cov-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: background .22s, color .22s;
}

.cov-section .cov-item-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.cov-section .cov-item:hover .cov-item-icon {
    background: var(--blue);
    color: var(--white);
}

.cov-section .cov-item-body h6 {
    font-family: 'Manrope', sans-serif;
    font-size: .9rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 4px;
    line-height: 1.3;
}

.cov-section .cov-item-body p {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 991px) {
    .cov-section .cov-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 575px) {
    .cov-section {
        padding: 56px 0;
    }

    .cov-section .cov-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}






/* ── CLOUD SOLUTIONS – scoped under .ccs-section ────
   Requires: Bootstrap Icons, Manrope + Source Sans 3
   and your existing :root CSS variables.
   ─────────────────────────────────────────────────── */

.ccs-section {
    padding: 88px 0;
    background: var(--bg);
}

.ccs-section .ccs-header {
    margin-bottom: 48px;
}

.ccs-section .ccs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ccs-section .ccs-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 28px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}

.ccs-section .ccs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-mid));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.ccs-section .ccs-card:hover {
    box-shadow: var(--sh-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.ccs-section .ccs-card:hover::before {
    transform: scaleX(1);
}

.ccs-section .ccs-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: background .25s, color .25s;
}

.ccs-section .ccs-card-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.ccs-section .ccs-card:hover .ccs-card-icon {
    background: var(--blue);
    color: var(--white);
}

.ccs-section .ccs-card-body {
    flex: 1;
}

.ccs-section .ccs-card-body h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.ccs-section .ccs-card-body p {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

.ccs-section .ccs-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: .83rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    transition: gap .18s, color .18s;
}

.ccs-section .ccs-link:hover {
    gap: 10px;
    color: var(--blue-mid);
}

@media (max-width: 1199px) {
    .ccs-section .ccs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .ccs-section {
        padding: 56px 0;
    }

    .ccs-section .ccs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 575px) {
    .ccs-section .ccs-card {
        padding: 26px 22px 22px;
    }
}





/* ── CLOUD BENEFITS – scoped under .ccb-section ─────
   Requires: Bootstrap Icons, Manrope + Source Sans 3
   and your existing :root CSS variables.
   ─────────────────────────────────────────────────── */

.ccb-section {
    padding: 88px 0;
    background: var(--white);
}

.ccb-section .ccb-header {
    margin-bottom: 48px;
}

.ccb-section .ccb-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.ccb-section .ccb-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ccb-section .ccb-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    position: relative;
    overflow: hidden;
    transition: box-shadow .22s, transform .22s, background .22s, border-color .22s;
}

.ccb-section .ccb-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--blue), var(--blue-mid));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .25s ease;
    border-radius: 3px 0 0 3px;
}

.ccb-section .ccb-item:hover {
    background: var(--white);
    box-shadow: var(--sh-md);
    transform: translateX(4px);
    border-color: transparent;
}

.ccb-section .ccb-item:hover::before {
    transform: scaleY(1);
}

.ccb-section .ccb-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: background .22s, color .22s;
}

.ccb-section .ccb-item-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.ccb-section .ccb-item:hover .ccb-item-icon {
    background: var(--blue);
    color: var(--white);
}

.ccb-section .ccb-item-body h5 {
    font-family: 'Manrope', sans-serif;
    font-size: .95rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.ccb-section .ccb-item-body p {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.ccb-section .ccb-cta-card {
    background: linear-gradient(140deg, #001e4a 0%, #004a99 60%, #0061c2 100%);
    border-radius: var(--r-lg);
    padding: 40px 32px;
    position: sticky;
    top: 88px;
    overflow: hidden;
}

.ccb-section .ccb-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.ccb-section .ccb-cta-card::after {
    content: '\F62A';
    font-family: 'Bootstrap-icons';
    position: absolute;
    bottom: -24px;
    right: -10px;
    font-size: 10rem;
    color: rgba(255, 255, 255, .04);
    line-height: 1;
    pointer-events: none;
}

.ccb-section .ccb-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ccb-section .ccb-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 24px;
}

.ccb-section .ccb-cta-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.ccb-section .ccb-cta-inner h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 14px;
}

.ccb-section .ccb-cta-inner p {
    font-size: .875rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 300;
}

.ccb-section .ccb-cta-inner .btn-white {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
}

.ccb-section .ccb-cta-inner .btn-outline-white {
    width: 100%;
    justify-content: center;
}

@media (max-width: 1199px) {
    .ccb-section .ccb-layout {
        grid-template-columns: 1fr 320px;
    }
}

@media (max-width: 991px) {
    .ccb-section .ccb-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ccb-section .ccb-cta-card {
        position: static;
    }
}

@media (max-width: 767px) {
    .ccb-section {
        padding: 56px 0;
    }
}

@media (max-width: 575px) {
    .ccb-section .ccb-item {
        padding: 18px;
    }

    .ccb-section .ccb-cta-card {
        padding: 30px 24px;
    }
}





.tst-section {
    padding: 88px 0;
    background: var(--bg);
}

.tst-section .tst-wrap {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 56px 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--sh-md);
    position: relative;
    overflow: hidden;
}

.tst-section .tst-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--blue), var(--blue-mid));
    border-radius: 4px 0 0 4px;
}

.tst-section .tst-wrap::after {
    content: '\F6B0';
    font-family: 'Bootstrap-icons';
    position: absolute;
    bottom: -20px;
    right: 24px;
    font-size: 11rem;
    color: var(--blue-light);
    line-height: 1;
    pointer-events: none;
    opacity: .6;
}

.tst-section .tst-quote-mark {
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 18px;
    color: var(--blue);
    opacity: .25;
    position: relative;
    z-index: 2;
}

.tst-section .tst-quote {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.75;
    font-style: normal;
    border: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.tst-section .tst-divider {
    width: 48px;
    height: 2px;
    background: var(--blue-light);
    border-radius: 2px;
    margin: 32px 0;
    position: relative;
    z-index: 2;
}

.tst-section .tst-author {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.tst-section .tst-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: .85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tst-section .tst-author-info {
    flex: 1;
    min-width: 0;
}

.tst-section .tst-author-info strong {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: .92rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2px;
}

.tst-section .tst-author-info span {
    font-size: .78rem;
    color: var(--muted);
}

.tst-section .tst-stars {
    display: flex;
    gap: 3px;
    margin-left: auto;
}

.tst-section .tst-stars i {
    font-size: .88rem;
    color: #f59e0b;
}

@media (max-width: 767px) {
    .tst-section .tst-wrap {
        padding: 40px 32px;
    }

    .tst-section .tst-quote {
        font-size: 1.05rem;
    }
}

@media (max-width: 575px) {
    .tst-section {
        padding: 56px 0;
    }

    .tst-section .tst-wrap {
        padding: 32px 24px;
    }

    .tst-section .tst-quote {
        font-size: .97rem;
    }

    .tst-section .tst-stars {
        margin-left: 0;
    }
}