* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: rgb(214, 22, 51);
    font-family: Arial, sans-serif;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    padding-top: 70px; /* MODIFIED: Increased padding-top for more navbar clearance */
}

/* Mission Section Styles */
/* Mission Section - Black/White/Red Theme */
.mission-section {
    background-color: #000; /* Pure black background */
    color: #fff; /* White text */
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mission-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: 1px;
    font-weight: 700;
}

.mission-divider {
    width: 80px;
    height: 3px;
    background: #ff0033; /* Red accent line */
    margin: 0 auto 2rem;
    border-radius: 3px;
}

.mission-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #ccc;
}

.mission-points {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.mission-card {
    background: rgba(255, 255, 255, 0.05); /* Subtle white card on black */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 350px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: #ff0033;
}

.mission-card h3 {
    color: #ff0033; /* Red titles */
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mission-card p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: #ccc;
}

.mission-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 51, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}


main {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

.l1 {
    /* height: calc(100vh - 60px); */
}

.l1 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.poster img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    /* clip-path was removed in previous steps */
    position: relative;
    z-index: 1; /* Image is below stars */
}

.lmore {
    background-color: black;
    color: white;
    border: 2px solid white;
    padding: 4px;
    font-size: 30px;
}

.overlay-text {
    position: absolute;
    top: 35%;
    left: 15%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 10; /* Overlay text is above stars */
}

.subs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: #dff0d8;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    z-index: 1000;
}

.subsform {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 300px;
    z-index: 1001;
}

.cut {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.cut img {
    width: 50px;
    height: 50px;
}

.subsform form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.subsbtn {
    position: fixed;
    top: 100px;
    right: 10px;
    z-index: 1002;
}

.subsbtn button {
    margin: 0;
    border-radius: 5px;
    color: #fff;
    background-color: #ff0033;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.subsbtn button:hover {
    background-color: #cc0022;
}

html {
    scroll-behavior: smooth;
}

/* Star styles */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5; /* Stars are above image but below text/nav */
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle var(--duration, 3s) infinite ease-in-out;
    opacity: 0;
}

 .rlv-section {
            background-color: #000;
            color: #fff;
            padding: 5rem 2rem;
            position: relative;
            overflow: hidden;
            scroll-snap-align: start;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10rem !important;
        }
        
        .rlv-section::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 0, 51, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
            z-index: 1;
        }
        
        .rlv-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 4rem;
            position: relative;
            z-index: 2;
            margin-top: 255px !important;
             margin-bottom: 50px !important;
        }
        
        .rlv-text {
            flex: 1;
        }
        
        .rlv-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: white;
            letter-spacing: 1px;
            font-weight: 700;
        }
        
        .rlv-divider {
            width: 80px;
            height: 3px;
            background: #ff0033;
            margin: 0 0 2rem;
            border-radius: 3px;
        }
        
        .rlv-text p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: #ccc;
        }
        
        .rlv-features {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        
        .rlv-feature {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            flex: 1;
            min-width: 200px;
            transition: transform 0.3s ease;
        }
        
        .rlv-feature:hover {
            transform: translateY(-10px);
            border-color: #ff0033;
        }
        
        .rlv-feature h3 {
            color: #ff0033;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .rlv-feature p {
            font-size: 1.1rem;
            margin-bottom: 0px;
            color: #ccc;
        }
        
        .rlv-image {
            flex: 1;
            text-align: center;
            position: relative;
        }
        
        .rocket-container {
            position: relative;
            width: 100%;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

@keyframes twinkle {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Navigation & Hamburger Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999; /* HIGHEST Z-INDEX: Ensures navbar is on top of everything */
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.navbar-logo a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff0033;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    z-index: 9999; /* HIGHEST Z-INDEX: Ensures hamburger is on top */
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 110px; /* Navbar height + 50px margin */
        left: 0;
        background-color: #000;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.5);
        z-index: 9998;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }
}

/* Your existing media queries */
@media screen and (max-width:930px){
    .overlay-text {
        top: 40%;
        left: 20%;
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width:877px){
    .overlay-text {
        top: 70%;
        left: 25%;
        transform: translate(-50%, -50%);
    }
}
@media screen and (max-width:810px){
    .overlay-text {
        top: 80%;
        left: 35%;
        transform: translate(-50%, -50%);
    }
}
@media screen and (max-width: 768px) {
    .subsbtn {
        top: 80px; /* For mobile view */
    }
}

@media screen and (max-width: 480px) {
    .subsbtn {
        top: 50px;
    }
    .subsbtn button {
        padding: 5px 10px;
    }
}

@media screen and (max-width: 466px) {
    .subsbtn {
        margin-top: 27px;
    }
}
  /* Responsive design */
        @media (max-width: 992px) {
            .rlv-content {
                flex-direction: column;
                gap: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .rlv-text h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 535px) {
            .rlv-feature {
                min-width: 100%;
            }
        }
           @media (min-width: 993px) {
            .rlv-features {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 2rem;
            margin-bottom: 80px;
        }
     
        }
           @media (max-width: 550px) {
            .rlv-content {
                flex-direction: column;
                gap: 3rem;
            }
            .rlv-features{
                flex-direction: column;
                align-items: center;
                gap: 2rem;
                margin-bottom: 320px;
            }
          .rlv-text{
            margin-top: 210px;
          }
          .rlv-section{
            height: 150vh;
            padding-bottom: 0px;
            margin-bottom: 0px !important;
          }
            
        }
              @media (max-width: 362px) {
       .rlv-section{
        height: 200vh;
       }
     
        }

/* =========================================== */
/* NEW SECTIONS - 3 IMAGES & VIDEO SEPARATELY */
/* =========================================== */

/* Section Title Styling */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: #ff0033;
    margin: 0 auto;
    border-radius: 3px;
}

/* Images Section */
.images-section {
    background-color: #000;
    color: #fff;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.images-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.image-item {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    height: 400px;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.image-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 51, 0.5);
    box-shadow: 0 0 30px rgba(255, 0, 51, 0.3);
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    z-index: 3;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 0 0 5px 5px;
    border-top: 4px solid #ff0033;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.image-item:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ff0033;
}

.image-overlay p {
    font-size: 1rem;
    line-height: 1.4;
    color: #ccc;
    margin: 0;
}

/* Video Section */
.video-section {
    background-color: #000;
    color: #fff;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-container {
    max-width: 1000px;
    height: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.2);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    z-index: 3;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 25px;
    border-radius: 5px;
    border-left: 4px solid #ff0033;
    max-width: 400px;
}

.video-overlay h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    color: #fff;
}

.video-overlay p {
    font-size: 1.1rem;
    color: #ccc;
    margin: 0;
    line-height: 1.5;
}

/* Space-themed effects for both sections */
.images-section::before,
.video-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 51, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

.images-container,
.video-container {
    position: relative;
    z-index: 2;
}

/* =========================================== */
/* RESPONSIVE DESIGN FOR NEW SECTIONS */
/* =========================================== */

@media (max-width: 1200px) {
    .video-container {
        height: 500px;
    }
    
    .image-item {
        min-width: 280px;
        height: 350px;
    }
}

@media (max-width: 992px) {
    .images-container {
        gap: 1.5rem;
    }
    
    .image-item {
        min-width: 250px;
        height: 320px;
    }
    
    .video-container {
        height: 450px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .images-section,
    .video-section {
        padding: 4rem 1.5rem;
        min-height: 90vh;
    }
    
    .images-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .image-item {
        width: 100%;
        max-width: 400px;
        height: 350px;
    }
    
    .video-container {
        height: 400px;
    }
    
    .video-overlay {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }
    
    .video-overlay h2 {
        font-size: 1.7rem;
    }
    
    .video-overlay p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .images-section,
    .video-section {
        padding: 3rem 1rem;
        min-height: 80vh;
    }
    
    .image-item {
        height: 300px;
        min-width: 100%;
    }
    
    .image-overlay {
        padding: 15px;
    }
    
    .image-overlay h3 {
        font-size: 1.3rem;
    }
    
    .image-overlay p {
        font-size: 0.9rem;
    }
    
    .video-container {
        height: 350px;
    }
    
    .video-overlay {
        bottom: 15px;
        left: 15px;
        padding: 12px 15px;
        max-width: 300px;
    }
    
    .video-overlay h2 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .video-overlay p {
        font-size: 0.9rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .images-section,
    .video-section {
        padding: 2.5rem 1rem;
    }
    
    .image-item {
        height: 250px;
        border-width: 2px;
    }
    
    .video-container {
        height: 300px;
        border-width: 2px;
    }
    
    .video-overlay {
        bottom: 10px;
        left: 10px;
        padding: 10px 12px;
        max-width: 250px;
    }
    
    .video-overlay h2 {
        font-size: 1.3rem;
    }
    
    .video-overlay p {
        font-size: 0.85rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
}

/* Grid line effect for tech look */
.images-container,
.video-container {
    background-image: 
        linear-gradient(rgba(255, 0, 51, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 51, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center center;
}
/* ========== KARMAN HERO SECTION ========== */
.karman-hero {
    background-color: #000;
    color: #fff;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.karman-hero .stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.karman-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.karman-hero-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.karman-vehicle-img {
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 0, 51, 0.3));
    animation: float 6s ease-in-out infinite;
}

.karman-hero-right h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.karman-divider {
    width: 100px;
    height: 4px;
    background: #ff0033;
    margin: 2rem 0;
}

.karman-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 2rem;
}

.highlight-red {
    color: #ff0033;
    font-weight: 600;
}

.karman-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 0, 51, 0.3);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-size: 1rem;
    font-weight: 500;
    color: white;
}

.karman-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-button {
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: #ff0033;
    color: white;
}

.cta-button.primary:hover {
    background: transparent;
    border-color: #ff0033;
    color: #ff0033;
}

.cta-button.secondary {
    background: transparent;
    border-color: #0af;
    color: #0af;
}

.cta-button.secondary:hover {
    background: #0af;
    color: black;
}

/* ========== KARMAN DETAILS SECTION ========== */
.karman-details {
    background-color: #000;
    color: #fff;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.karman-details .stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.karman-details-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.karman-details-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.details-divider {
    width: 80px;
    height: 3px;
    background: #ff0033;
    margin: 0 0 2rem;
}

.details-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 2rem;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 0, 51, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    border-color: #ff0033;
}

.detail-card h3 {
    color: #ff0033;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.detail-card p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.karman-specs {
    background: rgba(0, 191, 255, 0.05);
    border-left: 4px solid #0af;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin-top: 2rem;
}

.karman-specs h3 {
    color: #0af;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.specs-mini {
    width: 100%;
    border-collapse: collapse;
}

.specs-mini td {
    padding: 0.5rem 0;
    color: #ccc;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.specs-mini td:first-child {
    color: #ff0033;
    font-weight: 600;
    width: 40%;
}

.karman-details-image {
    text-align: center;
}

.payload-rack-img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border: 2px solid rgba(255, 0, 51, 0.3);
    border-radius: 16px;
    padding: 1rem;
    background: rgba(0,0,0,0.3);
}

.image-caption {
    color: #0af;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .karman-hero-content,
    .karman-details-content {
        gap: 2rem;
    }
    .karman-hero-right h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .karman-hero-content,
    .karman-details-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .karman-hero-left {
        order: 1;
    }
    .karman-hero-right {
        order: 2;
    }
    .karman-divider {
        margin: 2rem auto;
    }
    .karman-badges {
        justify-content: center;
    }
    .karman-cta {
        justify-content: center;
    }
    .details-divider {
        margin: 0 auto 2rem;
    }
    .details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .karman-hero,
    .karman-details {
        padding: 4rem 1.5rem;
    }
    .karman-hero-right h2 {
        font-size: 2rem;
    }
    .karman-description {
        font-size: 1.1rem;
    }
    .badge {
        padding: 0.5rem 1rem;
    }
    .badge-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .karman-hero-right h2 {
        font-size: 1.8rem;
    }
    .cta-button {
        width: 100%;
        text-align: center;
    }
}