/* Root Variables for Themes */
:root {
    /* Dark Theme */
    --bg-dark: #0a0a0a;
    --text-color: #ffffff;
    --neon-teal: #00c4b4;
    --neon-blue: #00b7eb;
    --neon-purple: #8b5cf6;
    --neon-yellow: #cfff04;
    --neon-red: #ff4d4d;
    --neon-green: #00ff00;
    --dark-purple: #1e1e2f;
    --light-purple: #3f3f5f;
    --card-bg: rgba(20, 20, 20, 0.9);
    --button-bg: #00c4b4;
    --button-text: #000000;
    --glow-intensity: 0.5;
    
    /* Theme Transition */
    --theme-transition: all 0.1s ease-in-out;
}

[data-theme="light"] {
    --bg-dark: #ffffff;
    --text-color: #333333;
    --neon-teal: #00a896;
    --neon-blue: #0288d1;
    --neon-purple: #6d28d9;
    --card-bg: rgba(20, 20, 20, 0.9);
    --button-bg: #0288d1;
    --button-text: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', monospace;
    scroll-behavior: smooth;
    transition: var(--theme-transition);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    transition: var(--theme-transition);
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Header */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--neon-teal);
    text-shadow: 0 0 15px var(--neon-teal);
    display: flex;
}

.logo a {
    display: flex;
    text-decoration: none;
    color: var(--neon-teal);
}

.nav-logo {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    margin-right: 0.5rem;
}

@media (max-width: 1020px) {
    .nav-logo {
        width: 3rem;
        height: 3rem;
    }

    .hero-content {
        padding: 5rem 1rem;
    }
}
    
@media (max-width: 768px) {
    .nav-logo {
        width: 3rem;
        height: 3rem;
        margin-right: 0.25rem;
    }
}
    
@media (max-width: 480px) {
    .nav-logo {
        width: 2rem;
        height: 2rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 360px) {
    .logo {
        font-size: 1rem;
    }

    .nav-logo {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-green);
}

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

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

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--neon-blue);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    max-width: 300px;
    background: rgba(10, 10, 18, 0.98);
    backdrop-filter: blur(15px);
    border-left: 1px solid var(--neon-blue);
    box-shadow: -5px 0 20px rgba(0, 243, 255, 0.1);
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-link {
    display: block;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
    background: rgba(0, 243, 255, 0.05);
}
.mobile-menu .nav-link:hover {
    background: rgba(0, 243, 255, 0.1);
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-green);
}

#theme-toggle.nav-link,
#mobile-theme-toggle.nav-link {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    min-width: auto !important;
}

#theme-toggle.nav-link:hover,
#mobile-theme-toggle.nav-link:hover {
    background: transparent !important;
    transform: none !important;
}

#theme-toggle.nav-link .icon,
#mobile-theme-toggle.nav-link .icon {
    font-size: 1.5rem;
    text-shadow: 0 0 10px var(--neon-blue);
    transition: text-shadow 0.3s ease;
}

#theme-toggle.nav-link:hover .icon,
#mobile-theme-toggle.nav-link:hover .icon {
    text-shadow: 0 0 15px var(--neon-teal);
}

section {
    padding: 100px 0;
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
        align-items: center;
    }
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn.active span:first-child {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:last-child {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        padding: 5rem 1rem;
        gap: 1.5rem;
    }

    .logo-wrapper {
        width: 200px;
        height: 200px;
    }

    #hero-logo {
        width: 150px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .burger-menu {
        display: block;
        position: absolute;
        right: 2rem;
        top: 1.5rem;
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 100%;
        background: var(--dark-purple);
        flex-direction: column;
        width: 100%;
        padding: 2rem;
        transform: translateY(-150%);
        transition: transform 0.5s ease-in-out;
        z-index: 1000;
        border-bottom: 2px solid var(--neon-teal);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        margin: 1rem 0;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    /* Burger Animation */
    .burger-menu.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

@media (max-width: 1080px) {
    .nav-container {
        padding: 1rem;
        align-items: center;
    }
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn.active span:first-child {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:last-child {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        padding: 5rem 1rem;
        gap: 1.5rem;
    }
}

/* Hero Section */
.hero {
    padding: 3rem 1rem;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
}

.logo-wrapper {
    perspective: 1000px;
    position: relative;
    width: 240px;
    height: 240px;
}

.hexagon-border {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 0 15px rgba(3, 145, 211, 0.5));
}

.typing-container {
    min-height: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    margin-left: 25px;
}

.typing {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.8;
    font-weight: bold;
    display: inline-block;
    line-height: 1.2;
    color: var(--neon-teal);
    vertical-align: middle;
}

.typing::before {
    text-shadow: var(--neon-teal);
}

.typed-cursor {
    font-size: 1.2rem;
    line-height: 1.2;
    vertical-align: middle;
    color: var(--neon-blue);
    margin-left: 2px;
    opacity: 1;
    animation: blink 0.7s infinite;
    transform: translateY(0%);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

#hero-logo {
    width: 180px;
    height: auto;
    z-index: 2;
}

.hexagon-border:hover {
    filter: drop-shadow(0 0 10px var(--neon-blue));
}

.hero-text {
    text-align: center;
}

.hero-text h1 {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--neon-teal), var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1rem;
    margin: 1rem 0;
    max-width: 500px;
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1rem;
    background-color: var(--button-bg);
    color: var(--button-text);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bolder;
    text-transform: uppercase;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--neon-teal);
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        justify-content: space-between;
        padding: 3rem 2rem;
    }

    .logo-wrapper {
        width: 240px;
        height: 240px;
    }

    .typing-container {
        margin-left: 20px;
    }

    .typing {
        font-size: 1.2rem;
        margin-left: 5px;
    }

    #hero-logo {
        width: 180px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 5rem 2rem;
    }
    
    .hero-content {
        padding: 0 4rem;
    }

    .logo-wrapper {
        width: 300px;
        height: 300px;
    }

    .typing {
        font-size: 1.45rem;
        margin-left: 15px;
    }

    #hero-logo {
        width: 200px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }
}


/* Trusted By Section */
.trusted-by {
    padding: 2rem 1rem;
    text-align: center;
}

.trusted-by h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.client-logos {
    position: relative;
    height: 120px;
    width: 100%;
    cursor: grab;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20%;
    box-sizing: border-box;
}

.client-logos img {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    height: 60px;
    filter: grayscale(100%);
}

.client-logos img:hover {
    filter: none;
    transform: scale(1.1);
}



.client-logos img:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 10px 0;
    }
    
    .client-logos {
        height: 100px;
        gap: 15px;
    }
}

@media (min-width: 768px) {
    .trusted-by h2 {
        font-size: 1.5rem;
    }

    .client-logos img {
        height: 50px;
    }

    .client-logos {
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .client-logos img {
        height: 60px;
    }

    .client-logos {
        gap: 4rem;
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--neon-teal);
    text-shadow: 0 0 30px var(--neon-teal);
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-teal), transparent);
    animation: glowLine 3s infinite;
}

@keyframes glowLine {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.services-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--card-bg);
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    border-radius: 12px 12px 0 0;
    background: rgba(0, 0, 0, 0.2);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.service-header {
    display: flex;
    align-items: center;
    padding: 1.5rem 1.5rem 0.5rem;
    gap: 1rem;
}

.icon-container {
    font-size: 1.8rem;
    color: var(--neon-teal);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.service-card:hover .icon-container {
    transform: rotateY(180deg);
    color: var(--neon-purple);
}

.service-card h3 {
    font-size: 1.4rem;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--neon-teal), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex-grow: 1;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
}

.service-card p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.7;
    padding: 0.5rem 1.5rem 2rem;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: #ffffff;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--neon-teal), var(--neon-blue));
    transition: height 0.5s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(to left, var(--neon-purple), var(--neon-blue));
    transition: width 0.5s ease 0.1s;
}

.service-card:hover::after {
    width: 100%;
}

.service-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, var(--neon-teal), var(--neon-blue));
    color: #000;
    text-align: center;
    padding: 0.8rem 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: bottom 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
}

.service-card:hover .service-overlay {
    bottom: 0;
    opacity: 1;
}

.cta-container {
    text-align: center;
    margin-top: 4rem;
}

.service-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(90deg, var(--neon-teal), var(--neon-blue));
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.service-button span {
    position: relative;
    z-index: 2;
}

.service-button i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.service-button:hover i {
    transform: translateX(5px);
}

.service-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    transition: left 0.5s ease;
    z-index: 1;
}

.service-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}

.service-button:hover::before {
    left: 0;
}

/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .service-card {
        margin-bottom: 0;
    }
    
    .service-image {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .services {
        padding: 4rem 0;
    }
    
    .services-container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-header {
        padding: 1.2rem 1.2rem 0.5rem;
    }
    
    .service-card p {
        padding: 0.5rem 1.2rem 2rem;
        font-size: 0.95rem;
    }
    
    .service-button {
        padding: 1rem 2rem;
    }
}

/* Animations for elements */
.service-card {
    animation: fadeInUp 0.6s backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 255, 0.3);
    background: linear-gradient(to bottom, var(--card-bg), rgba(10, 20, 40, 0.9));
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.service-card:hover .icon-container {
    animation: pulse 2s infinite;
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 30px 0;
    border-top: 1px solid rgba(0, 243, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-info {
    flex: 1 1 40%;
    min-width: 300px;
}

.footer-right {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--neon-blue);
    color: var(--neon-blue);
    background: linear-gradient(90deg, var(--neon-teal), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-text {
    max-width: 400px;
    opacity: 0.7;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-left: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 243, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 243, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(0, 243, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
}

.social-icon {
    font-size: 1.2rem;
    color: var(--neon-blue);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links {
    margin-top: 0.5rem;
}

.footer-links a {
    color: var(--text-color);
    margin: 0 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

@media (min-width: 768px) {
    nav ul {
        display: flex;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 3rem;
    }

    #hero-logo {
        width: 200px;
    }

    .hero-text {
        text-align: left;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    .trusted-by h2 {
        font-size: 1.5rem;
    }

    .client-logos img {
        height: 40px;
    }

    .services h2 {
        font-size: 2rem;
    }

    .service-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    header {
        padding: 1rem 2rem;
    }

    .hero {
        padding: 7rem 2rem;
    }

    #hero-logo {
        width: 250px;
    }

    .hero-text h1 {
        font-size: 4rem;
    }

    .service-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        margin: 20px 0;
    }
    
    .footer-form {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        font-size: 1.4rem;
    }
    
    .footer-logo img {
        width: 40px;
        height: 40px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-icon {
        font-size: 1rem;
    }
}

.newsletter-section {
    max-width: 400px;
    margin-left: auto;
    color: var(--text-color);
}

.newsletter-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-text {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 4px;
    color: #fff;
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-submit {
    padding: 12px 25px;
    background: var(--neon-teal);
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.newsletter-submit:hover {
    background: var(--neon-blue);
    transform: translateY(-2px);
}

.newsletter-submit i {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter-section {
        margin: 0 auto;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-submit {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .newsletter-title {
        font-size: 1.2rem;
    }
    
    .newsletter-text {
        font-size: 0.85rem;
    }
}


@media (max-width: 360px) {
    .footer-logo span {
        font-size: 1rem;
    }

    .footer-text img {
        width: 1.5rem;
        height: 1.5rem;
    }
}

@media (max-width: 342px) {

    .footer-text img {
        width: 1rem;
        height: 1rem;
    }

    .footer-text {
        font-size: 0.8rem;
    }
}
