:root {
    --dark-blue: #1E293B;
    --green: #06D6A0;
    --white: #ffffff;
    --gray: #f5f5f5;
    --text-primary: #1E293B;
    --text-secondary: #666;
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --card-bg: #ffffff;
    --card-border: rgba(0, 0, 0, 0.1);
    --header-bg: rgba(255, 255, 255, 0.95);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --container-padding: clamp(1rem, 5vw, 2rem);
    --section-spacing: clamp(4rem, 8vw, 8rem);
    --heading-size: clamp(2rem, 5vw, 3.5rem);
    --subheading-size: clamp(1rem, 3vw, 1.2rem);
    --background: #ffffff;
    --text: #333333;
    --primary: #06D6A0;
    --secondary: #102028;
    --surface: #f8f9fa;
    --shadow: rgba(0, 0, 0, 0.1);
    --header-height: 70px;
    --primary-rgb: 6, 214, 160;
    --primary-color: #06D6A0;
    --primary-dark: #05b38d;
}

/* Dark mode colors */
[data-theme="dark"] {
    --dark-blue: #E2E8F0;
    --text-primary: #E2E8F0;
    --text-secondary: #CBD5E1;
    --bg-primary: #0F172A;
    --bg-secondary: #1E293B;
    --card-bg: #1E293B;
    --card-border: rgba(255, 255, 255, 0.1);
    --header-bg: rgba(15, 23, 42, 0.95);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --background: #102028;
    --text: #f8f9fa;
    --primary: #06D6A0;
    --secondary: #1a2f3a;
    --surface: #1a2f3a;
    --shadow: rgba(0, 0, 0, 0.3);
}

/* Performance Optimizations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Container Responsiveness */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

/* Responsive Grid System */
.grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Card Layouts */
.card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Touch Targets */
button, 
.nav-link, 
.social-link {
    min-height: 44px;
    min-width: 44px;
}

/* Loading Optimizations */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Animation Performance */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Responsive Breakpoints */
@media screen and (max-width: 1200px) {
    html {
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    section {
        padding: 2rem 0;
    }
}

/* Performance Critical CSS */
.performance-critical {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Optimize Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease forwards;
}

/* Responsive Images */
.responsive-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Optimize Transitions */
.transition-optimized {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Improve Touch Feedback */
.touch-feedback {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Optimize Scrolling */
.smooth-scroll {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Reduce Layout Shifts */
.prevent-shift {
    content-visibility: auto;
    contain-intrinsic-size: 1px 1px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
}

.logo-full {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    transition: color 0.3s ease;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: #4b5563;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: #4b5563;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.mobile-menu-btn:hover .hamburger,
.mobile-menu-btn:hover .hamburger::before,
.mobile-menu-btn:hover .hamburger::after {
    background: #2563eb;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: rgba(37, 99, 235, 0.1);
}

.theme-toggle i {
    font-size: 1.2rem;
    color: #4b5563;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    .logo-full {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        transition: right 0.3s ease;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .header-discount-banner {
        padding: 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    .header-container {
        padding: 0.8rem;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .nav-link {
        font-size: 1rem;
    }

    .discount-text {
        font-size: 0.9rem;
    }

    .timer span {
        font-size: 0.9rem;
    }

    .discount-cta {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .mobile-menu-btn {
        padding: 0.4rem;
    }
}

/* Discount Banner */
.header-discount-banner {
    background: linear-gradient(135deg, #06D6A0 0%, #102028 100%);
    padding: 10px 20px;
    color: #fff;
    text-align: center;
}

.discount-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.timer {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.timer span {
    background: rgba(255, 255, 255, 0.15);
    padding: 3px 6px;
    border-radius: 4px;
    min-width: 30px;
    text-align: center;
}

.discount-cta {
    background: rgba(255, 255, 255, 0.95);
    color: #06D6A0;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Header Container */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

/* Navigation */
.nav-list {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(6, 214, 160, 0.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger {
    width: 24px;
    height: 2px;
    background: #000;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Responsive Breakpoints */
@media screen and (max-width: 1024px) {
    .header-container {
        padding: 1rem;
    }

    .nav-list {
        gap: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .header-container {
        padding: 0.8rem 1rem;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .main-nav {
        position: fixed;
        top: calc(var(--header-height) + 60px); /* Add height of offer banner */
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - var(--header-height) - 60px); /* Adjust height */
        background: #fff;
        transition: all 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 1rem;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 12px 20px;
        font-size: 1.1rem;
        color: #000;
        text-align: left;
        width: 100%;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(6, 214, 160, 0.1);
        color: #06D6A0;
    }

    /* Overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    /* Header discount banner adjustments */
    .header-discount-banner {
        position: relative;
        z-index: 1000;
    }
}

@media screen and (max-width: 480px) {
    .header-container {
        padding: 0.6rem 1rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .nav-link {
        font-size: 1rem;
        padding: 10px 16px;
    }

    .discount-text {
        font-size: 0.9rem;
    }

    .timer span {
        min-width: 24px;
        font-size: 0.9rem;
        padding: 2px 4px;
    }

    .discount-cta {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .mobile-menu-btn {
        right: 15px;
        padding: 8px;
    }
}

/* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    padding: 120px 2rem 2rem;
    background: linear-gradient(135deg, var(--bg-primary) 60%, var(--bg-secondary) 40%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.greeting {
    display: inline-block;
    background: rgba(6, 214, 160, 0.1);
    color: var(--green);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.highlight {
    color: var(--green);
}

.name {
    display: block;
    font-size: 4rem;
    background: linear-gradient(to right, var(--dark-blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.typed-text {
    color: var(--green);
    font-weight: 600;
}

.cursor {
    display: inline-block;
    width: 2px;
    background-color: var(--text-primary);
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.cta-buttons {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-height: 56px;
    text-decoration: none;
}

.btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.primary-btn {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(6, 214, 160, 0.3);
    border: 2px solid var(--green);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(6, 214, 160, 0.4);
}

.primary-btn:hover i {
    transform: translateX(5px);
}

.secondary-btn {
    border: 2px solid var(--green);
    color: var(--green);
    background: transparent;
}

.secondary-btn:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-3px);
}

.secondary-btn:hover i {
    transform: translateX(5px);
}

.hero-image {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.shape-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, var(--green) 30%, var(--dark-blue));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphing 15s ease-in-out infinite;
    opacity: 0.1;
    z-index: 1;
}

@keyframes morphing {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-align: center;
    color: var(--text-primary);
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
    display: block;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    color: var(--text-primary);
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-primary);
    border-radius: 20px;
    display: inline-block;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--green);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

.scroll-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* Additional Responsive Improvements */
.hero-content {
    padding: 0 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile Menu Styles */
@media screen and (max-width: 768px) {
    .header-container {
        padding: 0.8rem 1rem;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .main-nav {
        position: fixed;
        top: calc(var(--header-height) + 60px); /* Add height of offer banner */
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - var(--header-height) - 60px); /* Adjust height */
        background: #fff;
        transition: all 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 1rem;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 12px 20px;
        font-size: 1.1rem;
        color: #000;
        text-align: left;
        width: 100%;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(6, 214, 160, 0.1);
        color: #06D6A0;
    }

    /* Overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    /* Header discount banner adjustments */
    .header-discount-banner {
        position: relative;
        z-index: 1000;
    }
}

/* Additional mobile adjustments */
@media screen and (max-width: 480px) {
    .nav-link {
        font-size: 1rem;
        padding: 10px 16px;
    }

    .mobile-menu-btn {
        right: 15px;
        padding: 8px;
    }
}

/* Ensure header stays on top */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--header-bg);
    z-index: 1001;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
    background: var(--text-primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-text {
    transform: rotate(10deg);
}

.logo-full {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.logo-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 3.5rem;
    letter-spacing: 1px;
}

.main-nav {
    margin-left: auto;
    padding-left: 2rem;
}

.nav-list {
    display: flex;
    gap: 3.5rem;
    list-style: none;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green);
    background: rgba(37, 99, 235, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green);
}

/* Update existing mobile menu styles */
@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
        gap: 1.5rem;
    }

    .logo-subtitle {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--header-bg);
        backdrop-filter: blur(10px);
        padding: 80px 20px;
        transition: 0.3s ease-in-out;
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-image {
        order: -1;
    }

    .profile-img {
        max-width: 300px;
    }

    .shape-bg {
        width: 400px;
        height: 400px;
        right: 50%;
        transform: translate(50%, -50%);
    }

    .experience-badge {
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .logo-full {
        display: none;
    }
    
    .logo-text {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }

    .profile-img {
        max-width: 250px;
    }

    .shape-bg {
        width: 300px;
        height: 300px;
    }
}

/* Services Section Styles */
.services-section {
    padding: 8rem 2rem;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Add decorative dolls */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(6, 214, 160, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 10%, rgba(6, 214, 160, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 10% 50%, rgba(6, 214, 160, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 50%, rgba(6, 214, 160, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 10% 90%, rgba(6, 214, 160, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 90%, rgba(6, 214, 160, 0.1) 0%, transparent 20%);
    pointer-events: none;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 6px var(--shadow-color);
}

/* Add decorative pattern to cards */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(6, 214, 160, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(6, 214, 160, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--green);
    border-radius: 50%;
    top: -30px;
    right: -30px;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.service-card:hover::after {
    transform: scale(1.2);
    opacity: 0.2;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1.5rem;
    border-radius: 50%;
    background: rgba(6, 214, 160, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

/* Add decorative ring around icons */
.service-card i::before {
    position: relative;
    z-index: 2;
}

.service-card i::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--green);
    border-radius: 50%;
    top: 0;
    left: 0;
    opacity: 0.3;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.service-card:hover i {
    transform: rotateY(180deg);
    background: var(--green);
    color: var(--white);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 1rem 0;
    position: relative;
    padding-left: 2.5rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.service-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--green);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.service-list li:hover::before {
    transform: rotate(180deg);
    color: var(--green);
}

.service-list li:hover {
    transform: translateX(10px);
    color: var(--text-primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-section {
        padding: 6rem 1.5rem;
    }

    .services-section h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .service-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 4rem 1rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card i {
        font-size: 2rem;
        padding: 0.8rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-subtitle {
        margin: 0 auto 2rem;
    }
}

/* Theme toggle button styles */
.theme-toggle {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text);
}

.theme-toggle:hover {
    background: var(--surface);
}

.theme-toggle i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

/* Show/Hide Sun/Moon Icons based on theme */
.theme-toggle .fa-sun {
    display: none;
}

.theme-toggle .fa-moon {
    display: block;
}

[data-theme="dark"] .theme-toggle .fa-sun {
    display: block;
}

[data-theme="dark"] .theme-toggle .fa-moon {
    display: none;
}

/* Portfolio Section Styles */
.portfolio-section {
    padding: 8rem 2rem;
    background: var(--bg-primary);
    position: relative;
}

.portfolio-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.portfolio-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.portfolio-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-content {
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.portfolio-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.portfolio-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tech-stack {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tech-stack span {
    background: rgba(6, 214, 160, 0.2);
    color: var(--green);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.portfolio-link {
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    color: var(--green);
    gap: 1rem;
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 6rem 1.5rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .portfolio-section {
        padding: 4rem 1rem;
    }

    .portfolio-content {
        padding: 1.5rem;
    }

    .portfolio-content h3 {
        font-size: 1.3rem;
    }
}

/* About Section Styles */
.about-section {
    padding: 8rem 2rem;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(6, 214, 160, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(6, 214, 160, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--green);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.about-features {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--green);
    padding: 1rem;
    background: rgba(6, 214, 160, 0.1);
    border-radius: 50%;
}

.feature-text h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--text-secondary);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 4px 6px var(--shadow-color);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-color);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-tag {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--green);
    color: var(--white);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(6, 214, 160, 0.3);
}

.tag-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.tag-text {
    font-size: 0.9rem;
}

.tech-badges {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.tech-badge {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px var(--shadow-color);
    transition: transform 0.3s ease;
}

.tech-badge:hover {
    transform: translateY(-5px);
}

.tech-badge i {
    font-size: 1.5rem;
    color: var(--green);
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }

    .about-text {
        text-align: center;
    }

    .feature-item {
        justify-content: center;
    }

    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 4rem 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .tech-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 8rem 2rem;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.info-header {
    margin-bottom: 3rem;
}

.info-header h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.info-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--green);
    padding: 1rem;
    background: rgba(6, 214, 160, 0.1);
    border-radius: 50%;
}

.item-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.item-content a,
.item-content p {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.item-content a:hover {
    color: var(--green);
}

.contact-form {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(6, 214, 160, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(6, 214, 160, 0.4);
}

@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 4rem 1rem;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }

    .info-header h3 {
        font-size: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
}

/* Blog Section Styles */
.blog-section {
    padding: 8rem 2rem;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 10%, rgba(6, 214, 160, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(6, 214, 160, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.blog-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.blog-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: transform 0.3s ease;
    border: 1px solid var(--card-border);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--green);
    color: var(--white);
    padding: 0.8rem;
    border-radius: 15px;
    text-align: center;
    min-width: 70px;
    box-shadow: 0 4px 10px rgba(6, 214, 160, 0.3);
}

.blog-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 2rem;
    position: relative;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--card-border);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.blog-meta i {
    color: var(--green);
}

.read-more {
    color: var(--green);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
}

@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .blog-section {
        padding: 6rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 4rem 1rem;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }
}

/* Footer Styles */
.footer {
    background: var(--dark-blue);
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(6, 214, 160, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(6, 214, 160, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    background: var(--green);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.footer-logo .logo-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--green);
    color: var(--dark-blue);
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--green);
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-services li,
.footer-contact li {
    margin-bottom: 1rem;
}

.footer-links a,
.footer-services li,
.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--green);
}

.footer-contact i {
    color: var(--green);
    font-size: 1.1rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-terms {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-terms a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-terms a:hover {
    color: var(--green);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-terms {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 4rem 1rem 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-info {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-links h3::after,
    .footer-services h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Popup Notification Styles */
.popup-notification {
    position: fixed;
    bottom: -100px;
    right: 30px;
    background: var(--dark-blue);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.popup-notification.show {
    bottom: 30px;
    opacity: 1;
}

.popup-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 15px;
    align-items: center;
}

.popup-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.popup-text {
    color: var(--white);
}

.popup-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.popup-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.popup-actions {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.popup-btn {
    background: var(--white);
    color: var(--dark-blue);
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.popup-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.popup-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

@media (max-width: 480px) {
    .popup-notification {
        width: calc(100% - 30px);
        right: 15px;
    }

    .popup-notification.show {
        bottom: 15px;
    }
}

/* Promo Popup Styles */
.promo-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    background: var(--dark-blue);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.promo-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.promo-content {
    text-align: center;
}

.promo-header {
    margin-bottom: 1.5rem;
}

.discount-badge {
    background: var(--white);
    color: var(--dark-blue);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.discount-amount {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.discount-label {
    font-size: 1rem;
    font-weight: 600;
}

.promo-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.promo-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.promo-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.promo-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

.promo-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.promo-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Overlay */
.promo-popup::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

@media (max-width: 480px) {
    .promo-popup {
        width: calc(100% - 30px);
        padding: 1.5rem;
    }

    .discount-badge {
        width: 70px;
        height: 70px;
    }

    .discount-amount {
        font-size: 1.5rem;
    }

    .promo-header h3 {
        font-size: 1.3rem;
    }
}

/* General Responsive Improvements */
@media (max-width: 1024px) {
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark-blue);
        transition: 0.3s ease;
        padding: 2rem;
    }

    .main-nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Hero Section */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Portfolio Grid */
.portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
}

/* Services Section */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Contact Section */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 1;
    }
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-logo,
    .social-links {
        justify-content: center;
    }

    .footer-links h3::after,
    .footer-services h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Blog Section */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Popup Responsiveness */
@media (max-width: 576px) {
    .popup-notification,
    .promo-popup {
        width: 90%;
        margin: 0 auto;
    }

    .popup-content,
    .promo-content {
        flex-direction: column;
        text-align: center;
    }

    .popup-actions,
    .promo-buttons {
        justify-content: center;
    }
}

/* Form Elements */
input,
textarea,
button {
    font-size: 16px; /* Prevents zoom on mobile */
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

/* Touch Targets */
button,
.nav-link,
.social-link {
    min-height: 44px;
    min-width: 44px;
}

/* Spacing Utilities */
.section-padding {
    padding: clamp(3rem, 8vw, 8rem) 0;
}

.gap-responsive {
    gap: clamp(1rem, 3vw, 2rem);
}

/* Font Size Utilities */
.text-responsive {
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.heading-responsive {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

/* Container Width */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Spacing */
section {
    padding: var(--section-spacing) 0;
}

/* Typography Scaling */
h1 {
    font-size: var(--heading-size);
    line-height: 1.2;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Card Layouts */
.card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Chatbot Styles */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 360px;
    background: var(--dark-blue);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.chatbot-widget.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chatbot-widget.minimized {
    height: 60px;
    overflow: hidden;
}

.chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: move;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.chatbot-title i {
    color: var(--green);
}

.chatbot-actions {
    display: flex;
    gap: 10px;
}

.chatbot-actions button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.chatbot-actions button:hover {
    color: var(--white);
}

.chatbot-body {
    height: 400px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    display: flex;
    gap: 10px;
    max-width: 80%;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.bot-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.message-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 15px;
    color: var(--white);
}

.user-message .message-content {
    background: var(--green);
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.quick-reply-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-reply-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-input {
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 25px;
    color: var(--white);
}

.chat-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.chat-input button {
    background: var(--green);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-input button:hover {
    transform: translateY(-2px);
}

.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--green);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(6, 214, 160, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    display: block;
}

.chatbot-toggle:hover {
    transform: translateY(-5px);
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    .chatbot-toggle {
        bottom: 90px;
        right: 15px;
    }

    .chatbot-widget {
        width: calc(100% - 30px);
        right: 15px;
        bottom: 15px;
    }
}

/* Mobile Responsiveness Improvements */
@media screen and (max-width: 768px) {
    /* Header & Navigation */
    .header-container {
        padding: 1rem;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--background-color);
        transition: 0.3s ease-in-out;
        z-index: 1000;
    }

    .main-nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 2rem;
    }

    .nav-item {
        margin: 1rem 0;
    }

    /* Hero Section */
    .hero-content {
        flex-direction: column-reverse;
        padding: 2rem 1rem;
    }

    .hero-text {
        text-align: center;
        margin-top: 2rem;
    }

    .hero-image {
        width: 80%;
        margin: 0 auto;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* Portfolio Section */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .portfolio-content h3 {
        font-size: 1.2rem;
    }

    /* Blog Section */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    /* Contact Section */
    .contact-container {
        flex-direction: column;
        padding: 1rem;
    }

    .contact-form {
        width: 100%;
        margin-top: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Animations */
    .animate__animated {
        animation-duration: 0.5s !important;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .tech-stack span {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .experience-badge {
        transform: scale(0.8);
    }
}

/* Tablet Optimization */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .services-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        padding: 3rem 2rem;
    }

    .contact-container {
        padding: 2rem;
    }
}

/* Blog Page Styles */
.blog-page {
    padding: 120px 5% 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.blog-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.blog-categories {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--green);
    border-radius: 30px;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: var(--green);
    color: white;
}

.blog-search {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 3rem;
}

.blog-search input {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-secondary);
}

.blog-search button {
    padding: 0 1.5rem;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    overflow: hidden;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .blog-card.featured {
        grid-template-columns: 1fr;
    }
    
    .blog-categories {
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

.portfolio-preview {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.portfolio-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.preview-card {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-5px);
}

.preview-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.preview-content {
    padding: 1.5rem;
}

.preview-content h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tech-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tags span {
    background: var(--green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.preview-link {
    color: var(--green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.preview-link i {
    transition: transform 0.3s ease;
}

.preview-link:hover i {
    transform: translateX(5px);
}

.view-all-projects {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .portfolio-preview-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
}

.portfolio-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.portfolio-links .portfolio-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.portfolio-links .portfolio-link:hover {
    background: var(--green);
    color: white;
    transform: translateY(-2px);
}

.portfolio-links .portfolio-link i {
    font-size: 1rem;
}

@media (max-width: 480px) {
    .portfolio-links {
        flex-direction: column;
    }
    
    .portfolio-links .portfolio-link {
        text-align: center;
        justify-content: center;
    }
}

/* Experience Section Styles */
.experience-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.05) 100%);
    z-index: 0;
}

.experience-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    color: var(--text-primary);
}

.experience-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.experience-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.platform-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.platform-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 1.5rem;
    transition: transform 0.3s ease;
}

.platform-card:hover .platform-logo {
    transform: scale(1.1);
}

.platform-stats {
    display: flex;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 0.5rem 1rem;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.platform-card:hover .stat {
    background: rgba(var(--primary-rgb), 0.2);
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.platform-content {
    position: relative;
}

.platform-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.platform-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.achievement-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.achievement-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.achievement-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.platform-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.platform-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.platform-link:hover i {
    transform: translateX(3px);
}

@media screen and (max-width: 768px) {
    .experience-section {
        padding: 4rem 0;
    }

    .experience-section h2 {
        font-size: 2rem;
    }

    .platform-grid {
        grid-template-columns: 1fr;
    }

    .platform-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .platform-logo {
        margin-bottom: 1rem;
    }

    .platform-stats {
        width: 100%;
        justify-content: space-between;
    }
}

@media screen and (max-width: 480px) {
    .platform-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat {
        width: 100%;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 2rem;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: var(--text-primary);
    position: relative;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.testimonial-card {
    min-width: 100%;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 2rem;
    align-items: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.testimonial-card.active {
    transform: scale(1);
}

.client-image {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--green);
}

.quote-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.client-info p {
    color: var(--green);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rating {
    color: #ffd700;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.prev-btn,
.next-btn {
    background: var(--card-bg);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--green);
    color: white;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-secondary);
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    opacity: 1;
    background: var(--green);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .client-image {
        margin: 0 auto;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 4rem 1rem;
    }

    .slider-controls {
        gap: 1rem;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: #128C7E;
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float .tooltip {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 22px;
        bottom: 10px;
        right: 10px;
    }
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-item span {
    font-size: 24px;
    font-weight: bold;
    color: var(--green);
}

.countdown-item .label {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* Animation for urgency */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.countdown-timer {
    animation: pulse 2s infinite;
}

.header-discount-banner {
    position: relative;
    background: linear-gradient(135deg, #06D6A0 0%, #102028 100%);
    padding: 8px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-weight: 500;
    z-index: 999;
}

/* Timer Container */
.discount-timer {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.timer {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.timer span {
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 4px;
    border-radius: 4px;
    min-width: 28px;
    text-align: center;
}

/* CTA Button */
.discount-cta {
    background: rgba(255, 255, 255, 0.95);
    color: #06D6A0;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.discount-cta:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 214, 160, 0.3);
}

/* Header Container - Update existing styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--background);
    box-shadow: 0 2px 15px var(--shadow);
}

.header-container {
    padding-top: 0; /* Remove top padding */
}

/* Mobile Menu Adjustments */
@media screen and (max-width: 768px) {
    .header-discount-banner {
        flex-direction: column;
        padding: 8px 10px;
        text-align: center;
    }

    .discount-timer {
        flex-direction: column;
        gap: 4px;
    }

    .timer {
        justify-content: center;
        margin: 4px 0;
    }

    .discount-text {
        font-size: 0.9rem;
    }

    /* Adjust mobile menu position */
    .main-nav {
        position: fixed;
        top: 120px; /* Adjust based on banner height */
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 120px);
        background: var(--background);
        transition: all 0.3s ease;
        z-index: 998;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        padding-top: 20px;
    }
}

@media screen and (max-width: 480px) {
    .timer span {
        min-width: 24px;
        font-size: 0.9rem;
    }

    .discount-cta {
        padding: 4px 10px;
        font-size: 0.9rem;
    }
}