:root {
    /* White Theme Color Palette */
    --bg-dark: #ffffff; 
    --bg-card: rgba(243, 244, 246, 0.6);
    --accent-green: #39b54a; /* Brand Green from Logo */
    --accent-dark-green: #006837; /* Dark Brand Green */
    --accent-green-glow: rgba(57, 181, 74, 0.1);
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.7);
    
    /* Shadows & Glows */
    --neon-shadow: 0 10px 30px rgba(57, 181, 74, 0.1);
    --glass-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    
    /* Animations */
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-Index */
    --z-index-whatsapp: 1000;
    
    /* Layout */
    --section-padding: 80px 0;
    --border-radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Page Background Mesh & Pattern */
.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    background-color: var(--bg-dark);
    background-image: 
        /* Subtle Mesh Glows */
        radial-gradient(at 0% 0%, rgba(57, 181, 74, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(0, 104, 55, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(57, 181, 74, 0.05) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(0, 104, 55, 0.05) 0px, transparent 50%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
}

/* Noise Texture Overlay */
.bg-mesh::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.main-bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15; /* Subtler background image */
    transition: opacity 0.6s ease;
}

/* Video Background */
.video-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    overflow: hidden;
    pointer-events: none; /* Ensure video doesn't block clicks */
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25; /* Slightly increased for better visibility */
    filter: brightness(0.6) contrast(1.2); /* Enhance tech look */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 100%);
    opacity: 0.6;
}

/* Remove the white overlay from ::before */
.main-bg-overlay::before {
    display: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* Glassmorphism Utility */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(57, 181, 74, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* Clean White for Splash */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-logo {
    width: 180px;
    height: auto;
    animation: pulse-logo 2s infinite ease-in-out;
}

@keyframes pulse-logo {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

body.splash-active {
    overflow: hidden;
}

/* Buttons */
.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-dark-green) 0%, var(--accent-green) 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(57, 181, 74, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(57, 181, 74, 0.3);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--accent-green);
    color: var(--accent-green);
}

/* Custom Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(57, 181, 74, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

/* Utilities */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-dark-green) 0%, var(--accent-green) 50%, var(--accent-dark-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: rgba(57, 181, 74, 0.1);
    border: 1px solid rgba(57, 181, 74, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent-green);
    margin-bottom: 30px;
}

.badge-new span {
    background: var(--accent-green);
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
}

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

.section-title span {
    color: var(--accent-green);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title h2 {
    font-size: 3.5rem; /* Larger */
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -1px;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 50px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 25px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 60px;
}

.stat-item {
    text-align: left;
    color: #000;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    display: block;
}

.stat-item p {
    font-size: 0.9rem;
    color: #000;
    margin: 0;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.dashboard-mockup {
    width: 100%;
    aspect-ratio: 16/10;
    padding: 25px;
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-15deg) rotateX(8deg);
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.search-bar {
    flex: 1;
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.chart-container {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 180px;
    margin-bottom: 25px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--accent-green), transparent);
    border-radius: 6px 6px 0 0;
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.dashboard-mockup:hover .bar {
    opacity: 0.8;
}

.growth-badge {
    position: absolute;
    bottom: 50px;
    right: 50px;
    background: var(--accent-green);
    color: #030712;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(57, 181, 74, 0.4);
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.icon-box {
    position: absolute;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-green);
    z-index: 3;
    animation: float-icon 4s infinite ease-in-out;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.icon-box:nth-child(1) { top: -30px; right: 10px; animation-delay: 0s; }
.icon-box:nth-child(2) { bottom: 10px; left: -40px; animation-delay: 1s; }
.icon-box:nth-child(3) { top: 50%; right: -50px; animation-delay: 2s; }

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

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(57, 181, 74, 0.05) 0%, transparent 70%);
    z-index: -1;
    filter: blur(120px);
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        margin: 0 auto 40px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 40px;
    }
    
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Background Mesh & Page Specific Overlays */
.bg-about { background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80'); }

/* Services Background */
.bg-services { background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1920&q=80'); }

/* Portfolio Background */
.bg-portfolio { background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=1920&q=80'); }

/* Pricing Background */
.bg-pricing { background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1920&q=80'); }

/* Contact Background */
.bg-contact { background-image: url('https://images.unsplash.com/photo-1523966211575-eb4a01e7dd51?auto=format&fit=crop&w=1920&q=80'); }

.bg-light-beams {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.beam {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(57, 181, 74, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite alternate;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

/* Navbar */
.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.navbar-container.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar-container nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
}

.logo span {
    color: var(--accent-green);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-green);
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Reels Section */
.reels-section {
    padding: var(--section-padding);
    position: relative;
}

.reels-carousel-container {
    position: relative;
    padding: 0 50px;
}

.reels-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.reels-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.reel-card {
    flex: 0 0 280px;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
    border: 1px solid var(--glass-border);
    background: #fff;
}

.reel-preview {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: 0;
    overflow: hidden;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.reel-card:hover .reel-video {
    opacity: 1;
    transform: scale(1.05);
}

/* Logo Overlay in Reel */
.reel-brand-overlay {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.8);
    padding: 4px 10px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.reel-brand-overlay img {
    height: 14px;
    width: auto;
}

.reel-brand-overlay span {
    font-size: 10px;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 40%);
    transition: var(--transition-smooth);
}

.play-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition-smooth);
    margin: auto;
}

.play-icon i {
    margin-left: 3px;
}

.reel-card:hover .play-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.reel-info {
    text-align: center;
    width: 100%;
    margin-top: auto;
    padding-bottom: 10px;
}

.reel-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--accent-green);
    letter-spacing: 1.5px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    background: rgba(0, 0, 0, 0.6);
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
}

.reel-info h3 {
    font-size: 1rem;
    margin: 5px 0 0;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Carousel Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    transform: translateY(-50%);
}

.nav-arrow {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.nav-arrow:hover {
    background: var(--accent-green);
    color: #000;
    border-color: var(--accent-green);
}

.nav-arrow.prev { margin-left: -22px; }
.nav-arrow.next { margin-right: -22px; }

@media (max-width: 768px) {
    .reels-carousel-container {
        padding: 0 20px;
    }
    .reel-card {
        flex: 0 0 220px;
    }
    .nav-arrow {
        display: none;
    }
}
.contact-section {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-details {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    font-size: 1.2rem;
    box-shadow: var(--glass-shadow);
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.contact-form-container {
    padding: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 10px;
    color: var(--text-primary);
    outline: none;
    font-family: inherit;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--accent-green);
}

.contact-form-container .btn {
    width: 100%;
}

#form-status {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}
.blog-section {
    padding: var(--section-padding);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    overflow: hidden;
}

.blog-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.blog-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--accent-green);
    color: #030712;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--glass-shadow);
}

.blog-content {
    padding: 25px;
}

.blog-tag {
    color: var(--accent-green);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.blog-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-link i {
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-link i {
    transform: translateX(5px);
    color: var(--accent-green);
}

.blog-cta {
    text-align: center;
}
/* Contact Section */
.testimonials-section {
    padding: var(--section-padding);
    background: radial-gradient(circle at center, rgba(57, 181, 74, 0.05) 0%, transparent 70%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content {
    margin-bottom: 30px;
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--accent-green);
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-green);
}

.author-info h4 {
    font-size: 1rem;
    margin: 0;
    color: #fff;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.portfolio-section {
    padding: var(--section-padding);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: var(--glass-shadow);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--accent-green);
    color: #000;
    border-color: var(--accent-green);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-card {
    overflow: hidden;
    padding: 15px;
}

.portfolio-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 104, 55, 0.9) 0%, rgba(57, 181, 74, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 20px;
}

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

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

.portfolio-metrics {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.metric {
    text-align: center;
    color: #000;
}

.metric span {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.metric p {
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
    background: #000;
    color: #fff;
}

.portfolio-info {
    padding: 20px 10px 10px;
}

.portfolio-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.portfolio-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
.about-section {
    padding: var(--section-padding);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    padding: 15px;
    overflow: hidden;
}

.image-wrapper img {
    border-radius: 15px;
    width: 100%;
    filter: grayscale(20%);
    transition: var(--transition-smooth);
}

.image-wrapper:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    padding: 25px;
    text-align: center;
}

.experience-badge span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-green);
    display: block;
}

.experience-badge p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.about-features {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-green-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.9rem;
    margin: 0;
}

.skills-bars {
    margin-bottom: 45px;
}

.skill-item {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.skill-bar {
    height: 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green-glow);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}
.services-section {
    padding: var(--section-padding);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
    text-align: left;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-green-glow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-green);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--accent-green);
    color: #000;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    font-size: 0.7rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}
.footer-container {
    padding: 80px 0 30px;
    background: #f9fafb;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 20px 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-primary);
}

.social-links a:hover {
    background: var(--accent-green);
    color: #030712;
    border-color: var(--accent-green);
}

.footer-links h4, .footer-newsletter h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-green);
    padding-left: 5px;
}

.footer-newsletter p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

#newsletter-form {
    display: flex;
    gap: 10px;
}

#newsletter-form input {
    flex: 1;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 50px;
    color: var(--text-primary);
    outline: none;
}

#newsletter-form input:focus {
    border-color: var(--accent-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Video Modal Player */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 11000;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 450px; /* Reel vertical aspect ratio */
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(57, 181, 74, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-modal.active .modal-container {
    transform: scale(1);
}

.modal-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 11001;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-close:hover {
    background: #ef4444;
    border-color: #ef4444;
    transform: rotate(90deg);
}

.modal-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 11001;
}

.modal-play-btn {
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

.video-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 20px;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--accent-green);
    width: 0%;
    border-radius: 2px;
}

/* Skeleton Loading Animation */
.skeleton {
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.03) 25%, 
        rgba(0, 0, 0, 0.08) 50%, 
        rgba(0, 0, 0, 0.03) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 10px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    height: 300px;
    width: 100%;
    border: 1px solid var(--glass-border);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skeleton-icon { width: 50px; height: 50px; border-radius: 50%; }
.skeleton-title { width: 60%; height: 24px; }
.skeleton-text { width: 100%; height: 60px; }

.skeleton-portfolio { height: 400px; border-radius: 20px; }

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

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

    .hero-content p {
        margin: 0 auto 40px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .dashboard-mockup {
        max-width: 500px;
        margin: 0 auto;
    }

    .floating-icons {
        display: none; /* Hide floating icons on mobile to reduce clutter */
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content {
        order: 1;
        text-align: center;
    }

    .about-content .section-title {
        text-align: center !important;
    }

    .about-features {
        justify-content: center;
        text-align: left;
    }

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1002;
    }

    .mobile-menu-btn.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: var(--accent-green);
    }

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

    .mobile-menu-btn.open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: var(--accent-green);
    }

    .nav-actions {
        display: none;
    }

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

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 25px;
    }

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

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

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand, .footer-newsletter {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links ul {
        align-items: center;
    }

    .experience-badge {
        right: 10px;
        bottom: 10px;
        padding: 15px;
    }

    .experience-badge span {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-between;
    }

    .stat-item {
        flex: 1 1 45%;
        text-align: center;
    }

    #newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    #newsletter-form input {
        width: 100%;
        text-align: center;
    }

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

    .section-title {
        margin-bottom: 40px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2), 0 0 20px rgba(37, 211, 102, 0.4);
    z-index: var(--z-index-whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #128c7e;
    color: #fff;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}
