﻿/* Modern Visa Consultancy Website Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc2626;
    --secondary-color: #ef4444;
    --accent-color: #fbbf24;
    --success-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --gradient-primary: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    --gradient-accent: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   TOP HEADER
   ======================================== */
.top-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info, .phone-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.top-header a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.top-header a:hover {
    opacity: 0.9;
    transform: translateX(3px);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h2 {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    list-style: none;
    min-width: 220px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-top: 10px;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 12px 25px;
    border-left: 3px solid transparent;
}

.dropdown a::after {
    display: none;
}

.dropdown a:hover {
    background: var(--bg-light);
    border-left-color: var(--primary-color);
    padding-left: 30px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s ease;
}

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

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-description {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.5);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::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 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* ========================================
   SECTIONS
   ======================================== */
.section-intro,
.service-intro,
.country-intro,
.course-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-intro h2,
.service-intro h2,
.country-intro h2,
.course-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-intro p,
.service-intro p,
.country-intro p,
.course-intro p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   TEAM PAGE STYLES
   ======================================== */
.team-content {
    padding: 80px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 80px;
}

.team-member {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.team-member h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

.team-values {
    margin-top: 60px;
}

.team-values h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.value-item {
    background: var(--bg-light);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.value-item i {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   SERVICE DETAIL PAGES
   ======================================== */
.service-detail,
.country-detail,
.course-detail {
    padding: 80px 0;
}

.service-features,
.visa-services {
    margin: 60px 0;
}

.service-features h3,
.visa-services h3 {
    font-size: 28px;
    margin-bottom: 35px;
    text-align: center;
    color: var(--text-dark);
}

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

.feature-item,
.service-item {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-item:hover,
.service-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.feature-item i,
.service-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h4,
.service-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-item p,
.service-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   REQUIREMENTS & BENEFITS
   ======================================== */
.requirements-section,
.benefits-section {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 16px;
    margin: 60px 0;
}

.requirements-section h3,
.benefits-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.requirements-list ul,
.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.requirements-list li,
.benefits-list li {
    padding: 12px 0;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.requirements-list i,
.benefits-list i {
    color: var(--success-color);
    font-size: 18px;
    margin-top: 3px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-light);
}

/* ========================================
   PROCESS TIMELINE
   ======================================== */
.process-timeline {
    margin: 60px 0;
}

.process-timeline h3 {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.timeline-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   CTA BOX
   ======================================== */
.cta-box,
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    margin: 60px 0;
    box-shadow: var(--shadow-lg);
}

.cta-box h3,
.cta-section h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-box p,
.cta-section p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
    padding: 80px 0;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.info-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-section {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.contact-form button {
    width: 100%;
}

/* ========================================
   COUNTRIES PAGE
   ======================================== */
.countries-section,
.courses-section {
    padding: 80px 0;
}

.countries-grid,
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.country-card,
.course-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 2px solid var(--border-color);
}

.country-card:hover,
.course-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.country-flag,
.course-image {
    width: 100%;
    height: 180px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--white);
}

.country-card h3,
.course-card h3 {
    padding: 25px 25px 15px;
    font-size: 24px;
}

.country-card h3 a,
.course-card h3 a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.country-card h3 a:hover,
.course-card h3 a:hover {
    color: var(--primary-color);
}

.country-card p,
.course-card p {
    padding: 0 25px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.country-card ul,
.course-features ul {
    list-style: none;
    padding: 0 25px;
    margin-bottom: 25px;
}

.country-card li,
.course-features li {
    padding: 8px 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.country-card li:last-child,
.course-features li:last-child {
    border-bottom: none;
}

.course-footer {
    padding: 0 25px 25px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 10px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 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.6);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .cta-box,
    .cta-section {
        padding: 40px 25px;
    }
}


/* Additional Visual Enhancements */
.whatsapp-float:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6) !important;
}

.scroll-top:hover {
    background: #3b82f6 !important;
    transform: translateY(-3px);
}

.hero {
    position: relative;
    background-attachment: fixed !important;
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

img {
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.02);
}

/* Feature Cards with Backgrounds */
.features {
    background: var(--bg-light);
    padding: 80px 0;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    min-height: 320px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #e0f0ff 100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.25);
}

.feature-icon i {
    font-size: 35px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* About Section Beautification */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content > p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    border-left: 5px solid var(--primary-color);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateX(10px);
    border-color: var(--success-color);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%);
}

.about-feature i {
    font-size: 28px;
    color: var(--success-color);
    min-width: 35px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.about-feature span {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.5;
}

/* Why Choose Us Section - Beautified */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.why-choose-item {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-choose-item:hover::before {
    transform: scaleX(1);
}

.why-choose-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.2);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #e0f0ff 100%);
}

.why-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
    transition: all 0.4s ease;
}

.why-choose-item:hover .why-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.4);
}

.why-icon i {
    font-size: 40px;
    color: var(--white);
}

.why-choose-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.why-choose-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Stats Counter Beautification */
.stats-counter {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.3);
}

.counter-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.counter-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.counter-item h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.counter-item p {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

/* Stats Section - Enhanced with Countries */
.stats {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.countries-flags-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin: 50px 0;
    position: relative;
    z-index: 1;
}

.flag-item {
    text-align: center;
    transition: all 0.3s ease;
}

.flag-item:hover {
    transform: translateY(-10px);
}

.flag-shape {
    width: 100px;
    height: 130px;
    background: var(--white);
    border-radius: 8px 8px 0 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.flag-shape::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 15px solid var(--white);
}

.flag-item:hover .flag-shape {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

.flag-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flag-item span {
    display: block;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 32px;
    color: var(--accent-color);
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.stat-content {
    flex: 1;
}

.stat-content h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

/* Testimonials Section - Beautified */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(circle at top, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials .section-header {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(30, 64, 175, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-rating span {
    margin-left: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 5px 15px;
    border-radius: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(30, 64, 175, 0.1);
}

.testimonial-author::before {
    content: '';
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* Success Stories Images Grid */
.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.story-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.4s ease;
}

.story-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.8) 0%, rgba(59, 130, 246, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.story-image-wrapper:hover::before {
    opacity: 1;
}

.story-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.2);
}

.story-image-wrapper img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.story-image-wrapper:hover img {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 2;
}

.story-image-wrapper:hover .story-overlay {
    transform: translateY(0);
}

.story-overlay h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.story-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}


/* ========================================
   ABOUT PAGE STYLING
   ======================================== */
.about-content {
    padding: 80px 0;
    background: var(--white);
}

/* About Intro Section */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.intro-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.intro-image {
    position: relative;
}

/* ========================================
   ENHANCED VISA SERVICE CARDS
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.2);
    border-color: var(--primary-color);
}

/* Featured Card Styling */
.service-card.featured {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.service-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

/* Featured Ribbon */
.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-accent);
    color: var(--text-dark);
    padding: 8px 45px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    z-index: 1;
}

/* Card Header */
.service-card-header {
    padding: 35px 30px 25px;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.service-card.featured .service-card-header {
    background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 100%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.4);
}

/* Service Badges */
.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.popular-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
}

.featured-badge {
    background: var(--gradient-accent);
    color: var(--text-dark);
}

.trending-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: var(--white);
}

/* Card Body */
.service-card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card-body h3 {
    font-size: 26px;
    font-weight: 800;
    margin: 0;
    color: var(--text-dark);
}

.service-card-body h3 a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.service-card-body h3 a:hover {
    color: var(--primary-color);
}

.service-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Service Highlights */
.service-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Service Features Wrapper */
.service-features-wrapper h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:hover {
    padding-left: 8px;
    color: var(--primary-color);
}

.service-features i {
    color: var(--success-color);
    font-size: 16px;
    flex-shrink: 0;
}

/* Service Countries */
.service-countries {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-top: auto;
}

.service-countries p {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.country-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.country-tags .tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    cursor: default;
}

.country-tags .tag:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

/* Card Footer */
.service-card-footer {
    padding: 0 30px 30px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 30px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border: none;
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.4);
}

.btn-primary i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Service Cards */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card-header {
        padding: 25px 20px 20px;
    }

    .service-card-body {
        padding: 20px;
    }

    .service-highlight {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}

/* ========================================
   WHY CHOOSE SAARGLOBAL SECTION
   ======================================== */
.why-visa-section {
    margin: 100px 0;
    padding: 80px 40px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.why-visa-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.why-visa-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

/* Section Header */
.why-visa-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.why-visa-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Statistics Bar */
.visa-stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-number::after {
    content: '+';
    margin-left: 5px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
}

/* Why Visa Grid */
.why-visa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.why-visa-item {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.why-visa-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-visa-item:hover::before {
    transform: scaleX(1);
}

.why-visa-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15);
    border-color: rgba(30, 64, 175, 0.2);
}

/* Icon Wrapper */
.why-visa-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.icon-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.why-visa-item:hover .icon-background {
    transform: scale(1);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(59, 130, 246, 0);
    }
}

.why-visa-icon {
    position: relative;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
    transition: all 0.4s ease;
    z-index: 1;
}

.why-visa-item:hover .why-visa-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 50px rgba(30, 64, 175, 0.5);
}

/* Content */
.why-visa-content {
    text-align: center;
}

.why-visa-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.why-visa-item:hover .why-visa-content h4 {
    color: var(--primary-color);
}

.why-visa-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.feature-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.why-visa-item:hover .feature-badge {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Additional Benefits */
.additional-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 30px;
    border: 2px solid rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    cursor: default;
}

.benefit-item:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.benefit-item i {
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    color: var(--white);
    transform: scale(1.2);
}

.benefit-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.benefit-item:hover span {
    color: var(--white);
}

/* Responsive Design for Why Choose Section */
@media (max-width: 1024px) {
    .why-visa-header h2 {
        font-size: 36px;
    }

    .visa-stats-bar {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        min-width: 150px;
    }

    .why-visa-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .why-visa-section {
        margin: 60px 0;
        padding: 50px 20px;
        border-radius: 20px;
    }

    .why-visa-header h2 {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .visa-stats-bar {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
    }

    .why-visa-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-visa-item {
        padding: 30px 20px;
    }

    .why-visa-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .why-visa-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .additional-benefits {
        gap: 15px;
        padding: 30px 15px;
    }

    .benefit-item {
        padding: 10px 15px;
        font-size: 13px;
    }
}

/* ========================================
   VISA PROCESSING STEPS SECTION
   ======================================== */
.visa-process {
    margin: 100px 0;
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.visa-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Process Header */
.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.process-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e0f2fe 0%, #bfdbfe 50%, #e0f2fe 100%);
    border-radius: 10px;
    z-index: 0;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1);
    box-shadow: 0 0 20px rgba(30, 64, 175, 0.5);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.step {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.step:nth-child(1) {
    animation-delay: 0.2s;
}

.step:nth-child(2) {
    animation-delay: 0.4s;
}

.step:nth-child(3) {
    animation-delay: 0.6s;
}

.step:nth-child(4) {
    animation-delay: 0.8s;
}

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

/* Step Indicator */
.step-indicator {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
    border: 4px solid var(--white);
}

.step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 50px rgba(30, 64, 175, 0.5);
}

.step-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Step Content */
.step-content {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.step:hover .step-content::before {
    transform: scaleX(1);
}

.step:hover .step-content {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15);
    border-color: rgba(30, 64, 175, 0.2);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.step:hover .step-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotateY(180deg);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

.step-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
}

.step:hover .step-content h4 {
    color: var(--primary-color);
}

.step-content > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: center;
}

/* Step Features */
.step-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 15px;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.step-features li:last-child {
    border-bottom: none;
}

.step-features li:hover {
    padding-left: 10px;
    color: var(--primary-color);
}

.step-features i {
    color: var(--success-color);
    font-size: 14px;
    flex-shrink: 0;
}

/* Step Duration */
.step-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #92400e;
}

.step-duration i {
    color: #d97706;
}

/* Process Statistics */
.process-statistics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.3);
}

.process-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.process-stat:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.process-stat:hover .stat-icon {
    transform: rotate(360deg);
}

.stat-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.stat-info {
    color: var(--white);
}

.stat-info h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-info p {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

/* Responsive Design for Process Steps */
@media (max-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .timeline-line {
        display: none;
    }

    .process-statistics {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .visa-process {
        margin: 60px 0;
        padding: 50px 0;
    }

    .process-header h2 {
        font-size: 32px;
    }

    .process-subtitle {
        font-size: 16px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-indicator {
        width: 80px;
        height: 80px;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .step-pulse {
        width: 80px;
        height: 80px;
    }

    .step-content {
        padding: 25px 20px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .process-statistics {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 20px;
        margin-top: 50px;
    }

    .process-stat {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .stat-info h5 {
        font-size: 13px;
    }

    .stat-info p {
        font-size: 18px;
    }
}

.intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.intro-image:hover img {
    transform: scale(1.03);
}

/* Office Gallery */
.office-gallery {
    margin: 80px 0;
    padding: 60px 0;
    background: var(--bg-light);
    border-radius: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    height: 280px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 64, 175, 0.9) 0%, transparent 100%);
    padding: 30px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

/* About Features Section */
.about-features-section {
    margin: 80px 0;
}

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

.about-feature {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.about-feature:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.feature-icon-circle i {
    font-size: 35px;
    color: var(--white);
}

.about-feature h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-feature p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Mission Vision Cards */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 80px 0;
}

.mission, .vision {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 50px 40px;
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission::before, .vision::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.mission:hover, .vision:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.4);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mv-icon i {
    font-size: 35px;
    color: var(--accent-color);
}

.mission h3, .vision h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.mission p, .vision p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
}

/* About Statistics */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 80px 0;
    padding: 60px;
    background: var(--bg-light);
    border-radius: 20px;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
}

.stat-box i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-box h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 60px;
    background: var(--gradient-primary);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.3);
    margin-top: 80px;
}

.cta-section h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .intro-text h2 {
        font-size: 28px;
    }
}

/* ========================================
   COUNTRIES SECTION STYLES
   ======================================== */
.countries-section {
    padding: 80px 0;
    background: var(--white);
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.country-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.country-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
    border-color: var(--primary-color);
}

.country-flag {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.country-flag i {
    font-size: 35px;
    color: var(--white);
}

.country-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.country-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.country-card h3 a:hover {
    color: var(--primary-color);
}

.country-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
    flex-grow: 1;
}

.country-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.country-card ul li {
    padding: 10px 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.country-card ul li:last-child {
    border-bottom: none;
}

.country-card .btn-outline {
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .countries-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .country-card {
        padding: 30px 25px;
    }
}
