body {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none; /* for iOS */
  -webkit-user-drag: none; /* disable dragging images */
}


.icon-navbar {
    position: fixed;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: rgba(28, 28, 35, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 25px 15px;
    border-radius: 30px;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-icon {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.nav-icon:hover {
    color: #ff3366;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.nav-icon.active {
    color: #ff3366;
    background: rgba(255, 51, 102, 0.1);
}

@media (max-width: 1024px) {
    .icon-navbar {
        left: 20px;
        padding: 20px 12px;
    }
}

@media (max-width: 768px) {
    .icon-navbar {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        flex-direction: row;
        justify-content: space-around;
        border-radius: 20px 20px 0 0;
        padding: 15px 10px;
        gap: 10px;
        background: rgba(28, 28, 35, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: none;
    }

    .nav-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .icon-navbar {
        padding: 12px 5px;
        gap: 5px;
    }

    .nav-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-height: 600px) and (min-width: 769px) {
    .icon-navbar {
        gap: 15px;
        padding: 15px 12px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.section-header {
    margin-bottom: 30px;
    position: relative;
}

.section-header h4 {
    color: var(--primary);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 500;
}

.section-header h2,
.section-title,
.section-header {
    position: relative;
}

.section-header h2::before,
.section-title::before,
.section-header::before,
.projects .section-title:before,
h1::before, 
h2::before, 
h3::before, 
h4::before,
.heading::before {
    display: none !important;
    content: none !important;
    border: none !important;
    background: none !important;
}

/* Remove any existing underlines */
.section-header h2,
.section-title,
h1, h2, h3, h4,
.heading {
    border-bottom: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn.primary {
    background: var(--primary);
    color: white;
}

.btn.secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn:hover {
    transform: translateY(-3px);
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
    }

    .nav-links {
        flex-direction: row;
        justify-content: space-around;
        border-radius: 20px 20px 0 0;
        padding: 15px;
    }

    .nav-link {
        padding: 8px;
    }

    .nav-link span {
        display: none;
    }

    .nav-link i {
        margin: 0;
        font-size: 1.2rem;
    }
}

/* Hero Section Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    filter: blur(30px);
    opacity: 0.3;
    animation: float 8s infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: -2s;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -30px) scale(1.1);
    }
    50% {
        transform: translate(0, 50px) scale(0.9);
    }
    75% {
        transform: translate(-50px, -20px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.text-content {
    margin-bottom: 40px;
}

.hero h4 {
    color: var(--primary);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--primary);
    opacity: 0.2;
    z-index: -1;
}

.highlight::before {
    display: none;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .particle {
        width: 80px;
        height: 80px;
    }
}

/* Professional Navigation Styles */
.icon-navbar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nav-link i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav-link span {
    display: none;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff3366, #ff2a68);
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover i,
.nav-link.active i {
    color: #ff3366;
    transform: scale(1.1);
}

/* Tooltip Styles */
.nav-link::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(17, 17, 17, 0.9);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Hover State - Show Text */
@media (min-width: 768px) {
    .icon-navbar {
        padding: 10px 20px;
    }

    .nav-link:hover span,
    .nav-link.active span {
        display: inline-block;
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .icon-navbar {
        bottom: 20px;
        padding: 12px 20px;
        gap: 10px;
    }

    .nav-link {
        padding: 10px 15px;
    }

    .nav-link i {
        font-size: 15px;
    }
}

/* Small Mobile Screens */
@media (max-width: 480px) {
    .icon-navbar {
        bottom: 15px;
        padding: 10px 15px;
        gap: 5px;
    }

    .nav-link {
        padding: 8px 12px;
    }

    .nav-link i {
        font-size: 14px;
    }
}

/* Landscape Mode */
@media (max-height: 500px) and (orientation: landscape) {
    .icon-navbar {
        bottom: 15px;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-navbar {
        border-width: 0.5px;
    }
}

/* Dark Mode Optimization */
@media (prefers-color-scheme: dark) {
    .icon-navbar {
        background: rgba(17, 17, 17, 0.9);
    }
}

:root {
    --primary: #ff3366;
    --primary-dark: #e61e4d;
    --secondary: #2d3436;
    --accent: #00b894;
    --background: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(45deg, var(--primary), var(--primary-dark));
    --gradient-dark: linear-gradient(45deg, var(--secondary), #1a1a1a);
}

/* Global Styles */
body {
    background: var(--background);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h4 {
    color: var(--primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 500;
}

.section-header h2,
.section-title,
.section-header {
    position: relative;
}

.section-header h2::before,
.section-title::before,
.section-header::before,
.projects .section-title:before,
h1::before, 
h2::before, 
h3::before, 
h4::before,
.heading::before {
    display: none !important;
    content: none !important;
    border: none !important;
    background: none !important;
}

/* Remove any existing underlines */
.section-header h2,
.section-title,
h1, h2, h3, h4,
.heading {
    border-bottom: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

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

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

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 20px;
}

.project-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    backdrop-filter: blur(10px);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.8),
        rgba(255, 51, 102, 0.2)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 20px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.project-card:hover .project-links {
    transform: translateY(0);
}

.project-link {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
}

.project-link:hover {
    transform: scale(1.1) rotate(360deg);
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.project-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tags span {
    padding: 6px 15px;
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid var(--primary);
    border-radius: 20px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-tags span:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: white;
    transition: all 0.4s ease;
}

.contact-card:hover .card-icon {
    transform: scale(1.1) rotate(360deg);
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.card-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Social Links */
.social-links-container {
    text-align: center;
    margin-top: 60px;
}

.social-links-container h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icon {
    width: 55px;
    height: 55px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 22px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}

.social-icon:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.social-icon:hover i {
    transform: scale(1.2);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 15px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos="fade-up"] {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 3px solid var(--gray);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: loader 1s infinite linear;
}

@keyframes loader {
    to { transform: rotate(360deg); }
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    z-index: 1000;
    background: rgba(17, 25, 40, 0.75);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 100px;
    padding: 0.5rem;
}

.navbar.scrolled {
    background: rgba(17, 25, 40, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #ff3366 0%, #ff2a68 50%, #ff3366 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-1px);
    text-shadow: 0 10px 20px rgba(255, 51, 102, 0.2);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    letter-spacing: 0.3px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a i {
    font-size: 1rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 51, 102, 0.1);
    transform: translateY(-1px);
}

.nav-links a:hover i {
    transform: translateY(-1px);
    opacity: 1;
    color: #ff3366;
}

.nav-links a.active {
    color: #fff;
    background: rgba(255, 51, 102, 0.15);
}

.nav-links a.active i {
    color: #ff3366;
    opacity: 1;
}

@media (max-width: 768px) {
    .navbar {
        width: calc(100% - 2rem);
        top: 1rem;
        border-radius: 20px;
    }

    .nav-content {
        padding: 0.5rem 1rem;
    }

    .menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 5rem;
        right: -100%;
        width: 250px;
        background: rgba(17, 25, 40, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        padding: 1.5rem;
        gap: 0.8rem;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
        border-radius: 20px;
        height: auto;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        right: 1rem;
    }

    .nav-links a {
        width: 100%;
        padding: 0.8rem 1.2rem;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: left;
        border-radius: 12px;
        font-size: 0.95rem;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a:hover {
        background: rgba(255, 51, 102, 0.1);
    }

    .nav-links a.active {
        background: rgba(255, 51, 102, 0.15);
    }

    .nav-links a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links a:nth-child(2) { transition-delay: 0.15s; }
    .nav-links a:nth-child(3) { transition-delay: 0.2s; }
    .nav-links a:nth-child(4) { transition-delay: 0.25s; }
    .nav-links a:nth-child(5) { transition-delay: 0.3s; }
}

@media (max-width: 480px) {
    .navbar {
        width: calc(100% - 1.5rem);
        top: 0.75rem;
    }

    .nav-content {
        padding: 0.5rem 0.75rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-links {
        width: calc(100% - 2rem);
        right: 1rem;
    }
}

/* Mobile Menu Styles */
.menu-btn {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    position: relative;
}

.menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-btn span:nth-child(1) {
    top: 13px;
}

.menu-btn span:nth-child(2) {
    top: 19px;
}

.menu-btn span:nth-child(3) {
    top: 25px;
}

.menu-btn.active span:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
    top: 19px;
    background: #ff3366;
}

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

.menu-btn.active span:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    top: 19px;
    background: #ff3366;
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

#networkCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding-top: 4rem;
}

.gradient-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff3366, #ff2a68, #ff3366);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientFlow 8s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn.primary {
    background: linear-gradient(45deg, #ff3366, #ff2a68);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.4);
}

.btn.secondary {
    background: transparent;
    border: 2px solid #ff3366;
    color: white;
}

.btn.secondary:hover {
    background: rgba(255, 51, 102, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .gradient-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        margin-top: 1.5rem;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        margin-top: 1.25rem;
    }

    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gray);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* About Section with Modern Animations */
#about {
    background: #000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header.center {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-header.center h4 {
    color: #ff3366;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.9;
}

.section-header.center h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    background: linear-gradient(45deg, #ff3366, #ff2a68);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 51, 102, 0.2);
}

.section-header.center h4 {
    animation: fadeInDown 0.5s ease forwards;
}

.section-header.center h2 {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.2s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-info {
    color: #fff;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #ff3366;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-animated {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.info-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 51, 102, 0.1),
        rgba(255, 51, 102, 0.05),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-animated:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.info-animated:hover::before {
    opacity: 1;
}

.info-animated .highlight {
    display: block;
    color: #ff3366;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    position: relative;
    animation: shimmer 2s infinite;
}

.info-animated .date {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 5px 0;
    background: linear-gradient(45deg, #fff, #ff3366);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
}

.decoration {
    margin-top: 10px;
}

.decoration i {
    color: #ff3366;
    font-size: 12px;
    margin: 0 4px;
    opacity: 0.7;
    animation: twinkle 1.5s infinite;
}

.decoration i:nth-child(2) {
    animation-delay: 0.5s;
}

.decoration i:nth-child(3) {
    animation-delay: 1s;
}

@keyframes shimmer {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes twinkle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .info-animated {
        padding: 15px;
    }

    .info-animated .date {
        font-size: 16px;
    }

    .decoration i {
        font-size: 10px;
    }
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(30px);
    animation: floatParticle 15s infinite;
    opacity: 0.1;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 50%;
    animation-delay: -5s;
}

.particle:nth-child(3) {
    top: 30%;
    left: 80%;
    animation-delay: -10s;
}

/* Animations */
@keyframes slideIn {
    to {
        transform: scaleX(1);
    }
}

@keyframes gradientText {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(50px, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header.center h2 {
        font-size: 28px;
    }

    .about-content {
        padding: 0 15px;
    }

    .about-info {
        padding: 20px;
    }

    .particle {
        width: 50px;
        height: 50px;
    }
}

/* Birthday Text Animation */
.birthday-text {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.birthday-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 51, 102, 0.1),
        rgba(255, 51, 102, 0.05),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.birthday-text:hover::before {
    opacity: 1;
}

.birthday-text .highlight {
    display: block;
    color: #ff3366;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    position: relative;
    animation: shimmer 2s infinite;
}

.birthday-text .date {
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin: 5px 0;
    background: linear-gradient(45deg, #fff, #ff3366);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
}

.birthday-decoration {
    margin-top: 10px;
}

.birthday-decoration i {
    color: #ff3366;
    font-size: 12px;
    margin: 0 4px;
    opacity: 0.7;
    animation: twinkle 1.5s infinite;
}

.birthday-decoration i:nth-child(2) {
    animation-delay: 0.5s;
}

.birthday-decoration i:nth-child(3) {
    animation-delay: 1s;
}

@keyframes shimmer {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes twinkle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Update info-grid styles */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Media Queries */
@media (max-width: 768px) {
    .birthday-text {
        padding: 15px;
    }

    .birthday-text .date {
        font-size: 20px;
    }

    .birthday-decoration i {
        font-size: 10px;
    }
}

/* Skills Section */
.skills {
    background: #000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.skills-category {
    margin-bottom: 30px;
}

.skills-list {
    margin-top: 20px;
}

.skill-item {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}

.skill-item .date {
    display: block;
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 51, 102, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 10px 0;
}

.progress-bar .progress {
    height: 100%;
    background: linear-gradient(45deg, #ff3366, #ff2a68);
    border-radius: 4px;
    position: relative;
    animation: progressAnimation 1.5s ease-out forwards;
}

.progress-bar .progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmerEffect 2s infinite;
}

.skill-item .decoration {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.skill-item .decoration i {
    color: #ff3366;
    font-size: 18px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.skill-item:hover .decoration i {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes progressAnimation {
    from {
        width: 0;
    }
}

@keyframes shimmerEffect {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .skill-item {
        padding: 12px;
    }

    .skill-item .date {
        font-size: 14px;
    }

    .skill-item .decoration i {
        font-size: 16px;
    }
}

/* Projects Section */
.projects {
    background: #1a1f2e;
    padding: 80px 0;
}

.projects .section-title {
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
}

.projects .section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    border-radius: 2px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.project-card {
    background: #242837;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.project-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.project-info p {
    color: #a0a8c0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-view-live {
    padding: 10px 20px;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.btn-view-live:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
    background: linear-gradient(45deg, #00BCD4, #2196F3);
}

.btn-view-live i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.btn-view-live:hover i {
    transform: translateX(4px);
}

.github-link {
    color: #a0a8c0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.github-link:hover {
    color: #2196F3;
}

.github-link i {
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .project-card {
        max-width: 100%;
    }
}

/* Contact Section */
.contact {
    background: #000;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 51, 102, 0.3);
}

.info-card .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff3366, #ff2a68);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.2);
}

.info-card .info h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}

.info-card .info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.social-icon {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-icon i {
    font-size: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Brand Colors with Gradients */
.social-icon:nth-child(1)::before { 
    background: linear-gradient(45deg, #333, #4a4a4a);
} /* X */

.social-icon:nth-child(2)::before { 
    background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
} /* Instagram */

.social-icon:nth-child(3)::before { 
    background: linear-gradient(45deg, #1877f2, #0d5ab9);
} /* Facebook */

.social-icon:nth-child(4)::before { 
    background: linear-gradient(45deg, #0088cc, #00a0dc);
} /* Telegram */

.social-icon:nth-child(5)::before { 
    background: linear-gradient(45deg, #EA4335, #FBBC05);
} /* Gmail */

.social-icon:nth-child(6)::before { 
    background: linear-gradient(45deg, #ff0000, #cc0000);
} /* YouTube */

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover i {
    transform: scale(1.2);
    color: #fff;
}

/* Pulsing Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.social-icon:hover {
    animation: pulse 1.5s infinite;
}

/* Tooltip */
.social-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.social-icon:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

/* Responsive */
@media (max-width: 768px) {
    .social-links {
        gap: 15px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
    }
    
    .social-icon i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 12px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon i {
        font-size: 14px;
    }
}

/* Modern Form */
.modern-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group.floating {
    position: relative;
    margin-bottom: 25px;
}

.form-group.floating input,
.form-group.floating textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group.floating textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group.floating label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group.floating textarea ~ label {
    top: 25px;
}

.form-group.floating input:focus,
.form-group.floating textarea:focus {
    border-color: #ff3366;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.15);
}

.form-group.floating input:focus ~ label,
.form-group.floating textarea:focus ~ label,
.form-group.floating input:valid ~ label,
.form-group.floating textarea:valid ~ label {
    top: -12px;
    left: 15px;
    font-size: 12px;
    color: #ff3366;
    background: #000;
    padding: 0 5px;
}

.submit-btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(45deg, #ff3366, #ff2a68);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
}

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

.submit-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(3px);
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Media Queries */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 15px;
    }

    .modern-form {
        padding: 20px;
    }

    .form-group.floating input,
    .form-group.floating textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .form-group.floating label {
        font-size: 14px;
    }

    .submit-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* Mobile-First Media Queries */
@media (max-width: 480px) {
    .contact {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .section-header h4 {
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        gap: 15px;
    }

    .info-card {
        padding: 15px;
        gap: 15px;
        border-radius: 12px;
    }

    .info-card .icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 10px;
    }

    .info-card .info h3 {
        font-size: 15px;
        margin-bottom: 3px;
    }

    .info-card .info p {
        font-size: 13px;
    }

    .social-links {
        gap: 10px;
        margin-top: 15px;
        justify-content: center;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
        border-radius: 10px;
    }

    .modern-form {
        padding: 20px;
        border-radius: 16px;
    }

    .form-header {
        margin-bottom: 20px;
        text-align: center;
    }

    .form-header h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .form-header p {
        font-size: 13px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .form-group.floating {
        margin-bottom: 15px;
    }

    .form-group.floating input,
    .form-group.floating textarea {
        padding: 12px 15px;
        font-size: 14px;
        border-radius: 10px;
    }

    .form-group.floating label {
        font-size: 14px;
        left: 15px;
    }

    .form-group.floating input:focus ~ label,
    .form-group.floating textarea:focus ~ label,
    .form-group.floating input:valid ~ label,
    .form-group.floating textarea:valid ~ label {
        top: -10px;
        left: 12px;
        font-size: 11px;
        padding: 0 4px;
    }

    .form-group.floating textarea {
        min-height: 120px;
    }

    .form-group.floating .decoration {
        right: 12px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 10px;
        gap: 8px;
    }

    .submit-btn i {
        font-size: 16px;
    }
}

/* Tablet View Adjustments */
@media (min-width: 481px) and (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .contact-grid {
        gap: 35px;
        padding: 20px;
    }

    .info-card {
        padding: 20px;
    }

    .modern-form {
        padding: 25px;
    }

    .form-header {
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.floating textarea {
        min-height: 100px;
    }

    .info-card {
        padding: 12px;
    }
}

/* Landscape Mobile View */
@media (max-width: 896px) and (orientation: landscape) {
    .contact {
        min-height: auto;
        padding: 40px 0;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .modern-form {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.floating textarea {
        min-height: 80px;
    }

    .info-card {
        padding: 12px;
    }
}

/* Small Height Screens */
@media (max-height: 600px) {
    .contact {
        min-height: auto;
        padding: 30px 0;
    }

    .form-group.floating textarea {
        min-height: 80px;
    }

    .info-card {
        padding: 12px;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .modern-form {
        backdrop-filter: blur(15px);
    }

    .info-card,
    .social-icon,
    .form-group.floating input,
    .form-group.floating textarea {
        border-width: 0.5px;
    }
}

/* Dark Mode Optimization */
@media (prefers-color-scheme: dark) {
    .form-group.floating input,
    .form-group.floating textarea {
        background: rgba(255, 255, 255, 0.02);
    }

    .info-card {
        background: rgba(255, 255, 255, 0.02);
    }
}

/* Touch Device Optimization */
@media (hover: none) {
    .info-card:hover,
    .social-icon:hover,
    .submit-btn:hover {
        transform: none;
    }

    .form-group.floating input:focus,
    .form-group.floating textarea:focus {
        transform: none;
    }
}

/* Section Header */
.section-header.center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.center h4 {
    color: #ff3366;
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header.center h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(45deg, #ff3366, #ff2a68);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Form Updates */
.form-group.floating {
    position: relative;
    margin-bottom: 25px;
}

.form-group.floating input,
.form-group.floating textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group.floating label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: all 0.3s ease;
    padding: 0 5px;
}

.form-group.floating input:focus,
.form-group.floating textarea:focus {
    border-color: #ff3366;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.15);
}

.form-group.floating input:focus ~ label,
.form-group.floating textarea:focus ~ label,
.form-group.floating input:valid ~ label,
.form-group.floating textarea:valid ~ label {
    top: -12px;
    left: 15px;
    font-size: 12px;
    color: #ff3366;
    background: #000;
    border-radius: 4px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section-header.center {
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .section-header.center h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .section-header.center h2 {
        font-size: 28px;
    }

    .form-group.floating input,
    .form-group.floating textarea {
        padding: 14px 18px;
        font-size: 14px;
    }

    .form-group.floating label {
        font-size: 14px;
    }
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 25px;
    margin: 30px 0;
    justify-content: center;
}

.social-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon i {
    font-size: 22px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Brand Colors with Gradients */
.social-icon:nth-child(1)::before { 
    background: linear-gradient(45deg, #333, #4a4a4a);
} /* X */

.social-icon:nth-child(2)::before { 
    background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
} /* Instagram */

.social-icon:nth-child(3)::before { 
    background: linear-gradient(45deg, #1877f2, #0d5ab9);
} /* Facebook */

.social-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover i {
    transform: scale(1.2);
    color: #fff;
}

/* Pulsing Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.social-icon:hover {
    animation: pulse 1.5s infinite;
}

/* Tooltip */
.social-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.social-icon:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

/* Responsive */
@media (max-width: 768px) {
    .social-links {
        gap: 20px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 15px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon i {
        font-size: 18px;
    }
}

/* New Icon Navigation Styles */
.icon-navbar {
    position: fixed;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(20, 20, 28, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    z-index: 1000;
}

.nav-icon {
    color: #fff;
    font-size: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-icon:hover {
    color: #ff3366;
    transform: translateY(-2px);
}

.nav-icon.active {
    color: #ff3366;
}

.nav-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.nav-icon:hover i {
    transform: scale(1.1);
}

/* Media Query for Mobile */
@media (max-width: 768px) {
    .icon-navbar {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        flex-direction: row;
        justify-content: space-around;
        border-radius: 20px 20px 0 0;
        padding: 15px;
    }
    
    .nav-icon {
        font-size: 18px;
        width: 40px;
        height: 40px;
    }
}

/* Dark glass effect for the navbar */
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
    .icon-navbar {
        background: linear-gradient(
            to bottom right,
            rgba(20, 20, 28, 0.9),
            rgba(20, 20, 28, 0.8)
        );
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .location {
        justify-content: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

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

    .menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }

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

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.95);
        padding: 2rem;
        backdrop-filter: blur(10px);
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .typewriter {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Section Header Animation */
.section-header {
    position: relative;
}

.section-header h2::after {
    display: none;
}

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

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

/* Project Tags Enhancement */
.project-tags span {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-tags span:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.2);
    background: var(--primary);
    color: #fff;
}

/* Loading Animation for Images */
.project-image img {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Network Animation */
#particles-network, 
.particle::before,
.particle {
    display: none;
}

.hero {
    position: relative;
    z-index: 1;
}

/* Network Particles */
.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    pointer-events: none;
    transition: transform 1s ease;
}

.particle::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
}

@media (max-width: 768px) {
    .particle {
        transform: scale(0.7);
    }
}

/* Remove all underline effects */
.info-animated .highlight,
.birthday-text .highlight,
.info-column .highlight {
    border-bottom: none !important;
    text-decoration: none !important;
    background: none !important;
}

.info-animated .highlight::after,
.birthday-text .highlight::after,
.info-column .highlight::after {
    content: none !important;
    display: none !important;
    background: none !important;
    border: none !important;
}

.info-animated .highlight::before,
.birthday-text .highlight::before,
.info-column .highlight::before {
    content: none !important;
    display: none !important;
    background: none !important;
    border: none !important;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.about-info {
    margin-top: 40px;
}

.about-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: justify;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.info-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-animated {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .about-content {
        padding: 15px;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .about-info p {
        font-size: 1rem;
        text-align: left;
        padding: 0 10px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-column {
        gap: 20px;
    }

    .info-animated {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .about-info p {
        font-size: 0.95rem;
        padding: 0 5px;
    }

    .info-animated {
        padding: 12px;
    }

    .info-animated .highlight {
        font-size: 0.9rem;
    }

    .info-animated .date {
        font-size: 0.85rem;
    }

    .decoration i {
        font-size: 0.8rem;
    }
}
