 :root {
     /* Modern Palette */
     --primary: #4f46e5;
     --primary-dark: #4338ca;
     --secondary: #06b6d4;
     --accent: #8b5cf6;

     /* Gradients */
     --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
     --gradient-hover: linear-gradient(135deg, #4338ca 0%, #0891b2 100%);
     --gradient-text: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 50%, #06b6d4 100%);
     --gradient-light: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
     --gradient-mesh: radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 1) 0, transparent 50%);

     /* Neutrals */
     --dark: #0f172a;
     --darker: #020617;
     --light: #f1f5f9;
     --white: #ffffff;
     --gray: #64748b;
     --gray-light: #e2e8f0;

     /* Shadows & Effects */
     --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
     --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
     --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
     --shadow-primary: 0 20px 40px -5px rgba(79, 70, 229, 0.3);

     --glass: rgba(255, 255, 255, 0.7);
     --glass-border: rgba(255, 255, 255, 0.5);
     --blur: blur(12px);

     --radius: 20px;
     --radius-sm: 12px;
     --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Inter', sans-serif;
     color: var(--dark);
     background-color: #f8fafc;
     line-height: 1.6;
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: 'Plus Jakarta Sans', sans-serif;
     font-weight: 700;
     line-height: 1.2;
     letter-spacing: -0.03em;
 }

 strong {
     font-weight: 600;
 }

 .container {
     width: 100%;
     max-width: 1280px;
     margin: 0 auto;
     padding: 0 24px;
 }

 /* Glass Navbar */
 header {
     position: fixed;
     top: 20px;
     left: 50%;
     transform: translateX(-50%);
     width: 90%;
     max-width: 1280px;
     z-index: 1000;
     padding: 12px 24px;
     background: rgba(255, 255, 255, 0.85);
     backdrop-filter: var(--blur);
     -webkit-backdrop-filter: var(--blur);
     border: 1px solid var(--glass-border);
     border-radius: 50px;
     box-shadow: var(--shadow-sm);
     transition: var(--transition);
 }

 header.scrolled {
     top: 10px;
     padding: 10px 24px;
     background: rgba(255, 255, 255, 0.95);
     box-shadow: var(--shadow-md);
     width: 95%;
 }

 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     display: flex;
     align-items: center;
     text-decoration: none;
     font-size: 24px;
     font-weight: 800;
     color: var(--darker);
     gap: 12px;
 }

 .logo-icon {
     width: 36px;
     height: 36px;
     background: var(--gradient-primary);
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     font-size: 18px;
     box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
 }

 .nav-links {
     display: flex;
     list-style: none;
     gap: 32px;
     align-items: center;
 }

 .nav-links a {
     color: var(--gray);
     text-decoration: none;
     font-weight: 500;
     font-size: 15px;
     position: relative;
     padding: 8px 0;
     transition: var(--transition);
 }

 .nav-links a:hover,
 .nav-links a.active {
     color: var(--primary);
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     width: 0;
     height: 2px;
     background: var(--gradient-primary);
     transition: var(--transition);
     transform: translateX(-50%);
     border-radius: 2px;
 }

 .nav-links a.active::after,
 .nav-links a:hover::after {
     width: 100%;
 }

 .nav-item-cta a.cta-button {
     color: white !important;
 }

 .nav-item-cta a.cta-button::after {
     display: none;
 }

 .mobile-menu-btn {
     display: none;
     background: none;
     border: none;
     font-size: 24px;
     color: var(--dark);
     cursor: pointer;
 }

 /* Buttons */
 .cta-button {
     background: var(--gradient-primary);
     color: var(--white);
     padding: 12px 32px !important;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600 !important;
     font-size: 15px !important;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: var(--transition);
     box-shadow: var(--shadow-primary);
     border: none;
     cursor: pointer;
     position: relative;
     z-index: 1;
     overflow: hidden;
 }

 .cta-button::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: var(--gradient-hover);
     z-index: -1;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .cta-button:hover {
     transform: translateY(-2px);
     box-shadow: 0 15px 30px -5px rgba(79, 70, 229, 0.4);
 }

 .cta-button:hover::before {
     opacity: 1;
 }

 .cta-button-outline {
     background: transparent;
     color: var(--dark);
     border: 1px solid var(--gray-light);
     box-shadow: var(--shadow-sm);
 }

 .cta-button-outline::before {
     display: none;
 }

 .cta-button-outline:hover {
     border-color: var(--primary);
     color: var(--primary);
     background: rgba(79, 70, 229, 0.05);
     box-shadow: var(--shadow-md);
 }

 .cta-button i {
     font-size: 0.9em;
 }

 /* Hero Section */
 .hero {
     padding: 180px 0 100px;
     position: relative;
     overflow: hidden;
     background-color: #f8fafc;
 }

 /* Abstract Background Pattern */
 .hero::before {
     content: '';
     position: absolute;
     top: -20%;
     right: -10%;
     width: 800px;
     height: 800px;
     background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, rgba(248, 250, 252, 0) 70%);
     border-radius: 50%;
     z-index: 0;
 }

 .hero::after {
     content: '';
     position: absolute;
     bottom: -10%;
     left: -10%;
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, rgba(248, 250, 252, 0) 70%);
     border-radius: 50%;
     z-index: 0;
 }

 .grid-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image:
         linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
         linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
     background-size: 40px 40px;
     z-index: 0;
 }

 .hero-content {
     max-width: 650px;
     position: relative;
     z-index: 2;
 }

 .badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 6px 16px;
     background: rgba(79, 70, 229, 0.1);
     color: var(--primary);
     border-radius: 30px;
     font-size: 14px;
     font-weight: 600;
     margin-bottom: 24px;
     border: 1px solid rgba(79, 70, 229, 0.2);
 }

 .badge i {
     font-size: 12px;
 }

 .hero h1 {
     font-size: 64px;
     margin-bottom: 24px;
     color: var(--darker);
     line-height: 1.1;
     letter-spacing: -0.03em;
 }

 .hero h1 .highlight {
     background: var(--gradient-text);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     position: relative;
 }

 .hero p {
     font-size: 20px;
     color: var(--gray);
     margin-bottom: 40px;
     max-width: 580px;
     line-height: 1.6;
 }

 .hero-buttons {
     display: flex;
     gap: 16px;
     margin-bottom: 60px;
 }

 .hero-visual {
     position: absolute;
     right: -50px;
     top: 50%;
     transform: translateY(-50%);
     width: 55%;
     max-width: 700px;
     height: 600px;
     z-index: 1;
 }

 .floating-elements {
     position: relative;
     width: 100%;
     height: 100%;
     perspective: 1000px;
 }

 .element {
     position: absolute;
     border-radius: 24px;
     background: rgba(255, 255, 255, 0.8);
     backdrop-filter: blur(15px);
     box-shadow: var(--shadow-lg);
     border: 1px solid rgba(255, 255, 255, 0.6);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: var(--transition);
 }

 .element-1 {
     width: 220px;
     height: 220px;
     top: 5%;
     right: 25%;
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
     z-index: 3;
     animation: float 8s ease-in-out infinite;
 }

 .element-1-content {
     text-align: center;
 }

 .code-icon {
     font-size: 48px;
     background: var(--gradient-primary);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 15px;
 }

 .code-label {
     font-weight: 700;
     font-size: 18px;
     color: var(--darker);
     display: block;
 }

 .code-sub {
     font-size: 14px;
     color: var(--gray);
 }

 .element-2 {
     width: 160px;
     height: 160px;
     top: 40%;
     right: 5%;
     animation: float 7s ease-in-out infinite 1s;
     z-index: 2;
     background: white;
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .element-icon-circle {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: rgba(6, 182, 212, 0.1);
     color: var(--secondary);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
 }

 .element-3 {
     width: 140px;
     height: 140px;
     bottom: 15%;
     right: 35%;
     animation: float 9s ease-in-out infinite 2s;
     z-index: 2;
     background: white;
     flex-direction: column;
     gap: 10px;
 }

 .element-4 {
     width: 100px;
     height: 100px;
     bottom: 30%;
     left: 10%;
     animation: float 6s ease-in-out infinite 3s;
     z-index: 1;
     background: var(--gradient-primary);
     color: white;
     font-size: 32px;
     border: none;
 }

 /* Stats */
 .stats {
     display: flex;
     gap: 60px;
     padding-top: 20px;
     border-top: 1px solid rgba(15, 23, 42, 0.05);
 }

 .stat-item {
     display: flex;
     flex-direction: column;
 }

 .stat-number {
     font-size: 36px;
     font-weight: 800;
     color: var(--darker);
     line-height: 1;
     margin-bottom: 8px;
     letter-spacing: -0.02em;
 }

 .stat-label {
     font-size: 14px;
     font-weight: 500;
     color: var(--gray);
     text-transform: uppercase;
     letter-spacing: 0.05em;
 }

 /* Services Section */
 .services {
     padding: 120px 0;
     background-color: var(--white);
     position: relative;
 }

 .section-header {
     text-align: center;
     max-width: 700px;
     margin: 0 auto 80px;
 }

 .section-tag {
     display: inline-block;
     color: var(--primary);
     font-weight: 700;
     font-size: 14px;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     margin-bottom: 16px;
 }

 .section-title {
     font-size: 42px;
     color: var(--darker);
     margin-bottom: 20px;
 }

 .section-title span {
     color: var(--primary);
     position: relative;
     display: inline-block;
 }

 .section-title span::after {
     content: '';
     position: absolute;
     bottom: 2px;
     left: 0;
     width: 100%;
     height: 8px;
     background: rgba(79, 70, 229, 0.2);
     z-index: -1;
     transform: rotate(-2deg);
 }

 .section-subtitle {
     font-size: 18px;
     color: var(--gray);
     line-height: 1.7;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
     gap: 32px;
     margin-bottom: 60px;
 }

 .service-card {
     background: var(--white);
     border-radius: var(--radius);
     padding: 40px;
     box-shadow: var(--shadow-sm);
     transition: var(--transition);
     border: 1px solid var(--gray-light);
     position: relative;
     overflow: hidden;
     z-index: 1;
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 0;
     background: var(--gradient-light);
     z-index: -1;
     transition: height 0.4s ease;
 }

 .service-card:hover {
     transform: translateY(-8px);
     box-shadow: var(--shadow-lg);
     border-color: rgba(79, 70, 229, 0.3);
 }

 .service-card:hover::before {
     height: 100%;
 }

 .service-icon {
     width: 64px;
     height: 64px;
     background: var(--light);
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 24px;
     color: var(--primary);
     font-size: 24px;
     transition: var(--transition);
 }

 .service-card:hover .service-icon {
     background: var(--primary);
     color: white;
     transform: rotate(-10deg);
 }

 .service-card h3 {
     font-size: 24px;
     margin-bottom: 12px;
     color: var(--darker);
 }

 .service-card p {
     color: var(--gray);
     margin-bottom: 24px;
     line-height: 1.6;
 }

 .service-link {
     color: var(--primary);
     text-decoration: none;
     font-weight: 600;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: var(--transition);
 }

 .service-link:hover {
     gap: 16px;
     color: var(--primary-dark);
 }

 /* Portfolio Section */
 .portfolio {
     padding: 120px 0;
     background-color: #f8fafc;
 }

 .portfolio-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
     gap: 40px;
 }

 .portfolio-item {
     border-radius: var(--radius);
     overflow: hidden;
     position: relative;
     height: 420px;
     cursor: pointer;
     box-shadow: var(--shadow-md);
     background: white;
 }

 .portfolio-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
 }

 .portfolio-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     padding: 40px 30px;
     background: linear-gradient(to top, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.6) 50%, transparent 100%);
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     transform: translateY(20px);
     opacity: 0;
     transition: all 0.4s ease;
 }

 /* Portfolio images placeholders */
 .p-img-1 {
     background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
     background-size: cover;
 }

 .p-img-2 {
     background-image: url('https://images.unsplash.com/photo-1648260295976-de09f77ab469?q=80&w=1528&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
     background-size: cover;
 }

 .p-img-3 {
     background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
     background-size: cover;
 }

 .portfolio-item:hover .portfolio-img {
     transform: scale(1.1);
 }

 .portfolio-item:hover .portfolio-overlay {
     opacity: 1;
     transform: translateY(0);
 }

 .portfolio-overlay h4 {
     color: white;
     font-size: 24px;
     margin-bottom: 8px;
 }

 .portfolio-overlay p {
     color: rgba(255, 255, 255, 0.8);
     font-size: 16px;
     margin-bottom: 20px;
 }

 .p-btn {
     background: rgba(255, 255, 255, 0.2);
     backdrop-filter: blur(5px);
     border: 1px solid rgba(255, 255, 255, 0.3);
     color: white;
     padding: 8px 16px;
     border-radius: 20px;
     font-size: 14px;
     width: fit-content;
 }

 .p-btn a {
     color: white;
     text-decoration: none;
 }

 /* Process Section */
 .process {
     padding: 120px 0;
     background-color: var(--white);
     position: relative;
 }

 .process::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
     background-size: 30px 30px;
     opacity: 0.3;
     z-index: 0;
 }

 .process-steps {
     display: flex;
     justify-content: space-between;
     position: relative;
     margin-top: 80px;
     z-index: 1;
 }

 .process-steps::before {
     content: '';
     position: absolute;
     top: 40px;
     left: 50px;
     right: 50px;
     height: 2px;
     background: var(--gray-light);
     z-index: 0;
     border-top: 2px dashed #cbd5e1;
     background: none;
 }

 .step {
     position: relative;
     z-index: 2;
     text-align: center;
     flex: 1;
     max-width: 250px;
     padding: 0 15px;
 }

 .step-number {
     width: 80px;
     height: 80px;
     background: var(--white);
     border: 2px solid var(--gray-light);
     box-shadow: var(--shadow-sm);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 30px;
     font-size: 24px;
     font-weight: 800;
     color: var(--gray);
     transition: var(--transition);
 }

 .step:hover .step-number {
     border-color: var(--primary);
     color: var(--primary);
     transform: scale(1.1);
     box-shadow: 0 0 0 8px rgba(79, 70, 229, 0.1);
 }

 .step h4 {
     font-size: 22px;
     margin-bottom: 12px;
     color: var(--darker);
 }

 .step p {
     color: var(--gray);
     font-size: 15px;
     line-height: 1.6;
 }

 /* CTA Section */
 .cta-section {
     padding: 100px 0;
     margin: 0 24px 40px;
     border-radius: 30px;
     background: var(--gradient-primary);
     position: relative;
     overflow: hidden;
     text-align: center;
 }

 .cta-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
 }

 .cta-content {
     max-width: 700px;
     margin: 0 auto;
     position: relative;
     z-index: 2;
 }

 .cta-title {
     font-size: 48px;
     color: white;
     margin-bottom: 20px;
 }

 .cta-subtitle {
     font-size: 20px;
     color: rgba(255, 255, 255, 0.9);
     margin-bottom: 40px;
 }

 .cta-button-white {
     background: white;
     color: var(--primary);
     padding: 16px 40px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 700;
     font-size: 18px;
     display: inline-block;
     transition: var(--transition);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }

 .cta-button-white:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
     background: #f8fafc;
 }

 /* Footer */
 footer {
     background-color: var(--darker);
     color: white;
     padding: 100px 0 40px;
     position: relative;
 }

 footer::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 1px;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
 }

 .footer-content {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1.5fr;
     gap: 60px;
     margin-bottom: 80px;
 }

 .footer-logo {
     display: flex;
     align-items: center;
     text-decoration: none;
     font-size: 26px;
     font-weight: 800;
     color: white;
     margin-bottom: 24px;
     gap: 12px;
 }

 .footer-about p {
     color: #94a3b8;
     margin-bottom: 30px;
     max-width: 300px;
     line-height: 1.8;
 }

 .social-links {
     display: flex;
     gap: 12px;
 }

 .social-link {
     width: 44px;
     height: 44px;
     border-radius: 12px;
     background: rgba(255, 255, 255, 0.05);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     text-decoration: none;
     transition: var(--transition);
     border: 1px solid rgba(255, 255, 255, 0.05);
 }

 .social-link:hover {
     background: var(--primary);
     border-color: var(--primary);
     transform: translateY(-3px);
 }

 .footer-heading {
     font-size: 18px;
     margin-bottom: 24px;
     color: white;
     font-weight: 600;
 }

 .footer-links {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 14px;
 }

 .footer-links a {
     color: #94a3b8;
     text-decoration: none;
     transition: var(--transition);
     font-size: 15px;
 }

 .footer-links a:hover {
     color: white;
     padding-left: 5px;
 }

 .footer-contact li {
     color: #94a3b8;
     margin-bottom: 20px;
     display: flex;
     align-items: flex-start;
     gap: 15px;
     font-size: 15px;
 }

 .footer-contact i {
     color: var(--primary);
     margin-top: 5px;
 }

 .copyright {
     text-align: center;
     padding-top: 40px;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     color: #64748b;
     font-size: 14px;
 }

 /* Animations */
 @keyframes float {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-20px);
     }
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(40px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .fade-in-up {
     opacity: 0;
     transform: translateY(30px);
     transition: opacity 0.8s ease, transform 0.8s ease;
 }

 .fade-in-up.visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* Responsive Design */
 @media (max-width: 1200px) {
     .hero h1 {
         font-size: 56px;
     }

     .hero-visual {
         width: 50%;
         right: -20px;
     }

     .container {
         padding: 0 30px;
     }
 }

 @media (max-width: 1024px) {
     header {
         width: 95%;
         padding: 12px 20px;
     }

     .hero {
         padding: 140px 0 80px;
         text-align: center;
     }

     .hero-content {
         margin: 0 auto;
     }

     .hero-buttons {
         justify-content: center;
     }

     .hero h1 {
         font-size: 48px;
     }

     .hero-visual {
         position: relative;
         width: 100%;
         height: 400px;
         right: auto;
         top: auto;
         transform: none;
         margin-top: 60px;
         max-width: 100%;
         display: flex;
         justify-content: center;
     }

     .floating-elements {
         width: 100%;
         max-width: 500px;
         height: 100%;
         margin: 0 auto;
     }

     .element-1 {
         right: 10%;
         top: 10%;
     }

     .element-3 {
         right: 70%;
         bottom: 20%;
     }

     .footer-content {
         grid-template-columns: 1fr 1fr;
         gap: 40px;
     }
 }

 @media (max-width: 768px) {
     header .container {
         padding: 0;
     }

     .navbar {
         padding: 0 10px;
     }

     .nav-links {
         display: none;
         position: absolute;
         top: 100%;
         left: 0;
         width: 100%;
         background: white;
         flex-direction: column;
         padding: 30px;
         box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
         border-radius: 20px;
         margin-top: 15px;
         gap: 20px;
         align-items: stretch;
         text-align: center;
     }

     .nav-links a {
         font-size: 18px;
         display: block;
         padding: 10px;
     }

     .nav-links.active {
         display: flex;
         animation: slideDown 0.3s ease forwards;
     }

     .mobile-menu-btn {
         display: block;
     }

     .hero h1 {
         font-size: 40px;
     }

     .stats {
         flex-wrap: wrap;
         justify-content: center;
         gap: 30px;
     }

     .stat-item {
         align-items: center;
         min-width: 140px;
     }

     .services-grid,
     .portfolio-grid {
         grid-template-columns: 1fr;
     }

     .process-steps {
         flex-direction: column;
         gap: 40px;
         margin-top: 50px;
     }

     .process-steps::before {
         display: none;
     }

     .step {
         max-width: 100%;
         display: flex;
         flex-direction: column;
         align-items: center;
     }

     .cta-title {
         font-size: 36px;
     }

     .footer-content {
         grid-template-columns: 1fr;
     }

     .cta-section {
         margin: 0 15px 40px;
         padding: 60px 20px;
     }
 }

 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateY(-10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }