/* Modern CSS with Parallax Effects */
:root {
    --primary-color: #18223c;
    --secondary-color: #2a426e;
    --accent-color: #4b6fad;
    --accent-light: #6889c7;
    --text-light: #e6e6e6;
    --text-dark: #181818;
    --text-muted: #b3b3b3;
    --background-dark: #0f1524;
    --background-darker: #080d18;
    --card-background: rgba(26, 34, 56, 0.85);
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --section-padding: 6rem 0;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 1;
    position: relative;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -2;
    opacity: 0.6; /* Make slightly more transparent */
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(30%) contrast(120%) saturate(80%);
    transform: translateZ(0);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 21, 36, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(75, 111, 173, 0.2);
    transition: all 0.4s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 40px;
}

.nav-logo {
    height: 40px;
    width: auto;
    display: block;
    margin: auto 0;
    vertical-align: middle;
}

.company-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.2rem;
    color: var(--text-light);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-light);
}

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

.nav-links a:hover::after {
    width: 100%;
    opacity: 1;
}

.contact-btn {
    background-color: var(--accent-color);
    color: white !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 4px;
    transition: var(--transition);
}

.contact-btn:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: var(--transition);
}

/* Parallax Container */
.parallax-container {
    perspective: 1px;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    scroll-behavior: smooth;
}

/* Parallax Section Backgrounds */
.parallax-section {
    position: relative;
    height: auto;
    min-height: auto;
    padding: 4rem 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform-style: preserve-3d;
    transition: background-position 0.5s ease;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(8, 13, 24, 0.8), rgba(15, 21, 36, 0.95));
}

/* Add abstract grid pattern to regular sections */
.parallax-section:not(.dark-section):not(.hero):not(.cta-section)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(75, 111, 173, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(75, 111, 173, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    opacity: 0.4;
}

/* Add particles effect to dark sections */
.dark-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(75, 111, 173, 0.2) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
    opacity: 0.3;
}

/* Animated subtle wave effect for all sections at the bottom */
.parallax-section:not(.hero)::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSI3MHB4IiB2aWV3Qm94PSIwIDAgMTI4MCAxNDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iIzBmMTUyNCI+PHBhdGggZD0iTTEyODAgMy40QzEwNTAuNTkgMTggMTAxOS40IDg0Ljg5IDczNC40MiA4NC44OWMtMzIwIDAtMzIwLTg0LjMtNjQwLTg0LjNDNTkuNC41OSAyOC4yIDEuNiAwIDMuNFYxNDBoMTI4MHoiIGZpbGwtb3BhY2l0eT0iMC4zIi8+PHBhdGggZD0iTTAgMjQuMzFjNDMuNDYtNS42OSA5NC41Ni05LjI1IDE1OC40Mi05LjI1IDMyMCAwIDMyMCA4OS4yNCA2NDAgODkuMjQgMjU2LjEzIDAgMzA3LjI4LTU3LjE2IDQ4MS41OC04MFYxNDBIMHoiIGZpbGwtb3BhY2l0eT0iLjUiLz48cGF0aCBkPSJNMTI4MCB1JWpudWxsQzEwOTEuMzQgOS4yMSA5MTcuNDEgNTIuOCA3NTEuMjIgNzIuMDJjLTEyBKdpjItNTMuNjktMS45NC03Ni41OS01LjgzLTE0MEg3gJTI+PC9wYXRoPjwvZz48L3N2Zz4=');
    background-size: 100% 70px;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 0;
    transform: translateZ(-1px) scale(1.3);
}

/* Hero section special styling */
.hero.parallax-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    padding-top: 80px;
    background: linear-gradient(rgba(8, 13, 24, 0.7), rgba(15, 21, 36, 0.9)), 
                url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjMTgyMjNjIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiMyYTQyNmUiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=');
}

.header-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

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

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-light);
}

.header-content p {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(42, 66, 110, 0.4);
}

.cta-button.outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--text-light);
}

.cta-button.outline:hover {
    background-color: var(--accent-color);
    color: white;
}

.cta-button.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0.7;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--text-muted);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-background);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Product Showcase */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

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

.floating-img {
    max-width: 100%;
    animation: float 5s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-radius: 12px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.feature-list {
    list-style-type: none;
    padding: 0;
}

.feature-item {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-item .feature-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background-color: rgba(75, 111, 173, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-top: 0.2rem;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.learn-more-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: 4px;
    transition: var(--transition);
    font-weight: 500;
}

.learn-more-btn:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    height: 350px;
    perspective: 1000px;
}

.product-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.product-card:hover .product-card-inner {
    transform: rotateY(180deg);
}

.product-card-front, .product-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.product-card-front {
    background: var(--card-background);
    color: white;
    text-align: center;
}

.product-card-back {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-icon {
    margin: 2rem 0;
}

.product-tag {
    display: inline-block;
    background-color: rgba(75, 111, 173, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--accent-light);
}

.card-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.7rem 1.2rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: 4px;
    transition: var(--transition);
}

.card-link:hover {
    background-color: var(--accent-light);
}

.center-button {
    text-align: center;
    margin-top: 2rem;
}

.view-all-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    transition: var(--transition);
    font-weight: 500;
}

.view-all-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Services Tabs */
.services-tabs {
    background: var(--card-background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.tabs-nav {
    display: flex;
    justify-content: center;
    background-color: rgba(15, 21, 36, 0.8);
    padding: 0.5rem;
}

.tab-btn {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    outline: none;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--accent-light);
}

.tab-btn.active::after {
    width: 100%;
}

.tabs-content {
    padding: 3rem 2rem;
}

.tab {
    display: none;
}

.tab.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

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

.tab-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.tab-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.tab-features {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.tab-features li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.tab-link {
    display: inline-block;
    padding: 0.7rem 1.2rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: 4px;
    transition: var(--transition);
}

.tab-link:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to bottom, rgba(8, 13, 24, 0.7), rgba(15, 21, 36, 0.9));
    text-align: center;
    padding: 5rem 0; /* Increased padding from standard value */
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem; /* Added padding around the content */
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem; /* Increased margin */
    color: var(--text-light);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem; /* Increased margin */
    color: var(--text-muted);
}

/* Footer */
.site-footer {
    background-color: var(--background-darker);
    padding: 5rem 0 2rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    width: 80px;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

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

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-link {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: rgba(75, 111, 173, 0.2);
    color: var(--accent-light);
    border-radius: 4px;
    transition: var(--transition);
}

.contact-link:hover {
    background-color: var(--accent-color);
    color: white;
}

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

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

/* Animation Classes */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Media Queries */
@media screen and (max-width: 992px) {
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tabs-nav {
        flex-wrap: wrap;
    }
    
    .header-content h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--background-darker);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: all 0.3s ease;
        z-index: 1000;
        border-bottom: 1px solid rgba(75, 111, 173, 0.2);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .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(8px, -8px);
    }
    
    .header-content h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .header-content p {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tab-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .feature-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .tabs-content {
        padding: 2rem 1.5rem;
    }
    
    .tab-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}

/* Active navigation link */
.nav-links a.active {
    color: var(--accent-light);
}

.nav-links a.active::after {
    width: 100%;
    opacity: 1;
}

/* Inner Page Styles */
.page-header {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-color: var(--background-darker);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(24, 34, 60, 0.9), rgba(8, 13, 24, 0.95));
    z-index: 0;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTI4MCAxNDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iIzBmMTUyNCI+PHBhdGggZD0iTTAgNTEuNzZjMzYuMjEtMi4yNSA3Ny41Ny0zLjU4IDEyNi40Mi0zLjU4IDMyMCAwIDMyMCA1NyA2NDAgNTcgMjcxLjE1IDAgMzEyLjU4LTQwLjkxIDUxMy41OC01My40VjBIMFoiIGZpbGwtb3BhY2l0eT0iLjMiLz48cGF0aCBkPSJNMCA5MC43MmMxNzEtMTcuNzMgNDMzLTM1LjMzIDcyMC0zNS4zMyAyODYuNjcgMCA1NDguMzMgMTcuNiA3MjAgMzUuMzNWMEgwWiIgZmlsbC1vcGFjaXR5PSIuNSIvPjxwYXRoIGQ9Ik0wIDB2Ny43QzE3MCAxNC4zNiA0MjUuNzQgMjYuMjcgNzE3LjQxIDI2LjkxYzMxMS43NS42OSA1MzguMjQtMTAuMzQgNTYyLjU5LTEzLjIzVjBaIi8+PC9nPjwvc3ZnPg==');
    background-size: 100% 100px;
    background-position: bottom;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: 1;
}

.kidon-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('assets/signal-optimized.mp4') no-repeat center center;
    background-size: cover;
}

.page-header .header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s forwards;
}

.page-header p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Product Overview Section */
.product-overview {
    padding: 5rem 0;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 2rem; /* Reduce bottom margin */
}

.product-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.product-intro p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.product-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

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

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.product-image-container {
    position: relative;
    text-align: center;
}

.kidon-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.kidon-image:hover {
    transform: scale(1.02);
}

/* Key Capabilities Section */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.capability-card {
    background-color: rgba(30, 40, 60, 0.4);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 111, 173, 0.1);
}

.capability-card.active {
    opacity: 1;
    transform: translateY(0);
}

.capability-card:nth-child(1) {
    transition-delay: 0.1s;
}

.capability-card:nth-child(2) {
    transition-delay: 0.2s;
}

.capability-card:nth-child(3) {
    transition-delay: 0.3s;
}

.capability-card:nth-child(4) {
    transition-delay: 0.4s;
}

.capability-card:hover {
    transform: translateY(-10px);
    background-color: rgba(40, 60, 100, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.capability-icon {
    margin-bottom: 1.5rem;
}

.capability-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.capability-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Architecture Section */
.architecture-section {
    padding: 6rem 0;
}

.architecture-intro h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.architecture-intro p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.architecture-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0; /* Remove all margins */
    padding: 0; /* Remove all padding */
}

/* Make diagram container more compact */
.diagram-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding: 0; /* Remove all padding */
    margin: 0; /* Remove all margin */
}

.layer-box {
    background: rgba(26, 34, 56, 0.7);
    border: 1px solid rgba(75, 111, 173, 0.2);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem; /* Reduce margin between layers */
}

.layer-box.active {
    opacity: 1;
    transform: translateY(0);
}

.layer-box span {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 8px;
}

.layer-description {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.layer-1 {
    background-color: rgba(75, 111, 173, 0.15);
    z-index: 4;
    transition-delay: 0.1s;
}

.layer-2 {
    background-color: rgba(75, 111, 173, 0.12);
    z-index: 3;
    transition-delay: 0.2s;
}

.layer-3 {
    background-color: rgba(75, 111, 173, 0.09);
    z-index: 2;
    transition-delay: 0.3s;
}

.layer-4 {
    background-color: rgba(75, 111, 173, 0.06);
    z-index: 1;
    transition-delay: 0.4s;
}

/* Adjust arrows container spacing */
.arrows-container {
    position: absolute;
    left: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0; /* Remove padding */
}

.arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid rgba(75, 111, 173, 0.6);
    border-bottom: 3px solid rgba(75, 111, 173, 0.6);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.arrow.active {
    opacity: 1;
}

.arrow-up {
    transform: rotate(-135deg);
    transition-delay: 0.5s;
}

.arrow-down {
    transform: rotate(45deg);
    transition-delay: 0.5s;
}

@media screen and (max-width: 992px) {
    .two-column-grid,
    .tab-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .architecture-diagram {
        margin-top: 3rem;
    }
    
    .diagram-container {
        max-width: 550px;
    }
    
    .layer-4 {
        width: 380px;
        height: 380px;
    }
    
    .layer-3 {
        width: 280px;
        height: 280px;
    }
    
    .layer-2 {
        width: 180px;
        height: 180px;
    }
    
    .page-header h1 {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 768px) {
    .product-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .diagram-container {
        max-width: 450px;
    }
    
    .arrows-container {
        display: none;
    }
    
    .layer-4 {
        width: 320px;
        height: 320px;
    }
    
    .layer-3 {
        width: 240px;
        height: 240px;
    }
    
    .layer-2 {
        width: 160px;
        height: 160px;
    }
    
    .layer-1 {
        width: 100px;
        height: 100px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .diagram-container {
        max-width: 100%;
    }
    
    .layer-4 {
        width: 260px;
        height: 260px;
    }
    
    .layer-3 {
        width: 200px;
        height: 200px;
    }
    
    .layer-2 {
        width: 140px;
        height: 140px;
    }
    
    .layer-1 {
        width: 80px;
        height: 80px;
    }
    
    .layer-box span {
        font-size: 1rem;
    }
    
    .layer-description {
        font-size: 0.85rem;
    }
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-card {
    background: var(--card-background);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.resource-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.resource-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.resource-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.resource-link {
    display: inline-block;
    padding: 0.7rem 1.2rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
    margin-top: auto;
}

.resource-link:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Case Studies */
.case-studies-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.case-study {
    background: var(--card-background);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

.case-study:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.case-study h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin: 0;
}

.industry-tag {
    font-size: 0.8rem;
    background-color: rgba(75, 111, 173, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    color: var(--accent-light);
}

.case-study p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.results {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    text-align: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.result-item {
    flex: 1;
    min-width: 80px;
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.result-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.case-study-link {
    display: inline-block;
    padding: 0.7rem 1.2rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
}

.case-study-link:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Threat Intelligence */
.threat-intel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.threat-alert {
    background: var(--card-background);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
}

.threat-alert:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.threat-level {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.threat-level.high {
    background-color: rgba(255, 152, 0, 0.2);
    color: #ff9800;
}

.threat-level.medium {
    background-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.threat-level.critical {
    background-color: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.threat-alert h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.threat-alert p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.threat-details {
    margin-bottom: 1.5rem;
    background-color: rgba(15, 21, 36, 0.5);
    padding: 1rem;
    border-radius: 4px;
}

.threat-detail {
    margin-bottom: 0.5rem;
}

.detail-label {
    font-weight: 500;
    color: var(--accent-light);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.detail-value {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.threat-link {
    display: inline-block;
    padding: 0.6rem 1rem;
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.9rem;
}

.threat-link:hover {
    background-color: var(--accent-color);
    color: white;
}

@media screen and (max-width: 768px) {
    .resources-grid,
    .case-studies-container,
    .threat-intel-grid {
        grid-template-columns: 1fr;
    }
    
    .results {
        flex-direction: column;
        align-items: center;
    }
    
    .result-item {
        margin-bottom: 1.5rem;
    }
}

/* Add subtle parallax movement for section content */
.parallax-section .container {
    transform: translateZ(0);
    position: relative;
    z-index: 1;
}

/* Technical specs section styling */
#technical-specs {
    background: linear-gradient(rgba(8, 13, 24, 0.7), rgba(15, 21, 36, 0.8)), 
                url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggZD0iTTIwLDAgTDQwLDAgTDYwLDIwIEw2MCw0MCBMNDAsNjAgTDIwLDYwIEwwLDQwIEwwLDIwIFoiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzJhNDI2ZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2Utb3BhY2l0eT0iMC4xIj48L3BhdGg+Cjwvc3ZnPgo=');
}

/* Resources section styling */
#resources {
    background: linear-gradient(rgba(8, 13, 24, 0.8), rgba(15, 21, 36, 0.9)), 
                url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iNiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNGI2ZmFkIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZS1vcGFjaXR5PSIwLjEiPjwvY2lyY2xlPgo8L3N2Zz4K');
}

/* Case studies section styling */
#case-studies {
    background: linear-gradient(rgba(8, 13, 24, 0.7), rgba(15, 21, 36, 0.8)), 
                url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHJlY3Qgd2lkdGg9IjMwIiBoZWlnaHQ9IjMwIiBmaWxsPSJub25lIj48L3JlY3Q+CiAgPGNpcmNsZSBjeD0iMTUiIGN5PSIxNSIgcj0iMSIgZmlsbD0iIzRiNmZhZCIgZmlsbC1vcGFjaXR5PSIwLjIiPjwvY2lyY2xlPgo8L3N2Zz4K');
}

/* Products preview section styling */
#products-preview {
    background: linear-gradient(rgba(8, 13, 24, 0.7), rgba(15, 21, 36, 0.8)), 
                url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggZD0iTTMwLDAgTDYwLDMwIEwzMCw2MCBMMCwzMCBaIiBmaWxsPSJub25lIiBzdHJva2U9IiM0YjZmYWQiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLW9wYWNpdHk9IjAuMSI+PC9wYXRoPgo8L3N2Zz4K');
}

/* Services section styling */
#services-preview {
    background: linear-gradient(rgba(8, 13, 24, 0.8), rgba(15, 21, 36, 0.9)), 
                url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHJlY3Qgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiBmaWxsPSJub25lIj48L3JlY3Q+CiAgPHBhdGggZD0iTTAgMEw0MCA0MFpNNDAgMEwwIDQwWiIgc3Ryb2tlPSIjNGI2ZmFkIiBzdHJva2Utd2lkdGg9IjAuNSIgc3Ryb2tlLW9wYWNpdHk9IjAuMSI+PC9wYXRoPgo8L3N2Zz4K');
}

/* Overview section styling */
#overview {
    background: linear-gradient(rgba(8, 13, 24, 0.7), rgba(15, 21, 36, 0.8)), 
                url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHJlY3Qgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiBmaWxsPSJub25lIj48L3JlY3Q+CiAgPGNpcmNsZSBjeD0iMTAiIGN5PSIxMCIgcj0iMSIgZmlsbD0iIzRiNmZhZCIgZmlsbC1vcGFjaXR5PSIwLjEiPjwvY2lyY2xlPgo8L3N2Zz4K');
}

/* Product showcase section styling */
#product-showcase {
    background: linear-gradient(rgba(15, 21, 36, 0.9), rgba(8, 13, 24, 0.95)), 
                url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHJlY3Qgd2lkdGg9IjUwIiBoZWlnaHQ9IjUwIiBmaWxsPSJub25lIj48L3JlY3Q+CiAgPHBhdGggZD0iTTEyLjUgMTIuNUwzNy41IDEyLjVMNDIuMyAxNy41TDM3LjUgMjIuNVYzNy41TDEyLjUgMzcuNVYxMi41WiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNGI2ZmFkIiBzdHJva2Utd2lkdGg9IjAuNSIgc3Ryb2tlLW9wYWNpdHk9IjAuMSI+PC9wYXRoPgo8L3N2Zz4K');
}

/* Dark section styling */
.dark-section {
    background-color: var(--background-darker);
    position: relative;
    z-index: 1;
}

.dark-section::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, var(--background-darker), transparent);
    z-index: 0;
}

/* Enhance parallax with subtle animations */
@keyframes float-subtle {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 20px rgba(75, 111, 173, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(75, 111, 173, 0.2);
    }
    100% {
        box-shadow: 0 0 20px rgba(75, 111, 173, 0.1);
    }
}

/* Animate cards and elements with floating effect */
.feature-card, .product-card, .resource-card, .case-study, .capability-card, .specs-table {
    transition: transform 0.4s ease-out, box-shadow 0.4s ease;
}

.feature-card:hover, .product-card:hover, .resource-card:hover, .case-study:hover, .capability-card:hover {
    animation: float-subtle 3s ease-in-out infinite;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.specs-table:hover {
    animation: pulse-glow 3s infinite;
}

/* Add depth with multiple floating elements */
.floating-img {
    animation: float 5s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    position: relative;
}

.floating-img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: radial-gradient(circle at 30% 30%, rgba(75, 111, 173, 0.4), transparent 70%);
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.5;
    mix-blend-mode: overlay;
}

/* Create parallax depth effect for section transitions */
.parallax-section {
    position: relative;
    height: auto;
    min-height: auto;
    padding: 4rem 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform-style: preserve-3d;
    transition: background-position 0.5s ease;
}

/* Create a subtle parallax movement effect on scroll */
.parallax-section:not(.hero) {
    background-attachment: fixed;
}

.parallax-section .container {
    transform: translateZ(0);
    position: relative;
    z-index: 1;
}

/* Make sure dark sections stand out with higher contrast and depth */
.dark-section {
    background-color: var(--background-darker);
    position: relative;
    z-index: 1;
}

.dark-section::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, var(--background-darker), transparent);
    z-index: 0;
}

/* Deployment Options */
.deployment-options {
    padding: 6rem 0;
}

.deployment-tabs {
    background-color: rgba(30, 40, 60, 0.4);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 2rem;
}

.tab-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab-img {
    max-width: 100%;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

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

.tab-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.tab-details p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.check-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 2rem;
}

.check-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.btn-primary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Technical Specs */
.technical-specs {
    padding: 6rem 0;
    background-color: var(--background-dark);
}

.specs-table-container {
    overflow-x: auto;
    margin-top: 2rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(30, 40, 60, 0.4);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.specs-table th,
.specs-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(75, 111, 173, 0.1);
}

.specs-table th {
    background-color: rgba(24, 34, 60, 0.7);
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table td {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.specs-table tr:hover td {
    background-color: rgba(40, 60, 100, 0.4);
}

.specs-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

.specs-disclaimer p {
    margin: 0;
    padding: 0.5rem;
    background-color: rgba(24, 34, 60, 0.5);
    border-radius: 4px;
    display: inline-block;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: rgba(24, 34, 60, 0.95);
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideIn 0.4s;
    border: 1px solid rgba(75, 111, 173, 0.3);
}

.close-modal {
    color: var(--text-muted);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--accent-light);
}

.modal h3 {
    margin-top: 0;
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.modal p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.modal-form {
    margin-top: 20px;
}

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

.modal input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(75, 111, 173, 0.5);
    background-color: rgba(30, 40, 60, 0.7);
    border-radius: 4px;
    font-size: 1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.modal input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(75, 111, 173, 0.2);
}

.modal-submit {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-submit:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-success {
    text-align: center;
    padding: 20px 0;
}

.form-success p {
    color: var(--accent-light);
    font-weight: 500;
}

body.modal-open {
    overflow: hidden;
}

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

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .modal-content {
        margin: 15% auto;
        padding: 20px;
        width: 90%;
    }
}

/* Cloud Partners Section */
.cloud-partners {
    padding: var(--section-padding);
    text-align: center;
}

.cloud-providers-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 2rem 0;
}

.cloud-text {
    flex: 1;
    text-align: left;
}

.cloud-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    flex: 1;
}

.cloud-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cloud-logo {
    height: 60px;
    width: auto;
    filter: grayscale(100%) brightness(200%);
    transition: filter 0.3s ease;
}

.cloud-logo-item:hover .cloud-logo {
    filter: grayscale(0%) brightness(100%);
}

.cloud-logo-item span {
    font-weight: 500;
    color: var(--text-light);
    font-size: 1rem;
}

.cloud-description {
    max-width: 900px;
    margin: 1rem 0 0 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
}

@media screen and (max-width: 992px) {
    .cloud-providers-layout {
        flex-direction: column;
    }
    
    .cloud-text {
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .cloud-logos {
        gap: 2rem;
    }
    
    .cloud-logo {
        height: 50px;
    }
    
    .cloud-description {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .cloud-logos {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cloud-logo {
        height: 45px;
    }
}

/* Make sure services section is visible */
.visible-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 5;
}

.highlight-card {
    background-color: rgba(42, 66, 110, 0.85) !important;
    transform: translateY(0) !important;
    border: 1px solid var(--accent-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Services Section Override */
.services-section {
    padding: 6rem 0 !important;
    margin: 1rem 0 !important;
    background: linear-gradient(135deg, rgba(15, 21, 36, 0.95), rgba(24, 34, 60, 0.98));
}

.services-section .container {
    max-width: 1200px;
}

/* Add after other methodology/architecture related styles around line ~1390 */

/* Methodology Details Styles */
.methodology-details {
    margin-top: 0;
    padding-top: 0; /* Remove padding */
}

.step-row {
    display: flex;
    margin-bottom: 1.5rem;
    position: relative;
    background: rgba(15, 21, 36, 0.5);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 3px solid var(--accent-color);
}

.step-row:last-child {
    margin-bottom: 0;
}

.step-row:not(:last-child)::after {
    display: none;
}

.step-number {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-right: 1.25rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px rgba(75, 111, 173, 0.3);
}

.step-content {
    flex-grow: 1;
}

.step-content h4 {
    color: var(--accent-light);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    opacity: 0.85;
    font-size: 1rem;
    line-height: 1.6;
}

/* Key Benefits Styles */
.key-benefits {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(42, 66, 110, 0.2);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.key-benefits h4 {
    color: var(--accent-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Responsive styles for methodology section */
@media screen and (max-width: 992px) {
    .methodology-details {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .step-row {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
    
    .step-row:not(:last-child)::after {
        left: 25px;
        top: 55px;
        bottom: -15px;
        height: calc(100% - 40px);
    }
    
    .key-benefits {
        padding: 1.25rem;
    }
}

@media screen and (max-width: 576px) {
    .methodology-details {
        margin-top: 1.5rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
}

/* Approach section styling */
.approach-intro {
    background: rgba(15, 21, 36, 0.6);
    padding: 2rem;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-intro h3 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.approach-intro p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.approach-intro p:last-child {
    margin-bottom: 0;
}

/* Security layers section */
.security-layers-section {
    margin-top: 0; /* Remove top margin */
    margin-bottom: 0; /* Remove bottom margin */
    width: 100%;
}

/* Updated Key Benefits Styles */
.key-benefits {
    background: rgba(42, 66, 110, 0.3);
    border-radius: 8px;
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.key-benefits h4 {
    color: var(--accent-light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.check-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Media queries for responsive layout */
@media screen and (max-width: 992px) {
    .approach-intro, 
    .key-benefits {
        padding: 1.5rem;
    }
    
    .approach-intro h3 {
        font-size: 1.8rem;
    }
    
    .key-benefits h4 {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 768px) {
    .approach-intro {
        margin-bottom: 2rem;
    }
    
    .approach-intro h3 {
        font-size: 1.6rem;
    }
    
    .key-benefits h4 {
        font-size: 1.3rem;
    }
    
    .approach-intro p,
    .check-list li {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .approach-intro h3 {
        font-size: 1.4rem;
    }
    
    .key-benefits h4 {
        font-size: 1.2rem;
    }
}

/* Process breakdown title */
.process-breakdown-title {
    color: var(--accent-light);
    font-size: 1.6rem;
    margin: 0.5rem 0; /* Reduced margin */
    text-align: left;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .process-breakdown-title {
        font-size: 1.4rem;
    }
}

/* Make step rows more compact */
.step-row:not(:last-child) {
    margin-bottom: 1rem; /* Reduce space between step rows */
}

/* Products Page Specific Styles */
.product-highlight {
    padding: 5rem 0;
    margin-bottom: 2rem;
}

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

.product-highlight .two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.product-highlight .two-column-grid.reversed {
    grid-template-areas: "image content";
}

.product-highlight .two-column-grid.reversed .product-content {
    grid-area: content;
}

.product-highlight .two-column-grid.reversed .product-image-container {
    grid-area: image;
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.product-highlight .feature-item {
    margin-bottom: 1.5rem;
}

.product-highlight .product-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.product-variants {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.product-variants h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.variants-list {
    list-style-type: none;
    padding: 0;
}

.variants-list li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

/* Product Grid Section Improvements */
.product-grid-section {
    padding: 5rem 0;
    margin-top: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Media Queries for Product Page */
@media screen and (max-width: 992px) {
    .product-highlight .two-column-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-highlight .two-column-grid.reversed {
        grid-template-areas: 
            "content"
            "image";
    }
    
    .product-title {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .product-highlight {
        padding: 3rem 0;
    }
    
    .product-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .product-description {
        text-align: center;
    }
    
    .product-highlight .feature-list {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .product-variants h3 {
        text-align: center;
    }
    
    .variants-list {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .product-highlight .btn-primary {
        display: block;
        margin: 0 auto;
        max-width: 250px;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media screen and (max-width: 576px) {
    .product-highlight {
        padding: 2rem 0;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        height: 320px;
    }
}