/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0b0b12;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #e8e9f0;
    line-height: 1.5;
    scroll-behavior: smooth;
}

/* ===== TYPOGRAPHY (improved contrast) ===== */
h1, h2, h3, h4 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    background: linear-gradient(135deg, #ffffff 0%, #a0b0ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: #f0f2ff;
    margin-bottom: 1.5rem;
    border-left: 4px solid #3b82f6;
    padding-left: 1rem;
}

p {
    color: #cbd5e6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

/* ===== REUSABLE BUTTONS ===== */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(59,130,246,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59,130,246,0.4);
}

.btn-secondary {
    background: rgba(59,130,246,0.15);
    border: 1px solid #3b82f6;
    color: #a0b4ff;
}

.btn-secondary:hover {
    background: rgba(59,130,246,0.25);
}

.btn-outline {
    background: transparent;
    border: 1px solid #3b82f6;
    color: #cbd5ff;
    padding: 0.5rem 1.2rem;
}

.btn-outline:hover {
    background: rgba(59,130,246,0.2);
    color: white;
}

/* ===== NAVBAR (new) ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    background: rgba(11,11,18,0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59,130,246,0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    flex-wrap: wrap;
    gap: 1rem;
}
.logo {
   
    display: flex;
    align-items: center;
        gap: 0.5rem;
}
.blue{
    color: #3b82f6;
}
.white{
    color: white;
}
.white, .blue{
     font-size: 1.5rem;
     font-weight: 700;

        
}

img{
    border-radius: 0;
    padding: auto;
    margin-right: -50px;
    margin-top: 20px;
    display: inline;
} 

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #cbd5e6;
    font-weight: 500;
}

.nav-links a:hover {
    color: #3b82f6;
}

.nav-cta .btn-outline {
    font-size: 0.8rem;
    padding: 0.5rem 1.2rem;
}

/* ===== HERO SECTION (improved spacing) ===== */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 5%;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
}

.hero-container {
    flex: 1;
    min-width: 280px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #8b9bcf;
}

.trust-badges i {
    color: #3b82f6;
    margin-right: 0.3rem;
}

.hero-graphic {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* concentric rings – keep original style */
.concentric-rings {
    position: relative;
    width: 250px;
    height: 250px;
}
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(59,130,246,0.3);
}
.outer-static {
    width: 250px;
    height: 250px;
    border-width: 2px;
}
.middle-static {
    width: 190px;
    height: 190px;
    top: 30px;
    left: 30px;
    border-width: 2px;
}
.inner-static {
    width: 130px;
    height: 130px;
    top: 60px;
    left: 60px;
    background: rgba(59,130,246,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #3b82f6;
}
.inner-static i {
    font-size: 3rem;
    color: #3b82f6;
}

/* ===== QUICK ACTIONS (PRIMARY) ===== */
.primary-actions, .secondary-actions, .why-us {
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.primary-actions h2, .secondary-actions h2 {
    margin-bottom: 1.8rem;
}

.primary-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
}

.card.primary {
    background: linear-gradient(145deg, #13131c, #0b0b12);
    border: 1px solid #2a2a3a;
    border-radius: 20px;
    padding: 1rem 1.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: #e8e9f0;
    transition: 0.2s;
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

.card.primary i {
    font-size: 1.2rem;
    color: #3b82f6;
}

.card.primary:hover {
    transform: translateY(-3px);
    border-color: #3b82f6;
    background: #13131f;
}
/*
/* ===== DROPDOWNS (secondary actions) ===== 
.secondary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.dropdown-group {
    position: relative;
    min-width: 160px;
}

.dropdown-btn {
    background: #13131c;
    border: 1px solid #2a2a3a;
    border-radius: 40px;
    padding: 0.8rem 1.5rem;
    width: 100%;
    text-align: left;
    font-weight: 600;
    color: #e8e9f0;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-btn:hover {
    border-color: #3b82f6;
    background: #1a1a24;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background: #0f0f17;
    border: 1px solid #2a2a3a;
    border-radius: 16px;
    width: 220px;
    z-index: 10;
    flex-direction: column;
    padding: 0.5rem 0;
    box-shadow: 0 12px 28px rgba(0,0,0,0.5);
}

.dropdown-group.open .dropdown-content {
    display: flex;
}

.dropdown-content a {
    padding: 0.7rem 1.2rem;
    color: #cbd5e6;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: 0.1s;
}

.dropdown-content a i {
    width: 1.4rem;
    color: #3b82f6;
}

.dropdown-content a:hover {
    background: #1e1e2a;
    color: white;
}
*/
/* ===== DROPDOWNS (new) ===== */
/* ========== DROPDOWN FIXES - NO OVERFLOW, ONE AT A TIME ========== */
.secondary-actions {
    display: flex;
    gap: 1rem;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
}

.dropdown-group {
    position: relative;
    overflow: visible;
}

.dropdown-btn {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    color: #ecf3ff;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    white-space: nowrap;
}

.dropdown-btn:hover {
    background: rgba(59, 130, 246, 0.3);
    border-color: #3b82f6;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: #0f172f;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    padding: 0.5rem 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}

.dropdown-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.2rem;
    color: #ecf3ff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.15s;
}

.dropdown-content a:hover {
    background: rgba(59, 130, 246, 0.2);
}

.dropdown-content i {
    width: 20px;
    font-size: 0.9rem;
}

/* RESPONSIVENESS FOR DROPDOWNS ON MOBILE */
@media (max-width: 768px) {
    .dropdown-group {
       /* left: 50%; */
      /*  transform: translateX(-50%); */
      left: 20%;


    }
}
/* ===== WHY US (3 cards) ===== */
.why-us {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem auto;
}

.why-card {
    background: #0f0f17;
    border: 1px solid #2a2a3a;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    width: 240px;
    transition: 0.2s;
}

.why-card i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.why-card h3 {
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.9rem;
    color: #9ca3af;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    background: #13131f;
}

/* ===== TICKER (improved visibility) ===== */
.ticker-wrap {
    background: #08080e;
    border-top: 1px solid #1e1e2a;
    border-bottom: 1px solid #1e1e2a;
    padding: 0.8rem 0;
    margin: 2rem auto;
    width: 90%;
    border-radius: 60px;
    overflow: hidden;
}

.ticker {
    color: #3b82f6;
    font-weight: 500;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
    display: inline-block;
    padding-left: 5%;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== FOOTER ===== */
footer {
    background: #06060a;
    border-top: 1px solid #1e1e2a;
    padding: 2rem 5%;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-legal a{
    font-size: 0.8rem;
    transition: 0.2s;
    text-decoration: none;
}

.support {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
}

.support i {
    color: #3b82f6;
}

.socials {
    display: flex;
    gap: 1.5rem;
}

.socials a {
    color: #9ca3af;
    font-size: 1.3rem;
    transition: 0.2s;
}

.socials a:hover {
    color: #3b82f6;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE (whitespace & contrast on mobile) ===== */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .trust-badges {
        justify-content: center;
    }
    .primary-grid {
        justify-content: center;
    }
    .secondary-actions {
        flex-direction: column;
        align-items: center;
    }
    .dropdown-group {
        width: 100%;
        max-width: 260px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== REMOVE ANY OLD CONFLICTING STYLES ===== */
/* If you still have old sections like .service, .addressing in HTML, you can either delete them or hide them: */
.service, .addressing {
    display: none;
}
