:root {
    --primary-blue: #00334D;
    --primary-dark: #001a29;
    --accent-orange: #FF6600;
    --accent-orange-glow: rgba(255, 102, 0, 0.4);
    --text-white: #ffffff;
    --text-gray: #B0C4DE;
    /* Slightly bluer gray for harmony */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-tech: 'Space Grotesk', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    background-color: var(--primary-blue);
    font-family: var(--font-tech);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: 0.1s ease-out;
}

body:hover .cursor-outline {
    width: 50px;
    height: 50px;
    border-color: var(--accent-orange);
}

/* Background Particles */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 60% 40%, #004060 0%, #001a29 100%);
}

/* Typography & Utils */
h1 {
    font-size: 3.5rem;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

h2 {
    font-size: 2.8rem;
    letter-spacing: -1px;
}

h3 {
    font-size: 1.5rem;
}

.text-gradient {
    background: linear-gradient(90deg, #ffffff, #FF8533);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-orange {
    color: var(--accent-orange);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism Header */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
    background: rgba(0, 51, 77, 0.85);
    /* Slightly more opaque for legibility */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: 0.3s;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--text-white);
}

.logo-text .text-orange {
    color: var(--accent-orange);
}

.nav-menu ul {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.nav-link:hover {
    color: #fff;
}

.btn-tech {
    padding: 10px 25px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, #ff8533 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px var(--accent-orange-glow);
}

.btn-tech:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-orange-glow);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 35px;
    max-width: 540px;
    font-weight: 300;
}

.tech-badge {
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-orange);
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 600;
}

.cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary-glow {
    background: var(--accent-orange);
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.3);
    transition: 0.3s;
}

.btn-primary-glow:hover {
    background: #ff751a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.5);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid var(--glass-border);
    font-weight: 500;
    transition: 0.3s;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-trust {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    /* Create a frame for the image */
}

.visual-container {
    position: relative;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.hero-img {
    width: 100%;
    border-radius: 15px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.stat-card-1 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: rgba(0, 26, 41, 0.9);
    backdrop-filter: blur(20px);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.icon-small {
    font-size: 1.5rem;
    color: var(--accent-orange);
    background: rgba(255, 102, 0, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* Section Common */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--text-gray);
    margin-top: 15px;
    font-size: 1.1rem;
}

.line {
    width: 50px;
    height: 3px;
    background: var(--accent-orange);
    display: block;
    margin: 0 auto 15px auto;
}

/* Grid & Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.tech-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 102, 0, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.4s;
}

.card-icon {
    font-size: 1.8rem;
    color: var(--accent-orange);
}

.tech-card:hover .card-icon-wrapper {
    background: var(--accent-orange);
}

.tech-card:hover .card-icon {
    color: white;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
}

.card-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Dual Grid Technology */
.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech-visual {
    position: relative;
}

.tech-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
}

.tech-subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--accent-orange);
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
    margin: 40px 0;
}

.benefit-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-list i {
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-top: 5px;
}

.benefit-list strong {
    display: block;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 5px;
}

.benefit-list span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.btn-text-arrow {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
    width: fit-content;
}

.btn-text-arrow:hover {
    color: var(--accent-orange);
    gap: 15px;
    border-color: var(--accent-orange);
}

/* CTA Panel Refined */
.cta-panel {
    background: #002233;
    border: 1px solid var(--glass-border);
    padding: 80px 40px;
    text-align: center;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.15), transparent 70%);
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.cta-panel h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-panel p {
    color: var(--text-gray);
    margin-bottom: 50px;
}

.tech-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    margin: 0 auto 40px;
}

.input-wrapper input {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: var(--font-tech);
}

.btn-submit-large {
    width: 100%;
    padding: 15px;
    background: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit-large:hover {
    background: #ff751a;
}

.social-links-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-links-footer .links {
    display: flex;
    gap: 20px;
}

.social-links-footer a {
    color: var(--text-gray);
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-links-footer a:hover {
    color: var(--accent-orange);
}

/* Animation Utils */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 900px) {

    .hero-content,
    .dual-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        gap: 40px;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-group {
        justify-content: center;
    }
}