:root {
    --primary-color: #4ECDC4; /* Caribbean sea light blue */
    --primary-dark: #2E9E97; /* Darker shade of primary */
    --primary-light: #7FDFD9; /* Lighter shade of primary */
    --primary-ultra-light: #B8F0ED; /* Ultra light teal */
    --secondary-color: #FF6B6B;
    --accent-color: #FFE66D;
    --text-color: #1a202c; /* Darker, more modern */
    --light-text: #64748b; /* Cooler gray */
    --background-color: #FFFFFF;
    --light-background: #f8fafc; /* Cooler light background */
    --dark-background: #0f172a; /* Dark navy for contrast sections */
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #F9F9F9 0%, #E4F7F6 100%);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.primary {
    background-color: var(--primary-color);
    color: white;
}

.primary:hover {
    background-color: #3dbdb5;
    transform: translateY(-2px);
}

.secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.secondary:hover {
    background-color: rgba(78, 205, 196, 0.1);
    transform: translateY(-2px);
}

.highlight {
    color: var(--primary-color);
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

/* Header & Navigation */
/* Reset all header styles */
header {
    all: initial;
    * {
        all: unset;
    }
}

/* Re-apply only necessary styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0; /* Reduced from 2rem to make the bar thinner */
    background: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    -moz-backdrop-filter: none !important;
    -ms-backdrop-filter: none !important;
    -o-backdrop-filter: none !important;
    margin: 0 !important;
    border: none !important;
    outline: none !important;
}

/* Make all header children visible to pointer events */
header > * {
    pointer-events: auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    pointer-events: auto; /* Re-enable pointer events for navigation elements */
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 40px;
    margin-right: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #333;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    margin: 0 0.3rem;
    background: none;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.nav-links a:hover {
    color: var(--primary-color);
    background: rgba(78, 205, 196, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.2);
}

.nav-links a:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(78, 205, 196, 0.3);
}

.nav-links a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 4px 3px;
    background-color: transparent;
    border: none;
    z-index: 1001;
    position: fixed;
    top: 10px;
    right: 10px;
}

.hamburger .line {
    width: 16px;
    height: 1.25px;
    background-color: #000;
    margin: 2.5px 0;
    border-radius: 1px;
    transition: all 0.1s ease;
    display: block;
}

/* Mobile menu styles */
.nav-links {
    background: none;
    padding: 0;
    box-shadow: none;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding-top: 80px;
    color: white;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    width: 100%;
    flex-wrap: wrap;
}

/* Video Hero Section */
.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
    margin: 0;
    padding: 0;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.video-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    text-align: center;
    padding: 0 0px;
}

.video-hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.video-hero .btn {
    font-size: 1.2rem;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.video-hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Ensure hero content is above video */
.hero {
    position: relative;
    z-index: 1;
    background: transparent; /* Remove any background */
}

/* Make sure content is readable */
.hero-content h1,
.hero-content p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

/* Make buttons stand out */
.hero .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero .btn.primary {
    background: var(--primary-color);
    color: white;
}

.hero .btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
}

.hero-content {
    flex: 0 0 40%;
    padding: 2rem 0 2rem 5%;
    position: relative;
    z-index: 3; /* Higher z-index than video and icons */
}

.hero-content h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.hero .primary {
    background-color: white;
    color: var(--primary-color);
}

.hero .primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.hero .secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.hero .secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-image {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3; /* Higher z-index than video and icons */
    padding-right: 5%;
}

.phone-container {
    position: relative;
    transform-style: preserve-3d;
    animation: phoneFloat 6s infinite ease-in-out;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}

.hero-image img:hover {
    transform: scale(1.05) rotateY(10deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-15px) rotateY(5deg);
    }
}

/* Floating elements for hero section */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 2; /* Above video, below content */
}

.hero::before {
    top: -100px;
    right: -100px;
    animation: float 15s infinite alternate ease-in-out;
}

.hero::after {
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    animation: float 12s infinite alternate-reverse ease-in-out;
}

.hero-bg-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.6;
}

.shape-1 {
    top: 10%;
    right: 45%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    animation: pulse 8s infinite alternate;
}

.shape-2 {
    bottom: 5%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    animation: pulse 10s infinite alternate-reverse;
}

.shape-3 {
    top: 40%;
    right: 25%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(78,205,196,0.3) 0%, rgba(78,205,196,0) 70%);
    border-radius: 50%;
    animation: pulse 12s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

.floating-icon {
    position: absolute;
    z-index: 1;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.floating-icon:hover {
    transform: scale(1.2) !important;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

/* Fix for icons to ensure they're centered */
.floating-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Floating icons around the right image */
.floating-icon {
    position: absolute;
    z-index: 3; /* Above the image */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Varied sizes for visual interest */
/* Icons container in the center of the hero section */
.icons-container {
    flex: 0 0 20%;
    position: relative;
    height: 100%;
    min-height: 400px;
    z-index: 1;
    display: block;
    width: 100%;
}

/* Floating icons within the container */
.floating-icon {
    position: absolute;
    z-index: 1; /* Lower z-index to ensure icons are in the background */
    animation: float 6s infinite alternate ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15); /* More transparent background */
    backdrop-filter: blur(3px); /* Reduced blur effect */
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7); /* More transparent icon color */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05); /* Subtler shadow */
    transition: all 0.3s ease;
    pointer-events: none; /* Ensures icons don't interfere with clicking */
}

.floating-icon:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

/* Randomized positions for icons in the center of the hero section */
.icons-container .floating-icon:nth-child(1) {
    top: 15%;
    left: 20%;
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
    animation-delay: 0s;
}

.icons-container .floating-icon:nth-child(2) {
    top: 35%;
    left: 65%;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    animation-delay: 1s;
}

.icons-container .floating-icon:nth-child(3) {
    top: 65%;
    left: 30%;
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
    animation-delay: 2s;
}

.icons-container .floating-icon:nth-child(4) {
    top: 50%;
    left: 70%;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    animation-delay: 3s;
}

.icons-container .floating-icon:nth-child(5) {
    top: 25%;
    left: 45%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    animation-delay: 1.5s;
}

.icons-container .floating-icon:nth-child(6) {
    top: 75%;
    left: 55%;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    animation-delay: 2.5s;
}

/* Media query for tablet and smaller screens to adjust icon positions */
@media (max-width: 1200px) and (min-width: 993px) {
    .icons-container .floating-icon:nth-child(1) {
        top: 20%;
        left: 15%;
    }
    
    .icons-container .floating-icon:nth-child(2) {
        top: 40%;
        left: 75%;
    }
    
    .icons-container .floating-icon:nth-child(3) {
        top: 70%;
        left: 25%;
    }
    
    .icons-container .floating-icon:nth-child(4) {
        top: 55%;
        left: 60%;
    }
    
    .icons-container .floating-icon:nth-child(5) {
        top: 30%;
        left: 40%;
    }
    
    .icons-container .floating-icon:nth-child(6) {
        top: 80%;
        left: 50%;
    }
}

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

.hero-content h1 {
    animation: fadeInUp 1s ease-out;
    position: relative;
}

.hero-content p {
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.cta-buttons {
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: white;
    animation: lineGrow 1.5s ease-out 1s forwards;
}

@keyframes lineGrow {
    to {
        width: 100%;
    }
}

/* Features Section */
.features {
    background: linear-gradient(135deg, var(--light-background) 0%, var(--primary-ultra-light) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.features::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.features h2 {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.features-description {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--light-text);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(78, 205, 196, 0.3);
    border-color: var(--primary-color);
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.4);
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
    z-index: 1;
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, #334155 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
}

.how-it-works h2 {
    color: white;
    margin-bottom: 4rem;
}

.steps {
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.12);
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 15px;
    margin-right: 2.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(78, 205, 196, 0.3);
}

.step-content {
    flex: 1;
    padding-right: 2rem;
}

.step-content h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
}

.step-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 2rem;
}

.step-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.step.reverse {
    flex-direction: row-reverse;
}

.step.reverse .step-number {
    margin-right: 0;
    margin-left: 2.5rem;
}

.step.reverse .step-content {
    padding-right: 0;
    padding-left: 2rem;
}

.step.reverse .step-image {
    margin-left: 0;
    margin-right: 2rem;
}

/* Languages Section */
.languages {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.languages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.languages h2 {
    color: white;
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.language-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.language-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.language-item:hover::before {
    opacity: 1;
}

.language-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.language-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.language-item:hover .language-flag {
    transform: scale(1.2);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.language-name {
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Testimonials Section */
.testimonials {
    text-align: center;
    padding: 6rem 1rem;
    background: linear-gradient(135deg, var(--light-background) 0%, rgba(184, 240, 237, 0.3) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><path d="M30,30m-20,0a20,20 0 1,1 40,0a20,20 0 1,1 -40,0" fill="none" stroke="rgba(78,205,196,0.1)" stroke-width="1"/></svg>') repeat;
    background-size: 60px 60px;
}

.testimonials h2 {
    position: relative;
    z-index: 2;
    color: var(--text-color);
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    color: var(--primary-color);
    font-family: serif;
    opacity: 0.3;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 16px rgba(78, 205, 196, 0.3);
}

.testimonial-author div {
    text-align: left;
}

.testimonial-author h4 {
    margin-bottom: 0.3rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--light-text);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.prev-btn, .next-btn {
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-text);
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    color: var(--primary-color);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Download Section */
.download {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-background) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
}

.download h2, .download p {
    color: white;
    position: relative;
    z-index: 2;
}

.download h2 {
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.download p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.app-button {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.app-button::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.5s;
}

.app-button:hover::before {
    left: 100%;
}

.app-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
}

.app-button i {
    font-size: 2rem;
    margin-right: 0.8rem;
}

.app-button div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-button span:first-child {
    font-size: 0.7rem;
}

.store-name {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-background) 0%, #1e293b 100%);
    color: white;
    padding: 5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    height: 45px;
    margin-right: 0.5rem;
    filter: drop-shadow(0 4px 8px rgba(78, 205, 196, 0.3));
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-light);
    font-size: 1.2rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-column ul li:hover {
    transform: translateX(5px);
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
}

.footer-column ul li a:hover {
    color: var(--primary-light);
}

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

.footer-column ul li a:hover::before {
    width: 10px;
}

.footer-social h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-light);
    font-size: 1.2rem;
    position: relative;
}

.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(78, 205, 196, 0.1);
    border: 2px solid rgba(78, 205, 196, 0.3);
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.2), transparent);
    transition: left 0.5s;
}

.social-icons a:hover::before {
    left: 100%;
}

.social-icons a:hover {
    background: var(--primary-color);
    border-color: var(--primary-light);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(78, 205, 196, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(78, 205, 196, 0.2);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        gap: 0;
    }
    
    .icons-container {
        position: absolute;
        width: 100%;
        height: 100%;
        min-height: 300px;
        top: 0;
        left: 0;
        pointer-events: none;
    }
    
    /* Adjust floating icons for mobile to be more distributed */
    .icons-container .floating-icon:nth-child(1) {
        top: 20%;
        left: 15%;
    }
    
    .icons-container .floating-icon:nth-child(2) {
        top: 15%;
        left: 75%;
    }
    
    .icons-container .floating-icon:nth-child(3) {
        top: 40%;
        left: 25%;
    }
    
    .icons-container .floating-icon:nth-child(4) {
        top: 35%;
        left: 80%;
    }
    
    .icons-container .floating-icon:nth-child(5) {
        top: 60%;
        left: 20%;
    }
    
    .icons-container .floating-icon:nth-child(6) {
        top: 55%;
        left: 70%;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        flex: 0 0 100%;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 0;
        flex: 0 0 100%;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step.reverse {
        flex-direction: column;
    }
    
    .step-number {
        margin: 0 auto 1.5rem;
    }
    
    .step-image {
        margin: 2rem 0 0;
    }
    
    .step.reverse .step-number {
        margin: 0 auto 1.5rem;
    }
    
    .step.reverse .step-image {
        margin: 2rem 0 0;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .features-description {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    header {
        height: auto;
        background: none !important;
        box-shadow: none !important;
        width: 100%;
    }
    
    /* Responsive video handling for mobile */
    .video-container {
        width: 100%;
        height: 100vh;
        position: relative;
        overflow: hidden;
    }
    
    .video-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        position: absolute;
        left: 0;
        top: 0;
    }
    
    .logo img, .larger-logo {
        height: 35px !important;
    }
    
    nav {
        padding: 0.8rem 1.5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        height: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        transition: var(--transition);
        z-index: 999;
        opacity: 0;
    }
    
    .nav-links.active {
        height: calc(100vh - 70px);
        opacity: 1;
        padding: 2rem 0;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 20px;
        right: 20px;
        background: white;
        padding: 12px;
        border-radius: 6px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .hamburger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}
