/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* ===== BODY ===== */
body {
    background: #f4f7fb;
    color: #1a1a1a;
    line-height: 1.6;
}

/* ===== HEADER (WOW EFFECT) ===== */
/* ===== PREMIUM PASTEL HEADER (WOW VERSION) ===== */

header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;

    /* Pastel Glass Background */
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(14px);

    border-radius: 50px;

    /* Soft Glow */
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.08),
        inset 0 0 10px rgba(255, 255, 255, 0.4);

    transition: all 0.4s ease;

    animation: floatIn 1s ease;
}

/* Floating Entry */
@keyframes floatIn {
    from {
        opacity: 0;
        transform: translate(-50%, -40px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Scroll Effect (becomes tighter & stronger) */
header.scrolled {
    top: 10px;
    width: 85%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

/* LOGO */
header h1 {
    font-size: 20px;
    font-weight: 600;
    color: #0a2a66;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

/* Glow pulse on hover */
header h1:hover {
    transform: scale(1.05);
    text-shadow: 0 0 8px rgba(0,180,216,0.5);
}

/* NAV */
nav {
    display: flex;
    align-items: center;
}

nav a {
    position: relative;
    margin-left: 30px;
    text-decoration: none;
    color: #0a2a66;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Animated underline (wave feel) */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, #90e0ef, #00b4d8);
    transition: width 0.35s ease;
}

nav a:hover::after {
    width: 100%;
}

/* POP EFFECT */
nav a:hover {
    transform: translateY(-3px) scale(1.08);
    color: #0077b6;
}

/* CTA BUTTON (WOW BUTTON) */
.nav-btn {
    margin-left: 35px;
    padding: 10px 20px;
    border-radius: 30px;
    background: linear-gradient(135deg, #90e0ef, #00b4d8);
    color: #003566;
    font-weight: 600;
    text-decoration: none;

    position: relative;
    overflow: hidden;

    transition: all 0.3s ease;
}

/* Button glow animation */
.nav-btn::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.4), transparent 60%);
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: 0.4s;
}

.nav-btn:hover::before {
    opacity: 1;
    transform: scale(1.2);
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,180,216,0.4);
}

/* MOBILE */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px 20px;
        width: 95%;
    }

    nav {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        margin: 10px;
    }

    .nav-btn {
        margin-top: 10px;
    }
}

/* ===== HERO ===== */
/* ===== SECTIONS ===== */
section {
    padding: 80px 60px;
}

section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0a2a66;
}

/* ===== PRODUCTS ===== */
.products {
    background: white;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: #f9fbff;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #0a2a66;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ===== INDUSTRIES SECTION ===== */
.industries {
    text-align: center;
    background: linear-gradient(135deg, #f4f7fb, #eaf4ff);
    padding: 80px 20px;
}

/* GRID */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* =========================
   FLIP CARD STRUCTURE
========================= */

.industry-card {
    perspective: 1000px;
}

.industry-inner {
    position: relative;
    width: 100%;
    height: 160px;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

/* FLIP */
.industry-card:hover .industry-inner {
    transform: rotateY(180deg);
}

/* FRONT + BACK */
.industry-front,
.industry-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    backface-visibility: hidden;
    overflow: hidden;
}

/* =========================
   FRONT (YOUR PREMIUM STYLE)
========================= */
.industry-front {
    background: linear-gradient(135deg, #ffffff, #eef5ff);

    box-shadow: 
        0 10px 30px rgba(0,0,0,0.08),
        inset 0 0 10px rgba(255,255,255,0.5);

    color: #163a5f;
    font-weight: 600;
    font-size: 17px;

    padding: 20px;
}

/* =========================
   BACK (IMAGE)
========================= */
.industry-back {
    transform: rotateY(180deg);
}

.industry-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   HOVER GLOW (LIGHT PREMIUM)
========================= */
.industry-card:hover .industry-front {
    box-shadow: 
        0 25px 60px rgba(0,123,255,0.2);
}

/* =========================
   MOBILE TAP SUPPORT
========================= */
.industry-inner.flip {
    transform: rotateY(180deg);
}
/* ===== STATS ===== */
.stats {
    background: #0a2a66;
    color: white;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-box h3 {
    font-size: 40px;
}

.stat-box p {
    margin-top: 10px;
}

/* ===== CONTACT ===== */
/* ===== CONTACT PREMIUM ===== */
.contact-premium {
    padding: 100px 60px;
    background: linear-gradient(135deg, #eef5ff, #f9fbff);
}

/* CONTAINER */
.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;

    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);

    padding: 50px;
    border-radius: 25px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* LEFT */
.contact-info h2 {
    font-size: 36px;
    color: #0a2a66;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-details p {
    margin: 8px 0;
}

/* BUTTON */
.contact-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;

    border-radius: 30px;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    text-decoration: none;
    font-weight: 600;

    transition: 0.3s;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,180,216,0.4);
}

/* RIGHT FORM */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;

    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;

    font-size: 14px;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

/* FORM BUTTON */
.contact-form button {
    width: 100%;
    padding: 14px;

    border: none;
    border-radius: 10px;

    background: #0a2a66;
    color: white;
    font-size: 15px;

    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #061a40;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}
/* ===== FOOTER WRAPPER ===== */
footer {
    margin-top: 80px;
    padding: 60px 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    /* premium soft background */
    background: linear-gradient(135deg, #eef5ff, #f4f8ff);
}

/* ===== TILE ===== */
.footer-tile {
    position: relative; /* IMPORTANT FIX */

    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(18px);

    border-radius: 20px;

    padding: 30px 40px;

    text-align: center;

    max-width: 900px;
    width: 100%;

    /* premium shadow */
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08),
        inset 0 0 10px rgba(255, 255, 255, 0.5);

    font-size: 14px;
    line-height: 1.6;

    color: #0a2a66;
}

/* ===== BORDER GLOW ===== */
.footer-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.6);
    pointer-events: none;
}
/* ===== ANIMATIONS ===== */
@keyframes slideDown {
    from { transform: translateY(-80px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    header {
        flex-direction: column;
        padding: 15px 20px;
    }

    nav {
        margin-top: 10px;
    }

    .hero {
        padding: 40px 20px;
        height: auto;
    }

    .hero h2 {
        font-size: 34px;
    }

    section {
        padding: 50px 20px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }
}
/* ===== HERO SECTION (VIDEO BASED - FINAL CLEAN VERSION) ===== */

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* ===== VIDEO BACKGROUND ===== */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    z-index: 0;
}

/* ===== OVERLAY (PREMIUM DARK GLASS EFFECT) ===== */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        120deg,
        rgba(10, 42, 102, 0.65),
        rgba(0, 180, 216, 0.25)
    );

    backdrop-filter: blur(2px);

    z-index: 1;
}

/* ===== CONTENT ===== */
.hero-content {
    position: relative;
    z-index: 2;

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 0 60px;
    color: #ffffff;

    animation: heroFadeUp 1.2s ease;
}

/* HEADING */
.hero-content h2 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* SUBTEXT */
.hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* BUTTON */
.hero-content button {
    width: fit-content;
    padding: 14px 30px;
    font-size: 16px;

    border: none;
    border-radius: 6px;

    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;

    cursor: pointer;

    transition: all 0.3s ease;
}

/* BUTTON HOVER */
.hero-content button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.4);
}

/* ===== TEXT ANIMATION ===== */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .hero {
        height: 90vh;
    }

    .hero-content {
        padding: 0 20px;
        text-align: center;
        align-items: center;
    }

    .hero-content h2 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }
}
.hero-video {
    opacity: 1 !important;
    visibility: visible !important;
    border: 3px solid red; /* DEBUG */
}
.hero {
    position: relative;
    z-index: 1;
}
/* ===== ABOUT SECTION CENTER ===== */
.about {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.about h2 {
    margin-bottom: 20px;
}

.about p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ===== ABOUT BUTTON ===== */
.about-btn {
    display: flex;
    justify-content: center;
}

.about-button {
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;

    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;

    transition: all 0.3s ease;
}
.pro-btn {
    display: flex;
    justify-content: center;
}

.pro-button {
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;

    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;

    transition: all 0.3s ease;
}
/* HOVER EFFECT */
.about-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,180,216,0.4);
}
html {
    scroll-behavior: smooth;
}
/* ===== PARTNERS PAGE ===== */
/* ===== PARTNERS PAGE ===== */
.partners {
    padding: 120px 60px; /* increased spacing */
    text-align: center;
    background: linear-gradient(135deg, #f4f7fb, #eef5ff);
}

.partner-sub {
    margin-top: 10px;
    margin-bottom: 60px;
    color: #555;
    font-size: 16px;
}

/* ===== GRID ===== */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* increased from 220 */
    gap: 40px; /* more space between tiles */
}

/* ===== CARD ===== */
.partner-card {
    position: relative;
    height: 220px; /* added for bigger tiles */
    padding: 50px; /* increased padding */

    border-radius: 25px;

    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(15px);

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

    overflow: hidden;
    transition: all 0.4s ease;
}

/* ===== LOGO ===== */
.partner-card img {
    width: 100%;
    height: 100px; /* increased logo size */
    object-fit: contain;
    transition: 0.4s ease;
}

/* ===== HOVER EFFECT ===== */
.partner-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ===== OVERLAY ===== */
.partner-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        rgba(10,42,102,0.95),
        rgba(0,180,216,0.9)
    );

    color: white;
    padding: 30px; /* slightly increased */

    display: flex;
    flex-direction: column;
    justify-content: center;

    transition: 0.4s ease;
}

/* ===== SHOW ON HOVER ===== */
.partner-card:hover .partner-overlay {
    bottom: 0;
}

/* ===== TEXT ===== */
.partner-overlay h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.partner-overlay p {
    font-size: 14px;
    line-height: 1.5;
}

/* ===== LIGHT SWEEP EFFECT (OPTIONAL BUT INCLUDED) ===== */
.partner-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transform: rotate(25deg);
    transition: 0.6s;
}

.partner-card:hover::before {
    top: 100%;}
    
/* ===== CONTACT PREMIUM ===== */
.contact-premium {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(circle at top, #0a2a66, #020617);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ===== MOLECULE FLOATING ===== */
.molecule-bg::before,
.molecule-bg::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,180,216,0.15), transparent);
    animation: float 20s infinite linear;
}

.molecule-bg::after {
    left: 60%;
    top: 40%;
    animation-duration: 25s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-60px); }
    100% { transform: translateY(0px); }
}

/* ===== LAYOUT ===== */
.contact-wrapper {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* ===== LEFT SIDE ===== */
.contact-left h1 {
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
}

.contact-left p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.contact-info div {
    margin-bottom: 10px;
    color: #90e0ef;
}

/* ===== GLASS CARD ===== */
.contact-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: 0.4s;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* ===== INPUTS ===== */
.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
    outline: none;
}

/* LABEL FLOAT */
.input-group label {
    position: absolute;
    left: 15px;
    top: 14px;
    color: rgba(255,255,255,0.6);
    pointer-events: none;
    transition: 0.3s;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
    top: -10px;
    font-size: 12px;
    color: #00b4d8;
}

/* ===== BUTTON ===== */
.btn-send {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-send:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,180,216,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}
textarea {
    min-height: 100px;
    resize: none;
}
/* =========================================================
   ABOUT PAGE – CLEAN PREMIUM FINAL
   ========================================================= */

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* HERO (FIXED GRADIENT) */
.about-hero {
    padding: 140px 20px 90px;
    text-align: center;
    color: white;

    background: linear-gradient(120deg, #0a2a66 0%, #0a2a66 40%, #0077b6 100%);
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.about-hero p {
    opacity: 0.9;
}

/* SECTION */
.about-section {
    padding: 80px 0;
}

/* GRID */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* TEXT */
.about-text h2 {
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.7;
}

/* IMAGE */
.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* MISSION SECTION */
.about-light {
    padding: 70px 0;
    background: #f4f7fb;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARDS */
.info-card {
    padding: 28px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
}

/* TITLE */
.section-title {
    margin-bottom: 30px;
}

/* WHY GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* FEATURES */
.feature {
    padding: 18px 20px;
    border-radius: 10px;
    background: white;
    text-align: left;
    border-left: 4px solid #0077b6;
    font-size: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: 0.25s ease;
}

.feature:hover {
    transform: translateX(6px);
}

/* FOUNDER */
.founder {
    padding: 80px 0;
    background: #f9fbff;
}

.founder-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 50px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.founder-text h2 {
    font-size: 28px;
    margin-bottom: 5px;
}

.founder-text h3 {
    color: #0077b6;
    margin-bottom: 15px;
}

.founder-text p {
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-grid,
    .founder-grid,
    .grid-3,
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   PRODUCTS PAGE
========================= */

.products-page {
    padding: 120px 20px 60px;
    text-align: center;
}

.page-title {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #1e2a38;
}

/* =========================
   GRID
========================= */
.products-section {
    text-align: center;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: auto;
}

/* =========================
   TILE (SOFT BLUE STYLE)
========================= */

.product-tile {
    position: relative;
    height: 220px;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

/* IMAGE */
.product-tile img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;

    filter: blur(1.8px) brightness(0.9);
    transform: scale(1.05);

    transition: 0.4s ease;
}

/* BLUE TINT */
.tile-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 119, 182, 0.45);

    transition: 0.4s ease;
}

/* TEXT */
.product-tile h3 {
    position: relative;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    text-align: center;

    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

/* HOVER */
.product-tile:hover {
    transform: translateY(-6px);
}

.product-tile:hover img {
    filter: blur(0px) brightness(1);
    transform: scale(1.08);
}

.product-tile:hover .tile-overlay {
    background: rgba(0, 119, 182, 0.55);
}

/* =========================
   MODAL BACKGROUND
========================= */
.product-modal {
    position: fixed;
    inset: 0;
    background: rgba(5, 20, 35, 0.85);
    backdrop-filter: blur(14px);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 9999;
}

/* =========================
   MODAL BOX (UPGRADED)
========================= */
.modal-box {
    position: relative;
    width: 560px;
    max-width: 92%;

    padding: 50px 45px;
    border-radius: 24px;

    background: linear-gradient(
        145deg,
        rgba(10, 25, 45, 0.95),
        rgba(5, 15, 30, 0.95)
    );

    backdrop-filter: blur(25px);

    color: #ffffff;
    text-align: center;

    box-shadow:
        0 0 80px rgba(0,180,216,0.35),
        0 20px 60px rgba(0,0,0,0.4);

    animation: modalFade 0.4s ease;
}

/* =========================
   TITLE (BIG + CLEAN)
========================= */
.modal-box h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* =========================
   BRANDS (MORE PREMIUM)
========================= */
.modal-brands span {
    display: inline-block;
    margin: 8px;
    padding: 10px 22px;

    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;

    background: rgba(0,180,216,0.15);
    border: 1px solid rgba(0,180,216,0.7);

    transition: 0.3s;
}

.modal-brands span:hover {
    background: rgba(0,180,216,0.6);
    transform: translateY(-2px);
}

/* =========================
   PRODUCT LIST (BIGGER TEXT)
========================= */
.modal-list {
    margin-top: 20px;
}

.modal-list p {
    margin: 8px 0;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.95;
}

/* =========================
   MOLECULES (BIGGER + GLOW)
========================= */
.molecule-bg span {
    position: absolute;
    width: 14px;
    height: 14px;

    background: #00d4ff;
    border-radius: 50%;

    box-shadow:
        0 0 15px #00d4ff,
        0 0 30px rgba(0,212,255,0.5);

    opacity: 0.8;

    animation: float 7s infinite ease-in-out;
}

/* POSITIONS */
.molecule-bg span:nth-child(1) { top: 8%; left: 18%; }
.molecule-bg span:nth-child(2) { top: 75%; left: 12%; }
.molecule-bg span:nth-child(3) { top: 30%; right: 12%; }
.molecule-bg span:nth-child(4) { bottom: 12%; right: 18%; }

/* =========================
   FLOAT ANIMATION
========================= */
@keyframes float {
    0%,100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-25px) scale(1.2);
    }
}

/* =========================
   CLOSE BUTTON
========================= */
.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* =========================
   OPEN ANIMATION
========================= */
@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-tile {
        height: 190px;
    }
}
/* =========================
   CLIENTS PAGE - FINAL CSS
========================= */

/* PAGE BACKGROUND */
body {
    background: #f8fbff;
}


/* =========================
   HERO SECTION
========================= */
.clients-hero {
    padding: 120px 20px 60px; /* increase top space */
    text-align: center;
}

.clients-content {
    max-width: 900px;
    margin: auto;
}

.clients-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #0f2b46;
    margin-bottom: 15px;
}

.clients-content p {
    font-size: 18px;
    color: #5f6f81;
    line-height: 1.6;
}


/* =========================
   CLIENT SECTION BG
========================= */
.clients-section {
    position: relative;
    padding: 60px 20px 100px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}


/* =========================
   HEADER
========================= */
.clients-header {
    text-align: center;
    margin-bottom: 50px;
}

.clients-header h1 {
    font-size: 36px;
    color: #163a5f;
    margin-bottom: 10px;
}

.clients-header p {
    font-size: 17px;
    color: #6c7f92;
}


/* =========================
   GRID
========================= */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: auto;
}


/* =========================
   CLIENT TILE
========================= */
.client-tile {
    height: 170px;

    background: #ffffff;
    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);

    transition: all 0.35s ease;
    cursor: pointer;
}


/* HOVER EFFECT */
.client-tile:hover {
    transform: translateY(-8px) scale(1.03);

    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.15);
}


/* =========================
   LOGO STYLE
========================= */
.client-tile img {
    width: 80%;
    height: 80%;
    object-fit: contain;

    transition: all 0.4s ease;
}


/* LOGO HOVER */
.client-tile:hover img {
    transform: scale(1.1);
}


/* =========================
   FLOATING BG PARTICLES
========================= */
.bg-particles span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(0, 123, 255, 0.15);
    border-radius: 50%;

    animation: float 8s infinite ease-in-out;
}

.bg-particles span:nth-child(1) {
    top: 20%;
    left: 10%;
}
.bg-particles span:nth-child(2) {
    top: 40%;
    left: 80%;
}
.bg-particles span:nth-child(3) {
    top: 70%;
    left: 20%;
}
.bg-particles span:nth-child(4) {
    top: 60%;
    left: 60%;
}
.bg-particles span:nth-child(5) {
    top: 30%;
    left: 50%;
}


/* FLOAT ANIMATION */
@keyframes float {
    0% { transform: translateY(0px); opacity: 0.6; }
    50% { transform: translateY(-20px); opacity: 1; }
    100% { transform: translateY(0px); opacity: 0.6; }
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .clients-content h1 {
        font-size: 30px;
    }

    .clients-header h1 {
        font-size: 26px;
    }

    .client-tile {
        height: 140px;
    }
}

#Fixes
.quote-btn {
    display: inline-block;
    padding: 14px 30px;

    background: linear-gradient(135deg, #0d6efd, #00b4d8);
    color: #ffffff !important;

    font-size: 16px;
    font-weight: 600;

    border-radius: 30px;
    text-decoration: none !important;

    border: none;
    outline: none;

    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

/* REMOVE LINK DEFAULT STYLE */
.quote-btn:link,
.quote-btn:visited {
    color: #ffffff;
    text-decoration: none;
}

/* HOVER */
.quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(13, 110, 253, 0.4);
}
/* =========================
   HEADER
========================= */
.main-header {
    position: sticky;
    top: 20px;

    width: 92%;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 30px;

    background: #ffffff;
    border-radius: 50px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    z-index: 999;
}


/* =========================
   LOGO
========================= */
.logo img {
    height: 45px;
    width: auto;
    display: block;
    transition: 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}


/* =========================
   NAVIGATION
========================= */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu a {
    margin-left: 28px;

    text-decoration: none;
    color: #163a5f;

    font-weight: 500;
    font-size: 15px;

    position: relative;
    transition: 0.3s;
}


/* UNDERLINE HOVER EFFECT */
.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;

    width: 0%;
    height: 2px;

    background: #0d6efd;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #0d6efd;
}

.nav-menu a:hover::after {
    width: 100%;
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 10px;
        border-radius: 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu a {
        margin: 10px;
    }
}