/* raqmcore.css */
:root {
    --primary-dark: #2d2d4d;
    --primary-green: #09d761;
    --dark-green: #093933;
    --dark-bg: #0a0a14;
    --card-bg: #151522;
    --text-light: #f0f0f0;
    --text-muted: #a0a0b0;
    --border-color: #2a2a3a;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-green);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    color: var(--primary-green);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
    font-family: 'Roboto Mono', monospace;
}

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

/* Navigation */
.navbar {
    background-color: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(42, 42, 58, 0.5);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(10, 10, 20, 0.98);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.brand-text {
    color: var(--text-light);
}

.brand-dot {
    color: var(--primary-green);
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-green) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0f0f1a 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(9, 215, 97, 0.1) 0%, transparent 50%);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn-primary {
    background-color: var(--primary-green);
    border: none;
    color: var(--dark-bg);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #07c055;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(9, 215, 97, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: rgba(9, 215, 97, 0.1);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-layer {
    position: absolute;
    border: 2px solid rgba(9, 215, 97, 0.3);
    border-radius: 50%;
    animation: pulse 4s infinite ease-in-out;
}

.shield-layer.layer-1 {
    width: 300px;
    height: 300px;
    animation-delay: 0s;
}

.shield-layer.layer-2 {
    width: 220px;
    height: 220px;
    border-color: rgba(9, 215, 97, 0.5);
    animation-delay: 0.5s;
}

.shield-layer.layer-3 {
    width: 140px;
    height: 140px;
    border-color: rgba(9, 215, 97, 0.7);
    animation-delay: 1s;
}

.shield-core {
    width: 80px;
    height: 80px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-bg);
    box-shadow: 0 0 30px rgba(9, 215, 97, 0.5);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.about-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(9, 215, 97, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.feature-content h5 {
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-muted);
}

.layers-container {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layer-card {
    position: absolute;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.layer-card:hover {
    transform: translateY(-5px);
}

.layer-card.layer-1 {
    top: 0;
    left: 0;
    border-left: 4px solid var(--primary-green);
}

.layer-card.layer-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-left: 4px solid #09d761;
    z-index: 2;
}

.layer-card.layer-3 {
    bottom: 0;
    right: 0;
    border-left: 4px solid var(--primary-green);
}

.layer-card h5 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

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

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background-color: #0f0f1a;
}

.solution-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-green);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.solution-card:hover::before {
    transform: scaleY(1);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(9, 215, 97, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-size: 1.8rem;
}

.solution-card h4 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.solution-card p {
    color: var(--text-muted);
}

/* Why Raqmcore Section */
.why-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.why-visual {
    position: relative;
    height: 400px;
}

.hex-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.hex {
    position: absolute;
    width: 80px;
    height: 92px;
    background-color: rgba(9, 215, 97, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float 6s infinite ease-in-out;
}

.hex-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.hex-2 {
    top: 40%;
    left: 50%;
    animation-delay: 1s;
}

.hex-3 {
    top: 60%;
    left: 30%;
    animation-delay: 2s;
}

.hex-4 {
    top: 30%;
    left: 70%;
    animation-delay: 3s;
}

.hex-5 {
    top: 70%;
    left: 60%;
    animation-delay: 4s;
}

.why-points {
    margin-top: 2rem;
}

.why-point {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.point-number {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(9, 215, 97, 0.3);
    margin-right: 1.5rem;
    font-family: 'Roboto Mono', monospace;
}

.point-content h5 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.point-content p {
    color: var(--text-muted);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: #0f0f1a;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}



/* Process Section */
.process-step {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    width: 220px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-green);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-green);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    font-family: 'Roboto Mono', monospace;
}

.process-step h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

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

.process-connector {
    width: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connector-line {
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    position: relative;
}

.connector-arrow {
    position: absolute;
    color: var(--primary-green);
    background-color: var(--dark-bg);
    padding: 0 10px;
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.industry-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(9, 215, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-green);
    font-size: 2rem;
}

.industry-card h4 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.industry-card p {
    color: var(--text-muted);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #0f0f1a;
}

.contact-description {
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 500px;
}

.contact-info {
    margin-bottom: 2rem;
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(9, 215, 97, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.info-content h5 {
    margin-bottom: 0.3rem;
    color: var(--text-light);
}

.info-content p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.social-links h5 {
    color: var(--text-light);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--card-bg);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary-green);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-green);
    color: var(--text-light);
    box-shadow: 0 0 0 0.25rem rgba(9, 215, 97, 0.25);
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background-color: #0a0a14;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

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

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links h5 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-newsletter h5 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.footer-newsletter .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.footer-newsletter .btn {
    border-radius: 0 4px 4px 0;
}

.footer-divider {
    border-color: var(--border-color);
    margin: 3rem 0;
    opacity: 0.5;
}

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

.footer-legal {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.legal-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--primary-green);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-connector {
        width: auto;
        height: 60px;
    }
    
    .connector-line {
        width: 2px;
        height: 100%;
    }
    
    .connector-arrow {
        transform: rotate(90deg);
    }
    
    .footer-legal {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 3rem;
    }
    
    .shield-layer.layer-1 {
        width: 250px;
        height: 250px;
    }
    
    .shield-layer.layer-2 {
        width: 180px;
        height: 180px;
    }
    
    .shield-layer.layer-3 {
        width: 110px;
        height: 110px;
    }
    
    .layers-container {
        height: 300px;
        margin-top: 3rem;
    }
    
    .layer-card {
        width: 220px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .me-3 {
        margin-right: 0 !important;
    }
    
    .feature-item {
        flex-direction: column;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .social-icon {
        margin-right: 0.5rem;
        width: 40px;
        height: 40px;
    }
}