/*
Theme Name: ISCL
Theme URI: https://intelligentsports.com
Author: Intelligent Sports Co., Limited
Author URI: https://intelligentsports.com
Description: Professional WordPress theme for Intelligent Sports Co., Limited - AI-TCW product landing page. Features a modern tech-focused design with deep navy blue and cyan accent colors.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iscl
Tags: custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

ISCL WordPress Theme, Copyright 2024 Intelligent Sports Co., Limited
*/

/* ========================================
   CSS Variables
   ======================================== */
:root {
    --iscl-primary: #0a1628;
    --iscl-secondary: #0f2744;
    --iscl-accent: #00d4ff;
    --iscl-accent-dark: #00a8cc;
    --iscl-white: #ffffff;
    --iscl-light-gray: #e8edf3;
    --iscl-text-gray: #b0bec5;
    --iscl-success: #4caf50;
    --iscl-transition: 0.3s ease;
    --iscl-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    --iscl-shadow-hover: 0 8px 30px rgba(0, 212, 255, 0.2);
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--iscl-white);
    background-color: var(--iscl-primary);
    overflow-x: hidden;
}

a {
    color: var(--iscl-accent);
    text-decoration: none;
    transition: var(--iscl-transition);
}

a:hover {
    color: var(--iscl-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--iscl-white);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--iscl-text-gray);
}

.text-accent {
    color: var(--iscl-accent);
}

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

/* ========================================
   Container & Layout
   ======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-dark {
    background-color: var(--iscl-primary);
}

.section-secondary {
    background-color: var(--iscl-secondary);
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ========================================
   Header & Navigation
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--iscl-transition);
}

.site-header.scrolled {
    background: rgba(10, 22, 40, 0.98);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo img {
    height: 45px;
    width: auto;
}

.site-logo .logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--iscl-white);
    line-height: 1.2;
}

.site-logo .logo-tagline {
    font-size: 0.7rem;
    color: var(--iscl-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: var(--iscl-white);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--iscl-accent);
    transition: var(--iscl-transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--iscl-accent);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--iscl-white);
    transition: var(--iscl-transition);
}

/* ========================================
   Hero Banner
   ======================================== */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.7) 50%, rgba(0, 212, 255, 0.1) 100%);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
    color: var(--iscl-accent);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--iscl-light-gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--iscl-transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--iscl-accent) 0%, var(--iscl-accent-dark) 100%);
    color: var(--iscl-primary);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
    color: var(--iscl-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--iscl-white);
    border: 2px solid var(--iscl-accent);
}

.btn-secondary:hover {
    background: var(--iscl-accent);
    color: var(--iscl-primary);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Highlights Grid
   ======================================== */
.highlights-grid {
    background: var(--iscl-secondary);
    padding: 60px 0;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--iscl-transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--iscl-accent);
    box-shadow: var(--iscl-shadow-hover);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--iscl-accent) 0%, var(--iscl-accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.highlight-card h4 {
    margin-bottom: 10px;
    color: var(--iscl-white);
}

.highlight-card p {
    font-size: 0.95rem;
    color: var(--iscl-text-gray);
    margin: 0;
}

/* ========================================
   CTA Block
   ======================================== */
.cta-block {
    background: linear-gradient(135deg, var(--iscl-accent) 0%, var(--iscl-accent-dark) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-block h2 {
    color: var(--iscl-primary);
    margin-bottom: 1rem;
}

.cta-block p {
    color: rgba(10, 22, 40, 0.8);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.cta-block .btn {
    background: var(--iscl-primary);
    color: var(--iscl-white);
}

.cta-block .btn:hover {
    background: var(--iscl-secondary);
    transform: translateY(-3px);
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--iscl-shadow);
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content h2 span {
    color: var(--iscl-accent);
}

.about-features {
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--iscl-accent);
}

.about-feature h5 {
    color: var(--iscl-white);
    margin-bottom: 5px;
}

.about-feature p {
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   Services Section
   ======================================== */
.services-overview {
    padding: 100px 0;
    background: var(--iscl-secondary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
}

.services-dashboard {
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--iscl-shadow);
}

/* Service Modules */
.service-modules {
    padding: 100px 0;
}

.service-module {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 40px;
}

.service-module.reverse {
    direction: rtl;
}

.service-module.reverse > * {
    direction: ltr;
}

.service-module-content h3 {
    color: var(--iscl-accent);
    margin-bottom: 1rem;
}

.service-module-content ul {
    margin-top: 20px;
}

.service-module-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--iscl-text-gray);
}

.service-module-content li::before {
    content: '✓';
    color: var(--iscl-accent);
    font-weight: bold;
}

.service-module-image {
    border-radius: 15px;
    overflow: hidden;
}

.service-module-image img {
    width: 100%;
    transition: var(--iscl-transition);
}

.service-module:hover .service-module-image img {
    transform: scale(1.05);
}

/* ========================================
   Deployment Table
   ======================================== */
.deployment-section {
    padding: 100px 0;
    background: var(--iscl-secondary);
}

.deployment-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
}

.deployment-table th,
.deployment-table td {
    padding: 20px 25px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.deployment-table th {
    background: rgba(0, 212, 255, 0.1);
    color: var(--iscl-accent);
    font-weight: 600;
    font-size: 1rem;
}

.deployment-table td {
    color: var(--iscl-text-gray);
}

.deployment-table tr:hover td {
    background: rgba(0, 212, 255, 0.05);
}

.deployment-table .check {
    color: var(--iscl-success);
    font-size: 1.2rem;
}

.deployment-table .cross {
    color: #ef5350;
    font-size: 1.2rem;
}

/* ========================================
   Why Choose Us
   ======================================== */
.why-choose-us {
    padding: 100px 0;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: var(--iscl-transition);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--iscl-accent);
    box-shadow: var(--iscl-shadow-hover);
}

.why-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.why-card h4 {
    margin-bottom: 15px;
    color: var(--iscl-white);
}

.why-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================
   Workflow Section
   ======================================== */
.workflow-section {
    padding: 100px 0;
    background: var(--iscl-secondary);
}

.workflow-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
}

.workflow-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--iscl-accent) 0%, var(--iscl-accent-dark) 100%);
    border-radius: 2px;
}

.workflow-step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.workflow-step:nth-child(odd) {
    flex-direction: row-reverse;
}

.workflow-step-content {
    width: 45%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 15px;
}

.workflow-step:nth-child(odd) .workflow-step-content {
    text-align: right;
}

.workflow-step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--iscl-accent) 0%, var(--iscl-accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--iscl-primary);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
    z-index: 1;
}

.workflow-step h4 {
    color: var(--iscl-accent);
    margin-bottom: 10px;
}

.workflow-step p {
    font-size: 0.95rem;
    margin: 0;
}

.workflow-step-spacer {
    width: 45%;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 100px 0;
    position: relative;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.contact-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.9) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    color: var(--iscl-accent);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--iscl-accent);
    font-size: 1.2rem;
}

.contact-item h5 {
    color: var(--iscl-white);
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.contact-form h3 {
    color: var(--iscl-white);
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--iscl-light-gray);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: var(--iscl-white);
    font-size: 1rem;
    transition: var(--iscl-transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--iscl-accent);
    background: rgba(0, 212, 255, 0.05);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--iscl-text-gray);
}

.contact-form .btn {
    width: 100%;
}

/* Google Map */
.contact-map {
    margin-top: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--iscl-shadow);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: var(--iscl-primary);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about .site-logo {
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--iscl-accent);
    transition: var(--iscl-transition);
}

.footer-social a:hover {
    background: var(--iscl-accent);
    color: var(--iscl-primary);
}

.footer-links h5 {
    color: var(--iscl-white);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--iscl-text-gray);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--iscl-accent);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--iscl-text-gray);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-module {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .service-module.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--iscl-primary);
        padding: 20px;
        border-top: 1px solid rgba(0, 212, 255, 0.1);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .workflow-timeline::before {
        left: 30px;
    }
    
    .workflow-step,
    .workflow-step:nth-child(odd) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 70px;
    }
    
    .workflow-step-content,
    .workflow-step:nth-child(odd) .workflow-step-content {
        width: 100%;
        text-align: left;
    }
    
    .workflow-step-spacer {
        display: none;
    }
    
    .workflow-step-number {
        left: 30px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .deployment-table {
        font-size: 0.9rem;
    }
    
    .deployment-table th,
    .deployment-table td {
        padding: 15px 12px;
    }
}

/* ========================================
   Page Templates Specific
   ======================================== */
.page-template .site-main {
    padding-top: 100px;
}

.page-banner {
    background: var(--iscl-secondary);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
}

.page-banner h1 {
    position: relative;
    margin-bottom: 0.5rem;
}

.page-banner p {
    position: relative;
    font-size: 1.1rem;
    margin: 0;
}

/* Success Message */
.form-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid var(--iscl-success);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.form-success h4 {
    color: var(--iscl-success);
    margin-bottom: 10px;
}

.form-success p {
    margin: 0;
    color: var(--iscl-white);
}


/* Fix anchor offset for fixed header */
#ai-design,
#tender-check,
#doc-retrieval,
#deployment {
    scroll-margin-top: 80px;
}
