:root {
    --primary: #0a192f;
    --secondary: #64ffda;
    --accent: #00a8cc;
    --text: #e6f1ff;
    --card-bg: rgba(17, 34, 64, 0.7);
    --hover: #112240;
}

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

a.service-btn {
    padding: 10px 20px;
    background: #FF6500;
    margin-top: 16px !important;
    font-weight: 600;
    text-decoration: none;
    color: white;
    border-radius: 8px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #001136;
    overflow-x: hidden;
    background: #0c2a6a;
    #001136:
    fixed;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

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

/* Sections */
section {
    padding: 1rem 0;
    position: relative;
}

section.hero {
    padding: 5rem 0;
}

.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.05) 0%, transparent 70%);
    animation: pulse 15s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(0.8); }
    100% { transform: scale(1.2); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0rem;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 0rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
    color: white;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.4s;
    animation-fill-mode: both;
    border: 1px solid rgba(100, 255, 218, 0.3);
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.3);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(rgba(255,255,255,0.1), transparent);
    transform: rotate(30deg);
    transition: all 0.5s ease;
}

.cta-button:hover::after {
    transform: translateX(100%) rotate(30deg);
}

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

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 1.5rem auto 0;
    color: white;
}

/* Service Detail Sections */
.service-detail {
    padding: 14px 0 26px 0;
    background: rgb(255 255 255);
    margin: 2rem auto;
    border-radius: 10px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    max-width: 1300px;
}

.service-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(100, 255, 218, 0.05), transparent 70%);
    z-index: -1;
}

.service-detail:nth-child(even) {
    background: rgb(255 255 255);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail:nth-child(even) .service-content {
    direction: rtl;
}

.service-detail:nth-child(even) .service-text {
    direction: ltr;
}

.service-text {
    background: #e8f2fa;
    padding: 20px 30px;
    border-radius: 10px;
}

.service-text h3, .container h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1e499b;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}

.service-text h3::after, .container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(50% - 30px);
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.service-text .subtitle, .container .subtitle {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: center;
}

.service-description {
    font-size: 1.1rem;
    /* line-height: 1.8; */
    margin-bottom: 0rem;
    opacity: 0.9;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 26px;
}

.service-features li {
    padding: 10px 0 0 10px;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #001136;
    font-size: 1.5rem;
    top: 0.2rem;
}

.service-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.service-detail:nth-child(even) .service-image {
    transform: perspective(1000px) rotateY(5deg);
}

.service-detail:hover .service-image {
    transform: perspective(1000px) rotateY(0deg);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.9), transparent);
    color: white;
    padding: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Software Section */
.software-section {
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0.8), transparent);
    position: relative;
    overflow: hidden;
    max-width: 1300px;
    margin: auto;
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 20px;
}

.software-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(100, 255, 218, 0.05) 0%, transparent 40%);
    z-index: -1;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(to top, rgba(10, 25, 47, 0.8), transparent);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(100, 255, 218, 0.05) 0%, transparent 40%);
    z-index: -1;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(100, 255, 218, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(100, 255, 218, 0.05), transparent 70%);
    z-index: -1;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: rgba(10, 25, 47, 0.5);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.2);
}

.submit-btn {
    background: linear-gradient(45deg, var(--accent), var(--secondary));
    color: var(--primary);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.3);
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(rgba(255,255,255,0.2), transparent);
    transform: rotate(30deg);
    transition: all 0.5s ease;
}

.submit-btn:hover::after {
    transform: translateX(100%) rotate(30deg);
}

/* Footer */
footer {
    background: rgba(2, 12, 27, 0.9);
    color: var(--text);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    position: relative;
}

footer ul {
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(100, 255, 218, 0.05), transparent 70%);
    z-index: -1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(17, 34, 64, 0.7);
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.social-links a:hover {
    color: var(--secondary);
    transform: translateY(-5px);
    background: rgba(100, 255, 218, 0.1);
    border-color: var(--secondary);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.padding032 {
    padding: 15px 32px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail:nth-child(even) .service-content {
        direction: ltr;
    }

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

    .contact-container {
        padding: 2rem;
    }
    
    .service-text h3 {
        font-size: 2rem;
    }
    
    .service-image {
        transform: none !important;
    }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
}