/* ===============================
   Global Styles & Reset
=============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    max-width: 100%;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ===============================
   Typography
=============================== */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1rem;
    color: #777;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.pricing-note {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border: 1px solid #667eea;
    border-radius: 12px;
    padding: 20px 25px;
    margin: 20px auto;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.pricing-note:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.pricing-note i {
    color: #667eea;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pricing-note p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    text-align: left;
}

.pricing-note strong {
    color: #333;
    font-weight: 600;
}

.section-header {
    margin-bottom: 4rem;
}

/* ===============================
   Header & Navigation
=============================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    overflow: visible;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===============================
   Dropdown Menu Styles
=============================== */
.dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    width: 90vw;
    max-width: 560px;
    min-width: 300px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    padding: 1rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
    margin-top: 10px;
    overflow: hidden;
}

.dropdown-columns {
    display: flex;
    gap: 0;
}

.dropdown-column {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-column:first-child {
    border-right: 1px solid #e2e8f0;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
}

.dropdown-link:hover {
    background: #f8f9fc;
    color: #667eea;
    padding-left: 2rem;
}

.dropdown-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.dropdown-link:hover i {
    color: #667eea;
}

.dropdown-link::after {
    display: none;
}

/* ===============================
   Hero Section
=============================== */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    top: 50%;
    transform: translateY(-50%);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.prev-btn,
.next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slide-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* ===============================
   MVP Section
=============================== */
.mvp-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.mvp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(102, 126, 234, 0.3) 0%, transparent 50%);
    animation: bgAnimation 10s ease-in-out infinite;
    z-index: 1;
}

.mvp-section .container {
    position: relative;
    z-index: 2;
}

.mvp-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.mvp-section .section-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
}

.mvp-section .section-title::after {
    background: linear-gradient(135deg, #ff6b6b, #ffd700);
    width: 120px;
    height: 6px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.mvp-section .section-subtitle {
    font-size: 1.6rem;
    color: #ffd700;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    position: relative;
}

.mvp-section .section-subtitle::before {
    content: '⏰';
    display: inline-block;
    margin-right: 10px;
    font-size: 1.4rem;
    animation: pulse 2s ease-in-out infinite;
}

.mvp-section .section-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.mvp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.mvp-feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 50px 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.mvp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.mvp-feature-card:hover::before {
    left: 100%;
}

.mvp-feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b6b, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(255, 107, 107, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #ff6b6b, #ffd700);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: iconPulse 2s ease-in-out infinite;
}

.feature-icon i {
    font-size: 2.8rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.feature-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.mvp-cta {
    text-align: center;
    position: relative;
}

.mvp-cta::before {
    content: '🚀 Limited Time Offer!';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    animation: bounce 2s ease-in-out infinite;
}

.mvp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 25px 50px;
    background: linear-gradient(135deg, #ff6b6b, #ffd700);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 15px 35px rgba(255, 107, 107, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.mvp-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.mvp-cta-btn:hover::before {
    left: 100%;
}

.mvp-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(255, 107, 107, 0.6),
        0 0 30px rgba(255, 215, 0, 0.8),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
}

.mvp-cta-btn i {
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.mvp-cta-btn:hover i {
    transform: translateX(8px) scale(1.2);
}

/* Animations */
@keyframes bgAnimation {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* MVP Section Mobile Styles */
@media (max-width: 768px) {
    .mvp-section {
        padding: 100px 0;
    }
    
    .mvp-section .section-title {
        font-size: 2.5rem;
    }
    
    .mvp-section .section-subtitle {
        font-size: 1.3rem;
    }
    
    .mvp-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .mvp-feature-card {
        padding: 40px 25px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }
    
    .feature-icon i {
        font-size: 2.2rem;
    }
    
    .feature-title {
        font-size: 1.4rem;
    }
    
    .mvp-cta::before {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .mvp-cta-btn {
        padding: 20px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .mvp-section {
        padding: 80px 0;
    }
    
    .mvp-section .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .mvp-section .section-subtitle {
        font-size: 1.2rem;
    }
    
    .mvp-feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-description {
        font-size: 1rem;
    }
    
    .mvp-cta-btn {
        padding: 18px 35px;
        font-size: 1rem;
    }
}

/* ===============================
   Pricing Section
=============================== */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.5s ease;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid #667eea;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.best-selling {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-header {
    margin-bottom: 30px;
}

.plan-name {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.plan-subtitle {
    color: #666;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.features i {
    color: #28a745;
    font-size: 1.1rem;
}

.plan-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* ===============================
   Services Section
=============================== */
.services-section {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

.more-services-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: transparent;
    color: #667eea;
    text-decoration: none;
    border: 2px solid #667eea;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.more-services-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* ===============================
   Why Choose Us Section
=============================== */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.why-choose-us .section-title,
.why-choose-us .section-subtitle {
    color: white;
}

.why-choose-us .section-title::after {
    background: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reason-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.reason-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.reason-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.reason-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ===============================
   Clients Section
=============================== */
.clients-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.clients-slider {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 50px;
}

.client-logo {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.client-logo img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo:hover img {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===============================
   Testimonials Section
=============================== */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 40px;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: #333;
    margin-bottom: 5px;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    background: #667eea;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #5a6fd8;
    transform: scale(1.1);
}

.testimonial-indicators {
    display: flex;
    gap: 10px;
}

.testimonial-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicators .indicator.active {
    background: #667eea;
    transform: scale(1.2);
}

/* ===============================
   Footer
=============================== */
.footer {
    position: relative;
    background: #1a1a1a;
    color: white;
    overflow: hidden;
    min-height: 400px;
}

.footer-bg {
    background-image: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
    min-height: 100%;
    width: 100%;
}

.footer-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(51, 51, 51, 0.85) 100%);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 10;
    padding: 80px 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section {
    position: relative;
    z-index: 11;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(1.2);
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-links a:hover {
    color: #667eea;
    padding-left: 5px;
    text-shadow: 1px 1px 2px rgba(102, 126, 234, 0.3);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #e0e0e0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-info i {
    color: #667eea;
    width: 20px;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

.footer-bottom {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #d0d0d0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-bottom-links a:hover {
    color: #667eea;
    text-shadow: 1px 1px 2px rgba(102, 126, 234, 0.3);
}

.logo-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-overlay {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(51, 51, 51, 0.95) 100%);
    backdrop-filter: blur(10px);
    min-height: 100%;
}

.footer-title {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* ===============================
   Scroll to Top Button
=============================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9997;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.scroll-to-top.show {
    display: flex;
}

/* ===============================
   Responsive Design
=============================== */

/* Tablet */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        flex-direction: column;
        background: white;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 100px 0 30px;
        gap: 0;
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .nav-item {
        margin: 20px 0;
        width: 100%;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 15px 20px;
        display: block;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link:hover {
        background: #f8f9fc;
    }

    .hamburger {
        display: flex;
        z-index: 10000;
        position: relative;
    }

    /* Dropdown Menu Mobile Styles */
    .dropdown-menu {
        position: static;
        width: 100%;
        max-width: 100%;
        min-width: auto;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #f8f9fc;
        padding: 0;
        margin-top: 0;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: auto;
    }

    .dropdown-columns {
        flex-direction: column;
    }

    .dropdown-column:first-child {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .dropdown-menu.show {
        max-height: 500px;
        transform: none;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid #e2e8f0;
        font-size: 1rem;
        display: block;
        width: 100%;
    }

    .dropdown-link:last-child {
        border-bottom: none;
    }

    .dropdown-icon {
        margin-left: auto;
    }

    /* Hero Section */
    .slide-title {
        font-size: 2.5rem;
    }

    .slide-subtitle {
        font-size: 1.1rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }

    /* Pricing Cards */
    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Reasons Grid */
    .reasons-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Testimonials */
    .testimonial-author {
        flex-direction: column;
        gap: 10px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Ensure no element causes horizontal overflow */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Hero Section */
    .slide-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    /* Section Spacing */
    .pricing-section,
    .services-section,
    .why-choose-us,
    .clients-section,
    .testimonials-section {
        padding: 60px 0;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Cards */
    .pricing-card,
    .service-card,
    .reason-card {
        padding: 30px 20px;
    }

    /* Price */
    .price {
        font-size: 2.5rem;
    }

    /* Slider Navigation */
    .slider-nav {
        gap: 15px;
    }

    .prev-btn,
    .next-btn {
        width: 40px;
        height: 40px;
    }

    /* Clients Track */
    .clients-track {
        gap: 30px;
    }

    .client-logo {
        width: 150px;
        height: 80px;
    }

    /* Testimonials */
    .testimonial {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 1rem;
    }
    
    /* Footer Mobile Styles */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* ===============================
   Animation Enhancements
=============================== */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.cta-btn:hover {
    animation: pulse 2s infinite;
}

/* Parallax Effect for Hero */
@media (min-width: 769px) {
    .slide {
        background-attachment: fixed;
    }
}

/* Loading Animation */
@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hover Effects */
.service-card:hover .service-icon {
    animation: pulse 1s ease-in-out;
}

/* Smooth Transitions */
* {
    transition: all 0.3s ease;
}

button, a, .card, .icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus States for Accessibility */
button:focus,
a:focus,
input:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles if needed */
}

/* ===============================
   MVP Popup Notification
=============================== */
.mvp-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background: white;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 10000;
    transform: translateY(100px) scale(0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.mvp-popup.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.mvp-popup.slide-out {
    transform: translateX(400px);
    opacity: 0;
}

.popup-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    color: white;
}

.popup-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: avatarPulse 3s ease-in-out infinite;
}

.popup-avatar i {
    font-size: 18px;
    color: white;
}

.popup-status {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: statusBlink 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.status-text {
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.popup-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.1);
}

.popup-content {
    padding: 20px;
}

.popup-greeting {
    margin-bottom: 15px;
}

.popup-greeting p {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.popup-offer {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 100%);
    border: 2px solid #667eea;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.popup-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.offer-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.offer-highlight i {
    color: #ff6b6b;
    font-size: 16px;
    animation: clockTick 2s ease-in-out infinite;
}

.offer-highlight span {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.offer-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-benefit i {
    color: #ffd700;
    font-size: 14px;
}

.offer-benefit span {
    font-size: 13px;
    font-weight: 500;
    color: #555;
}

.popup-question {
    margin-bottom: 20px;
}

.popup-question p {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.popup-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.popup-cta-primary:hover::before {
    left: 100%;
}

.popup-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.popup-cta-primary i {
    transition: transform 0.3s ease;
}

.popup-cta-primary:hover i {
    transform: translateX(3px);
}

.popup-cta-secondary {
    background: transparent;
    border: 2px solid #ddd;
    color: #666;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.popup-cta-secondary:hover {
    border-color: #667eea;
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

/* Animations */
@keyframes avatarPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes clockTick {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes popupBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.mvp-popup.bounce {
    animation: popupBounce 1s ease-in-out;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mvp-popup {
        width: 320px;
        right: 15px;
        bottom: 15px;
    }
    
    .popup-header {
        padding: 12px 15px;
    }
    
    .popup-content {
        padding: 15px;
    }
    
    .popup-greeting p {
        font-size: 15px;
    }
    
    .popup-question p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .mvp-popup {
        width: calc(100vw - 30px);
        max-width: 300px;
    }
    
    .status-text {
        font-size: 12px;
    }
    
    .popup-greeting p {
        font-size: 14px;
    }
    
    .offer-highlight span {
        font-size: 13px;
    }
    
    .offer-benefit span {
        font-size: 12px;
    }
}