/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #ff3b3b;
    /* More vibrant red */
    --primary-dark: #b71c1c;
    --accent-color: #ff6659;
    --secondary-color: #2196F3;
    /* Brand Blue */
    --dark-bg: #0a0a0a;
    /* Deep black */
    --card-bg: #141414;
    --text-main: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #9e9e9e;
    --glass-bg: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
    --glow: 0 0 20px rgba(255, 59, 59, 0.3);
}

/* ... (skipping some unchanged lines) ... */

/* Badges */
.badge {
    display: inline-block;
    padding: 5px 12px;
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.badge.glow {
    background: linear-gradient(135deg, var(--secondary-color), #0d47a1);
    color: white;
    box-shadow: 0 0 10px rgba(33, 150, 243, 0.4);
}

/* ... (skipping unchanged lines) ... */

/* Certifications Section Redesign */
.cert-section {
    background: linear-gradient(180deg, #101010 0%, #1a1a1a 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.cert-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(to right, var(--secondary-color), #64b5f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.cert-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cert-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(33, 150, 243, 0.15);
    padding: 30px 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.cert-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0.5;
}

.cert-item:hover {
    transform: translateY(-5px);
    background: rgba(33, 150, 243, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--secondary-color);
}

.cert-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    background: none;
    -webkit-text-fill-color: var(--secondary-color);
    filter: drop-shadow(0 0 10px rgba(33, 150, 243, 0.3));
}

/* Highlight Link for Brochure */
.highlight-link {
    background: rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.3) !important;
    color: #64b5f6 !important;
    font-weight: 700 !important;
}

.highlight-link:hover {
    background: var(--secondary-color) !important;
    color: white !important;
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.4) !important;
}


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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    /* Wider container */
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 30%, #ff3b3b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(255, 59, 59, 0.2);
}

h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 2rem;
}

p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

.section-header p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.cta-group {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* Utilities */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-radius: 100px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    transform: translateY(-100%);
    transition: transform 0.4s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(211, 47, 47, 0.5);
}

.btn-primary:hover::before {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background-color: transparent;
    color: #fff;
    border-radius: 100px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-left: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--dark-bg);
    border-color: #fff;
}

.divider {
    height: 4px;
    width: 60px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    margin: 20px auto 50px;
    border-radius: 2px;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 5px 12px;
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.badge.glow {
    background: linear-gradient(135deg, #FFD700, #DAA520);
    color: black;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade {
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.4s;
}

/* Scroll Animation Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0));
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar .container {
    display: flex;
    justify-content: flex-end;
    /* Push nav to right */
    align-items: center;
    position: relative;
    height: 50px;
    /* Lock height */
}

.logo-img {
    height: 200px;
    width: auto;
    position: absolute;
    top: -50px;
    left: 0;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1)) brightness(1.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
}

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

/* Scrolled Navbar State */
.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .container {
    justify-content: space-between;
    /* Reset to space-between for standard layout */
}

.navbar.scrolled .logo-img {
    height: 150px;
    /* Shrink logo */
    position: relative;
    /* Back to normal flow */
    top: 0;
    transform: none;
    filter: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Reduced gap for pills */
    background: rgba(0, 0, 0, 0.5);
    /* Darker background */
    padding: 8px 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.nav-links li a {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    opacity: 0.7;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: var(--primary-color);
    color: white;
    opacity: 1;
    box-shadow: 0 0 15px rgba(255, 59, 59, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/hero-bg.png') no-repeat center center/cover;
    z-index: -2;
    transform: scale(1.1);
    /* Slight zoom for depth */
}

/* Cinematic Overlay */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 50%, rgba(255, 59, 59, 0.05) 0%, rgba(10, 10, 10, 0.4) 40%, #0a0a0a 90%);
    background-blend-mode: overlay;
}

/* Gradient Mesh for Depth */
.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #0a0a0a 30%, transparent 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 55%;
    padding-right: 50px;
}

.hero-decorative-image {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45vw;
    /* Use Viewport Width */
    height: 80vh;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.hero-product-img {
    max-height: 100%;
    width: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8));
    animation: float 8s ease-in-out infinite;
    z-index: 2;
    /* Blend the image edges seamlessly */
    -webkit-mask-image: radial-gradient(circle at center, black 60%, transparent 95%);
    mask-image: radial-gradient(circle at center, black 60%, transparent 95%);
}

/* Hero Glow behind product */
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    from {
        opacity: 0.5;
        transform: scale(0.9);
    }

    to {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Mission Section - Glass Design */
.mission-section {
    padding: 120px 0;
    position: relative;
    background: #0f0f0f;
}

.mission-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 30px;
    background: linear-gradient(to right, #fff, #757575);
    background-clip: text;
    /* Standard property */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission-list li {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.mission-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    border-color: var(--primary-color);
}

/* New Mission Features Grid */
.mission-features {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.m-feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Left align for cleaner look */
    gap: 15px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    height: 100%;
}

.m-feature-card:hover {
    background: rgba(255, 59, 59, 0.08);
    /* Subtle red tint */
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.m-feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(255, 59, 59, 0.1);
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition);
}

.m-feature-card:hover i {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 15px rgba(255, 59, 59, 0.5);
}

.mf-text h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.mf-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Products Section - Grid Layout */
.products-section {
    padding: 150px 0;
    background: #0a0a0a;
}

.product-categories {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.category-block {
    position: relative;
}

.cat-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 40px;
    border-left: none;
    padding-left: 0;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
}

.cat-header h3 {
    font-size: 2.5rem;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

.cat-header p {
    margin-bottom: 0;
    max-width: 400px;
    text-align: right;
}

.product-card-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.product-card {
    background: #141414;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--primary-color);
}

.product-card img {
    height: 350px;
    width: 100%;
    object-fit: contain;
    padding: 40px;
    background: radial-gradient(circle at center, #252525 0%, #141414 70%);
    transition: transform 0.6s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.p-content {
    padding: 30px;
    background: linear-gradient(to top, #1a1a1a, #141414);
    position: relative;
    z-index: 2;
}

.p-content h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.p-content ul {
    opacity: 0.7;
    margin-top: 15px;
}

/* Certifications Section Redesign */
.cert-section {
    background: linear-gradient(180deg, #101010 0%, #1a1a1a 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.cert-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(to right, #ffd700, #b8860b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.cert-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cert-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.15);
    padding: 30px 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.cert-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    opacity: 0.5;
}

.cert-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: #ffd700;
}

.cert-item i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
    background: none;
    -webkit-text-fill-color: #ffd700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.cert-item span {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.cert-item small {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Applications Section Redesign */
.applications-section {
    padding: 100px 0;
    background: #0d0d0d;
    text-align: center;
    position: relative;
}

.applications-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 60px;
}

.app-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.app-item {
    background: #151515;
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
}

.app-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background: rgba(255, 59, 59, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.app-item i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #888;
    transition: 0.3s;
}

.app-item:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.app-item span {
    font-weight: 500;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.5px;
}

/* P.A.S.S. Guide Redesign */
.guide-section {
    padding: 120px 0;
    background: #111;
    position: relative;
    overflow: hidden;
}

/* Background "P.A.S.S" huge text */
.guide-section::before {
    content: 'PASS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
    pointer-events: none;
    font-family: 'Space Grotesk', sans-serif;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: 0.4s;
    text-align: left;
    /* Align left for cleaner read */
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background: rgba(20, 20, 20, 0.8);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 30px;
    /* Moved to right */
    left: auto;
    transform: none;
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    background: var(--dark-bg);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.step-card h3 {
    margin-top: 10px;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
}

.step-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 20px 0;
    display: block;
}

/* Contact & Footer Redesign */
/* Contact & Footer Redesign */
.contact-section {
    padding: 100px 0;
    background: url('assets/images/hero-bg.png') no-repeat center center/cover;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.contact-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.contact-info {
    padding-right: 20px;
}

.contact-info h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: white;
    background: linear-gradient(to right, #fff, #999);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    color: #b0b0b0;
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-details li {
    font-size: 1.2rem;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.contact-details li:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
}

.contact-details i {
    font-size: 1.2rem;
    margin-right: 20px;
    color: var(--primary-color);
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
}

.contact-form {
    background: transparent;
    padding: 0;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group input,
.form-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 25px;
    transition: 0.3s;
    width: 100%;
    color: white;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
    padding-left: 25px;
    outline: none;
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.1);
}

.block {
    width: 100%;
    display: block;
    margin-top: 10px;
}

footer {
    background: black;
    padding: 30px 0;
    border-top: 1px solid #1a1a1a;
    font-size: 0.9rem;
    color: #666;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.socials a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    h1 {
        font-size: 4rem;
    }

    .hero-content {
        width: 100%;
        text-align: center;
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-group {
        justify-content: center;
    }

    .hero-decorative-image {
        display: none;
    }

    .mission-grid {
        flex-direction: column;
        gap: 50px;
    }

    .cat-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cat-header p {
        text-align: left;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    h1 br {
        display: none;
    }

    h2 {
        font-size: 2.2rem;
    }

    p {
        font-size: 1rem;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
        text-align: center;
        min-height: auto;
    }

    .navbar {
        padding: 10px 0;
        background: rgba(10, 10, 10, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(15px);
    }

    .navbar .container {
        justify-content: space-between;
        height: 60px;
    }

    .logo-img {
        height: 70px !important;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        filter: none !important;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 18px;
        cursor: pointer;
        z-index: 2000;
    }

    .hamburger span {
        display: block;
        height: 2px;
        width: 100%;
        background-color: white;
        border-radius: 10px;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .hamburger.toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
        transform: translateX(10px);
    }

    .hamburger.toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 40px;
        border-radius: 0;
        border: none;
        backdrop-filter: blur(20px);
        z-index: 1500;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-links.active li:nth-child(7) {
        transition-delay: 0.4s;
    }

    .nav-links li a {
        font-size: 1.4rem;
        padding: 15px;
        display: block;
        width: 100%;
        color: white;
        font-weight: 600;
    }

    .nav-links li a.btn-primary {
        margin: 20px auto;
        width: fit-content;
        padding: 15px 40px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

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

    .mission-section {
        padding: 80px 0;
    }

    .mission-text h2 {
        font-size: 2.5rem;
    }

    .mission-features {
        grid-template-columns: 1fr;
    }

    .products-section {
        padding: 80px 0;
    }

    .cat-header h3 {
        font-size: 1.8rem;
    }

    .product-card-group {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-card img {
        height: 280px;
        padding: 30px;
    }

    .cert-logos {
        gap: 20px;
    }

    .cert-item {
        min-width: 100%;
        padding: 25px;
    }

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

    .contact-wrapper {
        padding: 40px 25px;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-details li {
        font-size: 1rem;
        padding: 12px 15px;
    }

    .form-group input,
    .form-group textarea {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.15);
    }

    footer .container {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        margin-left: 0;
        padding: 15px 20px;
    }

    .app-icons {
        grid-template-columns: 1fr 1fr;
    }

    .step-card {
        padding: 30px 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        top: -15px;
        right: 20px;
    }
}

/* Knowledge Section Styles */
.knowledge-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #161616 0%, #0a0a0a 100%);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.k-block {
    margin-bottom: 80px;
}

.k-block h3,
.race-guide h3,
.tips-box h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    align-items: center;
    gap: 15px;
}

.k-block h3 i,
.race-guide h3 i,
.tips-box h3 i {
    color: var(--primary-color);
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.class-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.class-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: 0.3s;
}

.class-card:hover::after {
    background: var(--primary-color);
}

.class-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cc-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    font-family: 'Space Grotesk', sans-serif;
}

/* Fire Class Colors - Indian Standard usually colors */
.type-a {
    background: #4caf50;
    color: white;
}

/* Green - Combustibles */
.type-b {
    background: #f44336;
    color: white;
}

/* Red - Flammables */
.type-c {
    background: #2196f3;
    color: white;
}

/* Blue - Gases */
.type-e {
    background: #ffeb3b;
    color: black;
}

/* Yellow - Electrical */
.type-k {
    background: #fff;
    color: black;
    border: 2px solid #000;
}

/* Black/White - Kitchen */

.class-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.class-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.k-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* R.A.C.E */
.race-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.race-step {
    display: flex;
    gap: 25px;
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 16px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.race-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.race-step:hover .rs-letter {
    transform: scale(1.2) rotate(-10deg);
}

.rs-letter {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Space Grotesk', sans-serif;
    min-width: 60px;
    text-align: center;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rs-content h5 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.rs-content p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-muted);
}

/* Tips */
.tips-box {
    background: rgba(20, 20, 20, 0.5);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tips-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    color: var(--text-secondary);
    font-size: 1.1rem;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list li i {
    color: #4caf50;
    margin-top: 5px;
    background: rgba(76, 175, 80, 0.1);
    padding: 8px;
    border-radius: 50%;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .k-split {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .k-split {
        grid-template-columns: 1fr;
    }

    .knowledge-section {
        padding: 80px 0;
    }

    .race-step {
        padding: 20px;
        gap: 15px;
    }

    .rs-letter {
        font-size: 2.2rem;
        min-width: 40px;
    }
}