:root {
    --brand: #2D5BFF;
    --dark: #050505;
}

body {
    background-color: var(--dark);
    color: white;
    font-family: 'Satoshi', sans-serif;
    overflow-x: hidden;
}

.noise {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.04; pointer-events: none; z-index: 999;
}

.nav-wrapper {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.15em; padding: 8px 16px; border-radius: 12px;
    color: #888; transition: 0.4s ease;
}

.menu-item:hover, .menu-item.active {
    color: white; background: rgba(255, 255, 255, 0.05);
}

.cta-btn {
    background: white; color: black; font-size: 10px; font-weight: 900;
    padding: 10px 24px; border-radius: 99px; transition: 0.3s ease;
}

.cta-btn:hover {
    background: var(--brand); color: white; transform: translateY(-2px);
}

.mobile-link {
    color: #ffffff; opacity: 0.6; transition: 0.3s ease;
}

.mobile-link:hover {
    opacity: 1; color: var(--brand);
}

/* Hamburger Animation Fix */
.line-1, .line-2 { transition: transform 0.3s ease, background-color 0.3s ease; }
.nav-open .line-1 { transform: translateY(4px) rotate(45deg); }
.nav-open .line-2 { transform: translateY(-4px) rotate(-45deg); }
/* Mobile Link Typography Adjustments (Chota kiya hai) */
.mobile-link {
    font-size: 2.5rem !important; /* Pehle 5xl tha, ab medium rakha hai */
    font-weight: 800;
    opacity: 0.7;
    transition: 0.3s ease;
}

/* Force Hide Mobile Overlay on Desktop Screen Resize */
@media (min-width: 1024px) {
    #mobile-overlay {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    /* Hamburger ko desktop par hide karne ke liye */
    #nav-toggle {
        display: none !important;
    }
}

/* Custom Floating Animation */
@keyframes float {
    from { transform: translateY(0px); }
    to { transform: translateY(-15px); }
}


/* Photo Card Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Heading Typography */
h1 {
    font-family: 'Satoshi', sans-serif;
    letter-spacing: -0.05em;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5));
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-tag {
    animation: float 4s ease-in-out infinite alternate;
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-15px); }
}

/* Specific delay for each tag to make them move differently */
.feature-tag:nth-child(2) { animation-delay: 0.5s; }
.feature-tag:nth-child(3) { animation-delay: 1.2s; }
.feature-tag:nth-child(4) { animation-delay: 0.8s; }

/* Mobile Fixes */
@media (max-width: 768px) {
    h1 { font-size: 3.5rem !important; }
    .hero-right { scale: 0.85; margin-top: 50px; }
    #booking-area { width: 100%; flex-direction: column; }
    #booking-options { flex-direction: column; width: 100%; }
    .feature-tag { scale: 0.9; }
}

/* SECTION */
.eco-section {
    padding: 80px 20px;
    background: #050505;
}

.eco-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.eco-header {
    text-align: center;
    margin-bottom: 50px;
}

.eco-title {
    font-size: 42px;
    font-weight: 900;
}

.blue-text {
    color: #2D5BFF;
}

.eco-subtitle {
    color: #888;
    margin-top: 10px;
}

/* GRID */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

/* CARD BASE */
.bento-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    padding: 25px;
}

/* CARD SIZES */
.card-large {
    grid-column: span 8;
}

.card-small {
    grid-column: span 4;
}

.card-medium {
    grid-column: span 12;
}

/* ICON */
.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-blue { background: rgba(45,91,255,0.1); color: #2D5BFF; }
.icon-purple { background: rgba(168,85,247,0.1); color: #A855F7; }
.icon-cyan { background: rgba(34,211,238,0.1); color: #22D3EE; }
.icon-orange { background: rgba(251,146,60,0.1); color: #FB923C; }

/* TEXT */
.bento-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bento-card p {
    font-size: 14px;
    color: #aaa;
}

/* 📱 TABLET */
@media (max-width: 992px) {
    .card-large,
    .card-small,
    .card-medium {
        grid-column: span 12;
    }
}

/* 📱 MOBILE */
@media (max-width: 600px) {
    .eco-title {
        font-size: 28px;
    }

    .bento-card {
        padding: 20px;
    }
}

.founder-short {
    padding: 100px 0;
    background-color: #050505;
}

.founder-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-img-box {
    flex: 0 0 300px;
    height: 380px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.founder-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-text-box {
    flex: 1;
}

.founder-text-box h2 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin: 15px 0 25px;
}

.founder-text-box p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 35px;
}

/* Founder CTA Button */
.founder-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #000;
    padding: 18px 35px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s ease;
}

.founder-btn i {
    transition: transform 0.3s ease;
}

.founder-btn:hover {
    background: #2D5BFF;
    color: #fff;
}

.founder-btn:hover i {
    transform: translateX(5px);
}

.tag {
    color: #2D5BFF;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .founder-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .founder-img-box {
        flex: 0 0 250px;
        width: 250px;
        height: 300px;
    }
    .founder-text-box h2 {
        font-size: 2.5rem;
    }
}

.branches-short {
    padding: 100px 0;
    background-color: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.branches-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

/* =========================================
   🔒 SAFE CYBER-CORE STATS (NAV PROTECTED)
========================================= */

/* Main Wrapper - Strictly limits the area to prevent Nav issues */
.pk-stat-wrapper {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #001019; /* Matches your main theme */
    contain: strict; /* ULTIMATE FIX: completely isolates this element */
    z-index: 1; /* Keeps it below the nav */
    overflow: hidden;
    border-radius: 20px;
}

/* The Core Container */
.pk-cyber-core {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pkFloat 4s ease-in-out infinite;
}

/* Glassmorphism Data Box */
.pk-data-glass {
    position: relative;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 230, 118, 0.2); /* Subtle green border */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.1), inset 0 0 20px rgba(0, 230, 118, 0.05);
    overflow: hidden;
    z-index: 5;
}

/* Number Styling */
.pk-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(0, 230, 118, 0.6);
}

/* Label Styling */
.pk-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a0aec0;
    text-align: center;
}

/* Scanning Radar Line inside the glass */
.pk-scan-line {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 230, 118, 0.15) 50%, transparent 60%);
    animation: pkScan 3s linear infinite;
    pointer-events: none;
}

/* Outer Spinning Ring */
.pk-ring-outer {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 230, 118, 0.3);
    border-top-color: transparent;
    border-bottom-color: transparent;
    animation: pkSpinRight 10s linear infinite;
    z-index: 2;
}

/* Inner Spinning Ring */
.pk-ring-inner {
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 2px solid rgba(0, 230, 118, 0.8);
    border-right: 2px solid rgba(0, 230, 118, 0.8);
    animation: pkSpinLeft 7s linear infinite;
    z-index: 3;
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes pkFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pkSpinRight {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pkSpinLeft {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes pkScan {
    0% { transform: translateY(-50%) rotate(45deg); }
    100% { transform: translateY(50%) rotate(45deg); }
}

/* Text Content */
.branches-text {
    max-width: 500px;
}

.branches-text h2 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin: 15px 0 25px;
}

.branches-text p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 35px;
}

/* Primary CTA Button */
.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #2D5BFF;
    color: #fff;
    padding: 20px 40px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s ease;
}

.primary-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .branches-flex {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .branches-text h2 {
        font-size: 2.8rem;
    }
}

/* SECTION */
.pg-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #050505, #0a0a0a);
}

.pg-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TEXT */
.pg-content h2 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
}

.pg-content span {
    color: var(--brand);
}

.pg-desc {
    margin-top: 20px;
    color: #aaa;
    line-height: 1.6;
}

/* FEATURES */
.pg-features {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.pg-features div {
    font-size: 14px;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* BUTTONS */
.pg-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: var(--brand);
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
}

.btn-primary:hover {
    opacity: 0.8;
}

.btn-outline {
    border: 1px solid #333;
    padding: 12px 25px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
}

.btn-outline:hover {
    border-color: var(--brand);
    color: var(--brand);
}

/* IMAGE */
.pg-image img {
    width: 100%;
    border-radius: 20px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .pg-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pg-features {
        grid-template-columns: 1fr;
    }

    .pg-buttons {
        justify-content: center;
    }
}
.pg-section {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}
.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: transparent;
    color: white;
    padding: 12px 20px;
    border-radius: 10px;

    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.2);

    transition: all 0.3s ease;
}

/* Hover Effect */
.btn-explore:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--brand);
    color: var(--brand);
    transform: translateX(5px);
}

/* Arrow Animation */
.btn-explore i {
    transition: transform 0.3s ease;
}

.btn-explore:hover i {
    transform: translateX(5px);
}

/* SECTION */
.testi-section {
    padding: 100px 20px;
    background: #050505;
}

.testi-container {
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
.testi-header {
    text-align: center;
    margin-bottom: 30px;
}

.testi-header h2 {
    font-size: 34px;
    font-weight: 900;
}

.testi-header p {
    color: #888;
    margin-top: 8px;
}

/* GOOGLE CTA */
.google-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* BUTTON BASE */
.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
    transition: 0.3s;
}

/* PRIMARY BUTTON */
.btn-google.primary {
    background: #4285F4;
    color: white;
}

.btn-google.primary:hover {
    opacity: 0.9;
}

/* OUTLINE BUTTON */
.btn-google.outline {
    border: 1px solid #333;
    color: white;
}

.btn-google.outline:hover {
    border-color: #4285F4;
    color: #4285F4;
}

/* GRID */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* CARD */
.testi-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 15px;

    font-size: 13px;
    color: #ccc;

    transition: 0.3s;
}

.testi-card:hover {
    border-color: var(--brand);
    transform: translateY(-4px);
}

/* TEXT */
.testi-card strong {
    display: block;
    font-size: 14px;
    color: #fff;
}

.testi-card span {
    font-size: 11px;
    color: #777;
}

.testi-card p {
    margin-top: 6px;
}

/* 📱 TABLET */
@media(max-width: 992px) {
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 📱 MOBILE */
@media(max-width: 600px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
.footer {
    background: #030303;
    padding: 80px 20px 30px;
    border-top: 1px solid #111;
}

/* CONTAINER */
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* COLUMN */
.footer-col h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-col h4 {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-col p {
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 6px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: white;
}

/* SOCIAL */
.footer-social {
    margin-top: 15px;
    display: flex;
    gap: 12px;
}
.footer-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* 🔥 MAIN FIX — ICON CENTER */
.footer-icon i {
    font-size: 20px;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    line-height: 1;
}

.footer-icon i::before {
    display: block;
}

/* BUTTON */
.footer-btn {
    margin-top: 10px;
    display: inline-block;
    background: var(--brand);
    padding: 10px 16px;
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
}

.footer-btn:hover {
    opacity: 0.8;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 50px;
    text-align: center;
    font-size: 12px;
    color: #666;
}

/* 📱 RESPONSIVE */
@media(max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}