* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #FFFFFF;
    font-family: 'Inter', 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.customers-page {
    width: 100%;
}

.title-span {
    color: rgb(0, 132, 255);
}


/* ========== 1. HERO SECTION ========== */
.hero-customers {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 480px;
    background: url('../img/customer-hero.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    isolation: isolate;
}
.hero-customers::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.88) 0%, rgba(2, 15, 35, 0.85) 100%);
    z-index: 1;
}
.hero-bg-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/customer-hero.jpg');
    background-size: cover;
    background-position: center 35%;
    transform: scale(1.05);
    transition: transform 8s ease-out;
    z-index: 0;
}
.hero-customers:hover .hero-bg-zoom {
    transform: scale(1.12);
}
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 3rem;
    color: white;
}
.breadcrumb {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    display: flex;
    gap: 8px;
    align-items: center;
}
.breadcrumb a { color: #aad4ff; text-decoration: none; }
.breadcrumb a:hover { color: #00e0ff; }
.hero-content h1 {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    background: linear-gradient(125deg, #ffffff, #b6e4ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}
.hero-content p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #e2ecff;
    margin-bottom: 2.2rem;
    max-width: 620px;
    line-height: 1.5;
    animation: fadeUp 0.9s 0.1s forwards;
    opacity: 0;
    transform: translateY(25px);
    animation-fill-mode: forwards;
}
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== 2. TRUST STATISTICS ========== */
.stats-section {
    background: #FFFFFF;
    padding: 4rem 2rem;
}
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    text-align: center;
}
.stat-item {
    flex: 1;
    min-width: 150px;
}
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0A1F44, #1f4991);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1.2;
}
.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: #4a627a;
    margin-top: 0.5rem;
}
.stat-icon {
    font-size: 2rem;
    color: #0077ff;
    margin-bottom: 0.5rem;
}

/* ========== 3. CLIENT LOGOS SHOWCASE (Marquee) ========== */
.logos-section {
    background: #F8FAFF;
    padding: 3rem 0;
    overflow: hidden;
}
.section-title {
    text-align: center;
    margin-bottom: 2rem;
}
.section-title h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0A1F44;
}
.divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #00ccff, #0077ff);
    margin: 0.5rem auto 0;
    border-radius: 4px;
}
.logo-marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}
.logo-track {
    display: flex;
    animation: scrollLogos 30s linear infinite;
    gap: 4rem;
    padding: 1rem 0;
}
.logo-track img {
    height: 60px;
    filter: grayscale(100%);
    opacity: 1;
    transition: all 0.3s;
    object-fit: contain;
}
.logo-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

/* SECTION */
.commitment-section {
    padding: 5rem 2rem;
    color: #fff;
}

/* LAYOUT */
.commitment-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

/* LEFT TEXT */
.commitment-text {
    flex: 1;
}

.commitment-text h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* LIST */
.commit-list {
    list-style: none;
    padding: 0;
}

.commit-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #0a0368;
}

/* TICK */
.commit-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0a0368;
    font-weight: bold;
}

/* PARAGRAPH */
.commitment-text p {
    color: #0a0368;
    line-height: 1.6;
}

/* IMAGE */
.commitment-image {
    flex: 1;
    height: 350px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0,0,0,0.4);
}

.commitment-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .commitment-content {
        flex-direction: column;
    }
}



/* SECTION */
.industries-section {
    background: linear-gradient(135deg, #0A1F44, #0b2350);
    padding: 5rem 2rem;
}

/* GRID */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

/* CARD */
.industry-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 25px rgba(0,0,0,0.4);
}

/* IMAGE */
.industry-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 225, 255, 0.562), rgba(0,0,0,0.2));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.2rem;
    transition: 0.3s;
}

.overlay h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}


/* ========== 7. CTA SECTION ========== */
.cta-customers {
    background: #FFFFFF;
    padding: 4rem 2rem;
    text-align: center;
}
.cta-box {
    background: linear-gradient(115deg, #0A1F44, #0d2a55);
    border-radius: 48px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 25px 35px -12px rgba(0,0,0,0.2);
}
.cta-box h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}
.cta-box p {
    color: #cae3ff;
    margin-bottom: 2rem;
}
.cta-btn {
    background: linear-gradient(95deg, #00aaff, #00e0ff);
    border: none;
    padding: 1rem 2.2rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    color: #0A1F44;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    box-shadow: 0 5px 12px rgba(0,160,255,0.4);
}
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 28px rgba(0, 200, 255, 0.5);
    background: linear-gradient(95deg, #1ab0ff, #2ae5ff);
    color: #fff;
}

/* Scroll animations */
.reveal-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left { opacity: 0; transform: translateX(-30px); transition: 0.7s; }
.reveal-right { opacity: 0; transform: translateX(30px); transition: 0.7s; }
.reveal-left.active, .reveal-right.active { opacity: 1; transform: translateX(0); }

/* Responsive */
@media (max-width: 1024px) {
    .stories-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.4rem; }
    .hero-content p { font-size: 1rem; }
    .stats-grid { flex-direction: column; align-items: center; }
    .stories-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: repeat(1, 1fr); }
    .cta-box { padding: 2rem; margin: 0 1rem; }
    .container { padding: 0 1rem; }
}


.swiper-pagination-bullet-active { background: #00e0ff !important; }
.stat-number { transition: all 0.1s; }
.story-card { transition: transform 0.3s, box-shadow 0.3s; }
.industry-item i { transition: all 0.2s; }
.cta-btn i { transition: transform 0.2s; }
.cta-btn:hover i { transform: translateX(5px); }