/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333333;
    overflow-x: hidden;
}

/* Electrifying Blue & White Color Variables */
:root {
    --electric-blue: #0066FF;
    --electric-light: #3385FF;
    --electric-dark: #0052CC;
    --cyber-blue: #00BFFF;
    --neon-blue: #1E90FF;
    --ice-white: #FFFFFF;
    --frost-white: #F8FAFF;
    --crystal-white: #F0F4FF;
    --charcoal: #1A1A2E;
    --primary-color: var(--electric-blue);
    --primary-light: var(--electric-light);
    --primary-dark: var(--electric-dark);
    --accent-color: var(--cyber-blue);
    --accent-light: var(--neon-blue);
    --neutral-50: var(--frost-white);
    --neutral-100: var(--crystal-white);
    --neutral-200: #E6EFFF;
    --neutral-300: #CCE0FF;
    --neutral-400: #99CCFF;
    --neutral-500: #6BB3FF;
    --neutral-600: #4D9AFF;
    --neutral-700: #3380FF;
    --neutral-800: #1A66CC;
    --neutral-900: var(--charcoal);
    --text-primary: var(--charcoal);
    --text-secondary: #4A5568;
    --text-light: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--electric-blue), var(--cyber-blue));
    --gradient-accent: linear-gradient(135deg, var(--neon-blue), var(--electric-light));
    --gradient-electric: linear-gradient(135deg, var(--electric-blue), var(--neon-blue), var(--cyber-blue));
    --gradient-glow: linear-gradient(135deg, rgba(0, 102, 255, 0.8), rgba(30, 144, 255, 0.6));
    --shadow-sm: 0 1px 2px 0 rgba(0, 102, 255, 0.15);
    --shadow-md: 0 4px 6px -1px rgba(0, 102, 255, 0.2), 0 2px 4px -2px rgba(0, 102, 255, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(0, 102, 255, 0.25), 0 4px 6px -4px rgba(0, 102, 255, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0, 102, 255, 0.3), 0 8px 10px -6px rgba(0, 102, 255, 0.25);
    --glow-blue: 0 0 20px rgba(0, 102, 255, 0.5), 0 0 40px rgba(0, 102, 255, 0.3), 0 0 60px rgba(0, 102, 255, 0.1);
    --glow-cyan: 0 0 20px rgba(0, 191, 255, 0.5), 0 0 40px rgba(0, 191, 255, 0.3);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 250, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--neutral-200);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 102, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    background: transparent;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--electric-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    box-shadow: var(--glow-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section - Electrifying Blue Redesign */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--ice-white) 0%, var(--crystal-white) 30%, var(--frost-white) 70%, #E6F3FF 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, rgba(0, 191, 255, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    animation: electricFloat 8s ease-in-out infinite;
    filter: blur(1px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.2) 0%, rgba(0, 191, 255, 0.15) 50%, transparent 70%);
    border-radius: 50%;
    animation: electricFloat 10s ease-in-out infinite reverse;
    filter: blur(2px);
}

/* Additional electric orbs */
.hero .electric-orb-1 {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.3) 0%, transparent 60%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    filter: blur(3px);
}

.hero .electric-orb-2 {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.4) 0%, transparent 50%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
    filter: blur(2px);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-text {
    max-width: 500px;
    position: relative;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: var(--gradient-electric);
    border-radius: 50%;
    opacity: 0.4;
    animation: electricPulse 3s ease-in-out infinite;
    box-shadow: var(--glow-blue);
    filter: blur(1px);
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-electric);
    color: var(--text-light);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease;
    box-shadow: var(--glow-blue);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: electricShimmer 2.5s infinite;
}

.hero-name {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.3s both, zoomInOut 4s ease-in-out infinite 2s;
    line-height: 1.1;
    background: var(--gradient-electric);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.4));
    transform-origin: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-name:hover {
    animation-play-state: paused;
    transform: scale(1.05);
}

.hero-name::after {
    content: '⚡';
    position: absolute;
    top: -15px;
    right: -40px;
    font-size: 2.5rem;
    animation: electricSparkle 2s ease-in-out infinite;
    color: var(--cyber-blue);
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.8));
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.6s both, zoomInOut 5s ease-in-out infinite 3s;
    font-weight: 400;
    transform-origin: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-description:hover {
    animation-play-state: paused;
    transform: scale(1.02);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 0.9s both;
}

.btn {
    padding: 16px 36px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--sage-green);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--sage-green);
    box-shadow: var(--shadow-sm);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease 1.2s both;
}

.image-container {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: var(--gradient-primary);
    padding: 12px;
    box-shadow: var(--shadow-xl);
    animation: rotate 20s linear infinite;
}

.image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-accent);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

.hero-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--text-light);
    box-shadow: inset 0 0 20px rgba(200, 168, 200, 0.3);
}

.circular-badge {
    position: absolute;
    width: 140px;
    height: 140px;
    background: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--sage-green);
    animation: float 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.badge-1 {
    top: 5%;
    left: -10%;
    animation-delay: 0s;
    background: linear-gradient(135deg, var(--text-light), var(--neutral-100));
}

.badge-2 {
    bottom: -1%;
    right: -10%;
    animation-delay: 2s;
    background: linear-gradient(135deg, var(--text-light), var(--neutral-100));
}

.badge-content {
    text-align: center;
    position: relative;
}

.badge-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.badge-text {
    display: block;
    font-size: 0.8rem;
    color: black;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Decorative Elements */
.hero-text::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.7;
    animation: morph 6s ease-in-out infinite;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 1;
    }
}

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

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: rotate(90deg);
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(180deg);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: rotate(270deg);
    }
}

@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes electricFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
        opacity: 0.8;
    }
    66% {
        transform: translateY(-15px) rotate(240deg);
        opacity: 0.7;
    }
}

@keyframes electricPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
        box-shadow: var(--glow-blue);
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
        box-shadow: var(--glow-cyan);
    }
}

@keyframes electricSparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
        filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.8));
    }
    25% {
        transform: scale(1.3) rotate(90deg);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(0, 191, 255, 1));
    }
    50% {
        transform: scale(0.8) rotate(180deg);
        opacity: 0.9;
        filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.9));
    }
    75% {
        transform: scale(1.1) rotate(270deg);
        opacity: 1;
        filter: drop-shadow(0 0 25px rgba(30, 144, 255, 1));
    }
}

@keyframes electricShimmer {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes electricGlow {
    0% {
        text-shadow: 0 0 20px rgba(0, 100, 200, 0.5), 0 0 40px rgba(0, 150, 255, 0.3);
    }
    100% {
        text-shadow: 0 0 30px rgba(0, 100, 200, 0.8), 0 0 60px rgba(0, 150, 255, 0.5), 0 0 80px rgba(0, 200, 255, 0.3);
    }
}

@keyframes electricSpark {
    0%, 100% {
        opacity: 0;
        transform: translateX(-100%);
    }
    50% {
        opacity: 1;
        transform: translateX(100%);
    }
}

@keyframes electricLine {
    0%, 100% {
        opacity: 0;
        width: 0%;
    }
    50% {
        opacity: 1;
        width: 100%;
    }
}

/* About Section - Redesigned with Slideshow and Text Navigation */
.about {
    padding: 60px 0;
    min-height: 100vh;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(156, 175, 136, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(184, 197, 168, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0rem;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1200px;
    margin: 30px auto;
}

/* Left Side - Image Slideshow */
.about-slideshow {
    position: relative;
    height: 70vh;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 85vh;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
}

.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Right Side - Static Text Content */
.about-text-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(20px);
    border-radius: 0;
    padding: 30px 40px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(156, 175, 136, 0.3);
    height: 85vh;
    max-height: 1000px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.text-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 10px 25px rgba(156, 175, 136, 0.4);
    animation: pulse 3s ease-in-out infinite;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 40px;
}

.section-title-electric {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #001122, #003366, #004488, #0066aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    text-shadow: 0 0 20px rgba(0, 100, 200, 0.5);
    animation: electricGlow 3s ease-in-out infinite alternate;
}

.section-title-electric::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, transparent, rgba(0, 150, 255, 0.3), transparent);
    border-radius: 8px;
    z-index: -1;
    animation: electricSpark 4s linear infinite;
}

.section-title-about {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 0px;
}

.section-title-1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 40px;
}

.text-content-simple {
    flex: 1;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.about-description {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0 0 15px 0;
    color: var(--text-secondary);
    font-weight: 400;
    width: 100%;
    text-align: justify;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-description:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about {
        padding: 80px 0 40px;
        min-height: auto;
        overflow-x: hidden;
    }
    
    /* Hero Mobile Improvements - Full Height */
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
        display: flex;
        align-items: center;
    }
    
    /* Stats Section */
    .stats {
        padding: 60px 0 40px;
    }
    
    /* Contact Section */
    .contact {
        padding: 80px 0 40px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 100%;
        margin: 20px auto;
        height: auto;
    }
    
    .about-slideshow {
        height: 50vh;
        max-height: 400px;
        min-height: 300px;
        order: 1;
    }
    
    .slideshow-container {
        height: 100%;
    }
    
    .about-text-section {
        height: auto;
        min-height: auto;
        max-height: none;
        padding: 30px 25px;
        border-radius: 0;
        overflow: visible;
        order: 2;
        margin-top: 0;
    }
    
    .text-content-simple {
        overflow: visible;
        height: auto;
        min-height: auto;
    }
    
    .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 40px;
    }
    
    .about-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
        text-align: left;
    }
    
    .text-header {
        margin-bottom: 20px;
        gap: 12px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .slide-indicators {
        display: flex;
        bottom: 15px;
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 60px 0 30px;
    }
    
    /* Hero Mobile Improvements */
    .hero {
        padding: 60px 0 30px;
    }
    
    /* All other sections */
    .stats,
    .contact {
        padding: 60px 0 30px;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }
    
    .about-content {
        margin: 15px auto;
    }
    
    .about-slideshow {
        height: 45vh;
        max-height: 350px;
        min-height: 280px;
    }
    
    .about-text-section {
        padding: 25px 20px;
        margin-top: 0;
    }
    
    .section-title {
        font-size: 1.9rem;
        line-height: 1.1;
        margin-bottom: 40px;
    }
    
    .about-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    .text-header {
        margin-bottom: 18px;
        gap: 10px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .slide-indicators {
        bottom: 12px;
        gap: 6px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 360px) {
    .about {
        padding: 50px 0 25px;
    }
    
    /* Hero and all sections */
    .hero,
    .stats,
    .contact {
        padding: 50px 0 25px;
    }
    
    /* Footer */
    .footer {
        padding: 25px 0 10px;
    }
    
    .about-text-section {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 1.7rem;
        margin-bottom: 10px;
    }
    
    .about-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .text-header {
        margin-bottom: 15px;
        gap: 8px;
    }
    
    .card-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--electric-blue), var(--sky-blue));
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.3) 0%, transparent 50%);
    animation: electricFloat 8s ease-in-out infinite;
    z-index: 1;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.4) 0%, transparent 60%);
    animation: electricPulse 6s ease-in-out infinite reverse;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--text-light);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-200);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Portfolio Section - Updated */
.portfolio {
    padding: 60px 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(156, 175, 136, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.portfolio::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(156, 175, 136, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

.portfolio-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-200);
    cursor: pointer;
    /* Remove fixed aspect ratio to show original video dimensions */
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.portfolio-video {
    width: 100%;
    height: auto;
    /* Changed from height: 100% and object-fit: cover to maintain original aspect ratio */
    display: block;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-video {
    transform: scale(1.02);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .video-overlay {
    opacity: 1;
}

.video-overlay i {
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.portfolio-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 3rem;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-2);
}

.arrow-btn:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.arrow-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.page-indicator {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    min-width: 100px;
    text-align: center;
}

@media (max-width: 768px) {
    .portfolio-controls {
        gap: 15px;
        margin-top: 2rem;
    }
    
    .arrow-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .page-indicator {
        font-size: 0.9rem;
        min-width: 80px;
    }
}

/* Updated Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 90vw;
    max-height: 90vh;
    width: 1000px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 2fr;
    height: 580px;
}

.modal-video-section {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#modalVideo {
    width: 100%;
    height: auto;
    max-height: 100%;
    /* Changed to maintain original aspect ratio */
}

.modal-info-section {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Center all content */
    text-align: center;
    /* Center text */
    gap: 30px;
}

.modal-text-content {
    text-align: center;
    /* Ensure text is centered */
}

#modalTitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-align: center;
}

#modalDescription {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 0;
    text-align: center;
}

.modal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* Center the icon links */
}

.modal-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.instagram-link {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.instagram-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(240, 148, 51, 0.4);
}

.shop-link {
    background: var(--gradient-gold);
    color: white;
}

.shop-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.modal-link i {
    font-size: 1.5rem;
}

/* Mobile Responsive Updates */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    
    .modal-content {
        width: 95vw;
        height: 80vh;
    }
    
    .modal-body {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .portfolio {
        padding: 80px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .video-overlay i {
        font-size: 2rem;
    }
    
    .modal-content {
        width: 95vw;
        height: 85vh;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
    }
    
    .modal-info-section {
        padding: 20px;
        gap: 20px;
    }
    
    #modalTitle {
        font-size: 1.5rem;
    }
    
    #modalDescription {
        font-size: 1rem;
    }
    
    .modal-link {
        width: 50px;
        height: 50px;
    }
    
    .modal-link i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .portfolio {
        padding: 80px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .view-more-btn,
    .view-less-btn {
        width: 200px;
    }
    
    .modal-content {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
    }
    
    .modal-info-section {
        padding: 15px;
        gap: 15px;
    }
    
    #modalTitle {
        font-size: 1.3rem;
    }
    
    .modal-links {
        gap: 15px;
    }
    
    .modal-link {
        width: 45px;
        height: 45px;
    }
    
    .modal-link i {
        font-size: 1.2rem;
    }
}

/* Brands Section - Infinite Scrolling */
.brands {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--electric-blue), var(--sky-blue));
    position: relative;
    overflow: hidden;
}

.brands::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.3) 0%, transparent 50%);
    animation: electricFloat 8s ease-in-out infinite;
    z-index: 1;
}

.brands::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.4) 0%, transparent 60%);
    animation: electricPulse 6s ease-in-out infinite reverse;
    z-index: 1;
}

.brands-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.brands-row {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.brands-track {
    display: inline-flex;
    gap: 2rem;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}

.brands-row[data-direction="left"] .brands-track {
    animation-name: scrollLeft;
}

.brands-row[data-direction="right"] .brands-track {
    animation-name: scrollRight;
}

.brands-row:nth-child(2) .brands-track {
    animation-duration: 35s;
}

.brands-row:nth-child(3) .brands-track {
    animation-duration: 28s;
}

.brands-row:nth-child(4) .brands-track {
    animation-duration: 32s;
}

.brand-item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--text-light);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
    min-width: 140px;
    height: 100px;
    flex-shrink: 0;
}

.brand-item:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 10;
    position: relative;
}

.brand-logo {
    max-width: 100px;
    max-height: 60px;
    object-fit: contain;
    filter: opacity(0.8);
    transition: all 0.3s ease;
}

.brand-item:hover .brand-logo {
    filter: opacity(1);
    transform: scale(1.1);
}

/* Pause animation on hover */
.brands-row:hover .brands-track {
    animation-play-state: paused;
}

/* Keyframes for infinite scrolling */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .brands {
        padding: 80px 0;
    }
    
    .brands-container {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .brands-track {
        gap: 1rem;
    }
    
    .brand-item {
        padding: 1rem 1.5rem;
        min-width: 120px;
        height: 80px;
    }
    
    .brand-logo {
        max-width: 80px;
        max-height: 50px;
    }
    
    .brands-row[data-direction="left"] .brands-track,
    .brands-row[data-direction="right"] .brands-track {
        animation-duration: 25s;
    }
    
    .brands-row:nth-child(2) .brands-track {
        animation-duration: 28s;
    }
    
    .brands-row:nth-child(3) .brands-track {
        animation-duration: 22s;
    }
    
    .brands-row:nth-child(4) .brands-track {
        animation-duration: 26s;
    }
}

@media (max-width: 480px) {
    .brands {
        padding: 60px 0;
    }
    
    .brands-container {
        gap: 1rem;
    }
    
    .brand-item {
        padding: 0.75rem 1rem;
        min-width: 100px;
        height: 70px;
    }
    
    .brand-logo {
        max-width: 70px;
        max-height: 40px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(156, 175, 136, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(156, 175, 136, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 2;
}

.testimonials-container {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(156, 175, 136, 0.3);
}

.testimonial-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-200);
    display: none;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.testimonial-item.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.profile-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.profile-info {
    text-align: left;
}

.profile-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.review-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.stars {
    color: yellow;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    margin: 0;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neutral-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicators .indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.testimonial-indicators .indicator:hover {
    background: var(--primary-light);
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonials-slider {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .testimonial-item {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-info {
        text-align: center;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonials-container {
        order: 1;
    }
    
    .testimonial-indicators {
        order: 3;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonial-item {
        padding: 1.5rem 1rem;
    }
    
    .profile-photo {
        width: 50px;
        height: 50px;
    }
}

.testimonial-nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}


.testimonial-nav {
    background: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-light);
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.testimonial-nav:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.testimonial-nav:active {
    transform: scale(0.95);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonials-slider {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonial-nav-container {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .testimonial-nav {
        margin: 0 10px;
    }
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--electric-blue), var(--sky-blue));
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.3) 0%, transparent 50%);
    animation: electricFloat 8s ease-in-out infinite;
    z-index: 1;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.4) 0%, transparent 60%);
    animation: electricPulse 6s ease-in-out infinite reverse;
    z-index: 1;
}

.contact-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-description {
    text-align: center;
    margin-bottom: 0rem;
}

.contact-description p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.interview-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.interview-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-color);
}

.follow-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: var(--text-light);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
    font-weight: 500;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: var(--neutral-900);
    color: var(--neutral-300);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    text-align: left;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-description {
    font-size: 1rem;
    color: var(--neutral-400);
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--neutral-400);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 4px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social-link i {
    font-size: 1.3rem;
    z-index: 2;
    position: relative;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.footer-social-link.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
    border: 1px solid rgba(225, 48, 108, 0.3);
}

.footer-social-link.instagram::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transform: scale(0);
}

.footer-social-link.instagram:hover::before {
    transform: scale(1);
}

.footer-social-link.instagram:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
}

.footer-social-link.tiktok {
    background: rgba(255, 0, 80, 0.1);
    color: #ff0050;
    border: 1px solid rgba(255, 0, 80, 0.3);
}

.footer-social-link.tiktok::before {
    background: linear-gradient(45deg, #ff0050, #000000);
    transform: scale(0);
}

.footer-social-link.tiktok:hover::before {
    transform: scale(1);
}

.footer-social-link.tiktok:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 80, 0.4);
}

.footer-social-link.youtube {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.footer-social-link.youtube::before {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    transform: scale(0);
}

.footer-social-link.youtube:hover::before {
    transform: scale(1);
}

.footer-social-link.youtube:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

.footer-bottom {
    border-top: 1px solid var(--neutral-700);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--neutral-400);
    margin-bottom: 0.5rem;
}

.footer-credit {
    font-size: 0.85rem;
    color: var(--neutral-500);
    margin: 0;
}

.footer-credit-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-credit-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .footer-links a::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .footer-socials {
        gap: 0.75rem;
    }
    
    .footer-social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-social-link i {
        font-size: 1.1rem;
    }
    
    .footer-copyright,
    .footer-credit {
        font-size: 0.8rem;
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        border-top: 1px solid var(--neutral-200);
        height: calc(100vh - 60px); /* Ensure full height coverage */
        overflow-y: auto; /* Allow scrolling if needed */
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .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 Mobile Improvements - Full Height */
    .hero {
        min-height: 100vh;
        padding: 80px 0 2rem 0;
        display: flex;
        align-items: center;
    }

    .hero::before {
        width: 300px;
        height: 300px;
        top: -30%;
        right: -30%;
    }

    .hero::after {
        width: 200px;
        height: 200px;
        bottom: -20%;
        left: -20%;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        width: 100%;
    }

    .hero-text {
        max-width: 100%;
        order: 2;
    }

    .hero-text::before {
        width: 50px;
        height: 50px;
        top: -10px;
        left: 75px;
    }

    .hero-text::after {
        width: 40px;
        height: 40px;
        bottom: 100px;
        right: 45px;
    }

    .hero-image {
        order: 1;
        margin-top: 1rem;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-name {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-name::after {
        font-size: 1.5rem;
        top: -5px;
        right: -20px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
        width: 200px;
        text-align: center;
    }

    .image-container {
        width: 280px;
        height: 280px;
        padding: 8px;
        margin-top: 1rem;
    }

    .image-container::before {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
    }

    .hero-img {
        border: 4px solid var(--text-light);
    }

    .circular-badge {
        width: 100px;
        height: 100px;
        border: 3px solid var(--soft-mauve);
    }

    .badge-1 {
        top: 8%;
        left: -12%;
    }

    .badge-2 {
        bottom: 8%;
        right: -12%;
    }

    .badge-number {
        font-size: 1.1rem;
        margin-top: 5px;
    }

    .badge-text {
        font-size: 0.7rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

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

    .social-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* Hero Extra Small Mobile - Full Height */
    .hero {
        min-height: 100vh;
        padding: 80px 0 1.5rem 0;
        display: flex;
        align-items: center;
    }

    .hero-content {
        gap: 2rem;
        width: 100%;
    }

    .hero-image {
        margin-top: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .hero-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .hero-name {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .hero-name::after {
        font-size: 1.2rem;
        top: -3px;
        right: -15px;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.85rem;
        width: 180px;
    }

    .image-container {
        width: 220px;
        height: 220px;
        padding: 6px;
        margin-top: 1.5rem;
    }

    .hero-img {
        border: 3px solid var(--text-light);
    }

    .circular-badge {
        width: 80px;
        height: 80px;
        border: 2px solid var(--soft-mauve);
    }

    .badge-1 {
        top: 10%;
        left: -2%;
    }

    .badge-2 {
        bottom: -5%;
        right: -3%;
    }

    .badge-number {
        font-size: 0.9rem;
        margin-top: 3px;
    }

    .badge-text {
        font-size: 0.6rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Hidden class for portfolio items */
.hidden {
    display: none !important;
}

/* Fade in animation for portfolio items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}