/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    transform: none !important;
}

body {
    font-family: 'Exo 2', 'Orbitron', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(10, 10, 10, 0.3) 25%, rgba(26, 26, 26, 0.3) 50%, rgba(0, 0, 0, 0.3) 75%, rgba(10, 10, 10, 0.3) 100%),
        url('backdrop.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    width: 100vw;
    position: relative;
}

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

/* Container */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    transform: none !important;
    width: 100%;
}

/* Header */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 100px !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
    z-index: 1000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    will-change: auto !important;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    transform: none !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transform: none !important;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(120, 119, 198, 0.3);
    transition: all 0.3s ease;
}

.logo:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(120, 119, 198, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
}

.logo-icon-img {
    width: 60px;
    height: 60px;
    transform: none !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.7));
    transition: all 0.3s ease;
}

.logo:hover .logo-icon-img {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.9)) brightness(1.1);
    transform: scale(1.05);
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9), 0 0 30px rgba(120, 119, 198, 0.7);
    transform: none !important;
    letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    position: relative;
    transform: none !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(120, 119, 198, 0.6);
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.4), transparent);
    transition: left 0.6s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    border-color: #7877c6;
    background: rgba(120, 119, 198, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
    color: #7877c6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7877c6, #ff77c6);
    transition: width 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(120, 119, 198, 0.6);
    border-radius: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Mobile menu is handled in the main mobile styles below */

.hamburger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.4), transparent);
    transition: left 0.6s ease;
}

.hamburger:hover::before {
    left: 100%;
}

.hamburger:hover {
    border-color: #7877c6;
    background: rgba(120, 119, 198, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger-active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-active span:nth-child(2) {
    opacity: 0;
}

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

/* Social Links */
.social-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(120, 119, 198, 0.6);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.4), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    border-color: #7877c6;
    background: rgba(120, 119, 198, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
    color: #7877c6;
}

/* Hero Section */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 0 4rem;
    position: relative;
    transform: none !important;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    transform: none !important;
}

.hero-text {
    transform: none !important;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', monospace;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2em;
    width: 100%;
}

.hero-line-1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.2em;
    text-align: center;
    width: 100%;
}

.hero-line-3 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.2em;
    text-align: center;
    width: 100%;
}

.hero-line-1 .permanent-letter {
    display: inline-block;
    z-index: 10;
}

.hero-line-1 .typing-text {
    display: inline-block;
    z-index: 5;
}

.hero-line-3 .permanent-letter {
    display: inline-block;
    z-index: 10;
}

.hero-line-3 .typing-text {
    display: inline-block;
    z-index: 5;
}

.hero-line-2 {
    display: none;
}

.permanent-letter {
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 900;
    animation: permanentGlow 3s ease-in-out infinite;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9), 0 0 30px rgba(120, 119, 198, 0.8);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.7));
}

@keyframes permanentGlow {
    0%, 100% { 
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9), 0 0 30px rgba(120, 119, 198, 0.8);
        filter: brightness(1);
    }
    50% { 
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9), 0 0 40px rgba(120, 119, 198, 1);
        filter: brightness(1.1);
    }
}

.typing-text {
    color: #ffffff;
    font-weight: 600;
    animation: blink 1s infinite;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

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

.hero-tagline {
    font-size: 1.25rem;
    color: #a0b4c8;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Actions */
.hero-actions {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    justify-content: flex-end;
}

.get-in-touch-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(120, 119, 198, 0.6);
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.1);
}

.get-in-touch-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.4), transparent);
    transition: left 0.6s ease;
}

.get-in-touch-btn:hover::before {
    left: 100%;
}

.get-in-touch-btn:hover {
    border-color: #7877c6;
    background: rgba(120, 119, 198, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
    color: #7877c6;
}

.get-in-touch-btn:active {
    transform: translateY(0);
}

/* Sections */
.solutions, .challenges, .about, .contact {
    padding: 6rem 0;
    transform: none !important;
    background: transparent;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    position: relative;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(120, 119, 198, 0.3);
    letter-spacing: 1px;
}

.section-title::after {
    display: none;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 0 auto 2rem;
    width: 100%;
    max-width: 1200px;
    align-items: start;
    justify-items: center;
}

.solution-card {
    background: rgba(0, 0, 0, 0.0);
    border: 1px solid rgba(120, 119, 198, 0.0);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(0px);
    aspect-ratio: 3/4;
    min-height: 350px;
    max-height: 400px;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0 auto;
}

.solution-card:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(120, 119, 198, 0.2);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 30px rgba(120, 119, 198, 0.2);
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    flex-shrink: 0;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

.solution-card p {
    color: #e0f0ff;
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Challenges Grid */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 0 auto 2rem;
    width: 100%;
    max-width: 1200px;
    align-items: start;
    justify-items: center;
}

.challenge-card {
    background: rgba(0, 0, 0, 0.0);
    border: 1px solid rgba(120, 119, 198, 0.0);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(0px);
    aspect-ratio: 3/4;
    min-height: 350px;
    max-height: 400px;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0 auto;
}

.challenge-card:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(120, 119, 198, 0.2);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 30px rgba(120, 119, 198, 0.2);
}

.challenge-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    flex-shrink: 0;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

.challenge-card p {
    color: #e0f0ff;
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Icons */
.icon-svg {
    width: 64px;
    height: 64px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.solution-card:hover .icon-svg,
.challenge-card:hover .icon-svg {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(120, 119, 198, 0.5));
}

/* About Section */
.about {
    background: transparent;
    border-top: none;
    border-bottom: none;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0f0ff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0f0ff;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.about-list li::before {
    content: "•";
    color: #7877c6;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    background: transparent;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #e0f0ff;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    font-size: 1rem;
    color: #e0f0ff;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.contact-item strong {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
}

/* Contact Form */
.contact-form {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(120, 119, 198, 0.3);
    border-radius: 0;
    padding: 3rem;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7877c6, #ff77c6, transparent);
    animation: borderGlow 3s ease-in-out infinite;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(120, 119, 198, 0.2);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.4s ease;
    font-family: 'Exo 2', sans-serif;
    backdrop-filter: blur(5px);
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7877c6;
    box-shadow: 0 0 0 2px rgba(120, 119, 198, 0.2);
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0b4c8;
    opacity: 0.8;
    font-style: italic;
}

.submit-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(120, 119, 198, 0.6);
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    font-family: 'Orbitron', monospace;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.1);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.4), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    border-color: #7877c6;
    background: rgba(120, 119, 198, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
    color: #7877c6;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    background: transparent;
    border-top: none;
    padding: 2rem 0;
    text-align: center;
    color: #a0b4c8;
    transform: none !important;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer a {
    color: #7877c6;
    text-decoration: none;
    transition: all 0.4s ease;
    padding: 0.5rem 1rem;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(120, 119, 198, 0.6);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.footer a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.4), transparent);
    transition: left 0.6s ease;
}

.footer a:hover::before {
    left: 100%;
}

.footer a:hover {
    border-color: #7877c6;
    background: rgba(120, 119, 198, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
    color: #7877c6;
}


/* Active state for better feedback */
.nav-link:active,
.social-link:active,
.footer a:active,
.get-in-touch-btn:active,
.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(120, 119, 198, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .challenges-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .social-links {
        margin-left: 0.5rem;
        gap: 0.75rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        color: #ffffff;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav {
        padding: 0 1rem;
    }
    
    .nav-links {
        position: fixed;
        top: 100px;
        right: 1rem;
        width: 200px;
        height: auto;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 1.5rem 1rem;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 1000;
        border-radius: 0;
        border: 2px solid rgba(120, 119, 198, 0.6);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
    }
    
    .nav-links-active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.2), transparent);
        transition: left 0.6s ease;
    }
    
    .nav-links:hover::before {
        left: 100%;
    }
    
    .nav-links .nav-link {
        color: #1a1a2e;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
        font-weight: 600;
        letter-spacing: 0.5px;
        padding: 0.75rem 1rem;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.3);
        border: 2px solid rgba(120, 119, 198, 0.6);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
    }
    
    .nav-links .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.4), transparent);
        transition: left 0.6s ease;
    }
    
    .nav-links .nav-link:hover::before {
        left: 100%;
    }
    
    .nav-links .nav-link:hover {
        border-color: #7877c6;
        background: rgba(120, 119, 198, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
        color: #7877c6;
    }
    
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    
    .nav-overlay-active {
        opacity: 1;
        pointer-events: auto;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-actions {
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 1rem;
        z-index: 10;
        max-width: 100%;
        width: 100%;
        padding: 0 1rem;
        justify-content: flex-end;
    }
    
    .social-links {
        order: 1;
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .get-in-touch-btn {
        order: 2;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .logo-icon-img {
        width: 50px;
        height: 50px;
    }
    
    .logo {
        padding: 0.5rem 1rem;
        gap: 0.75rem;
    }
    
    .hero {
        padding: 6rem 0 3rem;
        min-height: 40vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.75rem;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
    
    .solution-card,
    .challenge-card {
        padding: 1.5rem;
        aspect-ratio: 3/4;
        min-height: 300px;
        max-height: 350px;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-card,
    .challenge-card {
        aspect-ratio: 3/4;
        min-height: 250px;
        max-height: 300px;
        max-width: 280px;
        padding: 1.25rem;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-content {
        padding: 0 0.5rem;
        max-width: 100%;
    }
}