/* =============================================
   SKYSERVER – ABOUT PAGE CSS
   Font: Outfit | Brand: #4c66ff
   Theme: Light (#f6f8ff bg)
============================================= */

/* ---- Base ---- */
body {
    background: #f6f8ff;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    color: #0b132b;
}

section {
    position: relative;
}

/* ---- Utility ---- */
.text-blue   { color: #4c66ff; }

/* FAQ section header helpers */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-badge {
    display: inline-block;
    background: rgba(76,102,255,.08);
    color: #4c66ff;
    border: 1px solid rgba(76,102,255,.2);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}
.section-title {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: -.3px;
}
.hero-highlight {
    color: #4c66ff;
    position: relative;
}
.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4c66ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
}
.subtitle-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4c66ff;
    display: inline-block;
    animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
    0%,100% { box-shadow: 0 0 0 0 rgba(76,102,255,.5); }
    50%      { box-shadow: 0 0 0 6px rgba(76,102,255,0); }
}

/* ---- Scroll Reveal ---- */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* stagger children */
[data-reveal] > *:nth-child(1) { transition-delay: .05s; }
[data-reveal] > *:nth-child(2) { transition-delay: .12s; }
[data-reveal] > *:nth-child(3) { transition-delay: .19s; }
[data-reveal] > *:nth-child(4) { transition-delay: .26s; }
[data-reveal] > *:nth-child(5) { transition-delay: .33s; }
[data-reveal] > *:nth-child(6) { transition-delay: .40s; }



/* =============================================
   HERO SECTION
============================================= */

.about-hero {
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 150px 20px 110px;
    background: linear-gradient(180deg, #eef2ff 0%, #f6f8ff 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 10%, rgba(76,102,255,.13), transparent 40%),
        radial-gradient(circle at 20% 90%, rgba(76,102,255,.09), transparent 45%);
}

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(76,102,255,.09) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* Floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: floatOrb 8s ease-in-out infinite;
}
.hero-orb-1 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(76,102,255,.08), transparent 70%);
    top: -100px; right: -80px;
    animation-delay: 0s;
}
.hero-orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(76,102,255,.06), transparent 70%);
    bottom: -60px; left: -60px;
    animation-delay: 3s;
}
.hero-orb-3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(76,102,255,.05), transparent 70%);
    top: 50%; left: 50%;
    animation-delay: 5s;
}
@keyframes floatOrb {
    0%,100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-20px) scale(1.04); }
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    padding: 0 20px;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid rgba(76,102,255,.18);
    color: #4c66ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(76,102,255,.1);
}
.about-tag svg { width: 14px; height: 14px; }

.hero-gradient {
    background: linear-gradient(135deg, #4c66ff 0%, #7b8fff 60%, #4c66ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200%;
    animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
    0%,100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

.about-hero-content h1 {
    font-size: 62px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -2px;
    color: #0b132b;
    max-width: 940px;
    margin: 0 auto 26px;
}

.about-hero-content p {
    max-width: 780px;
    margin: 0 auto 44px;
    font-size: 18px;
    line-height: 1.9;
    color: #5b6475;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-btn {
    height: 60px;
    padding: 0 36px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #4c66ff;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: all .35s ease;
    box-shadow: 0 12px 35px rgba(76,102,255,.25);
    position: relative;
    overflow: hidden;
}
.hero-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
    opacity: 0;
    transition: .35s;
}
.hero-btn:hover { transform: translateY(-6px); box-shadow: 0 22px 45px rgba(76,102,255,.32); }
.hero-btn:hover::before { opacity: 1; }
.hero-btn svg { width: 18px; height: 18px; transition: transform .35s; }
.hero-btn:hover svg { transform: translateX(4px); }

.hero-btn-outline {
    height: 60px;
    padding: 0 36px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #fff;
    color: #25d366;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid rgba(37,211,102,.25);
    transition: all .35s ease;
    box-shadow: 0 4px 16px rgba(37,211,102,.1);
}
.hero-btn-outline:hover {
    transform: translateY(-6px);
    background: #f0fdf4;
    box-shadow: 0 14px 30px rgba(37,211,102,.18);
}

/* Hero trust strip */
.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border: 1px solid rgba(76,102,255,.1);
    border-radius: 60px;
    padding: 14px 28px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(76,102,255,.08);
}
.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    padding: 0 16px;
}
.hero-trust-item svg {
    width: 14px; height: 14px;
    color: #4c66ff;
    flex-shrink: 0;
}
.hero-trust-sep {
    width: 1px;
    height: 20px;
    background: rgba(76,102,255,.15);
}



/* =============================================
   TRUST STRIP (Floating)
============================================= */

.trust-strip {
    width: 86%;
    margin: -56px auto 110px;
    background: #fff;
    border-radius: 32px;
    padding: 38px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 5;
    border: 1px solid rgba(76,102,255,.1);
    box-shadow: 0 20px 50px rgba(76,102,255,.1);
}

.trust-item {
    text-align: center;
    padding: 24px;
    border-radius: 22px;
    transition: all .35s ease;
    cursor: default;
}
.trust-item:hover {
    transform: translateY(-6px);
    background: #f0f4ff;
}
.trust-item h3 {
    font-size: 40px;
    font-weight: 900;
    color: #4c66ff;
    margin-bottom: 10px;
    letter-spacing: -1px;
}
.trust-item h3 span {
    font-size: 28px;
}
.trust-item p {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}



/* =============================================
   WHO WE ARE
============================================= */

.about-company {
    padding: 80px 7% 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.about-left { flex: 1.2; }
.about-right { flex: 1; display: flex; justify-content: flex-end; }

.about-left h2 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 900;
    color: #0b132b;
    margin-bottom: 26px;
    letter-spacing: -.5px;
}
.about-left p {
    font-size: 17px;
    line-height: 1.95;
    color: #5b6475;
    margin-bottom: 18px;
}
.about-left strong { color: #0b132b; }

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    background: #eef2ff;
    border: 1px solid rgba(76,102,255,.14);
    border-radius: 50px;
    color: #3755ff;
    font-size: 14px;
    font-weight: 600;
    transition: all .35s ease;
    cursor: default;
}
.badge:hover {
    transform: translateY(-4px);
    background: #4c66ff;
    color: #fff;
    box-shadow: 0 8px 24px rgba(76,102,255,.2);
}
.badge svg { width: 14px; height: 14px; }

/* Image wrapper with floating cards */
.about-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 560px;
}
.about-img-wrapper img {
    width: 100%;
    border-radius: 32px;
    display: block;
    transition: all .5s ease;
    box-shadow: 0 28px 60px rgba(76,102,255,.15);
}
.about-img-wrapper:hover img {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(76,102,255,.2);
}

.about-award-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: #fff;
    border-radius: 20px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 40px rgba(76,102,255,.16);
    border: 1px solid rgba(76,102,255,.1);
    animation: floatCard 4s ease-in-out infinite;
}
.about-award-card img { width: 48px; height: auto; }
.about-award-card strong { display: block; font-size: 13px; font-weight: 700; color: #0b132b; }
.about-award-card span  { font-size: 11px; color: #64748b; }

.about-rating-pill {
    position: absolute;
    top: 24px;
    right: -24px;
    background: #4c66ff;
    color: #fff;
    border-radius: 50px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 28px rgba(76,102,255,.3);
    animation: floatCard 4s ease-in-out infinite;
    animation-delay: 2s;
}
.about-rating-pill svg { width: 14px; height: 14px; color: #fbbf24; }

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



/* =============================================
   TIMELINE
============================================= */

.our-story { padding: 0 7% 110px; }

.story-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}
.story-header h2 {
    font-size: 46px;
    font-weight: 900;
    color: #0b132b;
    margin: 14px 0 18px;
    letter-spacing: -.5px;
}
.story-header p {
    font-size: 18px;
    line-height: 1.85;
    color: #64748b;
}

.story-timeline {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding-left: 50px;
}
.story-timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #4c66ff 0%, rgba(76,102,255,.1) 100%);
}

.timeline-item {
    position: relative;
    padding: 0 0 56px 46px;
}
.timeline-dot {
    position: absolute;
    left: -18px;
    top: 4px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #4c66ff;
    border: 4px solid #f6f8ff;
    box-shadow: 0 0 0 4px rgba(76,102,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease;
}
.timeline-dot svg { width: 14px; height: 14px; color: #fff; }
.timeline-item:hover .timeline-dot {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 0 0 6px rgba(76,102,255,.15);
}

.timeline-content {
    background: #fff;
    border-radius: 28px;
    padding: 32px;
    border: 1px solid rgba(76,102,255,.08);
    box-shadow: 0 10px 30px rgba(76,102,255,.05);
    transition: all .35s ease;
}
.timeline-item:hover .timeline-content {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(76,102,255,.12);
    border-color: rgba(76,102,255,.18);
}

.timeline-year {
    display: inline-block;
    background: #eef2ff;
    color: #4c66ff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    letter-spacing: .5px;
}
.timeline-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0b132b;
    margin-bottom: 12px;
}
.timeline-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #64748b;
}



/* =============================================
   SERVICES (FLIP CARDS)
============================================= */

.services-section { padding: 0 7% 110px; }

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}
.services-header h2 {
    font-size: 46px;
    font-weight: 900;
    color: #0b132b;
    margin: 14px 0 18px;
    letter-spacing: -.5px;
}
.services-header p {
    font-size: 18px;
    line-height: 1.85;
    color: #64748b;
}

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

.service-card {
    height: 240px;
    perspective: 1200px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}
.service-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform .55s cubic-bezier(.45,.05,.55,.95);
}
.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-front,
.service-back {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    padding: 32px;
    border: 1px solid rgba(76,102,255,.1);
    box-shadow: 0 10px 30px rgba(76,102,255,.06);
}

.service-front {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    flex-shrink: 0;
}
.service-icon svg { width: 24px; height: 24px; color: #fff; }

.service-front h3 { font-size: 20px; font-weight: 800; color: #0b132b; }
.service-front p  { font-size: 14px; color: #64748b; font-weight: 500; }

.service-badge {
    margin-top: auto;
    display: inline-block;
    background: #eef2ff;
    color: #4c66ff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
}
.service-badge-green  { background: #d1fae5; color: #059669; }
.service-badge-gold   { background: #fef3c7; color: #d97706; }
.service-badge-purple { background: #ede9fe; color: #7c3aed; }
.service-badge-pink   { background: #fce7f3; color: #be185d; }
.service-badge-sky    { background: #e0f2fe; color: #0284c7; }

.service-back {
    background: #4c66ff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.service-back h3 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}
.service-back ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}
.service-back ul li {
    font-size: 13px;
    color: rgba(255,255,255,.88);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.service-back ul li::before {
    content: '✓';
    font-weight: 800;
    color: #a5b4fc;
    flex-shrink: 0;
}
.service-cta {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,.18);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    align-self: flex-start;
    margin-top: auto;
    transition: background .3s;
}
.service-card:hover .service-cta { background: rgba(255,255,255,.28); }



/* =============================================
   FEATURES SECTION
============================================= */

.features-section { padding: 0 7% 100px; }

.features-header {
    text-align: center;
    margin-bottom: 52px;
}
.features-header h2 {
    font-size: 44px;
    font-weight: 900;
    color: #0b132b;
    margin-top: 14px;
    letter-spacing: -.5px;
}

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

.feature-card {
    background: #fff;
    border-radius: 22px;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(76,102,255,.08);
    transition: all .35s ease;
    box-shadow: 0 6px 20px rgba(76,102,255,.04);
    cursor: default;
}
.feature-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(76,102,255,.12);
    border-color: rgba(76,102,255,.2);
}
.feature-icon-wrap {
    width: 42px; height: 42px;
    background: #eef2ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .35s ease;
}
.feature-card:hover .feature-icon-wrap {
    background: #4c66ff;
    transform: rotate(-8deg) scale(1.08);
}
.feature-icon-wrap svg {
    width: 18px; height: 18px;
    color: #4c66ff;
    transition: color .35s;
}
.feature-card:hover .feature-icon-wrap svg { color: #fff; }

.feature-card span {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}



/* =============================================
   WHY US
============================================= */

.why-us { padding: 0 7% 110px; }

.why-us-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}
.why-us-header h2 {
    font-size: 46px;
    font-weight: 900;
    color: #0b132b;
    margin: 14px 0 18px;
    letter-spacing: -.5px;
}
.why-us-header p {
    font-size: 18px;
    line-height: 1.85;
    color: #64748b;
}

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

.why-card {
    background: #fff;
    border-radius: 32px;
    padding: 38px;
    transition: all .35s ease;
    border: 1px solid rgba(76,102,255,.08);
    box-shadow: 0 10px 30px rgba(76,102,255,.05);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76,102,255,.04), transparent);
    opacity: 0;
    transition: .35s;
}
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 55px rgba(76,102,255,.14);
    border-color: rgba(76,102,255,.18);
}
.why-card:hover::before { opacity: 1; }

.why-icon {
    width: 66px; height: 66px;
    border-radius: 20px;
    background: #4c66ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all .35s ease;
    box-shadow: 0 8px 24px rgba(76,102,255,.3);
}
.why-card:hover .why-icon { transform: rotate(-8deg) scale(1.06); }
.why-icon svg { width: 26px; height: 26px; color: #fff; }

.why-card h3 {
    font-size: 21px;
    font-weight: 800;
    color: #0b132b;
    margin-bottom: 14px;
}
.why-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 20px;
}
.why-tag {
    display: inline-block;
    background: #eef2ff;
    color: #4c66ff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
    transition: all .35s;
}
.why-card:hover .why-tag {
    background: #4c66ff;
    color: #fff;
}



/* =============================================
   INFRASTRUCTURE
============================================= */

.infrastructure-section {
    padding: 0 7% 130px;
    display: flex;
    align-items: center;
    gap: 70px;
}

.infra-left { flex: 1; }
.infra-right { flex: 1.2; }

.infra-left img {
    width: 100%;
    border-radius: 32px;
    display: block;
    transition: all .5s ease;
    box-shadow: 0 28px 60px rgba(76,102,255,.14);
}
.infra-left img:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(76,102,255,.2);
}

.infra-right h2 {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 900;
    color: #0b132b;
    margin: 18px 0 22px;
    letter-spacing: -.5px;
}
.infra-right p {
    font-size: 17px;
    line-height: 1.95;
    color: #5b6475;
    margin-bottom: 30px;
}

.infra-list {
    list-style: none;
    padding: 0;
    margin: 0 0 38px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.infra-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #334155;
    font-weight: 500;
    padding: 12px 16px;
    background: #f8faff;
    border-radius: 14px;
    border: 1px solid rgba(76,102,255,.06);
    transition: all .3s ease;
}
.infra-list li:hover {
    background: #eef2ff;
    border-color: rgba(76,102,255,.15);
    transform: translateX(6px);
}
.infra-list li svg {
    width: 18px; height: 18px;
    color: #4c66ff;
    flex-shrink: 0;
}

.infra-btn {
    height: 58px;
    padding: 0 34px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #4c66ff;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: all .35s ease;
    box-shadow: 0 12px 35px rgba(76,102,255,.25);
}
.infra-btn svg { width: 18px; height: 18px; transition: transform .35s; }
.infra-btn:hover {
    transform: translateY(-6px);
    background: #3755ff;
    box-shadow: 0 24px 50px rgba(76,102,255,.3);
}
.infra-btn:hover svg { transform: translateX(4px); }



/* =============================================
   DATA CENTERS
============================================= */

.datacenters-section { padding: 0 7% 110px; }

.dc-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}
.dc-header h2 {
    font-size: 44px;
    font-weight: 900;
    color: #0b132b;
    margin: 14px 0 18px;
    letter-spacing: -.5px;
}
.dc-header p {
    font-size: 17px;
    line-height: 1.85;
    color: #64748b;
}

.dc-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.dc-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px 26px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(76,102,255,.08);
    box-shadow: 0 6px 20px rgba(76,102,255,.05);
    transition: all .35s ease;
    cursor: default;
    min-width: 160px;
}
.dc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(76,102,255,.13);
    border-color: rgba(76,102,255,.2);
}
.dc-flag { font-size: 26px; line-height: 1; }
.dc-name { font-size: 14px; font-weight: 700; color: #0b132b; flex: 1; }
.dc-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 50px;
    letter-spacing: .4px;
}
.dc-tag-primary { background: #eef2ff; color: #4c66ff; }



/* =============================================
   AWARDS & RECOGNITION
============================================= */

.awards-section { padding: 0 7% 110px; }

.awards-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}
.awards-header h2 {
    font-size: 44px;
    font-weight: 900;
    color: #0b132b;
    margin: 14px 0 18px;
    letter-spacing: -.5px;
}
.awards-header p {
    font-size: 17px;
    line-height: 1.85;
    color: #64748b;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.award-card {
    background: #fff;
    border-radius: 26px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(76,102,255,.1);
    box-shadow: 0 10px 30px rgba(76,102,255,.06);
    text-decoration: none;
    transition: all .35s ease;
    min-width: 0; /* prevent overflow */
}
.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(76,102,255,.14);
    border-color: rgba(76,102,255,.22);
}

/* Fixed square logo container — same size for all cards */
.award-logo-wrap {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8faff;
    border-radius: 14px;
    border: 1px solid rgba(76,102,255,.08);
    overflow: hidden;
    padding: 6px;
}
.award-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Legacy fallback — img directly inside award-card (no wrap) */
.award-card > img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 12px;
    background: #f8faff;
    padding: 6px;
    border: 1px solid rgba(76,102,255,.08);
}

.award-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
    flex: 1;
}
.award-info strong {
    font-size: 14px;
    font-weight: 800;
    color: #0b132b;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.award-info span {
    font-size: 12px;
    color: #64748b;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.award-featured {
    background: linear-gradient(135deg, #eef2ff, #f8faff);
    border-color: rgba(76,102,255,.18);
}



/* =============================================
   TESTIMONIALS
============================================= */

.testimonials-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #f8faff 100%);
    padding: 100px 7% 120px;
}

.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}
.testimonials-header h2 {
    font-size: 46px;
    font-weight: 900;
    color: #0b132b;
    margin: 14px 0 18px;
    letter-spacing: -.5px;
}
.testimonials-header p {
    font-size: 17px;
    line-height: 1.85;
    color: #64748b;
}

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

.testimonial-card {
    background: #fff;
    border-radius: 30px;
    padding: 36px;
    border: 1px solid rgba(76,102,255,.08);
    box-shadow: 0 10px 30px rgba(76,102,255,.06);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4c66ff, #7b8fff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(76,102,255,.14);
}
.testimonial-card:hover::before { transform: scaleX(1); }

.testimonial-quote {
    font-size: 72px;
    line-height: 1;
    color: #eef2ff;
    font-family: Georgia, serif;
    font-weight: 900;
    height: 40px;
    margin-bottom: 16px;
    margin-top: -10px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 18px;
}
.stars svg { width: 16px; height: 16px; color: #f59e0b; }

.testimonial-text {
    font-size: 15px;
    line-height: 1.9;
    color: #334155;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.author-avatar span { font-size: 13px; font-weight: 800; color: #fff; }
.testimonial-author strong { display: block; font-size: 15px; font-weight: 700; color: #0b132b; }
.testimonial-author span  { font-size: 12px; color: #64748b; }

.testimonial-badge {
    display: inline-block;
    margin-top: 18px;
    background: #eef2ff;
    color: #4c66ff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .4px;
}

.review-platforms { margin-top: 56px; text-align: center; }
.review-platforms p { font-size: 14px; color: #94a3b8; font-weight: 500; margin-bottom: 14px; }
.review-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.review-link {
    color: #4c66ff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all .3s;
    padding: 6px 14px;
    border-radius: 50px;
}
.review-link:hover {
    background: #eef2ff;
    text-decoration: none;
}
.review-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #cbd5e1;
}



/* =============================================
   FAQ SECTION
============================================= */

.faq-section { padding: 0 7% 110px; }

.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.faq-header h2 {
    font-size: 44px;
    font-weight: 900;
    color: #0b132b;
    margin: 14px 0 18px;
    letter-spacing: -.5px;
}
.faq-header p {
    font-size: 17px;
    line-height: 1.85;
    color: #64748b;
}

.faq-grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(76,102,255,.1);
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 4px 16px rgba(76,102,255,.05);
}
.faq-item:hover { box-shadow: 0 10px 30px rgba(76,102,255,.1); }
.faq-open {
    border-color: rgba(76,102,255,.22);
    box-shadow: 0 12px 35px rgba(76,102,255,.12);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
}
.faq-question span {
    font-size: 16px;
    font-weight: 700;
    color: #0b132b;
    line-height: 1.5;
    font-family: 'Outfit', sans-serif;
}
.faq-arrow {
    width: 20px; height: 20px;
    color: #4c66ff;
    flex-shrink: 0;
    transition: transform .35s ease;
}
.faq-open .faq-arrow { transform: rotate(180deg); }
.faq-open .faq-question span { color: #4c66ff; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.faq-answer p {
    padding: 0 28px 22px;
    font-size: 15px;
    line-height: 1.9;
    color: #64748b;
}



/* =============================================
   CTA SECTION
============================================= */

.cta-section { padding: 0 7% 80px; }

.cta-box {
    background: linear-gradient(135deg, #4c66ff 0%, #2d44e0 100%);
    border-radius: 32px;
    padding: 48px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(76,102,255,.3);
}

.cta-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    pointer-events: none;
}
.cta-glow-2 {
    top: auto; right: auto;
    bottom: -40px; left: -40px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,.05);
}

.cta-box h2 {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    max-width: 680px;
    margin: 12px auto 14px;
    letter-spacing: -.5px;
}
.cta-box p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,.82);
    max-width: 580px;
    margin: 0 auto 28px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    height: 60px;
    padding: 0 36px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #fff;
    color: #4c66ff;
    font-size: 15px;
    font-weight: 700;
    transition: all .35s ease;
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
}
.cta-btn-primary svg { width: 18px; height: 18px; transition: transform .35s; }
.cta-btn-primary:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(0,0,0,.18); }
.cta-btn-primary:hover svg { transform: translateX(4px); }

.cta-btn-secondary {
    height: 60px;
    padding: 0 36px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: 1.5px solid rgba(255,255,255,.4);
    transition: all .35s ease;
}
.cta-btn-secondary:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.7);
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.cta-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.88);
    font-size: 13px;
    font-weight: 600;
}
.cta-trust svg { width: 14px; height: 14px; color: #a5b4fc; }



/* =============================================
   GLOBAL TRANSITION
============================================= */

.feature-card,
.stat-card,
.why-card,
.testimonial-card,
.timeline-content,
.dc-card,
.award-card,
.faq-item {
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}



/* =============================================
   SCROLLBAR
============================================= */

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #eef2ff; }
::-webkit-scrollbar-thumb { background: #4c66ff; border-radius: 20px; }



/* =============================================
   RESPONSIVE — 1200px
============================================= */

@media (max-width: 1200px) {

    .about-hero-content h1 { font-size: 52px; }

    .awards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* =============================================
   RESPONSIVE — 1100px
============================================= */

@media (max-width: 1100px) {

    .about-company,
    .infrastructure-section {
        flex-direction: column;
        gap: 50px;
    }

    .about-right { justify-content: center; }
    .about-img-wrapper { max-width: 100%; }

    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-section,
    .trust-strip { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}



/* =============================================
   RESPONSIVE — 768px
============================================= */

@media (max-width: 768px) {

    .about-hero {
        min-height: auto;
        padding: 120px 20px 100px;
    }
    .about-hero-content h1 { font-size: 38px; letter-spacing: -.5px; }
    .about-hero-content p  { font-size: 16px; }

    .hero-trust { padding: 12px 16px; gap: 0; }
    .hero-trust-item { padding: 6px 10px; font-size: 12px; }

    .trust-strip {
        width: 92%;
        grid-template-columns: 1fr 1fr;
        padding: 24px;
        gap: 16px;
        margin-top: -44px;
    }

    .features-grid,
    .why-grid,
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .awards-grid { grid-template-columns: 1fr; }

    .about-company,
    .infrastructure-section { flex-direction: column; gap: 40px; }

    .about-rating-pill,
    .about-award-card { display: none; }

    .about-left h2,
    .infra-right h2,
    .story-header h2,
    .why-us-header h2,
    .features-header h2,
    .services-header h2,
    .testimonials-header h2,
    .awards-header h2,
    .faq-header h2,
    .dc-header h2,
    .cta-box h2 { font-size: 26px; }

    .cta-box { padding: 36px 24px; border-radius: 24px; }

    .hero-actions,
    .cta-actions { flex-direction: column; }
    .hero-btn,
    .hero-btn-outline,
    .infra-btn,
    .cta-btn-primary,
    .cta-btn-secondary { width: 100%; max-width: 320px; justify-content: center; }

    .story-timeline { padding-left: 34px; }
    .timeline-item  { padding-left: 32px; }
    .timeline-content { padding: 24px; }

    .about-company,
    .our-story,
    .features-section,
    .why-us,
    .infrastructure-section,
    .datacenters-section,
    .awards-section,
    .testimonials-section,
    .services-section,
    .faq-section,
    .cta-section { padding-left: 20px; padding-right: 20px; }
}



/* =============================================
   RESPONSIVE — 480px
============================================= */

@media (max-width: 480px) {

    .about-hero-content h1 { font-size: 30px; line-height: 1.2; }

    .trust-strip { grid-template-columns: 1fr; }
    .trust-item h3 { font-size: 34px; }

    .hero-trust { display: none; }

    .features-grid { grid-template-columns: 1fr; }

    .feature-card { padding: 18px; }
    .stat-card    { padding: 28px 20px; }

    .why-card,
    .testimonial-card { padding: 24px; }

    .cta-box { padding: 28px 16px; border-radius: 20px; }
    .cta-box h2 { font-size: 22px; }

    .cta-trust { flex-direction: column; align-items: flex-start; gap: 10px; }

    .faq-question span { font-size: 14px; }
    .faq-answer p      { font-size: 14px; }

    .dc-card { min-width: 140px; padding: 16px 20px; }

    .service-card { height: 220px; }
    .service-front h3,
    .service-back h3 { font-size: 17px; }

    .badge { font-size: 13px; padding: 8px 14px; }

    .badge { font-size: 13px; padding: 8px 14px; }
}



/* =========================
   FAQ SECTION
========================= */

.faq-section {
padding: 90px 7% 110px;
background: #f8fafc;
}

/* neutralise the inherited .container inside FAQ so it doesn't constrain width */
.faq-section .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Two-column layout */
.faq-layout {
display: grid;
grid-template-columns: 1fr 380px;
gap: 40px;
align-items: start;
}

/* LEFT: FAQ list */
.faq-list {
display: flex;
flex-direction: column;
gap: 12px;
}

.faq-item {
background: #ffffff;
border: 1px solid #e5e7eb;
border-radius: 14px;
overflow: hidden;
transition: all 0.3s ease;
}

.faq-item:first-child {
border-top: 1px solid #e5e7eb;
}

.faq-item.active {
border-color: rgba(65, 105, 225, 0.4);
box-shadow: 0 2px 16px rgba(65, 105, 225, 0.07);
}

.faq-question {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
padding: 20px 24px;
background: none;
border: none;
cursor: pointer;
font-size: 16px;
font-weight: 600;
color: #0f172a;
text-align: left;
font-family: 'Outfit', sans-serif;
transition: color 0.2s;
}

.faq-question span {
flex: 1;
line-height: 1.4;
}

.faq-plus-icon {
width: 32px;
height: 32px;
border: 1.5px solid #d1d5db;
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
color: #374151;
transition: all 0.25s ease;
}

.faq-item.active .faq-plus-icon {
background: #4169E1;
border-color: #4169E1;
color: #fff;
transform: rotate(45deg);
}

.faq-item.active .faq-question {
color: #4169E1;
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
}

.faq-answer-content {
padding: 0 24px 22px;
font-size: 14px;
line-height: 1.8;
color: #64748b;
}

.faq-item.active .faq-answer {
max-height: 300px;
}

/* RIGHT: Contact card */
.faq-contact-card {
background: #fff;
border: 1px solid #e5e7eb;
border-radius: 20px;
padding: 44px 36px;
text-align: center;
position: sticky;
top: 100px;
box-shadow: 0 4px 24px rgba(65, 105, 225, 0.07);
}

.faq-contact-icon {
width: 80px;
height: 80px;
background: #eef1fb;
border-radius: 18px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 22px;
color: #4169E1;
}

.faq-contact-card h3 {
font-size: 22px;
font-weight: 800;
color: #0f172a;
margin-bottom: 14px;
line-height: 1.3;
}

.faq-contact-card p {
font-size: 14px;
color: #64748b;
line-height: 1.75;
margin-bottom: 32px;
}

.faq-contact-btn {
display: inline-block;
background: #4169E1;
color: #fff;
font-weight: 700;
font-size: 15px;
padding: 15px 28px;
border-radius: 12px;
text-decoration: none;
width: 100%;
text-align: center;
transition: background 0.2s, transform 0.2s;
box-sizing: border-box;
}

.faq-contact-btn:hover {
background: #3154c7;
transform: translateY(-2px);
}

@media (max-width: 900px) {
.faq-layout {
    grid-template-columns: 1fr;
}

.faq-contact-card {
    position: static;
}
}

@media (max-width: 600px) {
.faq-question {
    font-size: 15px;
    padding: 18px 20px;
}

.faq-item {
    border-radius: 12px;
}
}