/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Color Palette */
    --primary: #0a0f1e;
    --secondary: #1a1f2e;
    --accent: #00d4ff;
    --accent-dark: #00a8cc;
    --accent-light: #5de2ff;
    --gradient: linear-gradient(135deg, #00d4ff, #0099ff);
    --gradient-dark: linear-gradient(135deg, #0099ff, #0066cc);
    --text: #ffffff;
    --text-light: #a0a8c3;
    --text-lighter: #6c7496;
    --card-bg: rgba(26, 31, 46, 0.8);
    --card-bg-solid: #1a1f2e;
    --border: rgba(0, 212, 255, 0.1);
    --border-light: rgba(0, 212, 255, 0.2);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-accent: 0 0 20px rgba(0, 212, 255, 0.3);
    --success: #00ff88;
    --warning: #ffaa00;
    --danger: #ff5555;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 153, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 104, 255, 0.05) 0%, transparent 60%);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 212, 255, 0.02) 2px,
            rgba(0, 212, 255, 0.02) 4px
        );
    pointer-events: none;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.highlight {
    color: var(--accent);
    font-weight: 600;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.hide {
    opacity: 0;
    pointer-events: none;
}

.circuit-loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    animation: nodeBlink 1.5s infinite;
}

.node:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.node:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 0.2s; }
.node:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 0.4s; }
.node:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 0.6s; }

@keyframes nodeBlink {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 20px var(--accent); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 15, 30, 0.98);
    box-shadow: var(--shadow);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
}

.logo-highlight {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-cta {
    background: var(--gradient);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: var(--accent);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid var(--border);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.stat-label {
    color: var(--text-lighter);
    font-size: 0.9rem;
    margin-top: 5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 20px;
    width: 200px;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    box-shadow: var(--shadow);
}

.floating-card:nth-child(1) {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    bottom: 0;
    right: 0;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.floating-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text);
}

.floating-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.hero-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

.circuit-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

.circuit-animation .line {
    position: absolute;
    background: var(--accent);
    opacity: 0.3;
}

.circuit-animation .line:nth-child(1) {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    animation: pulse 2s infinite;
}

.circuit-animation .line:nth-child(2) {
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    animation: pulse 2s infinite 0.5s;
}

.circuit-animation .line:nth-child(3) {
    width: 70%;
    height: 1px;
    top: 30%;
    left: 15%;
    animation: pulse 2s infinite 1s;
}

.glowing-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent);
}

.glowing-node:nth-child(4) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: glow 2s infinite;
}

.glowing-node:nth-child(5) {
    top: 30%;
    left: 15%;
    animation: glow 2s infinite 0.5s;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; box-shadow: 0 0 30px var(--accent); }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.profile-display {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.profile-image {
    flex-shrink: 0;
}

.image-frame {
    width: 150px;
    height: 150px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.profile-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--success);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--text);
}

.profile-title {
    color: var(--accent);
    margin-bottom: 20px;
}

.profile-details {
    margin-top: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 10px;
}

.detail-item i {
    color: var(--accent);
    font-size: 1.2rem;
    width: 20px;
}

.detail-item h4 {
    font-size: 0.9rem;
    margin-bottom: 3px;
    color: var(--text);
}

.detail-item p {
    color: var(--text-light);
    font-size: 0.85rem;
}

.about-text {
    margin-top: 30px;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.expertise {
    margin-top: 30px;
}

.expertise h4 {
    color: var(--text);
    margin-bottom: 15px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border);
}

.skills-section {
    margin-top: 40px;
}

.skills-section h3 {
    color: var(--text);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.skill-bars {
    margin-bottom: 40px;
}

.skill-item {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skill-info span {
    color: var(--text);
    font-weight: 500;
}

.skill-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
    width: 0%;
    transition: width 1.5s ease-in-out;
}

.achievements h4 {
    color: var(--text);
    margin-bottom: 20px;
}

.achievement-list {
    display: grid;
    gap: 15px;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.achievement i {
    color: var(--accent);
    font-size: 1.5rem;
    width: 30px;
}

.achievement h5 {
    color: var(--text);
    margin-bottom: 3px;
    font-size: 1rem;
}

.achievement p {
    color: var(--text-light);
    font-size: 0.85rem;
}

.company-logos {
    margin-top: 40px;
    text-align: center;
}

.company-logos h4 {
    color: var(--text);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.logos-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 15px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.logo-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    background: white;
    padding: 10px;
}

.logo-item span {
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Projects Section */
.projects {
    background: var(--primary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    color: var(--text);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.project-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--accent);
}

/* Services Section */
.services {
    background: var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-features i {
    color: var(--success);
    font-size: 0.8rem;
}

/* YouTube Section */
.youtube-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.youtube-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.channel-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text);
}

.channel-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.channel-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF0000, #CC0000);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.channel-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.channel-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

.channel-stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

.video-showcase {
    position: relative;
}

.video-player {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.video-placeholder {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #FF0000, #CC0000);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FF0000;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px;
    color: white;
    text-align: center;
}

.video-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.video-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 15px;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.video-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.video-thumb {
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #FF0000, #CC0000);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.video-desc h4 {
    color: var(--text);
    margin-bottom: 5px;
    font-size: 1rem;
}

.video-desc p {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* YouTube Shorts Showcase */
.shorts-showcase {
    margin-top: 40px;
}

.shorts-showcase h3 {
    color: var(--text);
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
}

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.short-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.short-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.short-thumbnail {
    position: relative;
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #FF0000, #CC0000);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.short-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #FF0000;
    z-index: 2;
}

.short-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.short-info {
    padding: 15px;
}

.short-info h4 {
    color: var(--text);
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.short-info p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
}

.shorts-description {
    text-align: center;
}

.shorts-description p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    background: var(--primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-container {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text);
}

.form-header p {
    color: var(--text-light);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.info-card h3 {
    color: var(--text);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand .logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
}

.footer-tagline {
    color: var(--text-light);
    line-height: 1.6;
    margin: 15px 0 20px;
}

.footer-brand .social-links {
    display: flex;
    gap: 15px;
}

.footer-contact h4 {
    color: var(--text);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info i {
    color: var(--accent);
    width: 20px;
    font-size: 1.1rem;
}

/* Location Section */
.location-section {
    margin-bottom: 40px;
    text-align: center;
}

.location-section h3 {
    color: var(--text);
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-family: 'Orbitron', sans-serif;
}

.map-container {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
}

.location-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-lighter);
    margin-bottom: 5px;
}

/* WhatsApp Float Button - Moved Higher */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.float-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--card-bg-solid);
    color: var(--text);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border: 1px solid var(--border);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .about-content,
    .youtube-content,
    .contact-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-visual {
        height: 400px;
        margin-top: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .profile-display {
        flex-direction: column;
        text-align: center;
    }
    
    .youtube-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .project-image {
        height: 160px;
    }
    
    .project-info {
        padding: 20px;
    }
    
    .project-info h3 {
        font-size: 1.2rem;
    }
    
    .tech-tag {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--card-bg-solid);
        backdrop-filter: blur(10px);
        flex-direction: column;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .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);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .floating-card {
        position: relative;
        margin: 10px auto;
        width: 100%;
        max-width: 300px;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .channel-stats {
        justify-content: center;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .shorts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .short-thumbnail {
        height: 100px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .location-section h3 {
        font-size: 1.5rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .footer-brand .social-links {
        justify-content: center;
    }
    
    .about-card,
    .contact-form-container,
    .info-card {
        padding: 25px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .channel-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-display {
        gap: 20px;
    }
    
    .detail-item {
        padding: 12px;
    }
    
    .achievement {
        padding: 12px;
    }
    
    .contact-method {
        padding: 15px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}