/* 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-roles {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.role-tag {
    background: linear-gradient(135deg, var(--accent), var(--success));
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.role-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.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: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255, 87, 34, 0.4);
    border-radius: 15px;
    padding: 20px;
    width: 200px;
    backdrop-filter: blur(25px) saturate(1.3);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(255, 87, 34, 0.25);
}

.floating-card:nth-child(1) {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    bottom: 0;
    right: 0;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    top: 10%;
    right: 15%;
    animation-delay: 1s;
}

.floating-card:nth-child(4) {
    bottom: 10%;
    left: 15%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        filter: drop-shadow(0 10px 20px rgba(0, 212, 255, 0.3));
    }
    50% { 
        transform: translateY(-15px) rotate(1deg); 
        filter: drop-shadow(0 15px 30px rgba(0, 212, 255, 0.4));
    }
}

.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;
    margin-bottom: 20px;
}

.project-actions {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.project-whatsapp,
.project-inquire {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.project-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
}

.project-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.project-inquire {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.project-inquire:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.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: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.short-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.short-card:hover .short-thumbnail img {
    transform: scale(1.05);
}

.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;
}

.thank-you-message {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 15px;
    animation: pulse 2s infinite;
}

/* 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: 30px 0;
    }
    
    .hero {
        padding: 60px 0 30px;
        min-height: 100vh;
        background: linear-gradient(180deg, #000428 0%, #004e92 100%);
        position: relative;
        overflow: hidden;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 25% 25%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(120, 219, 255, 0.2) 0%, transparent 70%);
        animation: floatingBubbles 15s ease-in-out infinite;
        z-index: 1;
    }
    
    @keyframes floatingBubbles {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        33% { transform: translate(-20px, -20px) rotate(120deg); }
        66% { transform: translate(20px, -10px) rotate(240deg); }
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 0 20px;
        position: relative;
        z-index: 10;
        height: 100%;
        min-height: 80vh;
    }
    
    .hero-text {
        width: 100%;
        text-align: center;
        padding: 25px 15px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
        border-radius: 30px;
        backdrop-filter: blur(25px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
        animation: heroTextFloat 6s ease-in-out infinite;
    }
    
    @keyframes heroTextFloat {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }
    
    .hero-text::before {
        content: '';
        position: absolute;
        top: -100%;
        left: -100%;
        width: 300%;
        height: 300%;
        background: linear-gradient(
            45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%
        );
        animation: shimmerRotate 8s linear infinite;
    }
    
    @keyframes shimmerRotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 25px;
        font-size: 0.65rem;
        padding: 12px 24px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 50px;
        box-shadow: 
            0 10px 30px rgba(102, 126, 234, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 700;
        color: white;
        position: relative;
        z-index: 5;
        animation: badgePulse 2s ease-in-out infinite;
    }
    
    @keyframes badgePulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }
    
    .badge i {
        font-size: 0.8rem;
        animation: starSpin 3s linear infinite;
    }
    
    @keyframes starSpin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 30px;
        font-weight: 900;
        position: relative;
        z-index: 5;
    }
    
    .hero-title .gradient-text {
        display: block;
        margin-bottom: 15px;
        animation: titleReveal 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
        opacity: 0;
        transform: translateY(100px) rotateX(90deg);
        transform-style: preserve-3d;
    }
    
    .hero-title .gradient-text:nth-child(1) { 
        animation-delay: 0.3s; 
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 5px 20px rgba(102, 126, 234, 0.5);
    }
    
    .hero-title .gradient-text:nth-child(2) { 
        animation-delay: 0.6s; 
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 5px 20px rgba(240, 147, 251, 0.5);
    }
    
    .hero-title .gradient-text:nth-child(3) { 
        animation-delay: 0.9s; 
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 5px 20px rgba(79, 172, 254, 0.5);
    }
    
    @keyframes titleReveal {
        to {
            opacity: 1;
            transform: translateY(0) rotateX(0deg);
        }
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.9;
        margin-bottom: 40px;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 400;
        position: relative;
        z-index: 5;
        animation: subtitleFadeIn 1.5s ease forwards;
        animation-delay: 1.2s;
        opacity: 0;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    @keyframes subtitleFadeIn {
        to { 
            opacity: 1;
            transform: translateY(0);
        }
        from {
            opacity: 0;
            transform: translateY(30px);
        }
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin: 40px 0;
        width: 100%;
        position: relative;
        z-index: 5;
    }
    
    .stat {
        padding: 20px 10px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
        border-radius: 25px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(20px);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
        animation: statSlideIn 0.8s ease forwards;
        opacity: 0;
    }
    
    .stat:nth-child(1) { animation-delay: 1.4s; transform: translateX(-50px); }
    .stat:nth-child(2) { animation-delay: 1.6s; transform: translateY(50px); }
    .stat:nth-child(3) { animation-delay: 1.8s; transform: translateX(50px); }
    
    @keyframes statSlideIn {
        to {
            opacity: 1;
            transform: translate(0, 0);
        }
    }
    
    .stat::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe);
        border-radius: 25px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.5s ease;
        background-size: 400% 400%;
        animation: gradientShift 3s ease infinite;
    }
    
    @keyframes gradientShift {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
    
    .stat:hover::before {
        opacity: 1;
    }
    
    .stat:hover {
        transform: translateY(-8px) scale(1.08);
        box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    }
    
    .stat-number {
        font-size: 1.8rem;
        font-weight: 900;
        background: linear-gradient(135deg, #667eea, #764ba2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
        margin-bottom: 8px;
        text-shadow: 0 3px 15px rgba(102, 126, 234, 0.5);
    }
    
    .stat-label {
        font-size: 0.65rem;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-top: 35px;
        width: 100%;
        position: relative;
        z-index: 5;
    }
    
    .btn {
        width: 100%;
        padding: 20px 30px;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 20px;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        text-transform: uppercase;
        letter-spacing: 1.2px;
        position: relative;
        overflow: hidden;
        border: none;
        cursor: pointer;
        animation: buttonSlideUp 0.8s ease forwards;
        opacity: 0;
    }
    
    .btn:nth-child(1) { animation-delay: 2s; }
    .btn:nth-child(2) { animation-delay: 2.2s; }
    
    @keyframes buttonSlideUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
        from {
            opacity: 0;
            transform: translateY(50px);
        }
    }
    
    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.8s ease;
    }
    
    .btn:hover::before {
        left: 100%;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        box-shadow: 
            0 15px 35px rgba(102, 126, 234, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    
    .btn-primary:hover {
        transform: translateY(-5px) scale(1.03);
        box-shadow: 
            0 25px 50px rgba(102, 126, 234, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
    
    .btn-secondary {
        background: transparent;
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(15px);
    }
    
    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.8);
        transform: translateY(-5px) scale(1.03);
        box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
    }
    
    .hero-visual {
        display: none !important;
    }
    
    .hero-visual::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(
            from 0deg,
            transparent,
            rgba(102, 126, 234, 0.2),
            transparent,
            rgba(240, 147, 251, 0.2),
            transparent,
            rgba(79, 172, 254, 0.2),
            transparent
        );
        animation: visualRotate 12s linear infinite;
    }
    
    @keyframes visualRotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .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 {
        display: none !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;
    }
}