/* Global Styles */
:root {
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --secondary-color: #2C3E50;
    --text-color: #333;
    --light-text: #fff;
    --light-bg: #f5f5f5;
    --border-radius: 4px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

/* Header Styles */
header {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.logo img {
    height: 30px;
    margin-right: 10px;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    margin-right: 20px;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.language-selector {
    display: flex;
    align-items: center;
    margin-right: 20px;
    cursor: pointer;
}

.globe-icon, .dropdown-arrow {
    margin: 0 5px;
}

.try-now-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: bold;
    transition: background-color 0.3s;
}

.try-now-btn:hover {
    background-color: var(--primary-dark);
}

.demo-link {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(44, 62, 80, 0) 70%);
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero h2 {
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 20px;
    opacity: 0.9;
}

.badge {
    display: inline-block;
    background-color: rgba(76, 175, 80, 0.2);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 600px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    align-items: center;
}

.view-demo-btn {
    display: flex;
    align-items: center;
    margin-left: 20px;
    color: var(--light-text);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.view-demo-btn i {
    margin-right: 8px;
}

.view-demo-btn:hover {
    opacity: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 2;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* Get Started Section */
.get-started {
    padding: 80px 0;
    background-color: var(--light-bg);
    position: relative;
}

.get-started h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.steps {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin-left: 0;
    position: relative;
    z-index: 2;
}

.step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    width: 2px;
    height: calc(100% - 10px);
    background-color: #ddd;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 20px;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.step-content p {
    color: #666;
}

.phone-image {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 400px;
    z-index: 1;
}

.phone-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(44, 62, 80, 0) 70%);
    z-index: 1;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.feature {
    flex: 0 0 calc(33.333% - 30px);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.owl-mascot {
    text-align: center;
    margin: 40px 0;
    position: relative;
    z-index: 2;
}

.owl-mascot img {
    width: 100px;
    height: auto;
}

.cta-button {
    text-align: center;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

/* Footer */
footer {
    background-color: #1a2530;
    color: var(--light-text);
    padding: 60px 0 30px;
}

footer .container {
    display: flex;
    flex-direction: column;
}

footer .logo {
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 0 0 calc(25% - 20px);
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

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

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

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .phone-image {
        right: 5%;
        width: 35%;
    }
    
    .feature {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    header nav ul {
        display: none;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .phone-image {
        position: static;
        width: 80%;
        margin: 0 auto;
        transform: none;
    }
    
    .steps {
        margin: 0 auto;
    }
    
    .feature {
        flex: 0 0 100%;
    }
    
    .footer-column {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    .footer-column {
        flex: 0 0 100%;
    }
}