/* General Styles */
@font-face {
    font-family: 'Audiowide';
    src: url('/static/dashboard/fonts/Audiowide.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #0a0a0a; /* DARK MODE BACKGROUND */
    color: #ffffff; /* WHITE TEXT */
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Container Fix */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* 🔹 Add spacing between sections */
section {
    margin-top: 50px; /* Adds separation between sections */
    padding: 100px 0; /* Balanced spacing */
}

/* 🎨 HERO SECTION - FULL WIDTH, INTENSE ANIMATION */
.hero-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding: 0;
    margin: 0;
    z-index: 2;

    /* 🔥 Ensure full width background animation */
    background: linear-gradient(135deg, #000000, #121212, #242424, #3a3a3a, #565656);
    background-size: 700% 700%;
    animation: gradientShift 5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

/* 🔥 Fix Internal Container Issues */
.hero-section .container {
    width: 100%; /* Force it to use the full available width */
    max-width: 1200%;
    margin: 0 auto;
    padding: 0 20px;
}

/* 🚀 FIX BODY SPACING BELOW HERO */
body.homepage {
    padding-top: calc(90vh + 20px); /* Apply padding only for homepage */
}

body {
    margin: 0;
    padding: 0; /* Remove padding for all other pages */
    overflow-x: hidden;
}

/* Push down content for all pages except homepage */
body:not(.homepage) {
    padding-top: 80px; /* Adjust this based on header height */
}

/* Main Content Below Hero */
.main-content {
    margin-top: 90vh; /* Pushes body below hero section */
}

/* Add Spacing Below Hero Section */
.hero-section::after {
    content: "";
    display: block;
    height: 120px; /* Adjust spacing below hero section */
    background: transparent;
}

/* 🌟 More Intense Animated Gradient */
@keyframes gradientShift {
    0% { background-position: 0% 50%; filter: brightness(1.2) contrast(1.1); }
    25% { background-position: 50% 50%; filter: brightness(1.3) contrast(1.2); }
    50% { background-position: 100% 50%; filter: brightness(1.4) contrast(1.3); }
    75% { background-position: 50% 50%; filter: brightness(1.3) contrast(1.2); }
    100% { background-position: 0% 50%; filter: brightness(1.2) contrast(1.1); }
}

/* Announcement Banner */
.announcement {
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

/* Branding */
.hero-brand {
    font-family: 'Audiowide', sans-serif;
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 40px;
}

/* CTA BUTTONS */
.cta-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.cta-box {
    background: #1f1f1f;
    color: white;
    text-align: center;

    padding: 20px 30px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0px 6px 16px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
}

.cta-box:hover {
    background: #303030;
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.25);
}

.cta-box strong {
    font-size: 1.4rem;
    font-weight: bold;
}

.cta-box span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

/* WHY VELRIN SECTION - DARK THEME */
.why-choose-velrin {
    background: #1a1a1a;
    padding: 50px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
    color: white;
    padding-top: 100px;
    padding-bottom: 100px;
}

.why-choose-velrin h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

/* 🌟 Features Grid Section */
.features-section {
    padding: 60px 20px;
    background: #121212;
    text-align: center;
}

/* 🛠️ Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    justify-content: center;
    align-items: stretch;
    margin-top: 30px;
}

/* 🔹 Feature Box */
.feature-box {
    background: #222;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 188, 212, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 200px;
}

/* 🌟 Hover Effects */
.feature-box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.4);
}

/* 🔹 Feature Icons */
.feature-box i {
    font-size: 3rem;
    color: #00bcd4;
    margin-bottom: 15px;
}

/* 📝 Feature Titles */
.feature-box h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
}

/* 📄 Feature Descriptions */
.feature-box p {
    font-size: 1rem;
    color: #ccc;
    max-width: 90%;
}

/* INNOVATIONS SECTION */
.innovations {
    background: #111111;
    padding: 40px 20px;
    text-align: center;
    color: white;
    padding-top: 100px;
    padding-bottom: 100px;
}

.innovations h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.carousel-item {
    text-align: center;
}

.carousel-item .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carousel-item .innovation-item {
    padding: 20px;
    border-radius: 10px;
    background-color: #222222;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.carousel-item .innovation-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.carousel-item i {
    color: #00bcd4;
    margin-bottom: 10px;
}

.carousel-item p {
    font-size: 1.1rem;
    margin-top: 10px;
    color: #cccccc;
}

/* ABOUT SECTION */
.about {
    background: #1a1a1a;
    padding: 50px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
    color: white;
}
.about h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #b0b0b0;
}

.about i {
    color: #ffffff;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);

    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-logo {
    position: absolute;
    top: 10px; /* Slightly adjust */
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    max-width: 100px;
}

.velrin-logo {
    max-width: 90px; /* Reduce size */
    height: auto;
    filter: brightness(1.3) contrast(1.2); /* Keep visibility clear */
    animation: fadeIn 1.2s ease-in-out;
}

/* 🌟 Kanban Section - Animated Gradient Background */
.kanban-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #161616, #1f1f1f, #2a2a2a, #3b3b3b);
    background-size: 600% 600%;
    animation: intenseGradientShift 6s infinite ease-in-out;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
}

/* 🎨 Kanban Feature Cards */
.kanban-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.kanban-feature-box {
    background: #1f1f1f;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 6px 16px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    flex: 1;
    min-width: 250px;
    z-index: 1;
}

.kanban-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.15);
}

.kanban-feature-box i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #00bcd4;
}

/* 🔄 Gradient Animation */

@keyframes intenseGradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 100%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 0%; }
    100% { background-position: 0% 50%; }
}

/* 📱 Mobile Styles (For Screens Below 768px Wide) */
/* 📱 FINAL Mobile & Landscape Fixes */
@media screen and (max-width: 768px) {

    /* 🌟 Ensure Layout Fixes Apply */
    body {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        overflow-x: hidden !important;
    }

    section {
        padding: 40px 20px !important;
    }

    /* 🚀 Navbar Fix */
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(0, 0, 0, 0.9) !important;
        z-index: 1000 !important;
        padding: 15px 10px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .hero-section {
        padding-top: 100px !important;
        text-align: center !important;
    }

    /* ❌ Remove Unnecessary Hero Logo */
    .hero-logo {
        display: none !important;
    }

    /* 📌 Hero Section Fix */
    .hero-title {
        font-size: 2.2rem !important;
        margin-bottom: 10px !important;
        text-align: center !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
        padding: 0 10px !important;
    }

    /* ✅ Fix ALL Boxes for Every Section */
    .content-box, .solution-box, .careers-box, .pricing-box, .status-box, .press-box {
        width: 90% !important;
        max-width: 450px !important;
        padding: 20px !important;
        background: #292929 !important;
        border-radius: 10px !important;
        text-align: center !important;
        box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1) !important;
        margin: 15px auto !important;
    }

    /* 📰 Fix Press & Media (Center Alignment) */
    .press-container {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;
        text-align: center !important;
    }

    .press-box {
        width: 90% !important;
        max-width: 450px !important;
        padding: 20px !important;
        text-align: center !important;
    }

    /* 💼 Careers - Open Positions Fix */
    .positions-list {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 15px !important;
    }

    .position-box {
        width: 90% !important;
        max-width: 450px !important;
        text-align: center !important;
        padding: 20px !important;
    }

    /* 🔍 Fix Hero Text Overflow */
    .report-hero-title, .cybersecurity-hero-title {
        font-size: 2rem !important;
        text-align: center !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        padding: 0 10px !important;
    }

    /* 🔐 Fix "Our Core Security Principles" Inner Box Issue */
    .security-principles-container {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 15px !important;
        text-align: center !important;
    }

    .security-principle-box {
        width: 90% !important;
        max-width: 400px !important;
        padding: 20px !important;
        background: #292929 !important;
        border-radius: 10px !important;
        text-align: center !important;
    }

    /* 💲 Fix Pricing Boxes (Ensure Proper Spacing & Alignment) */
    .pricing-container {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 20px !important;
    }

    .pricing-box {
        min-width: 280px !important;
        max-width: 320px !important;
        padding: 20px !important;
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        text-align: center !important;
        margin-bottom: 20px !important; /* ✅ Ensure spacing */
    }

    /* ⭐ Fix Centered Highlighted Plan */
    .pricing-box.featured {
        max-width: 360px !important;
        background: linear-gradient(135deg, #007bff, #00aaff) !important;
        color: white !important;
        font-weight: bold !important;
    }

    /* 🔥 Fix Stacked Boxes in Task Management & Cybersecurity */
    .solution-section {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .solution-box {
        width: 90% !important;
        max-width: 400px !important;
        padding: 20px !important;
        text-align: center !important;
        background: #292929 !important;
        border-radius: 10px !important;
        box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1) !important;
        margin-bottom: 20px !important; /* ✅ Add consistent spacing */
    }

    /* 🎠 Fix Grid Spacing in Landscape Mode */
    @media screen and (max-width: 768px) and (orientation: landscape) {
        .grid-container, .solution-section, .pricing-container {
            display: grid !important;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
            gap: 20px !important;
            justify-content: center !important;
        }

        .content-box, .solution-box, .pricing-box {
            flex: 1 1 45% !important;
            min-width: 280px !important;
            max-width: 400px !important;
        }
    }

    /* 🎠 Fix Text Overflow in Landscape Mode */
    .pricing-box h2 {
        font-size: 1.5rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    /* 🎭 Footer Adjustments */
    .footer {
        padding: 20px !important;
        text-align: center !important;
    }
}


/* 🌎 Footer Styles */
.footer {
    background: #0a0a0a;
    padding: 50px 0;
    text-align: center;
    color: white;
    margin-top: 50px;
    box-shadow: 0 -2px 10px rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    width: 120px; /* Adjust logo size */
    margin-bottom: 10px;
}

.footer-text {
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.footer-column {
    text-align: left;
}

.footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #00bcd4;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.page-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;  /* Keep centered */
    padding: 80px 20px;  /* Reduce top padding */
    text-align: center;
}

/* 🚀 Task Management Hero Section */
.page-hero-section {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, #161616, #222222, #2f2f2f);
    color: white;
}

/* ✨ Subtle Page Title Animation */
.animated-text {
    font-size: 3rem;
    font-weight: bold;
    margin-top: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

/* 🔥 Call-to-Action Section */
.cta-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #222222, #2f2f2f);
    color: white;
}

/* 💰 Pricing Section */
.pricing-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background-color: #1f1f1f;
    color: #fff;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.pricing-card .btn {
    margin-top: 20px;
}

.pricing-card ul {
    padding-left: 0;
    list-style: none;
}

.pricing-card li {
    margin: 8px 0;
    font-size: 1rem;
}

.pricing-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 2rem;
    color: #00d6d6;
    font-weight: bold;
}

.pricing-card .trial {
    font-size: 0.95rem;
    color: #90ee90;
    margin-bottom: 15px;
}

.recommended {
    background: linear-gradient(135deg, #00bcd4, #0288d1);
    color: white;
}

.recommended .badge {
    background: #ffeb3b;
    color: #222;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 8px;
}

.table thead th {
    background-color: #1f1f1f;
    color: #fff;
}

.table td, .table th {
    vertical-align: middle;
    color: #ddd;
}

.text-trial-highlight {
    color: #90ee90;
    font-weight: 500;
    font-size: 0.95rem;
}

/* 🌍 Service Status Page */
.status-section {
    padding: 80px 20px;
    text-align: center;
    background: #1a1a1a;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 🌍 Service Status - Ensure Center Alignment */
.status-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 900px; 
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* 📌 Status Box - Enforces Equal Width & Height */
.status-box {
    flex: 1; /* Equal width for both boxes */
    min-width: 320px; /* Prevents shrinking */
    max-width: 400px; /* Consistency */
    height: 200px; /* Forces same height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #222222;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    overflow: hidden; /* Prevents box content from changing height */
}

/* 📝 Fix Text Wrapping Issue */
.status-box .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%; /* Ensures content fills the box evenly */
    text-align: center;
}

/* 📌 Status Box - Enforce Fixed Size */
.status-box, .status-history {
    width: 400px; /* Set fixed width */
    height: 250px; /* Set fixed height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #222222;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    overflow: hidden; /* Prevents box content from changing height */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.status-box:hover, .status-history:hover {
    transform: scale(1.05); /* ✅ Slightly expand on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* ✅ Soft glow effect */
}

.status-box .status-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.operational {
    color: #00bcd4;
}

/* 📝 Status History List */
.status-history ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
    width: 100%;
}

.status-history li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #cccccc;
}

/* 🚀 API Page Styling */
.api-info-section {
    padding: 80px 20px;
    text-align: center;
    background: #1a1a1a;
    color: white;
}

/* 🔥 Countdown Box Styling */
.countdown-box {
    font-size: 2rem;
    font-weight: bold;
    padding: 20px;
    background: #292929;
    border-radius: 12px;
    display: inline-block;
    margin-top: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
    animation: glowEffect 1.5s infinite alternate ease-in-out;
}

/* ✨ Glowing Effect */
@keyframes glowEffect {
    0% {
        box-shadow: 0 0 10px rgba(0, 188, 212, 0.3);
    }
    100% {
        box-shadow: 0 0 20px rgba(0, 188, 212, 0.9);
    }
}

/* 📌 Typing Dots Animation */
@keyframes dotsAnimation {
    0% { content: "."; }
    33% { content: ".."; }
    66% { content: "..."; }
    100% { content: ""; }
}

/* 📩 Call to Action */
.cta-container {
    margin-top: 30px;
}

.cta-container .btn {
    font-size: 1.2rem;
    padding: 12px 24px;
}

/* 📌 Privacy Page Styling */
.privacy-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #222;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 188, 212, 0.2);
    color: white;
}

/* 🔹 Table of Contents */
.privacy-toc {
    list-style: none;
    padding: 0;
    text-align: center;
}

.privacy-toc li {
    display: inline-block;
    margin: 10px;
}

.privacy-toc a {
    text-decoration: none;
    font-weight: bold;
    color: #00bcd4;
    transition: color 0.3s ease-in-out;
}

.privacy-toc a:hover {
    color: #ffffff;
}

/* 📖 Section Formatting */
.privacy-section {
    padding: 20px;
    margin-top: 30px;
    background: #292929;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(255, 255, 255, 0.1);
}

/* 🎬 Fade-In Effect */
.privacy-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* 🛠️ When Scrolled Into View */
.privacy-section.show {
    opacity: 1;
    transform: translateY(0);
}
/* 📜 Terms of Use Page */
.terms-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #222;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
    color: white;
}

/* 🔹 Table of Contents */
.terms-toc {
    list-style: none;
    padding: 0;
    text-align: center;
}

.terms-toc li {
    display: inline-block;
    margin: 10px;
}

.terms-toc a {
    text-decoration: none;
    font-weight: bold;
    color: #00bcd4;
    transition: color 0.3s ease-in-out;
}

.terms-toc a:hover {
    color: #ffffff;
}

/* 📜 Section Formatting */
.terms-section {
    padding: 20px;
    margin-top: 30px;
    background: #292929;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(255, 255, 255, 0.1);
}

/* 🎬 Fade-In Effect */
.terms-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* 🛠️ When Scrolled Into View */
.terms-section.show {
    opacity: 1;
    transform: translateY(0);
}
/* 🔐 Security Page Styles */
.security-pillars, .security-details, .trust-badges, .contact-security {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: #222;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
    text-align: center;
    color: white;
}

/* 🔹 Security Pillars */
.pillars-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.pillar {
    flex: 1;
    padding: 20px;
    background: #292929;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.pillar:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.pillar i {
    font-size: 2.5rem;
    color: #00bcd4;
    margin-bottom: 10px;
}

/* 🔹 Accordion Container */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 📌 Accordion Item */
.accordion-item {
    background: #292929;
    border-radius: 8px;
    overflow: hidden;
}

/* 🎯 Accordion Button - Main Style */
.accordion-button {
    background: #222222;
    color: #00bdc4;
    border: none;
    width: 100%;
    padding: 15px;
    text-align: left;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    position: relative; /* Needed for the custom arrow */
}

/* ❌ Remove Bootstrap’s Default Arrow */
.accordion-button::after {
    display: none !important; /* Hides Bootstrap's built-in arrow */
}

/* ✅ Custom Neon Arrow (FontAwesome) */
.accordion-button::before {
    content: "\f078"; /* FontAwesome down chevron */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 20px; /* Aligns arrow to the right */
    color: #00bcd4; /* Matches the neon color */
    font-size: 1rem;
    transition: transform 0.3s ease-in-out;
}

/* 🔼 Rotate Arrow When Open */
.accordion-button.active::before {
    transform: rotate(180deg);
}

/* 📝 Accordion Content - Initially Hidden */
.accordion-content {
    display: none;
    padding: 15px;
    text-align: left;
    background: #292929;
    color: white; /* Ensures text is readable */
    font-size: 1.1rem;
    line-height: 1.5;
}

/* 🎯 Show Content When Active */
.accordion-item.active .accordion-content {
    display: block;
}

/* 🏆 Trust Badges */
.badges-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.badges-container img {
    width: 100px;
    height: auto;
}

/* 📩 Contact Security */
.contact-security .btn {
    margin-top: 20px;
    font-size: 1.2rem;
    padding: 10px 20px;
}
.certifications {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.certifications img {
    max-height: 60px; /* Adjust size */
    filter: brightness(0) invert(1); /* Makes logos white for dark backgrounds */
}
/* 🔒 Report Vulnerabilities Section */
.report-section {
    padding: 80px 20px;
    text-align: center;
    background: #1a1a1a;
    color: white;
}

/* 📢 Report Steps */
.report-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.report-box {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: #292929;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.report-box:hover {
    transform: scale(1.05);
}

.report-box i {
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 10px;
}

/* 📩 Report Button */
.cta-center {
    margin-top: 40px;
}

.cta-center .btn {
    padding: 12px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
}
/* 🌟 About Velrin Page */
.about-mission-section {
    padding: 80px 20px;
    text-align: center;
    background: #1a1a1a;
    color: white;
}

.about-values-section {
    padding: 80px 20px;
    background: #222222;
    color: white;
    text-align: center;
}

/* 📌 Values Grid */
.values-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.value-box {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: #292929;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.value-box:hover {
    transform: scale(1.05);
}

.value-box i {
    font-size: 2.5rem;
    color: #00bcd4;
    margin-bottom: 10px;
}

/* 📊 Stats Grid */
.about-stats-section {
    padding: 80px 20px;
    text-align: center;
    background: #1a1a1a;
    color: white;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: #292929;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: #00bcd4;
}

.stat-box p {
    font-size: 1.2rem;
    color: white;
}

.stat-box:hover {
    transform: scale(1.05);
}
/* 🌟 Careers Page */
.careers-intro-section {
    padding: 80px 20px;
    text-align: center;
    background: #1a1a1a;
    color: white;
}

/* 🚀 Benefits Grid */
.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.benefit-box {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background: #292929;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.benefit-box:hover {
    transform: scale(1.05);
}

.benefit-box i {
    font-size: 2.5rem;
    color: #00bcd4;
    margin-bottom: 10px;
}

/* 🏆 Open Positions */
.open-positions-section {
    padding: 80px 20px;
    background: #222222;
    color: white;
    text-align: center;
}

.positions-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.position-box {
    flex: 1;
    min-width: 320px;
    max-width: 360px;
    background: #292929;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.position-box h3 {
    font-size: 1.5rem;
    color: white;
}

.position-box p {
    font-size: 1.1rem;
    color: #cccccc;
}

.badge {
    display: inline-block;
    padding: 8px 12px;
    margin-top: 10px;
    background: #00bcd4;
    color: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.apply-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #00bcd4;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.apply-btn:hover {
    background: #0097a7;
}

/* 📩 Careers Call to Action */
.careers-cta-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #222222, #2f2f2f);
    color: white;
    text-align: center;
}

/* 🌟 Job Listings */
.job-listings-section {
    padding: 60px 20px;
}

.job-card {
    background: #292929;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: scale(1.05);
}

/* 📄 Job Application */
.job-application-section {
    padding: 80px 20px;
    background: #1a1a1a;
    text-align: center;
    color: white;
}

.job-application-section form {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background: #292929;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    text-align: left;
}

.job-application-section input,
.job-application-section textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #444;
    background: #222;
    color: white;
}

.job-application-section input::placeholder,
.job-application-section textarea::placeholder {
    color: #aaa;
}

.job-application-section button {
    width: 100%;
    padding: 12px;
    background-color: #00bcd4;
    color: white;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.job-application-section button:hover {
    background-color: #0097a7;
}

/* ✅ Success & Error Messages */
.success-message, .error-message {
    text-align: center;
    font-size: 1rem;
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
}

.success-message {
    background: rgba(0, 255, 100, 0.2);
    color: #00ff64;
}

.error-message {
    background: rgba(255, 50, 50, 0.2);
    color: #ff3232;
}



/* 📬 Contact Us Page */
.contact-info-section {
    padding: 80px 20px;
    text-align: center;
    background: #1a1a1a;
    color: white;
}

/* 📌 Contact Info Grid */
.contact-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-box {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: #292929;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.contact-box:hover {
    transform: scale(1.05);
}

.contact-box i {
    font-size: 2.5rem;
    color: #00bcd4;
    margin-bottom: 10px;
}

/* 📩 Contact Form */
.contact-form-section {
    padding: 80px 20px;
    background: #222222;
    color: white;
    text-align: center;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background: #292929;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    background: #1a1a1a;
    color: white;
}

.form-group textarea {
    resize: vertical;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    background: #00bcd4;
    color: white;
    transition: background 0.3s ease;
}

button:hover {
    background: #0097a7;
}

/* 📰 Press & Media Page */
.press-news-section {
    padding: 80px 20px;
    text-align: center;
    background: #1a1a1a;
    color: white;
}

/* 📰 News Grid */
.news-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* 🎨 News Box Styling */
.news-box {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: rgba(41, 41, 41, 0.9);  /* Glassmorphism Effect */
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* 🎭 News Title */
.news-box h3 {
    font-size: 1.4rem;
    color: #00bcd4;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 8px;
}

/* 📜 News Summary */
.news-box p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
    max-height: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 🖼 Image */
.news-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* 📸 Media Kit Section */
.media-kit-section {
    padding: 80px 20px;
    background: #222222;
    color: white;
    text-align: center;
}

.media-kit-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.media-kit-links .btn {
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 5px;
    text-decoration: none;
}

/* 🎙️ Press Contact */
.press-contact-section {
    padding: 60px 20px;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.press-contact-section .press-email {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 15px;
}

.press-contact-section .press-email a {
    color: #00bcd4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.press-contact-section .press-email a:hover {
    color: #0097a7;
}
/* 📰 Press & Media Page */
.press-news-section, .velrin-spotlight-section {
    padding: 80px 20px;
    text-align: center;
    background: #1a1a1a;
    color: white;
}

/* 📌 News Grid */
.news-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.news-box {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: #292929;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.news-box:hover {
    transform: scale(1.05);
}

.news-box h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 10px;
}

.news-box p {
    font-size: 1rem;
    color: #ccc;
}

/* Velrin Spotlight Section */
.velrin-spotlight-section {
    background: #222222;
}
   
/* 🔥 Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #1a1a1a;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* 🔥 Logo */
.nav-left img {
    height: 50px;
}

/* 🍔 Hamburger Menu */
.hamburger-menu {
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    display: block;
}

/* 📜 Hidden Menu */
#nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #222;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
}

#nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#nav-menu ul li {
    padding: 10px;
    text-align: center;
}

#nav-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

#nav-menu ul li a:hover {
    color: #00bcd4;
}

/* ✨ Breathing Effect for Section Background & Text */
@keyframes breathingEffect {
    0% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(0, 188, 212, 0.3);
        text-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 30px rgba(0, 188, 212, 0.6);
        text-shadow: 0 0 20px rgba(0, 188, 212, 0.7);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(0, 188, 212, 0.3);
        text-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
    }
}

/* Apply animation to the full section */
.page-hero-section {
    animation: breathingEffect 4s infinite ease-in-out;
}

/* Keep text breathing effect */
.page-hero-section h1 {
    animation: breathingEffect 3s infinite ease-in-out;
}

/* ✅ Success Banner Styling */
.success-banner {
    background: #00bcd4;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}

/* 📝 Registration Page Styles */
.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    padding: 20px;
}

.register-box {
    background: #222222;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 400px;
}

.register-box h2 {
    color: #00bcd4;
    margin-bottom: 10px;
}

.register-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    color: white;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #333;
    color: white;
}

.btn-primary {
    background: #00bcd4;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #00e6ff;
}

.btn-outline-primary {
    color: #00bcd4;  /* Turquoise text */
    border: 2px solid #00bcd4;  /* Turquoise border */
    background: transparent;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
}

.btn-outline-primary:hover {
    color: #1a1a1a;  /* Dark text on hover */
    background: #00bcd4;  /* Turquoise background */
    border-color: #00bcd4;
}

/* 🚨 Error Message Styling */
.error-message {
    color: #ff4c4c;
    background: #2a0000;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
}

/* 🔥 FIX DROPDOWN MENU BACKGROUND */
.dropdown-menu {
    background: #292929 !important;  /* Consistent with Velrin dark theme */
    border: 1px solid #303030 !important; /* Slight contrast */
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1); /* Soft shadow */
    transition: opacity 0.2s ease-in-out; /* Smooth animation */
}

/* 🔥 DROPDOWN TEXT DEFAULT */
.dropdown-menu .dropdown-item {
    color: white !important; /* Ensures text is always visible */
    font-weight: 500; /* Slightly bold */
    padding: 10px 15px; /* Better spacing */
    transition: background 0.2s ease-in-out, color 0.2s ease-in-out; /* Smooth transition */
}

/* 🔥 HOVER EFFECT */
.dropdown-menu .dropdown-item:hover {
    background: #00bcd4 !important; /* Velrin’s turquoise */
    color: black !important; /* Ensures contrast */
    border-radius: 5px; /* Soft edges */
}

.nav-right .btn {
    min-width: 120px;  /* Ensures both buttons are the same width */
    padding: 10px 20px;  /* Ensures consistent padding */
    font-size: 1rem;  /* Keeps font size consistent */
    text-align: center;
}

.success-message {
    color: green;
    font-weight: bold;
    margin-top: 10px;
}

.error-message {
    color: red;
    font-weight: bold;
    margin-top: 10px;
}

/* 📩 API Waitlist Form */
.api-waitlist {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.2);
    text-align: center;
    max-width: 500px;
    margin: 30px auto;
}

.waitlist-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
}

.waitlist-subtitle {
    font-size: 1rem;
    color: #bbbbbb;
    margin-bottom: 15px;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.waitlist-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    background: #2b2b2b;
    color: white;
    text-align: center;
}

.waitlist-input:focus {
    outline: none;
    border: 2px solid #00bcd4;
}

.waitlist-btn {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    border-radius: 6px;
    background: #00bcd4;
    border: none;
    color: white;
    transition: 0.3s ease-in-out;
}

.waitlist-btn:hover {
    background: #0097a7;
}

/* 🎉 Success & Error Messages */
.success-message, .error-message {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 10px;
}

.success-message {
    color: #00ff00;
}

.error-message {
    color: #ff4444;
}

.alert-container {
  max-height: 200px;
  overflow-y: auto;
}

@media screen and (max-height: 900px) {
  .register-box {
    margin-bottom: 240px !important;
  }
}
.alert {
    padding: 10px;
    border-radius: 5px;
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
    font-weight: bold;
    text-align: center;
}
.alert-error,
.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}
