:root {
    --bg-dark: #bb0000;
    /* Strom/Electric Red */
    --bg-card: #1a1a1a;
    /* Darker black/red card */
    --accent: #000000;
    /* Black as accent */
    --accent-glow: rgba(0, 0, 0, 0.2);
    --text-main: #ffffff;
    --text-muted: #f0f0f0;
    --border: rgba(255, 255, 255, 0.2);
    --glass: rgba(82, 24, 24, 0.8);
    /* Dark glass for contrast */
    --max-width: 1400px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-font-smoothing: antialiased;
}

/* Base Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #000000;
    /* Black headings as requested */
}

p {
    color: var(--text-muted);
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
}

/* Header & Nav - Protex Style */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.logo span {
    color: var(--text-main);
    /* White for visibility on dark nav */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.hamburger {
    display: none;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.hero-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 0, 0, 0.1);
    color: var(--accent);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(3.5rem, 9vw, 8rem);
    margin-bottom: 2rem;
    max-width: 1000px;
}

.hero h1 span {
    display: block;
    color: #ffffff;
    /* White span for contrast against black h1 on red background */
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 3.5rem;
}

.hero-bottom-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: 0.5;
    margin-top: 2rem;
    border-radius: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    border-radius: 4px;
    /* Protex more squarish/tech */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 0.85rem;
}

.btn-primary {
    background-color: #000000;
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
    color: #000000;
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--text-main);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Bento Grid System */
.section-header {
    margin-bottom: 4rem;
}

.tagline {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.grid-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 1.5rem;
}

.bento-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 3rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.bento-item:hover {
    border-color: var(--accent);
    background: #1a1a1a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bento-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.bento-item h1,
.bento-item h2,
.bento-item h3,
.bento-item h4 {
    color: #ffffff;
    /* White headings inside dark cards */
}

.bento-item h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* Team Profiles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.team-item {
    text-align: center;
}

.team-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #000000;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

/* Footer Extra Dark */
footer {
    background: #800000;
    /* Very dark red footer */
    padding: 4rem 0 3rem;
    border-top: 1px solid var(--border);
}

.footer-nav {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-col h4 {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.4rem;
}

.footer-col ul a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
}

.reveal.active {
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #ccc;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Stats Section */
.stats {
    padding: 10rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-weight: 800;
    color: var(--text-muted);
}

/* Responsive Design System */

/* Tablet & Smaller Desktops (991px) */
@media (max-width: 991px) {
    .container {
        padding: 0 40px;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .hero h1 {
        font-size: clamp(3rem, 8vw, 5rem);
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Mobile & Small Tablets (768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.mobile-active {
        right: 0;
    }

    .nav-links li {
        margin-bottom: 2rem;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1001;
        width: 30px;
        height: 20px;
        position: relative;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: #fff;
        position: absolute;
        transition: 0.3s;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        top: 9px;
    }

    .hamburger span:nth-child(3) {
        top: 18px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 9px;
    }

    header .btn {
        display: none;
        /* Hide main button in header on mobile */
    }

    /* Grid Adjustments */
    .grid-bento {
        grid-template-columns: 1fr;
    }

    [style*="grid-column: span"] {
        grid-column: span 1 !important;
    }

    .bento-item {
        padding: 2rem;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stats .grid-bento {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .btn-outline {
        margin-left: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .stats {
        padding: 5rem 0;
    }

    .hero-bottom-image {
        height: 200px;
    }

    /* Layout fixes for mobile */
    .bento-item>div[style*="flex"] {
        flex-direction: column !important;
        gap: 2rem !important;
        text-align: center !important;
    }

    .bento-item>div[style*="flex"]>div {
        text-align: center !important;
    }

    .bento-item>div[style*="flex"] div[style*="text-align: right"] {
        display: none;
    }

    .hero-sub {
        padding-top: 10rem !important;
        margin-bottom: 3rem !important;
    }

    main section[style*="padding-bottom: 10rem"] {
        padding-bottom: 5rem !important;
    }

    footer {
        padding: 5rem 0 3rem;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .tagline {
        font-size: 0.65rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .bento-item h3 {
        font-size: 1.5rem;
    }
}
















/*
:root {
    --bg-dark: #cc0000;
    /* Strom/Electric Red */
    --bg-card: #1a1a1a;
    /* Darker black/red card */
    --accent: #000000;
    /* Black as accent */
    --accent-glow: rgba(0, 0, 0, 0.2);
    --text-main: #ffffff;
    --text-muted: #f0f0f0;
    --border: rgba(255, 255, 255, 0.2);
    --glass: rgba(82, 24, 24, 0.8);
    /* Dark glass for contrast */
    --max-width: 1400px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Base Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #000000;
    /* Black headings as requested */
}

p {
    color: var(--text-muted);
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
}

/* Header & Nav - Protex Style */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.logo span {
    color: var(--text-main);
    /* White for visibility on dark nav */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.hero-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 0, 0, 0.1);
    color: var(--accent);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(3.5rem, 9vw, 8rem);
    margin-bottom: 2rem;
    max-width: 1000px;
}

.hero h1 span {
    display: block;
    color: #ffffff;
    /* White span for contrast against black h1 on red background */
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 3.5rem;
}

.hero-bottom-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    opacity: 0.8;
    margin-top: 1rem;
    border-radius: 1rem;
}

.hero-bottom-pic2 {
    width: 260px;
    height: 260px;
    /*object-fit: cover;*/
    opacity: 1;
    margin-top: 5rem;
    border-radius: 1rem;
}

.hero-bottom-pic1 {
    width: 280px;
    height: 180px;
    /*object-fit: cover;*/
    opacity: 1;
    margin-top: 1rem;
    border-radius: 1rem;
}




body {
    font-family: Arial, sans-serif;
}

.rahmen {
    width: 585px;
    border: 0.5px solid black;
height:615px; 
    padding: 25px;
    display: flex;
    align-items: up;
border-radius: 20px;
transition: box-shadow 0.8s;
background:#ff0000;
}
.rahmen:hover {
    box-shadow: 0 15px 15px rgba(0,0,0,0.3); /* Schatten bei Maus darüber */
}


.rahmen2 {
height:400px; 
margin:175px;
    width: 588px;
    border: 0.5px solid black;
    padding: 20px;
    display: flex;
    align-items: up;
border-radius: 20px;
transition: box-shadow 0.8s;
background:#ff0000;
background-position:center;
}
.rahmen2:hover {
    box-shadow: 0 15px 15px rgba(0,0,0,0.3); /* Schatten bei Maus darüber */
}

.bild img {
    width: 200px;
    height: auto;
    margin-right: 20px;
    border-radius: 20px;
}

.bild2 img {
    width: 280px;
    height: auto;
    margin-right: 20px;
border-radius: 20px;
}

.text {
    font-size: 16px;

}
.text10 {
    font-size: 28px;
    color:White;

}


/*
.it-orange{
   display:flex
   align-items:center;
}

.it-orange img{
   width:120px;
   margin-right:40px;
}

*/







.hero-bottom-Beleuchtung1 {
    width: 320px;
    height: 220px;
    /*object-fit: cover;*/
    opacity: 1;
    margin-top: 1rem;
    border-radius: 1rem;
}

.hero-bottom-pic1 {
    width: 320px;
    height: 220px;
    /*object-fit: cover;*/
    opacity: 1;
    margin-top: 1rem;
    border-radius: 1rem;
}

.hero-bottom-pic2 {
    width: 300px;
    height: 280px;
    /*object-fit: cover;*/
    opacity: 1;
    margin-top: 1rem;
    border-radius: 1rem;
}
.hero-bottom-pic3 {
    width: 300px;
    height: 280px;
    object-fit: cover;
    opacity: 1;
    margin-top: 1rem;
    border-radius: 1rem;
}
.hero-bottom-pic4 {
    width: 300px;
    height: 280px;
    object-fit: cover;
    opacity: 1;
    margin-top: 1rem;
    border-radius: 1rem;
}
.hero-bottom-pic5 {
    width: 300px;
    height: 280px;
    object-fit: cover;
    opacity: 1;
    margin-top: 1rem;
    border-radius: 1rem;
}
.hero-bottom-pic6 {
    width: 300px;
    height: 280px;
    object-fit: cover;
    opacity: 1;
    margin-top: 1rem;
    border-radius: 1rem;
}
.hero-bottom-pic7 {
    width: 200px;
    height: 180px;
    object-fit: cover;
    opacity: 1;
    margin-top: 1rem;
    border-radius: 1rem;
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    border-radius: 4px;
    /* Protex more squarish/tech */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 0.85rem;
}






/*.btn-primary {
    background-color: #000000;
    color: #ffffff;
}*/
.btn-primary{
    border: 1px solid var(--border);
    color: var(--text-main);
    margin-left: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
    /*background-color: #ffffff;*/
    color: #000000;
}




.btn-outline {
    border: 1px solid var(--border);
    color: var(--text-main);
    margin-left: 1rem;
}

.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
    color: #000000;    

    /*background: var(--accent);
    color: #fff;
    border-color: var(--accent);*/
}






/* Bento Grid System */
.section-header {
    margin-bottom: 4rem;
}

.tagline {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.grid-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 1.5rem;
}

.bento-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 3rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.bento-item:hover {
    border-color: var(--accent);
    background: #1a1a1a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bento-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.bento-item h1,
.bento-item h2,
.bento-item h3,
.bento-item h4 {
    color: #ffffff;
    /* White headings inside dark cards */
}

.bento-item h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* Team Profiles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.team-item {
    text-align: center;
}

.team-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #000000;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

/* Footer Extra Dark */
footer {
    background: #800000;
    /* Very dark red footer */
    padding: 4rem 0 3rem;
    border-top: 1px solid var(--border);
}

.footer-nav {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-col h4 {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.4rem;
}

.footer-col ul a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
}

.reveal.active {
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #ccc;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Stats Section */
.stats {
    padding: 10rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-weight: 800;
    color: var(--text-muted);
}

/* Responsive Design System */

/* Tablet & Smaller Desktops (991px) */
@media (max-width: 991px) {
    .container {
        padding: 0 40px;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .hero h1 {
        font-size: clamp(3rem, 8vw, 5rem);
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Mobile & Small Tablets (768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.mobile-active {
        right: 0;
    }

    .nav-links li {
        margin-bottom: 2rem;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1001;
        width: 30px;
        height: 20px;
        position: relative;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: #fff;
        position: absolute;
        transition: 0.3s;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        top: 9px;
    }

    .hamburger span:nth-child(3) {
        top: 18px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 9px;
    }

    header .btn {
        display: none;
        /* Hide main button in header on mobile */
    }

    /* Grid Adjustments */
    .grid-bento {
        grid-template-columns: 1fr;
    }

    [style*="grid-column: span"] {
        grid-column: span 1 !important;
    }

    .bento-item {
        padding: 2rem;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }



    .stats .grid-bento {
        grid-template-columns: 1fr;
        gap: 1rem;
    }



    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .btn-outline {
        margin-left: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .stats {
        padding: 5rem 0;
    }

    .hero-bottom-image {
        height: 200px;
    }



  /*.hero-bottom-pics1 {
        width: 50px;
        height: 50px;
    }*/





    /* Layout fixes for mobile */
    .bento-item>div[style*="flex"] {
        flex-direction: column !important;
        gap: 2rem !important;
        text-align: center !important;
    }

    .bento-item>div[style*="flex"]>div {
        text-align: center !important;
    }

    .bento-item>div[style*="flex"] div[style*="text-align: right"] {
        display: none;
    }

    .hero-sub {
        padding-top: 10rem !important;
        margin-bottom: 3rem !important;
    }

    main section[style*="padding-bottom: 10rem"] {
        padding-bottom: 5rem !important;
    }

    footer {
        padding: 5rem 0 3rem;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .tagline {
        font-size: 0.65rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .bento-item h3 {
        font-size: 1.5rem;
    }
}


*/