
        :root {
            --midnight-blue: #0a192f;
            --electric-blue: #64ffda;
            --light-blue: #8892b0;
            --lighter-blue: #ccd6f6;
            --dark-blue: #020c1b;
            --gradient-start: #0a192f;
            --gradient-end: #112240;
            --tiktok-pink: #ff0050;
            --tiktok-black: #121212;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--midnight-blue);
            color: var(--lighter-blue);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            color: var(--electric-blue);
            letter-spacing: 1px;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Base Navbar Styles */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--nav-bg, #0a0a0a);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

nav .logo {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}

/* Desktop Navigation */
nav .nav-links {
    display: flex;
    gap: 20px;
}

nav .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

nav .nav-links a:hover {
    color: var(--electric-blue, #64ffd9);
}

/* Base Navbar Styles */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--nav-bg, #0a0a0a);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

nav .logo {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}

/* Desktop Navigation */
nav .nav-links {
    display: flex;
    gap: 20px;
}

nav .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

nav .nav-links a:hover {
    color: var(--electric-blue, #64ffd9);
}

/* Mobile Menu Button */
#mobileMenuBtn {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

/* Mobile Navigation Overlay */
#mobileNavOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #64ffda;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 2000;
}

/* Active State for Overlay */
#mobileNavOverlay.active {
    transform: translateY(0);
}

/* Mobile Nav Links */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-links a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
}

.mobile-nav-links a:hover {
    color: var(--electric-blue, #64ffd9);
}

/* Close Menu Button */
#closeMenuBtn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* Responsive Rules */
@media (max-width: 768px) {
    nav .nav-links {
        display: none;
    }

    #mobileMenuBtn {
        display: block;
    }
}
/* Navbar Base */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--nav-bg, #0a192f);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

nav .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--electric-blue, #64ffd9);
}

/* Mobile Menu Button */
#mobileMenuBtn {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* Mobile Overlay Menu */
#mobileNavOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 2000;
}

#mobileNavOverlay.active {
  transform: translateY(0);
}

/* Mobile Nav Links */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
}

.mobile-nav-links a:hover {
  color: var(--electric-blue, #64ffd9);
}

/* Close Button */
#closeMenuBtn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Responsive Rules */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  #mobileMenuBtn {
    display: block;
  }
}

/* Responsive Rules */
@media (max-width: 768px) {
    nav .nav-links {
        display: none;
    }

    #mobileMenuBtn {
        display: block;
    }
}

        

        /* Code Rain Animation */
        #code-rain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.2;
            overflow: hidden;
            pointer-events: none;
        }

        .code-column {
            display: inline-block;
            width: 1.2em;
            margin-right: 1.5em;
            vertical-align: top;
            animation: rain 10s linear infinite;
            animation-delay: calc(var(--delay) * 1s);
        }

        @keyframes rain {
            0% {
                transform: translateY(-100%);
            }
            100% {
                transform: translateY(100vh);
            }
        }

        /* Header & Navigation */
        header {
            background-color: rgba(10, 25, 47, 0.9);
            position: fixed;
            width: 100%;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(1, 88, 68, 0.1);
            padding: 15px 0;
            transition: all 0.4s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--electric-blue);
            text-decoration: none;
            letter-spacing: 1px;
        }

        .logo i {
            color: var(--electric-blue);
            animation: pulse 2s infinite;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }

        .nav-links a {
            color: var(--lighter-blue);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--electric-blue);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--electric-blue);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-button {
            background-color: transparent;
            color: var(--electric-blue);
            border: 1px solid var(--electric-blue);
            padding: 12px 28px;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            background-color: rgba(100, 255, 218, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(100, 255, 218, 0.05) 0%, rgba(10, 25, 47, 0) 70%);
            z-index: -1;
        }

        .hero-content {
            max-width: 700px;
            z-index: 2;
            text-align: center;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-transform: uppercase;
            background: linear-gradient(to right, var(--electric-blue), var(--lighter-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--light-blue);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-top: 40px;
            justify-content: center;
        }

        .primary-btn {
            background-color: var(--electric-blue);
            color: var(--midnight-blue);
            border: none;
            font-weight: 600;
        }

        /* Services Section */
        .services {
            padding: 120px 0;
            background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.8rem;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--electric-blue);
            margin: 15px auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .service-card {
            background: rgba(2, 12, 27, 0.7);
            border: 1px solid rgba(100, 255, 218, 0.1);
            border-radius: 10px;
            padding: 40px 30px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(100, 255, 218, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--midnight-blue), var(--electric-blue), var(--midnight-blue));
            z-index: -1;
            border-radius: 12px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card i {
            font-size: 3rem;
            color: var(--electric-blue);
            margin-bottom: 25px;
        }

        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .service-card p {
            color: var(--light-blue);
        }

         /* About Section - Enhanced with Founder Details */
        .about {
            padding: 120px 0;
            position: relative;
            background: linear-gradient(to top, var(--gradient-start), var(--gradient-end));
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgxMDAsIDI1NSwgMjE4LCAwLjEpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+');
            z-index: -1;
            opacity: 0.3;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.8rem;
            margin-bottom: 30px;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--light-blue);
            font-size: 1.1rem;
        }

        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }

        .tech-item {
            background: rgba(2, 12, 27, 0.7);
            border: 1px solid rgba(100, 255, 218, 0.1);
            padding: 8px 15px;
            border-radius: 4px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .tech-item:hover {
            transform: translateY(-3px);
            background: rgba(100, 255, 218, 0.1);
            box-shadow: 0 0 15px rgba(100, 255, 218, 0.3);
        }

        /* Founder Section */
        .founder-section {
            position: relative;
            text-align: center;
        }

        .founder-title {
            color: var(--founder-highlight);
            font-size: 2.2rem;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        .founder-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--founder-highlight);
        }

        .founder-card {
            background: rgba(2, 12, 27, 0.8);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 10px;
            padding: 30px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .founder-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 217, 255, 0.4);
            box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);
        }

        .founder-image {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 3px solid var(--founder-highlight);
            position: relative;
            box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
        }

        .founder-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .founder-card:hover .founder-image img {
            transform: scale(1.05);
        }

        .founder-name {
            font-size: 1.8rem;
            color: var(--founder-highlight);
            margin-bottom: 5px;
        }

        .founder-role {
            color: var(--light-blue);
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .founder-bio {
            color: var(--lighter-blue);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .founder-quote {
            font-style: italic;
            color: var(--light-blue);
            padding: 15px;
            border-left: 3px solid var(--founder-highlight);
            margin: 20px 0;
            background: rgba(0, 217, 255, 0.05);
            border-radius: 0 5px 5px 0;
        }

        .founder-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .founder-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 217, 255, 0.1);
            color: var(--founder-highlight);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .founder-social a:hover {
            background: var(--founder-highlight);
            color: var(--midnight-blue);
            transform: translateY(-3px);
        }

        /* Social Media Posts Section */
        .social-posts {
            padding: 120px 0;
            background: linear-gradient(135deg, #0a192f, #112240);
            position: relative;
            overflow: hidden;
        }
        
        .social-posts::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgxMDAsIDI1NSwgMjE4LCAwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
            z-index: 0;
        }
        
        .posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }
        
        .post-card {
            background: rgba(2, 12, 27, 0.8);
            border: 1px solid rgba(100, 255, 218, 0.15);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .post-card:hover {
            transform: translateY(-10px);
            border-color: rgba(100, 255, 218, 0.4);
            box-shadow: 0 15px 40px rgba(100, 255, 218, 0.15);
        }
        
        .post-image {
            height: 300px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }
        
        .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .post-card:hover .post-image img {
            transform: scale(1.05);
        }
        
        .post-content {
            padding: 20px;
        }
        
        .post-platform {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .post-platform i {
            font-size: 1.2rem;
            color: var(--electric-blue);
        }
        
        .post-platform .instagram {
            color: #E1306C;
        }
        
        .post-platform .facebook {
            color: #4267B2;
        }
        
        .post-text {
            color: var(--light-blue);
            font-size: 0.95rem;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .post-link {
            display: block;
            text-align: center;
            background: rgba(100, 255, 218, 0.1);
            color: var(--electric-blue);
            padding: 10px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .post-link:hover {
            background: rgba(100, 255, 218, 0.2);
        }
        
        .social-cta {
            text-align: center;
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }
        
        .social-cta h3 {
            color: var(--lighter-blue);
            margin-bottom: 30px;
            font-size: 1.8rem;
        }
        
        .social-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .social-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .social-btn i {
            font-size: 1.2rem;
        }
        
        .instagram-btn {
            background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
            color: white;
        }
        
        .facebook-btn {
            background: linear-gradient(45deg, #4267B2, #3b5998);
            color: white;
        }
        
        .tiktok-btn {
            background: linear-gradient(45deg, var(--tiktok-black), var(--tiktok-pink));
            color: white;
        }
        
        .social-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        /* Contact Section */
        .contact {
            padding: 120px 0;
            position: relative;
            background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h2 {
            font-size: 2.8rem;
            margin-bottom: 30px;
        }

        .contact-info p {
            color: var(--light-blue);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--electric-blue);
            margin-top: 5px;
        }

        .contact-item div h4 {
            margin-bottom: 5px;
        }

        .contact-item div p {
            margin: 0;
            color: var(--light-blue);
        }

        .contact-form .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 15px;
            background: rgba(2, 12, 27, 0.7);
            border: 1px solid rgba(100, 255, 218, 0.1);
            border-radius: 4px;
            color: var(--lighter-blue);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--electric-blue);
            box-shadow: 0 0 10px rgba(100, 255, 218, 0.2);
        }

        .contact-form textarea {
            height: 150px;
            resize: vertical;
        }

        .contact__message {
            margin-top: 10px;
            font-size: 0.9rem;
            min-height: 24px;
        }

        /* Notification System */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: rgba(2, 12, 27, 0.95);
            border: 1px solid var(--electric-blue);
            border-radius: 8px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 2000;
            transform: translateX(150%);
            transition: transform 0.5s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification i {
            font-size: 2.5rem;
            color: var(--electric-blue);
        }

        .notification-content h3 {
            margin-bottom: 5px;
        }

        .notification-content p {
            color: var(--light-blue);
            font-size: 0.9rem;
        }

        .loading {
            display: none;
            position: absolute;
            top: 50%;
            right: 15px;
            transform: translateY(-50%);
        }

        .loading-spinner {
            width: 20px;
            height: 20px;
            border: 3px solid rgba(100, 255, 218, 0.3);
            border-top: 3px solid var(--electric-blue);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Footer */
        footer {
            background-color: var(--dark-blue);
            padding: 70px 0 30px;
            position: relative;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-about h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--electric-blue);
        }

        .footer-about p {
            color: var(--light-blue);
            margin-bottom: 30px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(100, 255, 218, 0.1);
            color: var(--electric-blue);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--electric-blue);
            color: var(--midnight-blue);
            transform: translateY(-3px);
        }

        .social-links a.tiktok:hover {
            background: var(--tiktok-pink);
            color: white;
        }

        .footer-links h4 {
            margin-bottom: 25px;
            font-size: 1.3rem;
            color: var(--electric-blue);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: var(--light-blue);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--electric-blue);
            padding-left: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(100, 255, 218, 0.1);
            color: var(--light-blue);
            font-size: 0.9rem;
        }

        .copyright i {
            color: #e1306c;
        }

        /* Animations */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        @keyframes float {
            0% { transform: translate(0, 0); }
            25% { transform: translate(-10px, 10px); }
            50% { transform: translate(0, 20px); }
            75% { transform: translate(10px, 10px); }
            100% { transform: translate(0, 0); }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content,
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.3rem;
            }
            
            .posts-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .social-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .social-btn {
                width: 80%;
                justify-content: center;
            }
        }

        
    