/* style.css - FINAL VERSION */
:root {
    /* DARK THEME VARIABLES AS DEFAULT */
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --text-color: #f9fafb;
    --text-light: #d1d5db;
    --bg-color: #111827;
    --bg-secondary: #1f2937;
    --bg-tertiary: #374151;
    --border-color: #4b5563;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --container-width: 1200px;
}

[data-theme="light"] {
    /* LIGHT THEME VARIABLES */
    --primary-color: #4f46e5;
    --secondary-color: #7c3aed;
    --accent-color: #06b6d4;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --border-color: #e5e7eb;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    transition: var(--transition);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ===== ROCKET LOADING ANIMATION ===== */
.rocket-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000428 0%, #004e92 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
    font-family: 'Roboto Mono', monospace;
}

.rocket-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 800px;
    max-height: 600px;
}

/* Stars Background */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, #eee, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 40px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 130px 80px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 160px 120px, #ddd, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 3s infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

/* Rocket */
.rocket {
    position: absolute;
    bottom: 30%;
    left: 20%;
    width: 80px;
    height: 180px;
    transform: translateX(-50%);
    animation: rocketLaunch 12s infinite cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.rocket-body {
    position: relative;
    width: 100%;
    height: 100%;
}

.rocket-nose {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 40px solid #ff4757;
}

.rocket-main {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 100px;
    background: linear-gradient(90deg, #ff6b81 0%, #ff4757 100%);
    border-radius: 20px;
}

.rocket-window {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #70a1ff;
    border-radius: 50%;
    border: 3px solid #1e90ff;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5);
}

.rocket-fins {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 40px;
}

.fin {
    position: absolute;
    width: 40px;
    height: 60px;
    background: #ff3838;
    border-radius: 5px;
}

.fin-left {
    left: 0;
    transform: rotate(-45deg);
    transform-origin: right top;
}

.fin-right {
    right: 0;
    transform: rotate(45deg);
    transform-origin: left top;
}

.rocket-engine {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 20px;
    background: #3742fa;
    border-radius: 10px;
}

.exhaust {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
}

.flame {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, #ff9f1a, #ff3838);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flameAnimation 0.5s infinite alternate;
}

.flame-1 {
    width: 30px;
    height: 60px;
    bottom: 0;
    animation-delay: 0s;
}

.flame-2 {
    width: 25px;
    height: 50px;
    bottom: 10px;
    animation-delay: 0.1s;
}

.flame-3 {
    width: 20px;
    height: 40px;
    bottom: 20px;
    animation-delay: 0.2s;
}

@keyframes flameAnimation {
    0% { 
        height: 40px; 
        opacity: 0.8; 
        transform: translateX(-50%) scaleY(0.9);
    }
    100% { 
        height: 60px; 
        opacity: 1; 
        transform: translateX(-50%) scaleY(1.1);
    }
}

.rocket-trail {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    filter: blur(2px);
    animation: trailAnimation 0.5s infinite alternate;
}

@keyframes trailAnimation {
    0% { opacity: 0.5; height: 80px; }
    100% { opacity: 0.8; height: 120px; }
}

/* Rocket Flight Path */
@keyframes rocketLaunch {
    0% {
        transform: translate(0, 0) rotate(0deg);
        bottom: 30%;
        left: 20%;
    }
    10% {
        transform: translate(50px, -100px) rotate(10deg);
        bottom: 40%;
        left: 25%;
    }
    20% {
        transform: translate(100px, -150px) rotate(-5deg);
        bottom: 50%;
        left: 30%;
    }
    30% {
        transform: translate(150px, -80px) rotate(15deg);
        bottom: 45%;
        left: 35%;
    }
    40% {
        transform: translate(200px, -120px) rotate(-10deg);
        bottom: 50%;
        left: 40%;
    }
    50% {
        transform: translate(250px, -60px) rotate(8deg);
        bottom: 55%;
        left: 45%;
    }
    60% {
        transform: translate(300px, -100px) rotate(-12deg);
        bottom: 60%;
        left: 50%;
    }
    70% {
        transform: translate(350px, -40px) rotate(10deg);
        bottom: 65%;
        left: 55%;
    }
    80% {
        transform: translate(400px, -80px) rotate(-8deg);
        bottom: 70%;
        left: 60%;
    }
    90% {
        transform: translate(450px, -20px) rotate(5deg);
        bottom: 75%;
        left: 65%;
    }
    100% {
        transform: translate(500px, 0) rotate(0deg);
        bottom: 80%;
        left: 70%;
        opacity: 0;
    }
}

/* Loading Content */
.loading-content {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    text-align: center;
    color: white;
}

.loading-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #00cec9, #0984e3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 206, 201, 0.5);
    animation: titlePulse 2s infinite alternate;
}

@keyframes titlePulse {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.loading-progress {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00cec9, #0984e3);
    border-radius: 10px;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    animation: progressShimmer 2s infinite;
}

@keyframes progressShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.loading-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.loading-percentage {
    font-weight: bold;
    font-size: 1.3rem;
    color: #00cec9;
}

.loading-status {
    color: #dfe6e9;
}

/* Loading Stats */
.loading-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-label {
    font-size: 0.9rem;
    color: #b2bec3;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: bold;
    color: #00cec9;
}

/* Countdown
.countdown {
    position: absolute;
    top: 60px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    justify-content: center;
    border: 2px solid #00cec9;
}

.countdown-text {
    font-size: 0.8rem;
    color: #dfe6e9;
    margin-bottom: 5px;
}

.countdown-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff4757;
    animation: countdownPulse 1s infinite;
}

@keyframes countdownPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
} */

/* Space Particles */
.space-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.space-particles::before,
.space-particles::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0.5px, transparent 1px),
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0.5px, transparent 1px),
        radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.1) 0.5px, transparent 1px),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0.5px, transparent 1px),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.1) 0.5px, transparent 1px);
    background-size: 200px 200px;
    animation: particlesFloat 20s infinite linear;
}

.space-particles::after {
    animation-direction: reverse;
    animation-duration: 15s;
}

@keyframes particlesFloat {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-200px) translateX(200px); }
}
/* ===== END ROCKET LOADER ===== */



/* ===== UPDATED NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(17, 24, 39, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

[data-theme="light"] .header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Enhanced Logo with Circle Background */
.logo {
    position: relative;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .logo a {
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.logo a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
}



/* Cyan dot near PH 
.logo a::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
} */

/* Wider gaps between nav items */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    transition: transform 0.3s ease, color 0.3s ease;
}

.theme-toggle button {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.theme-toggle button:hover {
    background-color: var(--bg-tertiary);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: var(--transition);
}
/* ===== END UPDATED NAVIGATION ===== */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-color) 100%);
    padding-top: 80px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-family: 'Roboto Mono', monospace;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.1;
}

.particle-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation: float 20s infinite linear;
}

.particle-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    background: var(--accent-color);
    animation: float 25s infinite linear reverse;
}

.particle-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    background: var(--secondary-color);
    animation: float 18s infinite linear;
}

.particle-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 20%;
    animation: float 22s infinite linear reverse;
}

.particle-5 {
    width: 70px;
    height: 70px;
    bottom: 10%;
    right: 30%;
    background: var(--accent-color);
    animation: float 30s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
    }
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-btn {
    margin-top: 1rem;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8rem;
    box-shadow: var(--shadow);
}

/* Projects Section */
.projects {
    background-color: var(--bg-secondary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.project-image {
    height: 200px;
    background-color: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.project-description {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background-color: var(--bg-tertiary);
    color: var(--text-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.project-link:hover {
    color: var(--secondary-color);
}

/* Skills Section */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.skill-category-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.skill-item {
    margin-bottom: 1.5rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.skill-name {
    font-weight: 500;
}

.skill-percentage {
    color: var(--text-light);
    font-weight: 500;
}

.skill-bar {
    height: 10px;
    background-color: var(--bg-tertiary);
    border-radius: 5px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 5px;
    width: 0;
    transition: width 1.5s ease;
}

.skills-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.skill-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.skill-icon:hover {
    transform: translateY(-5px);
}

.skill-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.skill-icon span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-details h3 {
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.contact-details a {
    color: var(--text-light);
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.contact-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--bg-tertiary);
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--text-color);
    transition: var(--transition);
}

.contact-social a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-text {
    color: var(--text-light);
    margin: 1.5rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
        font-size: 6rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .logo a {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
        gap: 1.5rem;
    }
    
    [data-theme="light"] .nav-menu {
        background-color: var(--bg-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 0.8rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .logo a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .logo a::after {
        width: 8px;
        height: 8px;
        top: 6px;
        right: 6px;
    }
}

@media screen and (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}


/* Add animation for stat updates */
.stat-value {
    transition: all 0.3s ease;
}

/*  */
#main-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

#main-content.loaded {
    opacity: 1;
}




/* Display None of countdowns - style.css */
.countdown { display: none; }




/* Hide the theme toggle button */
.theme-toggle {
    display: none !important;
}

/* Or if you want to hide just the button inside */
#theme-toggle {
    display: none !important;
}