/* ===== Base Styles ===== */
:root {
  --primary: #00A3FF;
  --secondary: #1E3D59;
  --light: #f8f9fa;
  --dark: #121212;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background-color: white;
  color: #333;
  transition: var(--transition);
}

body.dark {
  background-color: var(--dark);
  color: white;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-weight: 700;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-scaleIn {
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-slideInLeft {
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slideInRight {
  animation: slideInRight 0.6s ease-out forwards;
}

.cursor {
  animation: blink 1s infinite;
}

/* ===== Navigation ===== */
.nav-blur {
  backdrop-filter: blur(10px);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* ===== Buttons ===== */
.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.cta-button:hover {
  background-color: #0085cc;
  transform: translateY(-2px);
}

.cta-button.large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* ===== Cards ===== */
.service-card,
.experience-card,
.testimonial-card,
.stat-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.dark .service-card,
.dark .experience-card,
.dark .testimonial-card,
.dark .stat-card {
  background-color: #1e1e1e;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover,
.experience-card:hover,
.testimonial-card:hover,
.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 163, 255, 0.1);
}

/* ===== Skill Bars ===== */
.skill-bar {
  transition: width 1.5s ease-in-out;
}

.skill-container:hover .skill-bar {
  transform: scaleX(1.02);
  box-shadow: 0 2px 8px rgba(0,163,255,0.2);
}

/* ===== Timeline ===== */
.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary);
  border: 3px solid white;
}

.dark .timeline-item::before {
  border-color: var(--dark);
}

.timeline-connector {
  position: absolute;
  left: -17px;
  top: 16px;
  bottom: -16px;
  width: 2px;
  background-color: #e5e7eb;
}

.dark .timeline-connector {
  background-color: #374151;
}

/* ===== Form Elements ===== */
.form-input {
  transition: var(--transition);
}

.form-input:focus {
  transform: scale(1.01);
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.1);
}

/* ===== Social Icons ===== */
.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.social-icon:hover {
  transform: translateY(-3px) rotate(8deg);
  background-color: #0085cc;
}

/* ===== Hero Sections ===== */
.services-hero,
.contact-hero {
  padding: 6rem 0 4rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.05) 0%, rgba(30, 61, 89, 0.05) 100%);
}

.dark .services-hero,
.dark .contact-hero {
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.1) 0%, rgba(18, 18, 18, 0.2) 100%);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .services-hero h1,
  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Project Card Effects ===== */
.project-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.project-link:hover {
    transform: translateY(-10px);
}

.project-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.project-link:hover .project-card {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.7);
}

/* Neon glow effect */
.project-link:hover .project-card {
    position: relative;
}

.project-link:hover .project-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    border-radius: 12px;
    background: linear-gradient(90deg, 
        rgba(0, 163, 255, 0.8), 
        rgba(0, 163, 255, 0.4), 
        rgba(0, 163, 255, 0.8));
    background-size: 200% 200%;
    animation: neonGlow 2s linear infinite;
    z-index: -1;
}

@keyframes neonGlow {
    0% {
        background-position: 0% 50%;
        opacity: 0.8;
    }
    50% {
        background-position: 100% 50%;
        opacity: 1;
    }
    100% {
        background-position: 0% 50%;
        opacity: 0.8;
    }
}





/* Free Guy-inspired holographic effect */
.holographic-container {
    position: relative;
    overflow: hidden;
}

.holographic-image {
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.holographic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 163, 255, 0.2) 0%,
        rgba(0, 255, 255, 0.1) 20%,
        transparent 40%,
        transparent 60%,
        rgba(255, 0, 255, 0.1) 80%,
        rgba(0, 163, 255, 0.2) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.project-link:hover .holographic-image {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

.project-link:hover .holographic-overlay {
    opacity: 1;
    animation: hologramScan 2s linear infinite;
}

@keyframes hologramScan {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100%;
    }
}

/* Add scan lines */
.holographic-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 95%,
        rgba(0, 255, 255, 0.1) 95%,
        rgba(0, 255, 255, 0.1) 96%,
        transparent 96%,
        transparent 100%
    );
    background-size: 100% 8px;
    animation: scanline 1s linear infinite;
}

@keyframes scanline {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 8px;
    }
}

/* Add digital noise */
.holographic-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.1"/></svg>');
    opacity: 0.15;
    pointer-events: none;
}


/* Optional additional effects */
.project-link:hover {
    transform: perspective(500px) translateY(-10px) rotateX(5deg);
}

.project-card {
    transform-style: preserve-3d;
}

.project-link:hover .project-card {
    box-shadow: 0 20px 50px rgba(0, 163, 255, 0.3),
                0 0 0 1px rgba(0, 163, 255, 0.5);
}
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-light);
            background: var(--background-light);
            transition: var(--transition);
        }

        body.dark {
            color: var(--text-dark);
            background: var(--background-dark);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navbar Styles */
        .nav-blur {
            backdrop-filter: blur(10px);
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: #00A3FF;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }

        /* Contact Page Styles */
        .contact-hero {
            text-align: center;
            padding: 100px 0 60px;
            background: linear-gradient(to right, rgba(0, 163, 255, 0.1), rgba(30, 61, 89, 0.1));
        }

        .contact-section {
            padding: 60px 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 3fr 2fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-form {
            background: var(--background-light);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .dark .contact-form {
            background: var(--gray-dark);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .contact-form:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-light);
        }

        .dark .form-group label {
            color: var(--text-dark);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--gray-light);
            border-radius: 10px;
            background: var(--background-light);
            font-size: 1rem;
            transition: var(--transition);
        }

        .dark .form-group input,
        .dark .form-group textarea {
            border-color: var(--gray-dark);
            background: var(--background-dark);
            color: var(--text-dark);
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.1);
        }

        .submit-button {
            width: 100%;
            padding: 1rem;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 163, 255, 0.3);
        }

        .contact-info {
            padding: 2.5rem;
            background: var(--background-light);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .dark .contact-info {
            background: var(--gray-dark);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .contact-info:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(0, 163, 255, 0.05);
            border-radius: 10px;
            transition: var(--transition);
        }

        .info-item:hover {
            transform: translateX(10px);
            background: rgba(0, 163, 255, 0.1);
        }

        .info-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-color);
            color: white;
            border-radius: 10px;
            margin-right: 1rem;
            font-size: 1.5rem;
        }

        .info-content h3 {
            font-size: 1.2rem;
            margin-bottom: 0.25rem;
            color: var(--secondary-color);
        }

        .dark .info-content h3 {
            color: var(--primary-color);
        }

        .info-content p {
            color: var(--text-light);
            opacity: 0.8;
        }

        .dark .info-content p {
            color: var(--text-dark);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-color);
            color: white;
            border-radius: 10px;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .social-icon:hover {
            transform: translateY(-5px) rotate(8deg);
            box-shadow: 0 5px 15px rgba(0, 163, 255, 0.3);
        }

        /* Stats Section */
        .stats-section {
            background: var(--gray-light);
            padding: 60px 0;
        }

        .dark .stats-section {
            background: var(--gray-dark);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .stat-card {
            background: var(--background-light);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .dark .stat-card {
            background: var(--gray-dark);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-light);
            font-size: 1rem;
        }

        .dark .stat-label {
            color: var(--text-dark);
        }

        /* Testimonials */
        .testimonials-section {
            padding: 80px 0;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .testimonial-card {
            background: var(--background-light);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .dark .testimonial-card {
            background: var(--gray-dark);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .testimonial-content {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }

        .dark .testimonial-content {
            color: var(--text-dark);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
            object-fit: cover;
        }

        .author-info h4 {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .author-info p {
            color: var(--text-light);
            opacity: 0.8;
            font-size: 0.9rem;
        }

        .dark .author-info p {
            color: var(--text-dark);
        }

        .testimonial-rating {
            color: #FFD700;
            margin-top: 0.5rem;
        }

        /* Footer */
        footer {
            background: var(--gray-light);
            padding: 60px 0 20px;
        }

        .dark footer {
            background: var(--gray-dark);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 2rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            text-decoration: none;
            color: var(--text-light);
            transition: var(--transition);
        }

        .dark .footer-links a {
            color: var(--text-dark);
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .dark .footer-bottom {
            border-top-color: rgba(255, 255, 255, 0.1);
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fadeIn {
            animation: fadeIn 0.6s ease-out forwards;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }

            .contact-form,
            .contact-info {
                padding: 1.5rem;
            }

            .info-item {
                padding: 1rem;
            }
        }


        /* About */
.skill-bar {
            transition: width 1.5s ease-in-out;
        }
        :where([class^="ri-"])::before { content: "\f3c2"; }
        .dark {
            background-color: #121212;
            color: #ffffff;
        }
        .theme-transition {
            transition: all 0.3s ease-in-out;
        }
        .nav-blur {
            backdrop-filter: blur(10px);
        }
        .experience-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,163,255,0.1);
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        .animate-fadeInUp {
            animation: fadeInUp 0.6s ease-out forwards;
        }
        .animate-scaleIn {
            animation: scaleIn 0.6s ease-out forwards;
        }
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: #00A3FF;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }

        /* Free Guy Holographic Effect */
        .holographic-container {
            position: relative;
            overflow: hidden;
        }
        .holographic-image {
            transition: all 0.5s ease;
            position: relative;
            z-index: 1;
        }
        .holographic-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                45deg,
                rgba(0, 163, 255, 0.2) 0%,
                rgba(0, 255, 255, 0.1) 20%,
                transparent 40%,
                transparent 60%,
                rgba(255, 0, 255, 0.1) 80%,
                rgba(0, 163, 255, 0.2) 100%
            );
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
            pointer-events: none;
        }
        .project-link:hover .holographic-image {
            transform: scale(1.05);
            filter: brightness(1.1) contrast(1.1);
        }
        .project-link:hover .holographic-overlay {
            opacity: 1;
            animation: hologramScan 2s linear infinite;
        }
        @keyframes hologramScan {
            0% { background-position: 0 0; }
            100% { background-position: 0 100%; }
        }
        /* Scan lines */
        .holographic-overlay::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to bottom,
                transparent 95%,
                rgba(0, 255, 255, 0.1) 95%,
                rgba(0, 255, 255, 0.1) 96%,
                transparent 96%,
                transparent 100%
            );
            background-size: 100% 8px;
            animation: scanline 1s linear infinite;
        }
        @keyframes scanline {
            from { background-position: 0 0; }
            to { background-position: 0 8px; }
        }
        /* Digital noise */
        .holographic-overlay::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.1"/></svg>');
            opacity: 0.15;
            pointer-events: none;
        }

        /* Modern Timeline */
        .timeline-dot {
            width: 16px;
            height: 16px;
            background-color: #00A3FF;
            border: 3px solid white;
            border-radius: 50%;
            position: absolute;
        }
        .dark .timeline-dot {
            border-color: #121212;
        }
        .timeline-connector {
            position: absolute;
            width: 2px;
            background-color: #e5e7eb;
        }
        .dark .timeline-connector {
            background-color: #374151;
        }

        /* Enhanced Cards */
        .skill-card, .testimonial-card, .stat-card {
            transition: all 0.3s ease;
        }
        .skill-card:hover, .testimonial-card:hover, .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 163, 255, 0.1);
        }


        /* Project/Services */
        :root {
            --primary: #00A3FF;
            --secondary: #1E3D59;
            --light: #f8f9fa;
            --dark: #121212;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: white;
            color: #333;
            line-height: 1.6;
            transition: var(--transition);
        }

        body.dark {
            background-color: var(--dark);
            color: white;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navbar Styles */
        .nav-blur {
            backdrop-filter: blur(10px);
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: #00A3FF;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }

        /* Services Page Styles */
        .services-hero {
            padding: 6rem 0 4rem;
            text-align: center;
            background: linear-gradient(135deg, rgba(0, 163, 255, 0.05) 0%, rgba(30, 61, 89, 0.05) 100%);
        }

        .dark .services-hero {
            background: linear-gradient(135deg, rgba(0, 163, 255, 0.1) 0%, rgba(18, 18, 18, 0.2) 100%);
        }

        .services-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .dark .services-hero h1 {
            background: linear-gradient(to right, var(--primary), #ffffff);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .dark .hero-subtitle {
            color: #b3b3b3;
        }

        /* Services Grid */
        .services-grid {
            padding: 4rem 0;
        }

        .services-grid .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background-color: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .dark .service-card {
            background-color: #1e1e1e;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 163, 255, 0.1);
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .dark .service-card h3 {
            color: white;
        }

        .service-card p {
            color: var(--gray);
            margin-bottom: 1.5rem;
        }

        .dark .service-card p {
            color: #b3b3b3;
        }

        .service-features {
            list-style: none;
            margin: 1.5rem 0;
        }

        .service-features li {
            margin: 0.8rem 0;
            padding-left: 1.8rem;
            position: relative;
            color: var(--secondary);
        }

        .dark .service-features li {
            color: white;
        }

        .service-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary);
        }

        .cta-button {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            margin-top: 1rem;
        }

        .cta-button:hover {
            background-color: #0085cc;
            transform: translateY(-2px);
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 0;
            text-align: center;
            background-color: var(--light-gray);
        }

        .dark .cta-section {
            background-color: #252525;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .dark .cta-section h2 {
            color: white;
        }

        .cta-section p {
            color: var(--gray);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .dark .cta-section p {
            color: #b3b3b3;
        }

        .cta-button.large {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
        }

        /* Mobile Menu Styles */
.mobile-menu-button {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px; /* Height of your navbar */
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 40;
    animation: slideDown 0.3s ease-out;
}

.dark .mobile-menu {
    background: #1e1e1e;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    color: var(--text-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dark .mobile-menu a {
    color: var(--text-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a:hover {
    color: var(--primary);
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: block; /* Show on mobile */
    }
    
    .desktop-menu {
        display: none; /* Hide desktop menu on mobile */
    }
    
    .mobile-menu.active {
        display: block;
    }
}


.skill-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.skill-card.visible {
    opacity: 1;
    transform: translateY(0);
}