* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0ea5e9;
    --secondary-color: #0284c7;
    --accent-color: #06b6d4;
    --text-color: #1e293b;
    --bg-color: #ffffff;
    --alt-bg-color: #f0f9ff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #06b6d4 100%);
    --gradient-secondary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #cbd5e1;
    background-color: #0f172a;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 113px;
    max-width: 151px;
    height: auto;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #0ea5e9;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #cbd5e1;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: white;
    padding: 8rem 5%;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
    animation: heroGradientMove 20s ease-in-out infinite;
}

@keyframes heroGradientMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(5deg); }
}

.hero-3d-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Hero 3D Floating Elements */
.hero-float {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.3) 0%, rgba(6, 182, 212, 0.3) 100%);
    animation: heroFloat 15s ease-in-out infinite;
}

.hero-float::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.hero-float-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.hero-float-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.hero-float-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

.hero-float-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 25%;
    animation-delay: 9s;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.3; }
    25% { transform: translateY(-30px) rotate(90deg) scale(1.1); opacity: 0.4; }
    50% { transform: translateY(-50px) rotate(180deg) scale(1); opacity: 0.3; }
    75% { transform: translateY(-30px) rotate(270deg) scale(1.1); opacity: 0.4; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 1s ease-out;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: slideUp 1s ease-out 0.2s backwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: slideUp 1s ease-out 0.4s backwards;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: var(--accent-color);
    color: white;
}

/* Sections */
.section {
    padding: 5rem 5%;
}

.alt-bg {
    background-color: #0f172a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* About Section Background */
#about {
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(14, 165, 233, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 85% 75%, rgba(6, 182, 212, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 45%);
    animation: aboutGradientMove 18s ease-in-out infinite;
}

@keyframes aboutGradientMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.15) rotate(3deg); }
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-20px) rotateX(12deg) scale(1.08) translateZ(30px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
    background: rgba(255, 255, 255, 0.2);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.2) rotate(10deg);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card h3 {
    margin-bottom: 1rem;
    color: #0ea5e9;
    font-weight: 700;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.card:hover h3 {
    transform: translateY(-5px);
}

.card p {
    color: #cbd5e1;
    line-height: 1.7;
}

/* Services */
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-item:hover {
    transform: translateY(-18px) rotateX(10deg) scale(1.05) translateZ(25px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6);
    background: rgba(255, 255, 255, 0.18);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item h3 {
    margin-bottom: 1rem;
    color: #0ea5e9;
    font-weight: 700;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.service-item:hover h3 {
    transform: translateY(-3px);
}

.service-item p {
    color: #cbd5e1;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Data Recovery Section Background */
#data-recovery {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

#data-recovery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    animation: gradientMove 15s ease-in-out infinite;
}

#data-recovery .container {
    position: relative;
    z-index: 1;
}

#data-recovery h2 {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#data-recovery .service-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#data-recovery .service-item h3 {
    color: #0ea5e9;
}

#data-recovery .service-item p {
    color: #cbd5e1;
}

@keyframes gradientMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

/* 3D Pendrive Background Elements - Vertical Standing */
.pendrive-bg {
    position: absolute;
    width: 60px;
    height: 200px;
    background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
    border-radius: 8px;
    opacity: 0.4;
    animation: rotatePendrive 12s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.pendrive-bg::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 30px;
    background: linear-gradient(180deg, #64748b 0%, #475569 100%);
    border-radius: 0 0 4px 4px;
}

.pendrive-bg::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    box-shadow: 0 60px 0 rgba(255, 255, 255, 0.5), 0 120px 0 rgba(255, 255, 255, 0.5);
}

.pendrive-1 {
    top: 5%;
    left: 8%;
    animation-delay: 0s;
}

.pendrive-2 {
    top: 50%;
    right: 10%;
    animation-delay: 3s;
}

.pendrive-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes rotatePendrive {
    0%, 100% { transform: translateY(0) rotateY(0deg); opacity: 0.4; }
    25% { transform: translateY(-20px) rotateY(15deg); opacity: 0.5; }
    50% { transform: translateY(-30px) rotateY(0deg); opacity: 0.4; }
    75% { transform: translateY(-20px) rotateY(-15deg); opacity: 0.5; }
}

/* Web Hosting Section Background */
#web-hosting {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

#web-hosting::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    animation: gradientMove 15s ease-in-out infinite reverse;
}

#web-hosting .container {
    position: relative;
    z-index: 1;
}

#web-hosting h2 {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#web-hosting .service-item::before {
    background: var(--gradient-secondary);
}

#web-hosting .service-item h3 {
    color: #8b5cf6;
}

/* 3D Server/Website Background Elements */
.server-bg {
    position: absolute;
    width: 120px;
    height: 160px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #4f46e5 100%);
    border-radius: 8px;
    opacity: 0.4;
    animation: floatServer 10s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.server-bg::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 0 rgba(255, 255, 255, 0.5), 0 40px 0 rgba(255, 255, 255, 0.5), 0 60px 0 rgba(255, 255, 255, 0.5);
}

.server-bg::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    box-shadow: 0 8px 0 rgba(255, 255, 255, 0.6);
}

.server-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.server-2 {
    top: 50%;
    right: 12%;
    animation-delay: 3s;
}

.server-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes floatServer {
    0%, 100% { transform: translateY(0) rotateY(0deg); opacity: 0.4; }
    25% { transform: translateY(-15px) rotateY(10deg); opacity: 0.5; }
    50% { transform: translateY(-25px) rotateY(0deg); opacity: 0.4; }
    75% { transform: translateY(-15px) rotateY(-10deg); opacity: 0.5; }
}

/* 3D Globe/Website Element */
.globe-bg {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #0891b2 100%);
    opacity: 0.4;
    animation: rotateGlobe 12s linear infinite;
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.globe-bg::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 20%;
    width: 60%;
    height: 30%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: rotate(-30deg);
}

.globe-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 20%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: rotate(20deg);
}

.globe-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.globe-2 {
    bottom: 25%;
    left: 10%;
    animation-delay: 4s;
    width: 100px;
    height: 100px;
}

@keyframes rotateGlobe {
    0% { transform: rotate(0deg) scale(1); opacity: 0.4; }
    50% { transform: rotate(180deg) scale(1.08); opacity: 0.5; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.4; }
}

/* Contact Section Background */
#contact {
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    animation: contactGradientMove 16s ease-in-out infinite;
}

@keyframes contactGradientMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(4deg); }
}

#contact .container {
    position: relative;
    z-index: 1;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #cbd5e1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.2);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.5);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    display: block;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.5s ease;
}

.form-message.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    display: block;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Direct Contact Buttons */
.direct-contact {
    margin-top: 3rem;
    text-align: center;
}

.contact-divider {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
}

.btn-icon {
    font-size: 1.3rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    text-align: center;
    padding: 3rem 5%;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

footer p {
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .cards,
    .service-list {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }
}
