/* Global styles */
:root {
    --primary-color: #03024c;
    --primary-dark: #02023a;
    --primary-light: #05056c;
    --secondary-color: #05056c;
    --accent-color: #F59E0B;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --gray-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --body-font: 'Inter', sans-serif;
    --heading-font: 'Sora', sans-serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--body-font);
    color: var(--secondary-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

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

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation classes */
.fadeInUp {
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.fadeInRight {
    opacity: 0;
    animation: fadeInRight 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Hero Section Styles */
.hero-section {
    padding: 6rem 0;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
    
    display: flex;
    align-items: center;
}

/* Background Elements */
.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(94, 96, 206, 0.05) 0%, rgba(94, 96, 206, 0.02) 100%);
    z-index: -3;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%235E60CE' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: -2;
}

/* Animated shapes */
.hero-animated-shape {
    position: absolute;
    background-color: rgba(94, 96, 206, 0.05);
    border-radius: 50%;
    z-index: -1;
}

.hero-shape-1 {
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
    top: 60%;
    left: 15%;
    width: 70px;
    height: 70px;
    animation: float 8s ease-in-out infinite;
}

.hero-shape-3 {
    top: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    animation: float 7s ease-in-out infinite;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
}

.hero-heading {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--dark-color);
    font-weight: 800;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subheading {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-color);
    max-width: 90%;
}

/* Hero Buttons */
.hero-buttons {
    margin-bottom: 2.5rem;
}

/* Language Badges */
.language-badges {
    margin-bottom: 2rem;
}

.language-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.language-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-weight: 500;
}

/* Client Logos */
.client-logos {
    margin-top: 3rem;
}

.client-logos p {
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.client-logo {
    height: 35px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-2px);
}

/* Hero Image */
.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-image {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

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

.hero-image-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background-color: var(--primary-color);
    top: 20px;
    left: 20px;
    z-index: 1;
    opacity: 0.1;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-subheading {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        margin-bottom: 2rem;
    }
    
    .hero-image-container {
        margin-top: 3rem;
    }
    
    .hero-stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-subheading {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.6rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.whatsapp-float a i {
    font-size: 32px;
}

.whatsapp-float a:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Animation for attention */
.whatsapp-float a {
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
} 
/* Related language pairs styles */
.related-language-pairs {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.related-language-pairs h2 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.related-box {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    height: 100%;
}

.related-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.related-list {
    list-style: none;
    padding-left: 0;
}

.related-list li {
    margin-bottom: 10px;
}

.related-list li a {
    color: #2563eb;
    text-decoration: none;
}

.related-list li a:hover {
    text-decoration: underline;
}