]
:root {
    --brand-blue: #0073bc; /* Primary Blue from logo */
    --brand-red: #ed1c24;  /* Primary Red from logo */
    --brand-dark: #0f172a;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    
    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #005a96 0%, #2B88D8 100%);
    --gradient-mixed: linear-gradient(135deg, #0073bc 0%, #ed1c24 100%);
    --gradient-green: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

/* --- Global Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: var(--text-main);
    line-height: 1.6;
    padding-top: 130px; /* Space for top-bar + nav */
}

/* --- Top Info Bar --- */
.top-bar {
    background: #0f172a;
    color: #f8fafc;
    padding: 12px 5%;
    font-size: 0.85rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 25px;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.top-info i {
    color: var(--brand-red);
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    color: white;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.top-social a:hover {
    background: var(--brand-blue);
    transform: translateY(-3px);
}

/* --- Navigation --- */
nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 10px 5%;
    position: fixed;
    width: 100%;
    top: 45px; /* Directly below top-bar */
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-img {
    height: 70px;
    width: auto;
}

/* DESKTOP MENU (Visible on Laptop) */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--brand-red);
}

/* HAMBURGER TOGGLE (Hidden on Laptop) */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--brand-dark);
    cursor: pointer;
}

/* --- Mobile Menu Logic (Below 992px) --- */
@media (max-width: 992px) {
    .menu-toggle {
        display: block; /* Show hamburger only on mobile/tablet */
    }

    .nav-links {
        display: none; /* Hide default list */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        text-align: center;
        gap: 20px;
    }

    .nav-links.active {
        display: flex; /* Shown via JS */
    }
}


.text-gradient {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    padding: 14px 30px;
    background: var(--brand-red);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
    margin: 10px;
}

.btn:hover {
    background: var(--brand-blue);
    transform: translateY(-3px);
}

/* --- About & Stats --- */
.about-section {
    padding: 100px 5%;
    background: var(--bg-light);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

/* --- Services Section --- */
.services-section {
    padding: 100px 5%;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    padding: 40px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-top: 4px solid var(--brand-blue);
}

.service-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--brand-red);
}

/* --- Ticker --- */
.ticker-wrapper {
    background: white;
    padding: 40px 0;
    overflow: hidden;
    border-top: 1px solid #eee;
}

.ticker-track {
    display: flex;
    width: calc(250px * 12);
    animation: scroll 25s linear infinite;
}

.logo-item {
    width: 250px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); }
}

/* --- Footer --- */
.footer {
    background: linear-gradient(135deg, #004e92 0%, #001f3f 100%);
    color: white;
    padding: 80px 5% 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo-img { height: 60px; margin-bottom: 20px; }

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 2000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-get-started {
    position: relative;
    overflow: hidden;
}
.btn-get-started::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: rgba(255,255,255,0.2);
    transform: rotate(45deg);
    transition: 0.5s;
    left: -100%;
}
.btn-get-started:hover::after {
    left: 100%;
}
/* Ensure the button looks good on Mobile Menu too */
@media (max-width: 992px) {
    .btn-get-started {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}
/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .about-container { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .top-info span:not(:last-child) { display: none; } /* Hide extra info on tiny phones */
}
/* --- Optimized Hero Section --- */
.hero {
    height: 75vh; /* Reduced height to keep image compact and clear */
    background-image: url('hero.png'); 
    background-size: cover;
    background-position: center 20%; /* Adjusted to focus on the main branding in the image */
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
}

/* Clearer Overlay: Removed the heavy blur to show the image details */
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Subtle dark gradient just at the bottom for text contrast */
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    padding: 40px;
    /* Semi-transparent "Glass" card to make text pop while keeping image clear */
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px); 
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 20px;
}

.hero h1 {
    font-size: 2.8rem; /* Slightly smaller for better balance */
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    font-weight: 400;
}

.btn {
    padding: 14px 30px;
    background: var(--brand-red);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--brand-blue);
    transform: scale(1.05);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero-content {
        padding: 25px;
    }
}

.hero p {
    font-size: 1.25rem;
    color: #cbd5e1; /* Subtle blue-grey for the paragraph text */
    margin-bottom: 3rem;
    line-height: 1.8;
}

.btn {
    padding: 16px 35px;
    background: var(--brand-red); /* Your Red brand color from the logo */
    color: white;
    text-decoration: none;
    border-radius: 4px; /* More modern shape */
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: var(--brand-blue); /* Switches to blue on hover */
}

/* Responsive adjustments for phones */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
        background-attachment: scroll; /* Fixes fixed background issues on some mobile browsers */
    }
    .hero h1 {
        font-size: 2.2rem;
    }
}



/* --- Partner Ticker --- */
.ticker-wrapper {
    background: #fff;
    padding: 50px 0;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.ticker-title {
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.ticker-track {
    display: flex;
    width: calc(280px * 12);
    animation: scroll 30s linear infinite;
}

.logo-item {
    width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    transition: 0.3s;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-280px * 6)); }
}

/* --- Brand Ticker Colors --- */
.brand-blue { color: #2563eb; }
.brand-green { color: #10b981; }
.brand-gold { color: #f59e0b; }
.brand-red { color: #ef4444; }

/* --- About Section --- */
/* --- Optimized About Section --- */
.about-section {
    padding: 100px 5%;
    background: var(--bg-light);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Text gets a bit more space */
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--brand-dark);
}

.about-text h2 span {
    color: var(--brand-blue);
}

/* --- High-Impact Stats Styling --- */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0; /* Subtle line to separate from paragraph */
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-left: 3px solid var(--brand-red); /* Your logo red */
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateX(5px);
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--brand-blue); /* Your logo blue */
}

.stat-content h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0; /* Override global p margins */
}

/* Mobile Fix: Stack them on small screens */
@media (max-width: 600px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* --- The Image Container Fix --- */
.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible; /* Allows badge to pop out */
}

.about-img-file {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    display: block;
}

/* Floating Badge Styling */
.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--brand-blue);
    color: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0, 115, 188, 0.3);
    animation: float 3s ease-in-out infinite;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
}

.experience-badge .exp-text {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Mobile Fix */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .about-stats {
        justify-content: center;
    }
    .experience-badge {
        position: static;
        margin: 20px auto 0;
        width: fit-content;
    }
}

//* --- Services Section Premium Styling --- */
.services-section {
    padding: 100px 5%;
    background: #ffffff;
    text-align: center;
}

.section-title .badge {
    background: rgba(0, 115, 188, 0.1);
    color: var(--brand-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 60px auto 0;
}

.service-card {
    background: #fff;
    padding: 50px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: left;
}

/* Hover Effect: Changes top border from Blue to Red */
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 5px;
    background: var(--brand-blue);
    transition: background 0.3s ease;
}

.service-card:hover::before {
    background: var(--brand-red);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: rgba(0, 115, 188, 0.1);
}

/* Icon Box Styling */
.service-icon-box {
    width: 70px;
    height: 70px;
    background: #f8fafc;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.3s;
}

.service-icon-box i {
    font-size: 2rem;
    color: var(--brand-blue);
}

.service-card:hover .service-icon-box {
    background: var(--brand-red);
}

.service-card:hover .service-icon-box i {
    color: #fff;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--brand-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Learn More Link */
.service-link {
    text-decoration: none;
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.service-link i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.service-card:hover .service-link {
    color: var(--brand-red);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}
/* --- Portfolio --- */
./* --- Portfolio Mosaic Styling --- */
.portfolio-section {
    padding: 100px 5%;
    background: var(--bg-light);
}

.filter-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--brand-blue);
    color: white;
    border-color: var(--brand-blue);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.portfolio-item {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.item-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.portfolio-item:hover .item-inner {
    transform: scale(1.1);
}

/* Category Badge */
.item-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--brand-red);
    color: white;
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

/* Glass Info Card */
.item-info {
    background: rgba(15, 23, 42, 0.85); /* Deep dark glass */
    backdrop-filter: blur(10px);
    padding: 30px;
    color: white;
    transform: translateY(60px); /* Hides part of the info until hover */
    transition: transform 0.4s ease;
    z-index: 2;
}

.portfolio-item:hover .item-info {
    transform: translateY(0);
}

.item-info h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.item-info p {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.view-project {
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
/* --- Contact Section --- */
.contact-section {
    padding: 100px 5%;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.input-group {
    margin-bottom: 20px;
}

.input-group input, .input-group select, .input-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
}

.input-group input:focus {
    border-color: var(--brand-blue);
    outline: none;
}

/* --- Footer --- */
./* --- Footer Spacing & Divider --- */
.footer-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: 100px; /* Forces space from the section above */
    background: var(--bg-light); /* Matches the section above it */
}

.footer-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.footer-divider .shape-fill {
    fill: #004e92; /* Must match the start of the footer gradient */
}

/* --- World Class Gradient Footer --- */
.footer {
    /* Premium Blue-Green Gradient */
    background: linear-gradient(135deg, #004e92 0%, #001f3f 40%, #006466 100%);
    color: #ffffff;
    padding: 60px 5% 30px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #38ef7d; /* Emerald Green accent for headings */
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    filter: brightness(1.2);
}

.logo-text-footer {
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
}

.logo-text-footer span {
    display: block;
    font-size: 0.65rem;
    color: #38ef7d;
    letter-spacing: 3px;
}

/* Links & Hover States */
.footer-links li {
    list-style: none;
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #38ef7d;
    transform: translateX(5px);
    display: inline-block;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: #38ef7d;
}

/* Footer Bottom Bar */
.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Fix */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo, .contact-item {
        justify-content: center;
    }
    .footer-divider svg {
        height: 50px;
    }
}

/* Filter Buttons */
.filter-btn {
    padding: 10px 25px;
    border: 2px solid #e2e8f0;
    background: transparent;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    color: var(--text-muted);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: white;
}

/* 1. Make the overlay always visible instead of appearing on hover */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use a semi-transparent gradient so the text is readable over the image */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: flex-end; /* Keeps text at the bottom */
    padding: 30px;
    opacity: 1 !important; /* Forces visibility */
    visibility: visible !important; /* Forces visibility */
    transition: none !important; /* Removes the sliding animation */
}

/* 2. Ensure the content inside doesn't move or hide */
.overlay-content {
    transform: translateY(0) !important; /* Keeps content in place */
    opacity: 1 !important;
    transition: none !important;
}

/* 3. Optional: Stop the image from zooming or changing on hover */
.project-card:hover img {
    transform: scale(1) !important;
    opacity: 0.7 !important; /* Keep image slightly dimmed for text readability */
}
.overlay-content h3 {
    color: white;
    font-size: 1.5rem;
    margin: 10px 0;
}

.overlay-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Portfolio Link Buttons */
.portfolio-link-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.portfolio-link-btn.primary {
    background: var(--brand-red);
    border-color: var(--brand-red);
}

.portfolio-link-btn.secondary {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.portfolio-link-btn:hover {
    background: white;
    color: var(--brand-dark);
    transform: translateY(-3px);
}

/* Ensure the overlay is always ready for the flex buttons */
.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* ==========================================
   MODAL MASTER STYLES (The Background)
   ========================================== */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.9); /* Deep Navy Overlay */
    backdrop-filter: blur(8px);
    overflow-y: auto;
    padding: 20px;
}

/* Modal Content Box - Horizontal Layout */
.modal-content.horizontal-layout {
    background-color: #ffffff;
    margin: 50px auto;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-top: 6px solid var(--brand-blue);
    animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Close Button */
.close-btn {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-muted);
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: var(--brand-red);
}

/* Modal Header */
.modal-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 20px;
}

.modal-header h2 {
    font-size: 1.8rem;
    color: var(--brand-dark);
}

/* Grid Layout for Form */
.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 30px;
}

/* Form Group Styling */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label i {
    color: var(--brand-red);
    margin-right: 8px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    font-size: 0.95rem;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 115, 188, 0.1);
}

/* Footer & Submit */
.modal-footer {
    grid-column: span 2;
    text-align: right;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.btn-submit {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-red) 100%);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(237, 28, 36, 0.3);
}

/* Success Message Overlay */
.success-overlay {
    text-align: center;
    padding: 60px 20px;
}

.success-overlay i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr; /* Stacks to single column */
    }
    .modal-footer {
        grid-column: span 1;
        text-align: center;
    }
    .modal-content.horizontal-layout {
        padding: 25px;
        margin: 20px auto;
    }
}

/* The Blinking Green Pulse */
.green-pulse {
    color: #10b981 !important; /* Added !important to force GREEN */
    font-size: 8px; 
    margin-right: 6px;
    vertical-align: middle;
    animation: blink-green 1.8s infinite ease-in-out;
    filter: drop-shadow(0 0 3px rgba(16, 185, 129, 0.6));
    display: inline-block; /* Ensures transform/scale works properly */
}

@keyframes blink-green {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(0.7); }
    100% { opacity: 1; transform: scale(1); }
}

/* Container for the hover effect */
.status-trigger {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* The Hidden "System Online" Label */
.status-label {
    background: #10b981; /* Matches the Green Pulse */
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* Animation Properties */
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-left: 5px;
}

/* Hover Reveal Logic */

:hover .status-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.green-pulse {
    color: #10b981 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 12px; /* Base size of the solid dot */
    margin-right: 8px;
}

/* The Expanding Ring */
.green-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #10b981;
    border-radius: 50%;
    z-index: -1;
    animation: radar-pulse 2s infinite ease-out;
}

@keyframes radar-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(3.5); /* This controls how "large" the pulse goes */
        opacity: 0;
    }
}

/* Optional: Slight glow on the center dot */
.green-pulse {
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}
@keyframes blink-green {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.7); }
    100% { opacity: 1; transform: scale(1); }
}

/* FAQ Page Specific Styles */
.page-header {
    background: var(--brand-dark);
    padding: 150px 5% 80px;
    text-align: center;
    color: white;
}

.faq-section {
    padding: 80px 5%;
    background: #f8fafc;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category h3 {
    margin: 40px 0 20px;
    color: var(--brand-blue);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fff;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 10px 25px 25px;
}

.faq-item.active .faq-question {
    color: var(--brand-red);
}

.faq-item.active i {
    transform: rotate(180deg);
}

.search-container {
    position: relative;
    max-width: 600px;
    margin: 30px auto 0;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-blue);
    font-size: 1.2rem;
}

#faqSearch {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border-radius: 50px;
    border: none;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

#faqSearch:focus {
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

/* Style for when no results are found */
.no-results {
    text-align: center;
    padding: 40px;
    display: none;
    color: #64748b;
}

.testimonials-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-blue);
    background: rgba(255, 255, 255, 0.05);
}

.quote-icon {
    font-size: 2rem;
    color: var(--brand-blue);
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.author-info h4 {
    color: #fff;
    margin-bottom: 5px;
}

.author-info span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.impact-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--brand-red);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

:root {
    --brand-blue: #0073bc;
    --brand-red: #ed1c24;
    --dark-bg: #0b0f1a;
}

.cctv-case-hero {
    height: 50vh;
    background: linear-gradient(rgba(11, 15, 26, 0.8), rgba(11, 15, 26, 0.9)), url('cctv-hub.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.status-badge {
    background: rgba(0, 115, 188, 0.2);
    border: 1px solid var(--brand-blue);
    color: var(--brand-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.spec-ribbon {
    display: flex;
    justify-content: space-around;
    background: white;
    padding: 30px 5%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: -40px;
    width: 90%;
    margin-inline: auto;
    border-radius: 12px;
}

.spec-node { text-align: center; }
.spec-node i { color: var(--brand-red); font-size: 1.5rem; margin-bottom: 8px; display: block;}
.spec-node span { font-weight: 800; color: #1a1a1a; display: block;}
.spec-node label { font-size: 0.7rem; color: #888; text-transform: uppercase;}




/* High-Contrast "Get Started" Button */
.btn-get-started {
    background: linear-gradient(135deg, #0073bc 0%, #ed1c24 100%);
    color: white !important;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 115, 188, 0.3);
}

.btn-get-started:hover {
    background: linear-gradient(135deg, #ed1c24 0%, #0073bc 100%); /* Flip gradient on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 28, 36, 0.4);
    color: white !important;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .btn-get-started {
        margin-top: 15px;
        text-align: center;
        width: 100%;
    }
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* --- INFINITE MARQUEE --- */
.partners-marquee {
    padding: 40px 0;
    background: #f8f9fa;
    overflow: hidden;
    border-top: 1px solid #eee;
}

.marquee-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
}

.marquee-container {
    display: flex;
    width: 100%;
}

.marquee-track {
    display: flex;
    animation: scroll 25s linear infinite;
    width: calc(250px * 10); /* Adjust based on card width and count */
}

.partner-card {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-right: 1px solid #ddd;
    transition: all 0.3s ease;
}

.partner-card i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #0044cc; /* Brand Blue */
}

.partner-card small {
    font-size: 0.65rem;
    color: #ed1c24; /* Brand Red */
    font-weight: 600;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); }
}

/* Pause on hover for accessibility */
.marquee-track:hover {
    animation-play-state: paused;
}

/* --- GLASS NAV MODERNA --- */
#navbar.scrolled {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.process-section {
    padding: 80px 0;
    background: #ffffff;
}

.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.process-item {
    text-align: center;
    position: relative;
    padding: 20px;
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateY(-10px);
}

.process-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 68, 204, 0.05); /* Very light blue */
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0044cc, #ed1c24);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 68, 204, 0.2);
}

.process-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #333;
}

.process-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Connecting Line for Desktop */
@media (min-width: 992px) {
    .process-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 60px;
        right: -20%;
        width: 40%;
        height: 2px;
        background: repeating-linear-gradient(to right, #ccc, #ccc 5px, transparent 5px, transparent 10px);
        z-index: 1;
    }
}

/* Unique Wifi Page Styling */
.wifi-hero {
    height: 70vh;
    background: url('wifi-bg.jpg') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.wifi-architecture {
    padding: 80px 0;
    background-image: radial-gradient(#0044cc15 1px, transparent 1px);
    background-size: 30px 30px; /* Technical Grid Pattern */
}

.arch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.arch-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 4px solid #0044cc;
    transition: 0.3s;
}

.arch-card:hover {
    transform: translateY(-10px);
    border-bottom-color: #ed1c24; /* Changes to Red on Hover */
}

.sol-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 60px 5%;
}

.sol-row.reverse { flex-direction: row-reverse; }

.sol-image, .sol-text { flex: 1; min-width: 350px; padding: 30px; }

.sol-text h3 { font-size: 2rem; margin-bottom: 20px; color: #1a1a1a; }

.sol-text ul { list-style: none; }

.sol-text ul li { margin-bottom: 15px; font-size: 1.1rem; color: #555; }

.sol-text i { color: #ed1c24; margin-right: 10px; }

/* PRICING */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 20px;
}

.price-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px;
    border-radius: 20px;
    width: 320px;
    text-align: center;
    transition: 0.4s;
}

.price-card.featured {
    border: 2px solid #0044cc;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,68,204,0.1);
    position: relative;
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ed1c24;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price-header h3 { color: #888; font-size: 0.9rem; letter-spacing: 1px; }
.price { font-size: 2.5rem; font-weight: 800; color: #1a1a1a; margin: 15px 0; }
.price span { font-size: 1rem; color: #888; }

.btn-price {
    display: block;
    margin-top: 30px;
    padding: 12px;
    background: #0044cc;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}
/* BENTO GRID LAYOUT */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
    margin-top: 40px;
}

.bento-item {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #eee;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-dash { grid-column: span 2; grid-row: span 2; background: #0a0c10; color: #fff; }
.tech-card { grid-column: span 1; display: flex; flex-direction: column; justify-content: center; text-align: center; }
.blue-grad { background: linear-gradient(135deg, #0044cc, #0066ff); color: #fff; border: none; }
.dark-card { background: #1a1a1a; color: #fff; border: none; }
.wide-card { grid-column: span 2; display: flex; align-items: center; justify-content: space-between; }

.bento-item:hover { transform: scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

/* TERMINAL TEXT LOOK */
.terminal-window {
    background: rgba(0,0,0,0.3);
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.7rem;
    color: #00ffcc;
    border-left: 2px solid #00ffcc;
}

/* PREMIUM PRICING */
.pricing-premium {
    padding: 100px 0;
    position: relative;
    background: #fdfdfd;
    overflow: hidden;
}

.pricing-bg-text {
    position: absolute;
    font-size: 15vw;
    font-weight: 900;
    color: rgba(0,0,0,0.02);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.plan-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.modern-card {
    background: #fff;
    border-radius: 30px;
    padding: 50px 40px;
    width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.modern-card.featured {
    background: #0a0c10;
    color: #fff;
    transform: translateY(-20px);
}

.speed-indicator {
    background: #eee;
    height: 6px;
    border-radius: 10px;
    margin: 20px 0;
    position: relative;
}

.featured .speed-indicator { background: #333; }

.speed-bar {
    position: absolute;
    height: 100%;
    background: linear-gradient(to right, #0044cc, #ed1c24);
    border-radius: 10px;
}

.btn-modern {
    display: block;
    padding: 18px;
    text-align: center;
    border: 2px solid #0044cc;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 30px;
    color: #0044cc;
    transition: 0.3s;
}

.btn-modern.primary {
    background: #0044cc;
    color: #fff;
    border: none;
}/* --- GLOBAL REFINEMENTS --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 768px) { .grid-2 { grid-template-columns: 1fr; } }

/* --- GLASS DASHBOARD --- */
.glass-dashboard {
    background: rgba(20, 25, 35, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    font-family: 'Courier New', monospace;
    position: relative;
    overflow: hidden;
}

.live-indicator {
    color: #00ffcc;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.dot.pulse {
    height: 8px;
    width: 8px;
    background: #00ffcc;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    box-shadow: 0 0 10px #00ffcc;
    animation: blink 1s infinite;
}

.stat-row { display: flex; gap: 15px; margin: 20px 0; }
.s-card {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 10px;
    flex: 1;
    text-align: center;
}
.s-card h5 { color: #fff; font-size: 1.2rem; margin-bottom: 5px; }
.s-card p { color: #00ffcc; font-size: 0.6rem; text-transform: uppercase; }

/* LIVE GRAPH ANIMATION */
.live-graph {
    height: 100px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 10px;
    background: rgba(0,0,0,0.2);
    border-radius: 5px;
}
.bar {
    flex: 1;
    background: linear-gradient(to top, #0044cc, #00ffcc);
    animation: grow 2s infinite ease-in-out;
}
.bar-1 { animation-delay: 0.1s; height: 40%; }
.bar-2 { animation-delay: 0.3s; height: 70%; }
.bar-3 { animation-delay: 0.2s; height: 50%; }
.bar-4 { animation-delay: 0.5s; height: 90%; }
.bar-5 { animation-delay: 0.4s; height: 60%; }

@keyframes grow {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.6); }
}

/* --- PRICING V2 --- */
.plan-grid { display: flex; gap: 30px; justify-content: center; padding-top: 50px; }
.plan-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    width: 350px;
    border: 1px solid #eee;
    transition: 0.4s;
}
.plan-card.featured {
    border: 2px solid #0044cc;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,68,204,0.1);
    position: relative;
}
.plan-header h4 { font-size: 0.8rem; text-transform: uppercase; color: #888; }
.price { font-size: 3rem; font-weight: 800; margin: 10px 0; }
.price span { font-size: 1rem; color: #999; }
.plan-btn {
    display: block;
    text-align: center;
    padding: 15px;
    background: #0044cc;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}
/* --- SECTION V3 LAYOUT --- */
.network-ops-v3 { padding: 100px 0; background: #fcfcfc; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.status-pill {
    display: inline-flex;
    align-items: center;
    background: #eef2ff;
    color: #0044cc;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pulse-dot {
    height: 8px; width: 8px;
    background: #00ffcc;
    border-radius: 50%;
    margin-right: 10px;
    animation: blink 1.2s infinite;
}

/* --- GLASS DASHBOARD PRO --- */
.glass-dashboard-pro {
    background: #0f172a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.dash-chrome {
    background: rgba(255,255,255,0.05);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.window-dots span {
    height: 8px; width: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    background: #4a5568;
}

.dash-title { color: #94a3b8; font-size: 0.7rem; font-family: monospace; }

.dash-inner { padding: 30px; }

.live-metrics { display: flex; gap: 40px; margin-bottom: 30px; }
.metric small { color: #64748b; font-size: 0.6rem; letter-spacing: 1px; }
.m-value { color: #00ffcc; font-family: 'Courier New'; font-size: 1.5rem; font-weight: bold; }

/* VISUALIZER ANIMATION */
.visualizer {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
    margin-bottom: 25px;
}

.v-bar {
    flex: 1;
    background: linear-gradient(to top, #0044cc, #ed1c24);
    animation: fluctuate 1.5s infinite ease-in-out;
}

.terminal-feed {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.6;
}

@keyframes fluctuate {
    0%, 100% { height: 30%; }
    50% { height: 100%; }
}

.v-bar:nth-child(2) { animation-delay: 0.2s; }
.v-bar:nth-child(3) { animation-delay: 0.4s; }
.v-bar:nth-child(4) { animation-delay: 0.1s; }
.v-bar:nth-child(5) { animation-delay: 0.3s; }

/* --- COMMAND CENTER SECTION --- */
.command-center {
    padding: 120px 0;
    background: #05070a; /* Deep tech black */
    position: relative;
    overflow: hidden;
    color: #fff;
}

.bg-watermark {
    position: absolute;
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    top: 50%;
    left: -10%;
    pointer-events: none;
    user-select: none;
}

.cc-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* --- TEXT CONTENT --- */
.intel-tag {
    color: #ed1c24;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.cc-title { font-size: 3.5rem; line-height: 1.1; margin-bottom: 25px; }

.bento-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.mini-item {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 12px;
    border-left: 3px solid #0044cc;
}

.mini-item h5 { color: #0044cc; margin-bottom: 8px; }
.mini-item p { font-size: 0.8rem; color: #94a3b8; }

/* --- THE CONSOLE --- */
.main-console {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    position: relative;
}

.console-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.status-indicator { color: #ed1c24; font-size: 0.7rem; font-weight: bold; }
.pulse-red {
    height: 8px; width: 8px; background: #ed1c24;
    border-radius: 50%; display: inline-block;
    margin-right: 8px; animation: blink 1s infinite;
}

.network-wave {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    margin-bottom: 30px;
}

.wave-bar {
    flex: 1;
    background: linear-gradient(to top, #0044cc, #ed1c24);
    height: var(--h);
    animation: bounce 1.5s infinite ease-in-out;
    animation-delay: var(--d);
}

.data-packets { font-family: 'Courier New', monospace; font-size: 0.8rem; color: #00ffcc; }

/* FLOATING CARD ACCESORY */
.floating-stat-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: #0044cc;
    padding: 20px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0,68,204,0.3);
}

.floating-stat-card i { font-size: 1.5rem; }

@keyframes bounce {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}
.territory-showcase {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.location-cards {
    margin-top: 30px;
}

.loc-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #eee;
    transition: 0.3s ease;
}

.loc-card.active {
    border-left-color: #ed1c24; /* Your Brand Red */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.loc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.loc-header i { color: #0044cc; font-size: 1.2rem; }
.live-tag {
    margin-left: auto;
    background: #00ffcc;
    color: #05070a;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* --- THE RADAR MAP --- */
.map-visual-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.radar-circle {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 1px solid rgba(0, 68, 204, 0.1);
    position: relative;
    background: radial-gradient(circle, rgba(0, 68, 204, 0.05) 0%, transparent 70%);
}

.radar-sweep {
    position: absolute;
    width: 50%;
    height: 50%;
    top: 0;
    left: 50%;
    background: linear-gradient(90deg, transparent, rgba(0, 68, 204, 0.2));
    transform-origin: bottom left;
    animation: radar-spin 4s linear infinite;
    border-left: 1px solid #0044cc;
}

@keyframes radar-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* MAP PINS */
.map-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.pin-dot {
    width: 12px;
    height: 12px;
    background: #ed1c24;
    border-radius: 50%;
    box-shadow: 0 0 15px #ed1c24;
    animation: pin-pulse 2s infinite;
}

.pin-label {
    font-size: 0.7rem;
    font-weight: 800;
    margin-top: 5px;
    color: #333;
}

@keyframes pin-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Adjust pin positions to look like a map */
.p-kitengela { top: 70%; left: 30%; }
.p-embakasi { top: 40%; left: 60%; }
.p-kroad { top: 20%; left: 40%; }

.deployment-pipeline {
    padding: 100px 0;
    background: #fdfdfd;
}

.pipeline-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    position: relative;
    flex-wrap: wrap;
}

.pipe-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #0044cc;
    position: relative;
    transition: 0.4s ease;
}

.pipe-step.active .step-icon {
    border-color: #ed1c24;
    color: #ed1c24;
    box-shadow: 0 0 20px rgba(237, 28, 36, 0.2);
}

.step-num {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #05070a;
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pipe-line {
    flex-grow: 1;
    height: 2px;
    background: #eee;
    margin-top: 40px;
    position: relative;
}

.pipe-step h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #05070a;
}

.pipe-step p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* THE BUTTON */
.cta-box {
    text-align: center;
    margin-top: 50px;
}

.btn-mega {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: #0044cc;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 68, 204, 0.3);
}

.btn-mega:hover {
    background: #ed1c24;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(237, 28, 36, 0.4);
}

@media (max-width: 991px) {
    .pipe-line { display: none; }
    .pipeline-wrapper { flex-direction: column; align-items: center; }
}
.live-app-performance {
    padding: 100px 0;
    background: #0a0c10; /* Match your "Command Center" theme */
    color: #fff;
}

.performance-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.latency-legend {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.leg-item { font-size: 0.75rem; color: #94a3b8; display: flex; align-items: center; }
.dot { height: 8px; width: 8px; border-radius: 50%; margin-right: 8px; }
.dot.green { background: #00ffcc; box-shadow: 0 0 10px #00ffcc; }
.dot.gray { background: #444; }

/* --- BAR VISUALIZER --- */
.perf-visualizer {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
}

.app-row { margin-bottom: 35px; }
.app-row:last-child { margin-bottom: 0; }

.app-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.app-meta i { color: #0044cc; }

.ping-bars {
    position: relative;
    height: 40px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bar-pmt, .bar-std {
    height: 12px;
    border-radius: 50px;
    position: relative;
    transition: 1s ease-in-out;
}

.bar-pmt {
    background: linear-gradient(90deg, #0044cc, #00ffcc);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
    animation: slideIn 1.5s ease-out;
}

.bar-std {
    background: #333;
    opacity: 0.6;
}

.bar-pmt span, .bar-std span {
    position: absolute;
    right: -50px;
    top: -2px;
    font-size: 0.7rem;
    font-family: monospace;
    color: #00ffcc;
}

.bar-std span { color: #888; }

@keyframes slideIn {
    from { width: 0; }
}

@media (max-width: 991px) {
    .performance-grid { grid-template-columns: 1fr; gap: 40px; }
}
.global-uptime {
    padding: 60px 0;
    background: #05070a;
}

.uptime-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    backdrop-filter: blur(10px);
}

.uptime-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.system-id { color: #94a3b8; display: flex; align-items: center; gap: 10px; }
.live-pulse { color: #00ffcc; display: flex; align-items: center; gap: 10px; }

.counter-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.count-unit h2 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    font-family: 'Courier New', monospace;
}

.count-unit span {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 800;
}

.count-divider {
    font-size: 3rem;
    color: #222;
    padding-bottom: 30px;
}

/* Secondary units (Seconds) fade out slightly */
.secondary { opacity: 0.4; }

.uptime-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 0.85rem;
}

.verification-tag {
    color: #0044cc;
    font-weight: 700;
}
/* Makes the terminal lines appear one by one */
.data-packets .packet {
    opacity: 0;
    animation: fadeInOut 4s infinite;
}

.data-packets .packet:nth-child(1) { animation-delay: 0s; }
.data-packets .packet:nth-child(2) { animation-delay: 1.3s; }
.data-packets .packet:nth-child(3) { animation-delay: 2.6s; }

@keyframes fadeInOut {
    0%, 100% { opacity: 0; transform: translateY(5px); }
    10%, 90% { opacity: 1; transform: translateY(0); }
}

.plan-card.featured {
    position: relative;
    border: 2px solid #0044cc;
}

.ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ed1c24, #ff5f6d);
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(237, 28, 36, 0.3);
}
