/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}
.why-choose .section-header p {
    font-size: 1.125rem;
    color: #dfdfdf;
    max-width: 600px;
    margin: 0 auto;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}
.products h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00a650!important;
    margin-bottom: 15px;
}
.products  .section-header p {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}
.reviews h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00a650!important;
    margin-bottom: 15px;
}
.reviews  .section-header p {
    font-size: 1.125rem;
    color: #dde8ff;
    max-width: 600px;
    margin: 0 auto;
}
/* Navigation */
.navbar {
    position: fixed;
    top: 40px;
    width: 100%;
    padding:7px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 240, 245, 0.9) 25%,
        rgba(240, 248, 255, 0.9) 50%,
        rgba(255, 228, 225, 0.9) 75%,
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid transparent;
    background-clip: padding-box;
    z-index: 1000;
    transition: all 0.3s ease;
    position: relative;
}


.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #2e3192;
}

.nav-logo img {
    height: 80px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00a650;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00a650;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Top Action Bar */
.top-bar {
    background: #2e3192;
    color: white;
    padding: 4px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-content .contact-info {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.navbar{
    padding: 4px 0;
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 999;
}
.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.top-actions {
    display: flex;
    gap: 10px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 1px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-input-top {
    background: transparent;
    border: none;
    color: white;
    padding: 5px 10px;
    font-size: 0.9rem;
    outline: none;
    width: 150px;
}

.search-input-top::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s;
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   HERO SECTION - MODERN PREMIUM SLIDER
   ============================================ */

.hero {
    color: white;
    padding: 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top:115px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 110px);
    min-height: 650px;
    overflow: hidden;
}

/* Individual Slide */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    z-index: 1;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slide Background with Ken Burns Effect */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
}

.slide.active .slide-bg {
    animation: kenBurnsZoom 8s ease-out forwards;
}

@keyframes kenBurnsZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Modern Slide Overlay - Elegant Dark Gradient */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.8) 100%
        ),
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.5) 100%
        );
    z-index: 1;
}

/* Decorative Elements */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(0, 166, 80, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(46, 49, 146, 0.15) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

/* Content Animation on Slide Change */
.slide .hero-content {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.slide.active .hero-content {
    opacity: 1;
    transform: translateX(0);
}

.slide .hero-image {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.slide.active .hero-image {
    opacity: 1;
    transform: translateX(0);
}

/* Hero Badge - Modern Pill Style */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Hero Title Enhancement */
.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #00d68f, #00a650);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
    max-width: 540px;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Buttons - Modern Style */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #00a650 0%, #00d68f 100%);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 166, 80, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00d68f 0%, #00a650 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 166, 80, 0.5);
}

.hero-buttons .btn-primary:hover::before {
    opacity: 1;
}

.hero-buttons .btn-primary span,
.hero-buttons .btn-primary i {
    position: relative;
    z-index: 1;
}

.hero-buttons .btn-primary i {
    transition: transform 0.3s ease;
}

.hero-buttons .btn-primary:hover i {
    transform: translateX(5px);
}

.hero-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px);
}

/* Hero Stats - Glassmorphism Cards */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 0;
}

.stat {
    text-align: center;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.stat:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Stat Icon - Modern Circle */
.stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 166, 80, 0.2), rgba(0, 214, 143, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: #00d68f;
    border: 1px solid rgba(0, 214, 143, 0.3);
    transition: all 0.4s ease;
}

.stat:hover .stat-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 166, 80, 0.3), rgba(0, 214, 143, 0.3));
    box-shadow: 0 0 30px rgba(0, 214, 143, 0.3);
}

.stat h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
    background: none;
    -webkit-text-fill-color: unset;
}

.stat p {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: none;
}

/* Premium Navigation Arrows - Modern Design */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slider-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #00a650, #00d68f);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.slider-arrow:hover {
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 166, 80, 0.4);
}

.slider-arrow:hover::before {
    width: 100%;
    height: 100%;
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.left-arrow {
    left: 40px;
}

.right-arrow {
    right: 40px;
}

/* Hero Slider Dots - Minimal Modern */
.hero-slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 10;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.hero-dot.active {
    width: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00a650, #00d68f);
}

/* Progress Bar - Sleek Design */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
    overflow: hidden;
}

.slider-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #00a650, #00d68f);
    transition: width 0.1s linear;
    box-shadow: 0 0 20px rgba(0, 214, 143, 0.5);
}

/* Hero Container Layout */
.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* Other Page Hero Sections */
.products-hero {
    padding: 160px 0 80px;
}

.about-hero {
    padding: 160px 0 80px;
}

.contact-hero {
    padding: 160px 0 80px;
}

.dental-hero {
    padding: 160px 0 80px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.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.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #00a650, #2e3192);
    color: white;
    border-color: #00a650;
    animation: gradientShift 3s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 166, 80, 0.4);
    animation: gradientShift 1s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background: linear-gradient(45deg, #00a650, #2e3192); }
    50% { background: linear-gradient(45deg, #2e3192, #00a650); }
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #2e3192, #00a650);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(46, 49, 146, 0.4);
    border-color: transparent;
}

.btn-outline {
    background: transparent;
    color: #2e3192;
    border: 2px solid #2e3192;
}

.btn-outline:hover {
    background: linear-gradient(45deg, #00ff7f, #32cd32, #228b22, #006400);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 255, 127, 0.4);
    border-color: transparent;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 70px 0;
    background:
        linear-gradient(135deg,
            rgba(255, 182, 193, 0.3) 0%,
            rgba(173, 216, 230, 0.3) 25%,
            rgba(144, 238, 144, 0.3) 50%,
            rgba(255, 218, 185, 0.3) 75%,
            rgba(221, 160, 221, 0.3) 100%),
        linear-gradient(45deg, #f0f8ff, #f5f5dc, #faf0e6, #fdf5e6);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.1) 35px,
            rgba(255, 255, 255, 0.1) 70px
        );
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(70px) translateY(70px); }
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
    margin-top: 30px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* ============================================
   ABOUT FEATURES - MODERN ATTRACTIVE CARDS
   ============================================ */

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature {
    background: white;
    padding: 32px 28px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 166, 80, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 166, 80, 0.2);
    
}

/* Gradient Border Effect */
.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00a650, #00d68f, #2e3192);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Decorative Background Glow */
.feature::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 166, 80, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature:hover {
    transform: translateY(-12px);
    box-shadow:
        0 20px 40px rgba(0, 166, 80, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 166, 80, 0.2);
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature:hover::after {
    opacity: 1;
}

/* Feature Icon - Modern Gradient Circle */
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00a650 0%, #00d68f 50%, #2e3192 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0, 166, 80, 0.3);
}

/* Icon Ring Animation */
.feature-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(0, 166, 80, 0.3), rgba(46, 49, 146, 0.3)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.5s ease;
}

/* Pulsing Dot Indicator */
.feature-icon::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #00d68f, #00ff88);
    border-radius: 50%;
    border: 2px solid white;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 166, 80, 0.4);
}

.feature:hover .feature-icon::before {
    opacity: 1;
    animation: iconRingPulse 2s ease-in-out infinite;
}

.feature:hover .feature-icon::after {
    opacity: 1;
    transform: scale(1);
}

@keyframes iconRingPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

/* Feature Title */
.feature h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.feature:hover h4 {
    color: #00a650;
}

/* Feature Description */
.feature p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Numbered Feature Variant (Optional) */
.feature[data-number]::before {
    content: attr(data-number);
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(0, 166, 80, 0.1), rgba(46, 49, 146, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #00a650;
}

/* ============================================
   PRODUCTS SECTION - MODERN PREMIUM DESIGN
   ============================================ */

.products {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decorations */
.products-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.products-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.products-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 166, 80, 0.3) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation: blobFloat 15s ease-in-out infinite;
}

.products-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 49, 146, 0.25) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: blobFloat 18s ease-in-out infinite reverse;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Floating Shapes */
.products-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.products-floating-shapes span {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgba(0, 166, 80, 0.1), rgba(46, 49, 146, 0.1));
    border-radius: 50%;
    animation: floatShapes 20s linear infinite;
}

.products-floating-shapes span:nth-child(1) {
    left: 10%; top: 20%;
    width: 30px; height: 30px;
    animation-delay: 0s;
    animation-duration: 25s;
}

.products-floating-shapes span:nth-child(2) {
    left: 80%; top: 40%;
    width: 15px; height: 15px;
    animation-delay: -5s;
    animation-duration: 18s;
}

.products-floating-shapes span:nth-child(3) {
    left: 50%; top: 70%;
    width: 25px; height: 25px;
    animation-delay: -10s;
    animation-duration: 22s;
}

.products-floating-shapes span:nth-child(4) {
    left: 20%; top: 80%;
    width: 18px; height: 18px;
    animation-delay: -3s;
    animation-duration: 20s;
}

.products-floating-shapes span:nth-child(5) {
    left: 70%; top: 15%;
    width: 22px; height: 22px;
    animation-delay: -7s;
    animation-duration: 16s;
}

@keyframes floatShapes {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-100px) rotate(180deg); opacity: 0.6; }
    100% { transform: translateY(0) rotate(360deg); opacity: 0.3; }
}

/* Section Header Enhancements */
.products-header {
    position: relative;
    z-index: 2;
}

.products-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(0, 166, 80, 0.1) 0%, rgba(46, 49, 146, 0.1) 100%);
    border: 1px solid rgba(0, 166, 80, 0.2);
    border-radius: 50px;
    color: #00a650;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: badgePulse 3s ease-in-out infinite;
}

.products-badge i {
    font-size: 0.85rem;
    animation: starSpin 4s linear infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 166, 80, 0.2); }
    50% { box-shadow: 0 0 20px 5px rgba(0, 166, 80, 0.1); }
}

@keyframes starSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gradient-text {
    background: linear-gradient(135deg, #00a650 0%, #00d68f 50%, #2e3192 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.header-decoration span {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00a650, transparent);
    border-radius: 2px;
}

.header-decoration i {
    color: #00a650;
    font-size: 1.2rem;
    animation: toothBounce 2s ease-in-out infinite;
}

@keyframes toothBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

/* Product Card - Modern Premium Design */
.product-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 166, 80, 0.08);
    display: flex;
    flex-direction: column;
}

.product-card:nth-child(1) { animation: cardReveal 0.6s ease-out 0.1s both; }
.product-card:nth-child(2) { animation: cardReveal 0.6s ease-out 0.2s both; }
.product-card:nth-child(3) { animation: cardReveal 0.6s ease-out 0.3s both; }
.product-card:nth-child(4) { animation: cardReveal 0.6s ease-out 0.4s both; }
.product-card:nth-child(5) { animation: cardReveal 0.6s ease-out 0.5s both; }
.product-card:nth-child(6) { animation: cardReveal 0.6s ease-out 0.6s both; }
.product-card:nth-child(7) { animation: cardReveal 0.6s ease-out 0.7s both; }

@keyframes cardReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Card Glow Effect */
.product-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 166, 80, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.product-card:hover .product-card-glow {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 50px rgba(0, 166, 80, 0.12),
        0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 166, 80, 0.2);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #00a650 0%, #00d68f 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 166, 80, 0.3);
}

.product-badge.kids-badge {
    background: linear-gradient(135deg, #f472b6 0%, #fb7185 100%);
    box-shadow: 0 4px 15px rgba(244, 114, 182, 0.3);
}

.product-badge.new-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.product-badge.rx-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* Product Image Wrapper */
.product-image-wrapper {
    position: relative;
    padding: 30px 30px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.product-image {
    width: 100%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image {
    box-shadow: 0 15px 40px rgba(0, 166, 80, 0.15);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Image Overlay with Quick View */
.product-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.product-card:hover .product-image-overlay {
    opacity: 1;
}

.quick-view-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    color: #00a650;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.product-card:hover .quick-view-btn {
    transform: translateY(0);
    opacity: 1;
}

.quick-view-btn:hover {
    background: linear-gradient(135deg, #00a650, #00d68f);
    color: white;
    transform: scale(1.1);
}

/* Product Content */
.product-content {
    padding: 20px 25px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #00a650;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.product-category i {
    font-size: 0.75rem;
}

.product-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.product-card:hover h3 {
    color: #00a650;
}

.product-card h3 sup {
    font-size: 0.6em;
    color: #00a650;
}

.product-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Product Footer */
.product-footer {
    margin-top: auto;
}

.btn-product {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid transparent;
    border-radius: 50px;
    color: #1f2937;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00a650 0%, #00d68f 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50px;
}

.btn-product span,
.btn-product i {
    position: relative;
    z-index: 1;
}

.btn-product i {
    transition: transform 0.3s ease;
}

.btn-product:hover {
    color: white;
    border-color: #00a650;
    box-shadow: 0 8px 25px rgba(0, 166, 80, 0.25);
}

.btn-product:hover::before {
    opacity: 1;
}

.btn-product:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .products {
        padding: 80px 0;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 20px auto 0;
    }

    .product-image {
        height: 200px;
    }

    .products-blob-1,
    .products-blob-2 {
        width: 250px;
        height: 250px;
    }
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: 
        linear-gradient(45deg, 
            rgba(255, 228, 181, 0.6) 0%, 
            rgba(255, 240, 245, 0.6) 25%, 
            rgba(240, 248, 255, 0.6) 50%, 
            rgba(230, 230, 250, 0.6) 75%, 
            rgba(255, 218, 185, 0.6) 100%),
        radial-gradient(circle at 25% 25%, rgba(255, 182, 193, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(173, 216, 230, 0.3) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.1) 49%, rgba(255, 255, 255, 0.1) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.1) 49%, rgba(255, 255, 255, 0.1) 51%, transparent 52%);
    background-size: 60px 60px;
    animation: gridMove 15s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
    gap: 20px;
}

.partner-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: popIn 0.6s ease-out;
    animation-fill-mode: both;
}

.partner-card:nth-child(1) { animation-delay: 0.1s; }
.partner-card:nth-child(2) { animation-delay: 0.2s; }
.partner-card:nth-child(3) { animation-delay: 0.3s; }
.partner-card:nth-child(4) { animation-delay: 0.4s; }
.partner-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff4500, #ff69b4, #9370db, #00bfff);
    transition: left 0.3s ease;
}

.partner-card:hover::before {
    left: 0;
}

.partner-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(147, 112, 219, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-card:hover::after {
    opacity: 1;
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.05) rotateX(10deg);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.3);
}

.partner-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.partner-card p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background:
        linear-gradient(135deg,
            rgba(46, 49, 146, 0.1) 0%,
            rgba(0, 166, 80, 0.1) 25%,
            rgba(0, 0, 0, 0.8) 50%,
            rgba(0, 214, 143, 0.1) 75%,
            rgba(46, 49, 146, 0.1) 100%),
        url('images/bg2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: slidePattern 40s linear infinite;
}

/* Background Decorations */
.reviews-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.reviews-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: blobFloat 25s ease-in-out infinite;
}

.reviews-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 166, 80, 0.3) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    animation-delay: 0s;
}

.reviews-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 49, 146, 0.3) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    animation-delay: 15s;
}

/* Floating Shapes */
.reviews-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.reviews-floating-shapes span {
    position: absolute;
    display: block;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, rgba(0, 166, 80, 0.1), rgba(46, 49, 146, 0.1));
    border-radius: 50%;
    animation: floatShapes 30s linear infinite;
}

.reviews-floating-shapes span:nth-child(1) {
    left: 5%; top: 15%;
    width: 30px; height: 30px;
    animation-delay: 0s;
    animation-duration: 35s;
}

.reviews-floating-shapes span:nth-child(2) {
    left: 90%; top: 25%;
    width: 20px; height: 20px;
    animation-delay: -10s;
    animation-duration: 28s;
}

.reviews-floating-shapes span:nth-child(3) {
    left: 35%; top: 70%;
    width: 35px; height: 35px;
    animation-delay: -20s;
    animation-duration: 32s;
}

.reviews-floating-shapes span:nth-child(4) {
    left: 15%; top: 80%;
    width: 18px; height: 18px;
    animation-delay: -5s;
    animation-duration: 30s;
}

.reviews-floating-shapes span:nth-child(5) {
    left: 80%; top: 5%;
    width: 25px; height: 25px;
    animation-delay: -15s;
    animation-duration: 25s;
}

.reviews-floating-shapes span:nth-child(6) {
    left: 55%; top: 45%;
    width: 15px; height: 15px;
    animation-delay: -25s;
    animation-duration: 27s;
}

.reviews-floating-shapes span:nth-child(7) {
    left: 25%; top: 35%;
    width: 22px; height: 22px;
    animation-delay: -8s;
    animation-duration: 33s;
}

.reviews-floating-shapes span:nth-child(8) {
    left: 70%; top: 85%;
    width: 28px; height: 28px;
    animation-delay: -18s;
    animation-duration: 29s;
}

/* Reviews Badge */
.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(0, 166, 80, 0.2) 0%, rgba(46, 49, 146, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: badgePulse 5s ease-in-out infinite;
}

.reviews-badge i {
    font-size: 0.85rem;
    animation: starTwinkle 3s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #2e3192;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Responsive Design for Slider */
@media screen and (max-width: 768px) {
    .testimonials-slider {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .slider-controls {
        padding: 0 10px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-dots {
        margin-top: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

.reviews::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    animation: shimmer 6s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% { opacity: 0.2; }
    100% { opacity: 0.5; }
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

/* Testimonial Card */
.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    animation: testimonialSlideIn 0.8s ease-out;
    animation-fill-mode: both;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes testimonialSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(15deg) scale(0.9);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-10px) rotateX(-5deg) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00a650, #00d68f, #2e3192, #ff1493);
    background-size: 400% 100%;
    animation: gradientFlow 6s ease-in-out infinite;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 166, 80, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.testimonial-card:hover::after {
    width: 400px;
    height: 400px;
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.03) rotateX(5deg);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(0, 166, 80, 0.15);
    border-color: rgba(0, 166, 80, 0.3);
}

/* Testimonial Header */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-rating i {
    color: #f59e0b;
    transform: scale(1.1);
}

.testimonial-quote {
    color: #00a650;
    font-size: 1.5rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
}

/* Testimonial Content */
.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 3rem;
    color: rgba(0, 166, 80, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 166, 80, 0.1);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00a650 0%, #00d68f 50%, #2e3192 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 166, 80, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 166, 80, 0.4);
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.testimonial-card:hover .author-info h4 {
    color: #00a650;
}

.author-info span {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.review-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: floatIn 1s ease-out;
    animation-fill-mode: both;
}

.review-card:nth-child(1) { animation-delay: 0.2s; }
.review-card:nth-child(2) { animation-delay: 0.4s; }

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(100px) rotateX(45deg) scale(0.8);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-10px) rotateX(-10deg) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff1493, #ff4500, #ffd700, #00ff7f, #00bfff, #ff1493);
    background-size: 200% 100%;
    animation: gradientFlow 3s ease-in-out infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.review-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover::after {
    opacity: 1;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02) rotateY(2deg);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(255, 20, 147, 0.2);
}

.review-content {
    margin-bottom: 25px;
}

.review-content p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    font-style: italic;
}

.review-author h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.review-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background:
        linear-gradient(135deg,
            rgba(46, 49, 146, 0.1) 0%,
            rgba(0, 166, 80, 0.1) 25%,
            rgba(255, 255, 255, 0.9) 50%,
            rgba(0, 214, 143, 0.1) 75%,
            rgba(46, 49, 146, 0.1) 100%),
        radial-gradient(circle at 20% 20%, rgba(0, 166, 80, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(46, 49, 146, 0.15) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: slidePattern 30s linear infinite;
}

@keyframes slidePattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(60px) translateY(60px); }
}

/* Background Decorations */
.contact-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.contact-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: blobFloat 20s ease-in-out infinite;
}

.contact-blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 166, 80, 0.2) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.contact-blob-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 49, 146, 0.2) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 10s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Floating Shapes */
.contact-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.contact-floating-shapes span {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgba(0, 166, 80, 0.1), rgba(46, 49, 146, 0.1));
    border-radius: 50%;
    animation: floatShapes 25s linear infinite;
}

.contact-floating-shapes span:nth-child(1) {
    left: 10%; top: 20%;
    width: 25px; height: 25px;
    animation-delay: 0s;
    animation-duration: 30s;
}

.contact-floating-shapes span:nth-child(2) {
    left: 85%; top: 35%;
    width: 15px; height: 15px;
    animation-delay: -8s;
    animation-duration: 22s;
}

.contact-floating-shapes span:nth-child(3) {
    left: 45%; top: 75%;
    width: 30px; height: 30px;
    animation-delay: -15s;
    animation-duration: 28s;
}

.contact-floating-shapes span:nth-child(4) {
    left: 25%; top: 85%;
    width: 18px; height: 18px;
    animation-delay: -5s;
    animation-duration: 25s;
}

.contact-floating-shapes span:nth-child(5) {
    left: 75%; top: 10%;
    width: 22px; height: 22px;
    animation-delay: -12s;
    animation-duration: 20s;
}

.contact-floating-shapes span:nth-child(6) {
    left: 60%; top: 50%;
    width: 12px; height: 12px;
    animation-delay: -18s;
    animation-duration: 24s;
}

@keyframes floatShapes {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-120px) rotate(180deg); opacity: 0.7; }
    100% { transform: translateY(0) rotate(360deg); opacity: 0.3; }
}

/* Contact Badge */
.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(0, 166, 80, 0.1) 0%, rgba(46, 49, 146, 0.1) 100%);
    border: 1px solid rgba(0, 166, 80, 0.2);
    border-radius: 50px;
    color: #00a650;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: badgePulse 4s ease-in-out infinite;
}

.contact-badge i {
    font-size: 0.85rem;
    animation: envelopeBounce 3s ease-in-out infinite;
}

@keyframes envelopeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 1px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 20px;
    align-items: center;
    animation: contactSlideIn 0.8s ease-out;
    animation-fill-mode: both;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }
.contact-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes contactSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-60px) rotateY(20deg) scale(0.9);
    }
    60% {
        opacity: 0.8;
        transform: translateX(10px) rotateY(-5deg) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg) scale(1);
    }
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00a650, #00d68f, #2e3192, #ff1493);
    background-size: 400% 100%;
    animation: contactGradientFlow 5s ease-in-out infinite;
}

@keyframes contactGradientFlow {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 0% 50%; }
    75% { background-position: 100% 50%; }
}

.contact-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 166, 80, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.contact-item:hover::after {
    width: 300px;
    height: 300px;
}

.contact-item:hover {
    transform: translateY(-15px) scale(1.05) rotateX(10deg);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(0, 166, 80, 0.2);
    border-color: rgba(0, 166, 80, 0.3);
    animation: contactHover 3s ease-in-out infinite;
}

@keyframes contactHover {
    0%, 100% { transform: translateY(-15px) scale(1.05) rotateX(10deg); }
    50% { transform: translateY(-20px) scale(1.08) rotateX(15deg); }
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00a650 0%, #00d68f 50%, #2e3192 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0, 166, 80, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, rgba(0, 166, 80, 0.3), rgba(46, 49, 146, 0.3));
    border-radius: 28px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.contact-item:hover .contact-icon::before {
    opacity: 1;
}

.contact-item:hover .contact-icon::after {
    width: 120px;
    height: 120px;
}

.contact-item:hover .contact-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 32px rgba(0, 166, 80, 0.4);
}

.contact-details {
    flex: 1;
    position: relative;
    z-index: 2;
}

.contact-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    position: relative;
}

.contact-details h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00a650, #00d68f);
    transition: width 0.3s ease;
}

.contact-item:hover .contact-details h4::after {
    width: 100%;
}

.contact-item:hover .contact-details h4 {
    color: #00a650;
}

.contact-details p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-details p {
    color: #4b5563;
}

/* Enhanced pulse effect for contact icons */
.contact-icon {
    animation: iconPulse 4s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(0, 166, 80, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 32px rgba(0, 166, 80, 0.5);
        transform: scale(1.05);
    }
}

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: formSlideIn 1s ease-out;
}

@keyframes formSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00a650, #00d68f, #2e3192);
    background-size: 300% 100%;
    animation: gradientFlow 4s ease-in-out infinite;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00a650;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(0, 166, 80, 0.1);
    transform: translateY(-2px);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: #6b7280;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Form input glow effect */
.form-group input:focus::before,
.form-group textarea:focus::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #00a650, #00d68f);
    border-radius: 14px;
    z-index: -1;
    opacity: 0.2;
    animation: inputGlow 2s ease-in-out infinite;
}

@keyframes inputGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 40px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f9fafb;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section ul li i {
    margin-right: 10px;
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Search Modal */
.search-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.search-modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    position: relative;
}

.close-search {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.close-search:hover {
    color: #333;
}

.search-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: #2e3192;
}

/* Responsive Design */

/* Desktop-specific scroll optimizations */
@media screen and (min-width: 769px) {
    /* Optimize scroll performance for desktop */
    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
    }
    
    /* Enhanced desktop scroll experience */
    .hero {
        background-attachment: scroll;
        will-change: auto;
    }
    
    .products {
        background-attachment: scroll;
        will-change: auto;
    }
    
    .reviews {
        background-attachment: scroll;
        will-change: auto;
    }
    
    /* Optimize animations for desktop */
    .product-card,
    .review-card,
    .why-choose-card,
    .partner-card,
    .feature {
        will-change: transform, opacity;
        transform: translateZ(0);
        backface-visibility: hidden;
        perspective: 1000px;
    }
    
    /* Smooth scroll for navigation */
    .nav-link {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Optimize navbar for desktop */
    .navbar {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    /* Performance improvements for scroll animations */
    .scroll-reveal {
        will-change: transform, opacity;
        transform: translateZ(0);
    }
    
    .scroll-reveal.revealed {
        will-change: auto;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        margin-top: 70px;
    }

    .hero-slider {
        height: auto;
        min-height: calc(100vh - 70px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 60px 20px 100px;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-title {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 10px 20px;
        letter-spacing: 1px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .stat {
        padding: 20px 12px;
        border-radius: 16px;
    }

    .stat-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .stat h3 {
        font-size: 1.6rem;
    }

    .stat p {
        font-size: 0.75rem;
    }

    .slider-arrow {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }

    .left-arrow {
        left: 15px;
    }

    .right-arrow {
        right: 15px;
    }

    .hero-slider-dots {
        bottom: 30px;
        padding: 10px 16px;
        gap: 10px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .hero-dot.active {
        width: 26px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-features {
        flex-direction: row;
        overflow-x: auto;
        gap: 16px;
        padding: 10px 5px 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x mandatory;
    }

    .about-features::-webkit-scrollbar {
        display: none;
    }

    .feature {
        min-width: 260px;
        max-width: 260px;
        flex-shrink: 0;
        padding: 28px 24px;
        scroll-snap-align: center;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .feature h4 {
        font-size: 1.15rem;
    }

    .feature p {
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-header {
        margin-bottom: 15px;
    }

    .testimonial-rating i {
        font-size: 1rem;
    }

    .testimonial-quote {
        font-size: 1.2rem;
    }

    .testimonial-content p {
        font-size: 0.95rem;
        padding-left: 15px;
    }

    .testimonial-author {
        gap: 12px;
        padding-top: 15px;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .reviews-floating-shapes span {
        width: 15px;
        height: 15px;
    }

    .reviews-blob-1,
    .reviews-blob-2 {
        width: 250px;
        height: 250px;
    }

    /* Show mobile slider on small screens */
    .mobile-only {
        display: block !important;
    }

    .testimonials-grid {
        display: none;
    }

    .reviews-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .reviews h2 {
        font-size: 2.2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info {
        gap: 20px;
    }

    .contact-item {
        padding: 25px 20px;
        gap: 20px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .contact-form {
        padding: 35px 25px;
    }

    .contact-floating-shapes span {
        width: 15px;
        height: 15px;
    }

    .contact-blob-1,
    .contact-blob-2 {
        width: 200px;
        height: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .container {
        padding: 0 15px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .why-choose-card {
        padding: 30px 20px;
    }

    .why-choose-stats {
        padding: 40px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .hero-stats .stat h3 {
        font-size: 1.8rem;
    }

    .why-choose-cta {
        padding: 40px 20px;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Why Choose Section */
.why-choose {
    padding: 70px 0;
       background: radial-gradient(circle at 20% 20%, #2e3192 0%, #2e3192 50%), radial-gradient(circle at 80% 80%, #00ff7f 0%, #2e3192 50%), radial-gradient(circle at 40% 60%, #00ff7f 0%, #2e3192 50%), linear-gradient(135deg, #f0f8ff 0%, #2e3192 25%, #00ff7f 50%, #00ff7f 75%, #2e3192 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-conic-gradient(
            from 0deg at 50% 50%,
            transparent 0deg,
            rgba(255, 255, 255, 0.05) 15deg,
            transparent 30deg
        );
    animation: rotate 30s linear infinite;
}
.why-choose .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Background Decorations */
.why-choose-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.why-choose-blob {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46, 49, 146, 0.08) 0%, rgba(46, 49, 146, 0.04) 100%);
    animation: float 6s ease-in-out infinite;
}

.why-choose-blob-1 {
    width: 250px;
    height: 250px;
    top: -125px;
    right: -125px;
    animation-delay: 0s;
}

.why-choose-blob-2 {
    width: 180px;
    height: 180px;
    bottom: -90px;
    left: -90px;
    animation-delay: 3s;
}

.why-choose-floating-shapes span {
    position: absolute;
    width: 15px;
    height: 15px;
    background: rgba(46, 49, 146, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.why-choose-floating-shapes span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.why-choose-floating-shapes span:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
.why-choose-floating-shapes span:nth-child(3) { top: 40%; left: 80%; animation-delay: 4s; }
.why-choose-floating-shapes span:nth-child(4) { bottom: 20%; left: 20%; animation-delay: 1s; }
.why-choose-floating-shapes span:nth-child(5) { bottom: 40%; right: 30%; animation-delay: 3s; }
.why-choose-floating-shapes span:nth-child(6) { top: 80%; left: 50%; animation-delay: 5s; }

/* Badge */
.why-choose-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #2e3192 0%, #1e3a8a 100%);
    color: white;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(46, 49, 146, 0.3);
}

.why-choose .header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.why-choose .header-decoration span {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #2e3192 50%, transparent 100%);
}

.why-choose .header-decoration i {
    color: #2e3192;
    margin: 0 15px;
    font-size: 1.2rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.why-choose-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: slideInRotate 0.8s ease-out;
    animation-fill-mode: both;
}

.why-choose-card:nth-child(1) { animation-delay: 0.1s; }
.why-choose-card:nth-child(2) { animation-delay: 0.2s; }
.why-choose-card:nth-child(3) { animation-delay: 0.3s; }
.why-choose-card:nth-child(4) { animation-delay: 0.4s; }
.why-choose-card:nth-child(5) { animation-delay: 0.5s; }
.why-choose-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInRotate {
    0% {
        opacity: 0;
        transform: translateX(-100px) rotate(-10deg) scale(0.8);
    }
    50% {
        opacity: 0.5;
        transform: translateX(10px) rotate(5deg) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg) scale(1);
    }
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00a650, #2e3192);
    background-size: 300% 100%;
    animation: rainbowFlow 4s ease-in-out infinite;
}

@keyframes rainbowFlow {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 0% 50%; }
    75% { background-position: 100% 50%; }
}

.why-choose-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.why-choose-card:hover::after {
    width: 300px;
    height: 300px;
}

.why-choose-card:hover {
    transform: translateY(-15px) scale(1.05) rotateX(5deg);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.5);
    animation: cardBounce 2s ease-in-out infinite;
}

@keyframes cardBounce {
    0%, 100% { transform: translateY(-15px) scale(1.05) rotateX(5deg); }
    50% { transform: translateY(-25px) scale(1.08) rotateX(8deg); }
}

.why-choose-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #00a650 0%, #2e3192 50%, #00a650 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(0, 166, 80, 0.3);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-choose-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, rgba(0, 166, 80, 0.3), rgba(46, 49, 146, 0.3));
    border-radius: 28px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.why-choose-card:hover .why-choose-icon::before {
    opacity: 1;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 166, 80, 0.4);
}

.why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.why-choose-card > p {
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1rem;
}

.why-choose-features {
    list-style: none;
    text-align: left;
}

.why-choose-features li {
    padding: 8px 0;
    color: #4b5563;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.why-choose-features li i {
    color: #2e3192;
    margin-right: 10px;
    font-size: 0.9rem;
    width: 16px;
}

.why-choose-stats {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00a650 0%, #2e3192 50%, #00a650 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
}

.why-choose-cta {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: #2e3192;
    border-color: #2e3192;
}

.cta-buttons .btn-primary:hover {
    background: #1f1f6a;
    border-color: #1f1f6a;
}

.cta-buttons .btn-outline {
    color: white;
    border-color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: #1f2937;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}