/* Global Styles and Variables */
:root {
    --primary-color: #4487c0;
    --secondary-color: #316d9e;
    --accent-color: #f97316;
    --text-color: #1e293b;
    --text-color-light: #64748b;
    --background-color: #f8fafc;
    --light-color: #f8fafc;
    --dark-color: #0f172a;
    --border-color: #e2e8f0;
    --border-radius: 10px;
    --box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --success-color: #10b981;
    --error-color: #ef4444;
    --card-bg: #ffffff;
    --header-height: 80px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

/* Language-specific font settings */
html[lang="fr"] body {
    font-family: 'Poppins', sans-serif;
}

html[dir="ltr"] {
    text-align: left;
}

html[dir="rtl"] {
    text-align: right;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    color: var(--dark-color);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Header Styles */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

/* أنماط الشعار النصي */
.logo-text {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    display: inline-block;
    padding: 5px 0;
}

.company-name {
    color: var(--primary-color);
    font-size: 2.2rem;
    letter-spacing: 1px;
    position: relative;
}

.company-name::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 3px;
    transform: scaleX(0.7);
    transform-origin: left;
    opacity: 0.7;
    transition: var(--transition);
}

.logo-text:hover .company-name {
    color: var(--secondary-color);
}

.logo-text:hover .company-name::after {
    transform: scaleX(1);
    opacity: 1;
}

.service-text {
    color: #4285f4;
    font-size: 22px;
    margin-left: 5px;
    font-weight: 500;
}

.visa-text {
    color: #5f6368;
    font-size: 22px;
    margin-left: 5px;
    font-weight: 500;
}

/* ناقل التأثير عند التحويم */
.logo-text:hover .service-text, 
.logo-text:hover .visa-text {
    color: #333;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    padding: 10px 0;
    position: relative;
    text-decoration: none;
    font-size: 1.05rem;
    transition: var(--transition);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--primary-color);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.btn-lang {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(68, 135, 192, 0.2);
}

.btn-lang:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(68, 135, 192, 0.25);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section Styles */
.hero {
    background: linear-gradient(135deg, rgba(68, 135, 192, 0.05) 0%, rgba(49, 109, 158, 0.1) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

/* Sky Gradient Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top, rgba(173, 216, 230, 0.2) 0%, rgba(240, 248, 255, 0) 70%);
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 5;
    padding: 50px 20px;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
    position: relative;
    z-index: 5;
    animation: fade-in 1s ease-out;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html[dir="ltr"] .hero-content {
    padding-right: 0;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-weight: 800;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 16px 36px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.cta-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(68, 135, 192, 0.3);
}

.cta-button:hover::before {
    left: 100%;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-image img {
    max-width: 100%;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
    position: relative;
    z-index: 3;
    transform-origin: center center;
}

/* Removing the shadow from under the hero image */
.hero-image::after {
    display: none; /* This will remove the shadow element */
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes shadow-float {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(0.85);
        opacity: 0.3;
    }
}

/* Services Section Styles */
.services {
    background-color: var(--card-bg);
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    color: var(--dark-color);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    font-weight: 800;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Enhanced Professional Card Styles */
.service-card {
    background-color: white;
    padding: 50px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(68, 135, 192, 0.2);
}

/* Professional Service Icons */
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 30px;
    transition: all 0.5s ease;
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(68, 135, 192, 0.1), rgba(68, 135, 192, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 25px rgba(68, 135, 192, 0.15);
}

.service-icon i {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(68, 135, 192, 0.15), rgba(68, 135, 192, 0.25));
    box-shadow: 0 15px 35px rgba(68, 135, 192, 0.25);
    transform: scale(1.1) translateY(-10px);
}

.service-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
    transition: var(--transition);
}

.service-card:hover .service-title {
    color: var(--primary-color);
}

.service-description {
    color: var(--text-color-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Why Us Section Styles */
.why-us {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.why-us .container {
    position: relative;
    z-index: 2;
}

.why-us .section-title {
    color: white;
    margin-bottom: 70px;
}

.why-us .section-title::after {
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0.5));
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* Enhanced Why Us Card Styles */
.why-us-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.why-us-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.why-us-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.why-us-card:hover::before {
    left: 100%;
}

/* Professional Why Us Icons */
.why-us-icon {
    font-size: 2.2rem;
    transition: all 0.5s ease;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why-us-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent);
    z-index: -1;
}

.why-us-card:hover .why-us-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.25);
}

.why-us-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 10px;
}

/* Contact Section Styles */
.contact {
    background-color: var(--background-color);
    padding: 100px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(68, 135, 192, 0.05), transparent 70%);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Professional Contact Icons */
.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-item:hover {
    background-color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: rgba(68, 135, 192, 0.2);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--accent-color);
    width: 60px;
    height: 60px;
    background-color: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.contact-item:hover i {
    background-color: var(--accent-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
}

.contact-item p {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.05rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(68, 135, 192, 0.03), transparent 70%);
    z-index: 0;
    border-radius: var(--border-radius);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 5px 15px rgba(68, 135, 192, 0.15);
    transform: translateY(-3px);
    background-color: white;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(68, 135, 192, 0.2);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(68, 135, 192, 0.25);
}

.submit-btn:hover::before {
    left: 100%;
}

/* Footer Styles */
.footer {
    background-color: #1e293b;
    color: #ffffff;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(68, 135, 192, 0.15), transparent 70%);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 25px;
}

/* أنماط شعار الفوتر النصي */
.footer-logo-text {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo-text .company-name {
    color: #ffffff;
    font-size: 2.4rem;
    position: relative;
    margin-bottom: 10px;
    display: inline-block;
}

.footer-logo-text .company-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 3px;
}

.agency-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-top: 15px;
    margin-bottom: 25px;
    font-size: 1.05rem;
    max-width: 450px;
}

.footer h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.4s ease;
    border-radius: 3px;
}

.footer-links:hover h3::after, .footer-contact:hover h3::after {
    width: 70px;
}

html[dir="ltr"] .footer h3::after {
    left: 0;
    right: auto;
}

html[dir="rtl"] .footer h3::after {
    right: 0;
    left: auto;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 3px 0;
}

.footer-links ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links ul li a:hover::after {
    width: 100%;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 1.05rem;
}

.footer-contact p i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.footer-contact p:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 5px 20px rgba(68, 135, 192, 0.3);
    z-index: 100;
    text-decoration: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.scroll-top i {
    font-size: 24px;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: whatsapp-pulse 1.5s infinite;
    opacity: 0;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-tooltip {
    position: absolute;
    left: 80px;
    background-color: white;
    color: var(--text-color);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    width: max-content;
    max-width: 250px;
    font-weight: 600;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 8px 8px 0;
    border-style: solid;
    border-color: transparent white transparent transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    left: 70px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .footer-logo-text .company-name {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .header .container {
        flex-wrap: wrap;
    }
    
    .main-nav {
        width: 100%;
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .main-nav.show {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 1rem;
    }
    
    .main-nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .services-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .company-name {
        font-size: 1.8rem;
    }
    
    .footer-logo-text .company-name {
        font-size: 2rem;
    }
    
    .footer-logo-text .company-name::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .agency-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .service-card,
    .why-us-card,
    .contact-item {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .company-name {
        font-size: 1.6rem;
    }
    
    .footer-logo-text .company-name {
        font-size: 1.8rem;
    }
    
    .scroll-top,
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Form Message Styles */
.form-message {
    padding: 15px;
    margin-top: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
}

.form-message.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
    border: 1px solid var(--error-color);
}

/* Logo Styles - Remove animation */
.logo-img {
    height: 50px;
    transition: var(--transition);
    /* remove animation */
}

.logo-img:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2) contrast(0.9);
}

/* Text Logo Styles */
.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding: 5px 0;
    text-decoration: none;
}

.logo-text .company-name {
    color: var(--primary-color);
    font-weight: 800;
}

.logo-text .service-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    margin-right: 5px;
}

.logo-text .visa-text {
    font-size: 1.2rem;
    font-weight: 700; 
    color: var(--accent-color);
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 20px;
    text-align: right;
}

.footer-logo-text .company-name {
    color: white;
    font-weight: 800;
}

.footer-logo-text .service-text {
    font-size: 1rem;
    font-weight: 500;
    color: #d1d5db;
    margin-right: 5px;
}

.footer-logo-text .visa-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Clouds Container */
.clouds-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

/* Cloud Styles */
.cloud {
    position: absolute;
    background: white;
    border-radius: 100px;
    opacity: 0.8;
    filter: blur(5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 50%;
}

.cloud-1 {
    width: 150px;
    height: 60px;
    top: 15%;
    left: -150px;
    animation: cloud-drift-1 35s linear infinite;
}

.cloud-1::before {
    width: 90px;
    height: 90px;
    top: -50px;
    left: 25px;
}

.cloud-1::after {
    width: 70px;
    height: 70px;
    top: -35px;
    left: 60px;
}

.cloud-2 {
    width: 200px;
    height: 80px;
    top: 40%;
    left: -200px;
    animation: cloud-drift-2 45s linear infinite;
    animation-delay: 5s;
}

.cloud-2::before {
    width: 120px;
    height: 120px;
    top: -70px;
    left: 30px;
}

.cloud-2::after {
    width: 100px;
    height: 100px;
    top: -50px;
    left: 80px;
}

.cloud-3 {
    width: 180px;
    height: 70px;
    top: 65%;
    left: -180px;
    animation: cloud-drift-3 40s linear infinite;
    animation-delay: 10s;
}

.cloud-3::before {
    width: 100px;
    height: 100px;
    top: -60px;
    left: 30px;
}

.cloud-3::after {
    width: 80px;
    height: 80px;
    top: -40px;
    left: 70px;
}

.cloud-4 {
    width: 130px;
    height: 50px;
    top: 25%;
    left: -130px;
    opacity: 0.6;
    animation: cloud-drift-4 50s linear infinite;
    animation-delay: 15s;
}

.cloud-4::before {
    width: 80px;
    height: 80px;
    top: -40px;
    left: 20px;
}

.cloud-4::after {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50px;
}

.cloud-5 {
    width: 170px;
    height: 60px;
    top: 55%;
    left: -170px;
    opacity: 0.7;
    animation: cloud-drift-5 55s linear infinite;
    animation-delay: 20s;
}

.cloud-5::before {
    width: 100px;
    height: 100px;
    top: -55px;
    left: 30px;
}

.cloud-5::after {
    width: 80px;
    height: 80px;
    top: -40px;
    left: 70px;
}

@keyframes cloud-drift-1 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(100vw + 150px));
    }
}

@keyframes cloud-drift-2 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(100vw + 200px));
    }
}

@keyframes cloud-drift-3 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(100vw + 180px));
    }
}

@keyframes cloud-drift-4 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(100vw + 130px));
    }
}

@keyframes cloud-drift-5 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(100vw + 170px));
    }
}

/* Animation Utilities */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shine {
    0% {
        opacity: 0.5;
        filter: brightness(1);
    }
    50% {
        opacity: 1;
        filter: brightness(1.3);
    }
    100% {
        opacity: 0.5;
        filter: brightness(1);
    }
}

/* Section Title Animation */
.section-title::after {
    animation: width-animation 2s ease-in-out;
}

@keyframes width-animation {
    0% {
        width: 0;
    }
    100% {
        width: 80px;
    }
}

/* Animate on Scroll Styles */
.service-card, .why-us-card, .section-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.service-card.animate, .why-us-card.animate, .section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Card Styles */
.service-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(67, 97, 238, 0.05), transparent);
    transition: 0.5s;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    left: 100%;
}

/* Enhanced Why Us Card Styles */
.why-us-card {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.why-us-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.why-us-card:hover::before {
    left: 100%;
}

/* Enhanced CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.cta-button:hover {
    background-color: #2980b9;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(41, 128, 185, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

/* Animated Link Underline */
.main-nav ul li a, .footer-links ul li a {
    position: relative;
}

.main-nav ul li a::after, .footer-links ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after, .footer-links ul li a:hover::after {
    width: 100%;
}

/* Footer Animation */
.footer h3 {
    position: relative;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.4s ease;
}

.footer-links:hover h3::after, .footer-contact:hover h3::after {
    width: 70px;
    background-color: var(--accent-color);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: whatsapp-pulse 1.5s infinite;
    opacity: 0;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-tooltip {
    position: absolute;
    left: 80px;
    background-color: white;
    color: var(--text-color);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    width: max-content;
    max-width: 250px;
    font-weight: 600;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 8px 8px 0;
    border-style: solid;
    border-color: transparent white transparent transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    left: 70px;
}

/* Make sure WhatsApp and scroll-to-top buttons don't overlap on mobile */
@media (max-width: 768px) {
    .whatsapp-float {
    }
    
    .whatsapp-tooltip {
        display: none;
    }
} 