/* ================= GLOBAL ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #111;
    background: #f5f7fa;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* ================= HEADER ================= */

.minimal-header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 10;
    background: transparent;
}

.minimal-header.scrolled {
    backdrop-filter: blur(12px);
    background: rgba(11,18,32,0.6);
}

.nav {
    display: flex;
    justify-content: flex-end;
}

nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-left: 35px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
}

nav a:hover {
    color: #38bdf8;
}

.nav-cta {
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    font-weight: 500;
}

.nav-cta:hover {
    background: none;
    color: #38bdf8;
}
/* ================= HERO ================= */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #0b1220;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#network {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 900px;
}

.hero-logo img {
    width: 780px;
    max-width: 95%;
    margin-bottom: 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 0 30px rgba(37,99,235,0.7))
            drop-shadow(0 0 60px rgba(37,99,235,0.4));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.hero-logo img:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 0 45px rgba(37,99,235,0.9))
            drop-shadow(0 0 90px rgba(37,99,235,0.6));
}

.hero h1 {
    font-size: 2.6rem;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.hero p {
    opacity: 0.85;
    margin-bottom: 35px;
    font-size: 1.15rem;
}

/* ================= BUTTON ================= */

.btn-primary {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    border: 1px solid rgba(37,99,235,0.6);
    border-radius: 12px;
    cursor: pointer;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 15px rgba(37,99,235,0.6),
        0 0 40px rgba(37,99,235,0.4),
        0 0 80px rgba(37,99,235,0.2);
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    transition: 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

/* ================= SECTIONS ================= */

.section {
    padding: 70px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* ================= SERVICES ================= */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
}

/* ================= TRUSTED PARTNERS ================= */

.trusted {
    padding: 90px 0;
    background: linear-gradient(to bottom, #0b1220, #0e1628);
    text-align: center;
}

.trusted h3 {
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-size: 13px;
}

.trusted::after {
    content: "";
    display: block;
    height: 1px;
    margin-top: 70px;
    background: linear-gradient(to right, transparent, rgba(37,99,235,0.4), transparent);
}

.partner-logos-wrapper {
    overflow: hidden;
    width: 100%;
}


.partner-logos {
    display: flex;
    gap: 70px;
    align-items: center;
    width: max-content;
    animation: drift 60s linear infinite;
}

@keyframes drift {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logos img {
    height: 42px;
    opacity: 0.85;
    filter: brightness(0) invert(1);
    transition: 0.3s ease;
}

.partner-logos img:hover {
    opacity: 1;
    transform: scale(1.08);
    filter: brightness(0) invert(1)
            drop-shadow(0 0 8px rgba(56,189,248,0.6));
}

@keyframes drift {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ================= WHY ================= */

.dark {
    background: #111827;
    color: #fff;
    text-align: center;
}

/* ================= CONTACT ================= */

.contact-section {
    background: #f8fafc;
    text-align: center;
}

.contact-card {
    background: white;
    max-width: 700px;
    margin: 40px auto 0 auto;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

form input,
form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 15px;
    transition: 0.3s ease;
}

form input:focus,
form textarea:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

form textarea {
    min-height: 150px;
    margin-bottom: 20px;
    resize: vertical;
}

#formResponse {
    margin-top: 15px;
    font-weight: 500;
}

.subtle {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* ================= FOOTER ================= */

footer {
    background: #0f172a;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.plan-card {
    background: #ffffff;
    color: #111;
    padding: 40px 30px;
    border-radius: 16px;
    transition: all 0.35s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.plan-card h3 {
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.plan-sub {
    font-size: 0.9rem;
    margin-bottom: 25px;
    opacity: 0.7;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan-card ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.plan-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.05);
}

.plan-cta {
    margin-top: 20px;
}

.contact-section {
  background: #f2f4f7;
  padding: 100px 20px;
  text-align: center;
}

.contact-container {
  max-width: 750px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 28px;
  margin-bottom: 25px;
}

.contact-section h3 {
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-subtext {
  color: #555;
  margin-bottom: 50px;
  line-height: 1.6;
}

.contact-subtext a {
  color: #2f5bd3;
  text-decoration: none;
}

.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #d6dbe2;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2f5bd3;
  box-shadow: 0 0 0 3px rgba(47,91,211,0.1);
}

.contact-form button {
  background: linear-gradient(90deg, #2f5bd3, #1e3fa8);
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(47,91,211,0.3);
}

/* Dark mode auto detect */
@media (prefers-color-scheme: dark) {
  .contact-section {
    background: #0b1220;
    color: #e5e7eb;
  }

  .contact-subtext {
    color: #9ca3af;
  }

  .contact-form {
    background: #111827;
  }

  .contact-form input,
  .contact-form textarea {
    background: #1f2937;
    border: 1px solid #374151;
    color: #e5e7eb;
  }
}
.services-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.services-cta {
    background: linear-gradient(135deg, #0b1f3a, #132c55);
    padding: 40px;
    border-radius: 14px;
    color: #ffffff;
    position: sticky;
    top: 120px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.services-cta h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.services-cta p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #dbe6ff;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #2f5bd3, #1e3fa8);
    color: white;
    padding: 14px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(47,91,211,0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .services-wrapper {
        grid-template-columns: 1fr;
    }

    .services-cta {
        position: relative;
        top: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
.site-footer {
    background: linear-gradient(135deg, #0b1f3a, #0a1630);
    color: #ffffff;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
}

.site-footer a {
    color: #ffffff !important;
    
}

.site-footer a:hover {
    color: #9db8ff;
}
/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {

    /* Header */
    .minimal-header {
        padding: 15px 0;
    }

    .nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    nav a {
        margin-left: 0;
        font-size: 14px;
    }

    /* Hero */
    .hero {
        height: auto;
        padding: 120px 20px 80px 20px;
    }

    .hero-logo img {
        width: 100%;
        max-width: 340px;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Buttons */
    .btn-primary {
        font-size: 14px;
        padding: 14px;
    }

    /* Contact */
    .contact-form {
        padding: 25px;
    }

}
@media (max-width: 768px) {

    /* Stack navigation vertically */
    .nav {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    nav a {
        font-size: 15px;
        padding: 6px 0;
    }

    /* Improve hero spacing */
    .hero {
        padding: 140px 20px 100px 20px;
    }

    .hero-content {
        width: 100%;
        padding: 0 10px;
    }

    .hero-logo img {
        max-width: 280px;
        margin-bottom: 40px;
    }

    .hero h1 {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }

}
/* ================= CLEAN MOBILE NAV ================= */

@media (max-width: 768px) {

    .minimal-header {
        padding: 15px 0;
        background: rgba(11,18,32,0.85);
        backdrop-filter: blur(8px);
    }

    .nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    nav a {
        margin: 0;
        font-size: 15px;
        letter-spacing: 0.3px;
        padding: 6px 0;
    }

    /* Hero breathing room */
    .hero {
        padding: 160px 20px 100px 20px;
    }

    .hero-logo img {
        max-width: 260px;
        margin-bottom: 35px;
    }

    .hero h1 {
        font-size: 1.65rem;
        line-height: 1.35;
    }

    .hero p {
        font-size: 0.95rem;
    }
}