/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    color: #3a97e6;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: -5px;
}

.logo-subtitle {
    color: #666;
    font-size: 0.8rem;
    font-weight: 400;
}

.header-logo {
    height: 75px;
    max-width: 300px;
    object-fit: contain;
}

.nav-logo a {
    text-decoration: none;
}

.footer-logo {
    height: 60px;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #3a97e6;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #3a97e6;
}

.language-switcher {
    margin-left: 1rem;
    position: relative;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-current {
    background: linear-gradient(135deg, #4fabe4 0%, #47a63b 100%);
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 80px;
    justify-content: center;
}

.language-current:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 171, 228, 0.3);
}

.language-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: white;
    width: 80px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border: 1px solid rgba(79, 171, 228, 0.2);
    margin-top: 2px;
}

.language-dropdown:hover .language-dropdown-content {
    display: block;
}

.language-option {
    color: #333 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.language-option:hover {
    background: linear-gradient(135deg, #4fabe4 0%, #47a63b 100%);
    color: white !important;
}

.language-option:first-child {
    border-radius: 8px 8px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 8px 8px;
}

.lang-link {
    background: linear-gradient(135deg, #4fabe4 0%, #47a63b 100%);
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 171, 228, 0.3);
}

.lang-link i {
    margin-right: 5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4fabe4 0%, #47a63b 100%);
    color: white;
    padding: 150px 0 100px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        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.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.06) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #fff;
    color: #3a97e6;
}

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

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #3a97e6;
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    background: 
        radial-gradient(circle at center, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 70%, transparent 100%),
        conic-gradient(from 0deg, rgba(255,255,255,0.1), transparent 50%, rgba(255,255,255,0.1) 100%);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    position: relative;
    animation: rotate 20s linear infinite;
    box-shadow: 
        0 0 50px rgba(255,255,255,0.2),
        inset 0 0 50px rgba(255,255,255,0.1);
}

.hero-graphic::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.hero-graphic::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 50px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite reverse;
}

.hero-graphic i {
    font-size: 8rem;
    color: rgba(255,255,255,0.9);
    z-index: 1;
    position: relative;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255,255,255,0.5); }
    to { text-shadow: 0 0 30px rgba(255,255,255,0.8), 0 0 40px rgba(255,255,255,0.3); }
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3a97e6;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #4fabe4 0%, #47a63b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(79, 171, 228, 0.3);
    transition: all 0.3s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #4fabe4 0%, #47a63b 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::before {
    opacity: 0.2;
}

.feature-card:hover .feature-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(79, 171, 228, 0.4);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #3a97e6;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* About Preview Section */
.about-preview {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3a97e6;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #4fabe4 0%, #47a63b 100%);
    border-radius: 15px;
    color: white;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(79, 171, 228, 0.3);
}

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

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(79, 171, 228, 0.4);
}

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

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: number-glow 2s ease-in-out infinite alternate;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

@keyframes number-glow {
    from { 
        text-shadow: 0 2px 10px rgba(0,0,0,0.2), 0 0 20px rgba(255,255,255,0.3);
    }
    to { 
        text-shadow: 0 2px 10px rgba(0,0,0,0.2), 0 0 30px rgba(255,255,255,0.5);
    }
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #4fabe4 0%, #47a63b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.08) 0%, transparent 50%);
    animation: cta-glow 6s ease-in-out infinite;
}

@keyframes cta-glow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    animation: text-shine 3s ease-in-out infinite;
}

@keyframes text-shine {
    0%, 100% { text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
    50% { text-shadow: 0 2px 20px rgba(0,0,0,0.3), 0 0 30px rgba(255,255,255,0.3); }
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-section i {
    margin-right: 0.5rem;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: white;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #4fabe4 0%, #47a63b 100%);
    color: white;
    padding: 150px 0 100px;
    margin-top: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.05) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    animation: slide 10s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(60px); }
}

.services-hero .container,
.contact-hero .container,
.about-hero .container {
    position: relative;
    z-index: 1;
}

.services-hero h1,
.about-hero h1,
.contact-hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #3a97e6;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card ul li {
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3a97e6;
    font-weight: bold;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #4fabe4 0%, #47a63b 100%);
    color: white;
    padding: 150px 0 100px;
    margin-top: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.08) 2px, transparent 2px),
        radial-gradient(circle at 25% 75%, rgba(255,255,255,0.06) 1px, transparent 1px),
        radial-gradient(circle at 75% 25%, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 75px 75px, 125px 125px;
    animation: sparkle 8s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    color: #3a97e6;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-details div {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-details i {
    color: #3a97e6;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(44, 90, 160, 0.1);
    border-radius: 50%;
    padding: 8px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-details div > div {
    flex: 1;
    margin-bottom: 0;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #3a97e6;
}

.contact-details p {
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3a97e6;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #4fabe4 0%, #47a63b 100%);
    color: white;
    padding: 150px 0 100px;
    margin-top: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(255,255,255,0.03) 100px,
            rgba(255,255,255,0.03) 102px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 98px,
            rgba(255,255,255,0.03) 100px,
            rgba(255,255,255,0.03) 102px
        );
    animation: grid 15s linear infinite;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-bubble 8s ease-in-out infinite;
}

@keyframes grid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

@keyframes float-bubble {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(50px, -30px) scale(1.2);
        opacity: 0.6;
    }
}

.about-sections {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.about-sections::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(79, 171, 228, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(71, 166, 59, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(79, 171, 228, 0.02) 0%, transparent 50%);
    animation: background-drift 20s ease-in-out infinite;
}

@keyframes background-drift {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.about-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4fabe4 0%, #47a63b 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.about-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-section:hover::before {
    transform: scaleX(1);
}

.about-section h2 {
    color: #3a97e6;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4fabe4 0%, #47a63b 100%);
    border-radius: 2px;
    animation: slide-in 0.8s ease-out;
}

@keyframes slide-in {
    from { 
        width: 0;
        opacity: 0;
    }
    to { 
        width: 50px;
        opacity: 1;
    }
}

.about-section p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.about-section ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-section ul li {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding: 0.8rem 1.5rem;
    background: rgba(79, 171, 228, 0.05);
    border-radius: 8px;
    border-left: 4px solid #4fabe4;
    position: relative;
    transform: translateX(-20px);
    opacity: 0;
    animation: slide-in-left 0.6s ease-out forwards;
    transition: all 0.3s ease;
}

.about-section ul li:nth-child(1) { animation-delay: 0.3s; }
.about-section ul li:nth-child(2) { animation-delay: 0.4s; }
.about-section ul li:nth-child(3) { animation-delay: 0.5s; }
.about-section ul li:nth-child(4) { animation-delay: 0.6s; }
.about-section ul li:nth-child(5) { animation-delay: 0.7s; }

.about-section ul li:hover {
    background: rgba(79, 171, 228, 0.1);
    transform: translateX(5px);
    border-left-color: #47a63b;
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-left {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-section:nth-child(even) {
    background: linear-gradient(135deg, rgba(79, 171, 228, 0.02) 0%, rgba(255,255,255,1) 100%);
}

.about-section:nth-child(odd) {
    background: linear-gradient(135deg, rgba(71, 166, 59, 0.02) 0%, rgba(255,255,255,1) 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: slide-up 0.6s ease-out forwards;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 171, 228, 0.05) 0%, rgba(71, 166, 59, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

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

.value-item:nth-child(1) { animation-delay: 0.1s; }
.value-item:nth-child(2) { animation-delay: 0.2s; }
.value-item:nth-child(3) { animation-delay: 0.3s; }
.value-item:nth-child(4) { animation-delay: 0.4s; }
.value-item:nth-child(5) { animation-delay: 0.5s; }
.value-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes slide-up {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.value-item i {
    font-size: 3rem;
    color: #4fabe4;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.value-item:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #47a63b;
}

.value-item h3 {
    color: #3a97e6;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    font-weight: 600;
}

.value-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .language-switcher {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .nav-menu.active .language-switcher {
        margin-top: 1rem;
    }
    
    .language-dropdown-content {
        position: relative;
        display: block !important;
        background-color: transparent;
        box-shadow: none;
        border: none;
        margin-top: 0.5rem;
    }
    
    .language-option {
        background: linear-gradient(135deg, #4fabe4 0%, #47a63b 100%);
        color: white !important;
        margin: 0.25rem 0;
        border-radius: 20px;
        padding: 8px 16px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-graphic {
        width: 200px;
        height: 200px;
    }
    
    .hero-graphic i {
        font-size: 5rem;
    }
} 