:root {
    /* Primary futuristic colors with neon effect */
    --primary-color: #00f7ff;          /* Bright cyan neon */
    --primary-color-light: #42fbff;    /* Lighter cyan */
    --secondary-color: #0f1a2d;        /* Dark navy base */
    --accent-color: #fe53bb;           /* Hot pink neon */
    
    /* Supporting colors */
    --light-color: #e6fdff;            /* Very light cyan */
    --dark-color: #050a14;             /* Deep dark blue */
    --text-color: #a0c3ff;             /* Soft blue text */
    --heading-color: #ffffff;          /* Pure white for headings */
    --white: #ffffff;
    --black: #000000;
    --border-color: #1e3870;           /* Dark blue borders */
    
    /* Effects */
    --box-shadow: 0 5px 30px rgba(0, 247, 255, 0.2);  /* Cyan glow */
    --transition: all 0.3s ease;
    --section-padding: 100px 0;
    
    /* Additional neon colors for accents */
    --neon-purple: #b537f2;
    --neon-green: #03ff6e;
    --neon-orange: #ff9e03;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: linear-gradient(to bottom, var(--secondary-color), var(--dark-color));
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

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

a:hover {
    color: var(--primary-color-light);
    text-decoration: none;
    text-shadow: 0 0 8px var(--primary-color);
}

section {
    padding: var(--section-padding);
    position: relative;
}

.section-bg {
    background-color: var(--secondary-color);
    background-image: linear-gradient(135deg, rgba(15, 26, 45, 0.9), rgba(5, 10, 20, 0.95));
}

.section-padding {
    padding: 100px 0;
}

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

.section-title {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    box-shadow: 0 0 12px var(--accent-color);
}

.section-header.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--accent-color) 50%, 
        var(--primary-color) 100%);
    background-size: 200% 100%;
    transition: all 0.5s ease;
    z-index: -1;
    border-radius: 50px;
}

.btn:hover::before {
    background-position: 100% 0;
}

.btn-primary {
    background-color: transparent;
    border: none;
    color: var(--white);
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.5);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: transparent;
    border: none;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 247, 255, 0.7);
}

.btn-outline-light {
    border: 2px solid var(--primary-color);
    color: var(--white);
    background-color: transparent;
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 247, 255, 0.7);
    border-color: var(--primary-color-light);
}

.animated {
    animation: float 6s ease-in-out infinite;
}

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

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
#mainNav {
    padding: 20px 0;
    transition: var(--transition);
    background-color: transparent;
}

#mainNav.navbar-scrolled {
    background-color: rgba(5, 10, 20, 0.95);
    box-shadow: 0 5px 20px rgba(0, 247, 255, 0.2);
    padding: 10px 0;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--white);
    font-size: 24px;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

.navbar-scrolled .navbar-brand {
    color: var(--primary-color);
}

.logo {
    height: 40px;
    margin-right: 10px;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 600;
    padding: 8px 15px;
    transition: var(--transition);
    position: relative;
}

.navbar-scrolled .navbar-nav .nav-link {
    color: var(--text-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--accent-color);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--primary-color);
}

.navbar-nav .nav-link:hover::after {
    width: 30px;
}

.navbar-toggler {
    color: var(--white);
    border: none;
    padding: 10px;
}

.navbar-scrolled .navbar-toggler {
    color: var(--primary-color);
}

.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 5px;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
    color: var(--white);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(181, 55, 242, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(0, 247, 255, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(254, 83, 187, 0.1) 0%, transparent 50%);
}

.hero-content {
    padding: 20px 0;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 0 15px rgba(0, 247, 255, 0.7);
    background: linear-gradient(to right, var(--white), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-color);
}

.hero-buttons {
    margin-top: 30px;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 247, 255, 0.5));
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg path {
    fill: var(--dark-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.service-card {
    background-color: rgba(15, 26, 45, 0.7);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0, 247, 255, 0.1);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 247, 255, 0.2);
    border-color: rgba(0, 247, 255, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 247, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
    border: 1px solid rgba(0, 247, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.2);
}

.service-card:hover .service-icon {
    background-color: rgba(0, 247, 255, 0.2);
    transform: rotateY(360deg);
    box-shadow: 0 0 25px rgba(0, 247, 255, 0.5);
}

.service-icon i {
    font-size: 30px;
    color: var(--primary-color);
    transition: var(--transition);
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-description {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.project-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(15, 26, 45, 0.7);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 247, 255, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 247, 255, 0.3);
    border-color: rgba(0, 247, 255, 0.3);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(15, 26, 45, 0) 0%, 
        rgba(15, 26, 45, 0.8) 100%);
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-image::before {
    opacity: 1;
}

.project-image img {
    transition: transform 0.5s ease;
    width: 100%;
}

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

.project-content {
    padding: 20px;
    position: relative;
}

.project-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.project-description {
    margin-bottom: 15px;
}

.project-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    position: absolute;
    right: 20px;
    bottom: 20px;
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(254, 83, 187, 0.5);
}

.project-link:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px) rotate(45deg);
    box-shadow: 0 0 15px rgba(254, 83, 187, 0.8);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    filter: drop-shadow(0 0 20px rgba(0, 247, 255, 0.3));
}

.about-description {
    margin-bottom: 30px;
}

.stats-container {
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    background-color: rgba(0, 247, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 247, 255, 0.1);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

.stat-text {
    font-size: 14px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonial-card {
    background-color: rgba(15, 26, 45, 0.7);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 247, 255, 0.1);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 247, 255, 0.2);
    border-color: rgba(0, 247, 255, 0.3);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--neon-orange);
    filter: drop-shadow(0 0 3px rgba(255, 158, 3, 0.7));
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-client {
    display: flex;
    align-items: center;
}

.testimonial-image {
    margin-right: 15px;
}

.testimonial-image img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

.client-name {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.client-position {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-info {
    background-color: rgba(15, 26, 45, 0.7);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    height: 100%;
    border: 1px solid rgba(0, 247, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-card {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 247, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    border: 1px solid rgba(0, 247, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.2);
}

.contact-icon i {
    font-size: 20px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 3px var(--primary-color));
}

.contact-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-details p {
    margin-bottom: 0;
}

.social-links {
    margin-top: 30px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 247, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: var(--transition);
    border: 1px solid rgba(0, 247, 255, 0.2);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.7);
}

.contact-form-wrapper {
    background-color: rgba(15, 26, 45, 0.7);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    height: 100%;
    border: 1px solid rgba(0, 247, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-control {
    height: 50px;
    border-radius: 5px;
    padding: 10px 15px;
    border: 1px solid rgba(0, 247, 255, 0.2);
    background-color: rgba(5, 10, 20, 0.5);
    color: var(--white);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
    background-color: rgba(5, 10, 20, 0.7);
}

.form-control::placeholder {
    color: rgba(160, 195, 255, 0.5);
}

textarea.form-control {
    height: auto;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background-color: var(--dark-color);
    color: var(--text-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 90%, rgba(0, 247, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(254, 83, 187, 0.1) 0%, transparent 30%);
    pointer-events: none;
}

.footer-top {
    padding: 60px 0 30px;
    border-bottom: 1px solid rgba(0, 247, 255, 0.1);
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.footer-description {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
    text-shadow: 0 0 5px rgba(0, 247, 255, 0.5);
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
    box-shadow: 0 0 8px var(--accent-color);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-color);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
    text-shadow: 0 0 5px rgba(0, 247, 255, 0.5);
}

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

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border-radius: 50px 0 0 50px;
    background-color: rgba(15, 26, 45, 0.5);
    border: 1px solid rgba(0, 247, 255, 0.2);
    color: var(--white);
    height: 46px;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 10px 15px;
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(254, 83, 187, 0.5);
}

.newsletter-form .btn:hover {
    box-shadow: 0 0 15px rgba(254, 83, 187, 0.8);
}

.footer-bottom {
    padding: 20px 0;
}

.copyright {
    margin-bottom: 0;
    opacity: 0.7;
}

.footer-bottom-links a {
    color: var(--text-color);
    margin-left: 20px;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(0, 247, 255, 0.5);
}

/*--------------------------------------------------------------
# Back to Top Button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.7);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(254, 83, 187, 0.8);
}

/*--------------------------------------------------------------
# Cookie Consent
--------------------------------------------------------------*/
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(5, 10, 20, 0.95);
    color: var(--white);
    padding: 15px 0;
    z-index: 9999;
    display: none;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 247, 255, 0.2);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-content p {
    margin-bottom: 0;
    margin-right: 20px;
}

.cookie-buttons .btn {
    margin-left: 10px;
    padding: 8px 20px;
}

/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 1200px) {
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero {
        height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cookie-content {
        justify-content: center;
    }
    
    .cookie-content p {
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 30px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}