 :root {
            --primary-blue: #dc3545;
            --primary-teal: #ff1b1b;
            --accent-orange: #ff0000;
            --accent-gold: #FDB913;
            --text-dark: #1A1A2E;
            --text-light: #6B7280;
            --bg-cream: #FFF8F0;
            --bg-white: #FFFFFF;


 --primary-red: #dc3545;
            --primary-yellow: #dc3545;
         
            --text-white: #ffffff;
            --bg-light: #f8f9fa;

            --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
            --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.12);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
      body {
    font-family: Poppins, Helvetica, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    font-size: 16px;
}

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
             font-family: Poppins, Helvetica, sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        /* Navigation Bar */
        .navbar-modern {
            background: var(--bg-white);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-blue);
        }

        .nav-link {
            font-weight: 500;
            color: var(--text-dark);
            margin: 0 1rem;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-teal);
        }
div#logo img {
    width: 80px;
    height: auto;
}
        /* Hero Section - Modern Design */
 .hero-modern {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #761616ad 0%, #d70e17 100%);
    overflow: hidden;
    padding: 138px 0px 136px 0px;
}
        .hero-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://flyontravel.ae//img/dubai-visa-bannerrrr.jpg') no-repeat bottom;
            background-size: cover;
        }
        .hero-modern.us-bussiness::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://flyontravel.ae//img/us-page.jpg') no-repeat bottom;
            background-size: cover;
        }
        
        .hero-modern.france-visa::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://flyontravel.ae//img/eiffel-tower.jpg') no-repeat bottom;
            background-size: cover;
        }
        .hero-modern.uk-business::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://flyontravel.ae//img/uk-business.jpg') no-repeat bottom;
            background-size: cover;
        }

        .hero-content-modern {
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease;
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 8px 20px;
            border-radius: 50px;
            color: #fff;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-title-modern {
            font-size: 3.5rem;
            color: #fff;
            margin-bottom: 1.5rem;
            line-height: 1.15;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-subtitle-modern {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            max-width: 700px;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .hero-cta-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.8s both;
        }

        .btn-primary-modern {
            background: var(--accent-orange);
            color: #fff;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.05rem;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary-modern:hover {
            background: #e55d2e;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
            color: #fff;
        }

        .btn-secondary-modern {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
          padding: 16px 21px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.05rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(10px);
        }

        .btn-secondary-modern:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-3px);
            color: #fff;
        }

        .hero-image-container {
            position: relative;
            animation: fadeInRight 1s ease 0.4s both;
        }

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

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

        /* Trust Badges */
        .trust-badges-modern {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 1s both;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
        }

        .trust-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            backdrop-filter: blur(10px);
        }

        .trust-text {
            display: flex;
            flex-direction: column;
        }

        .trust-text strong {
            font-size: 1.1rem;
            font-weight: 700;
        }

        .trust-text span {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Statistics Section */
        .stats-section {
            padding: 4rem 0;
            background: var(--bg-white);
            margin-top: -80px;
            position: relative;
            z-index: 10;
        }

        .stats-container {
            background: var(--bg-white);
            border-radius: 24px;
            box-shadow: var(--shadow-medium);
            padding: 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .stat-card {
            text-align: center;
            padding: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-teal));
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            transition: transform 0.3s ease;
        }

        .stat-card:nth-child(1) .stat-icon {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
        }

        .stat-card:nth-child(2) .stat-icon {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: #fff;
        }

        .stat-card:nth-child(3) .stat-icon {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: #fff;
        }

        .stat-card:nth-child(4) .stat-icon {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            color: #fff;
        }

        .stat-card:hover .stat-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            font-family: 'Playfair Display', serif;
        }

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

        /* Section Styling */
        .section-modern {
            padding: 5rem 0;
        }

 .section-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 4rem;
    margin-bottom: 23px;
}

        .section-tag {
            display: inline-block;
            background: var(--bg-cream);
            color: var(--accent-orange);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

     .section-title {
    font-size: 2.75rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #000000;
    line-height: 1.8;
    margin: 0;
}

        /* Visa Cards - Modern Design */
        .visa-card-modern {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 2.5rem;
            height: 100%;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #f0f0f0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .visa-card-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-teal));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .visa-card-modern:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-medium);
            border-color: var(--primary-teal);
        }

        .visa-card-modern:hover::before {
            transform: scaleX(1);
        }

        .visa-icon-badge {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
            color: #fff;
            box-shadow: 0 10px 25px rgba(10, 77, 142, 0.3);
        }

        .visa-card-modern h3 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

    .visa-card-modern p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    height: auto;
    overflow: auto;
}

      .visa-details-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

        .visa-details-modern li {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            font-size: 0.9rem;
        }

        .visa-details-modern li:last-child {
            border-bottom: none;
        }

        .visa-details-modern strong {
            color: var(--text-dark);
            font-weight: 600;
        }

        .visa-details-modern span {
            color: var(--primary-teal);
            font-weight: 600;
        }

  .price-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff0f08c;
    color: #d72229;
    padding: 3px 24px;
    border-radius: 50px;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 1.5rem 0;
    border: 1px dashed #dc4b50;
    margin-top: 0;
}

        /* Process Section - Step by Step */
       .process-section {
    background: var(--bg-cream);
    padding: 60px 0;
    position: relative;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}
    .process-step {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 17px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

        .process-step:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
        }

       .process-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    /* font-family: 'Playfair Display', serif; */
    position: relative;
}

        .process-step:nth-child(1) .process-number {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .process-step:nth-child(2) .process-number {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: #fff;
            box-shadow: 0 10px 25px rgba(240, 147, 251, 0.3);
        }

        .process-step:nth-child(3) .process-number {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: #fff;
            box-shadow: 0 10px 25px rgba(79, 172, 254, 0.3);
        }

        .process-step:nth-child(4) .process-number {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            color: #fff;
            box-shadow: 0 10px 25px rgba(67, 233, 123, 0.3);
        }













          .process-step:nth-child(5) .process-number {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .process-step:nth-child(6) .process-number {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: #fff;
            box-shadow: 0 10px 25px rgba(240, 147, 251, 0.3);
        }

        .process-step:nth-child(7) .process-number {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: #fff;
            box-shadow: 0 10px 25px rgba(79, 172, 254, 0.3);
        }

        .process-step:nth-child(8) .process-number {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            color: #fff;
            box-shadow: 0 10px 25px rgba(67, 233, 123, 0.3);
        }

        .process-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.8rem;
        }
.process-icon {
    display: none;
}
        .process-step h4 {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

   .process-step p {
    color: #000000;
    font-size: 19px;
    line-height: 1.7;
    margin: 0;
}

        /* Team Section */
        .team-section {
            padding: 5rem 0;
            background: var(--bg-white);
        }

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

       .team-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-medium);
        }

        .team-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 2rem auto 1.5rem;
            object-fit: cover;
            border: 5px solid var(--bg-cream);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .team-content {
            padding: 0 2rem 2.5rem;
            text-align: center;
        }

        .team-name {
            font-size: 1.4rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .team-role {
            color: var(--primary-teal);
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
        }

        .team-experience {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Price Table Modern */
        .price-table-modern

 {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-top: 1rem;
}
        .price-table-modern table {
            width: 100%;
        }

        .price-table-modern thead {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
            color: #fff;
        }

        .price-table-modern th {
            padding: 1.5rem 1rem;
            font-weight: 700;
            text-align: left;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }

        .price-table-modern td {
            padding: 1.25rem 1rem;
            border-bottom: 1px solid #f0f0f0;
            font-size: 0.95rem;
        }

        .price-table-modern tbody tr {
            transition: background 0.3s ease;
        }

        .price-table-modern tbody tr:hover {
            background: var(--bg-cream);
        }

        .price-table-modern tbody tr:last-child td {
            border-bottom: none;
        }

        .price-highlight {
            font-weight: 700;
            color: var(--accent-orange);
            font-size: 1.15rem;
        }

        /* Feature Boxes */
        .feature-box-modern {
            background: var(--bg-white);
            border-radius: 20px;
           padding: 15px;
            height: 100%;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease;
            text-align: center;
        }

        .feature-box-modern:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
            border-color: var(--primary-teal);
        }

     .feature-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: #fff;
    box-shadow: 0 10px 30px rgba(10, 77, 142, 0.3);
    margin-bottom: 8px;
    margin-top: 14px;
}
      .feature-box-modern h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

    .feature-box-modern p {
    color: #000000;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}
section.section-modern.why-choose-wrapper p.text {
    text-align: center;
    font-size: 22px;
}
       /* Testimonial Section */
.testimonial-modern {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 1rem;
    position: relative;
    height: 283px;
}/* Owl Nav Wrapper */
.owl-nav {
    position: absolute;
    top: 31%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Buttons */
.owl-nav button {
    pointer-events: all;
    background: var(--accent-gold) !important;
    color: #fff !important;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: absolute;
}

/* Icons */
.owl-nav button span {
    font-size: 40px;
    line-height: 1;
}

/* Positions */
.owl-nav .owl-prev { left: -25px; }
.owl-nav .owl-next { right: -25px; }

/* Hover */
.owl-nav button:hover {
    background: var(--text-dark) !important;
    transform: scale(1.1);
}


.testimonial-modern::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 6rem;
    color: var(--bg-cream);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-rating {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 0;
}



.testimonial-position {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Owl Nav Styling */
.owl-nav button {
    background: #ff000b !important;
    color: #fff !important;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin: 10px;
    font-size: 20px !important;
}

.owl-nav button:hover {
    background: var(--text-dark) !important;
}


        /* FAQ Modern */
        .faq-modern {
            background: var(--bg-white);
            border-radius: 16px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .faq-modern:hover {
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }

        .faq-question-modern {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--bg-white);
            border: none;
            width: 100%;
            text-align: left;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .faq-question-modern:hover {
            background: var(--bg-cream);
        }

        .faq-question-modern.active {
            background: var(--bg-cream);
            color: var(--primary-blue);
        }

        .faq-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--bg-cream);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .faq-question-modern.active .faq-icon {
            background: var(--primary-teal);
            color: #fff;
            transform: rotate(180deg);
        }

        .faq-answer-modern {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .faq-answer-modern.active {
            padding: 1.5rem 2rem;
            max-height: 500px;
        }

        .faq-answer-modern p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* CTA Section Modern */
        .cta-modern {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .cta-modern::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="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
            background-size: cover;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
        }

        .cta-content h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .cta-content p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-cta-white {
            background: #fff;
            color: var(--primary-blue);
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-cta-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
            color: var(--primary-blue);
        }

        .btn-cta-outline {
            background: transparent;
            color: #fff;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            border: 2px solid #fff;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-cta-outline:hover {
            background: #fff;
            color: var(--primary-blue);
            transform: translateY(-3px);
        }

        /* Footer */
        .footer-modern {
            background: var(--text-dark);
            color: rgba(255, 255, 255, 0.8);
            padding: 3rem 0 1.5rem;
        }

        .footer-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 1rem;
        }

        .footer-text {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-contact a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact a:hover {
            color: var(--primary-teal);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 2rem;
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-title-modern {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .cta-content h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hero-title-modern {
                font-size: 2rem;
            }

            .hero-subtitle-modern {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-cta-group {
                flex-direction: column;
            }

            .btn-primary-modern,
            .btn-secondary-modern {
                width: 100%;
                justify-content: center;
            }

            .trust-badges-modern {
                justify-content: center;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-cta-white,
            .btn-cta-outline {
                width: 100%;
                justify-content: center;
            }
        }

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

        .floating {
            animation: float 3s ease-in-out infinite;
        }

        /* Slick Slider Customization */
        .slick-dots li button:before {
            font-size: 12px;
            color: var(--primary-teal);
        }

        .slick-dots li.slick-active button:before {
            color: var(--primary-blue);
        }

        .slick-prev:before,
        .slick-next:before {
            color: var(--primary-blue);
            font-size: 30px;
        }

        /* Scroll Reveal Animation */
     section#pricing {
    background: #ffffff !important;
}section.hero-modern .banner-overlay {
    position: absolute;
    background: #00000057;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}section.section-modern.why-choose-wrapper {
    background: #fff !important;
}section#faqs {
    background: #fff;
}





 /* Visa Cards */
       .documents-required  .visa-card {
            background: var(--text-white);
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .btn-whatsapp {
    background: #25D366;
    color: var(--text-white);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-left: 15px;
}.btn-whatsapp:hover {
    color: #fff;
}
        .documents-required .visa-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-yellow) 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
     .documents-required    .visa-card:hover {
            border-color: var(--primary-red);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }
        
       .documents-required  .visa-card:hover::before {
            transform: scaleX(1);
        }
        
       .documents-required  .visa-card h3 {
            color: var(--primary-red);
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
       .documents-required  .visa-details {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
       .documents-required  .visa-details li {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
        }
        
        .documents-required .visa-details li:last-child {
            border-bottom: none;
        }
        
      .documents-required   .visa-details strong {
            color: var(--text-dark);
        }
        
      .documents-required  .price-tag {
            background: var(--primary-yellow);
            color: var(--text-dark);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 700;
            display: inline-block;
            margin: 15px 0;
        }


         /* Features Section */
    .Dubai-Visa-Processing .feature-box {
    text-align: center;
    padding: 13px;
    background: var(--text-white);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}
        
      .Dubai-Visa-Processing  .feature-box:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }
        
         .Dubai-Visa-Processing .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-yellow) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: var(--text-white);
        }
        
         .Dubai-Visa-Processing .feature-box h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--text-dark);
            font-weight: 600;
        }

        /* Visa Cards */
        .visa-card {
            background: var(--text-white);
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .visa-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-yellow) 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .visa-card:hover {
            border-color: var(--primary-red);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }
        
        .visa-card:hover::before {
            transform: scaleX(1);
        }
        
        .visa-card h3 {
            color: var(--primary-red);
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .visa-details {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
        .visa-details li {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
        }
        
        .visa-details li:last-child {
            border-bottom: none;
        }
        
        .visa-details strong {
            color: var(--text-dark);
        }
        
        .price-tag {
            background: var(--primary-yellow);
            color: var(--text-dark);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 700;
            display: inline-block;
            margin: 15px 0;
        }
         /* Attractions Section */
        .attraction-card {
            background: var(--text-white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            margin: 15px;
        }
        
        .attraction-icon {
            background: linear-gradient(135deg, var(--text-dark) 0%, #333 100%);
            color: var(--text-white);
            padding: 40px;
            text-align: center;
            font-size: 3rem;
        }
  .attraction-content {
    padding: 25px;
    height: auto;
    padding-top: 2px;
}
        section.section-padding.Dubai-Attractions h2.section-title {
    margin: 0;
}
        .attraction-content h4 {
            color: var(--primary-red);
            font-weight: 700;
            margin-bottom: 15px;
        }

        /* Slider spacing */
.Dubai-Attractions .owl-carousel .owl-stage-outer {
    padding: 10px 0;
}

/* Cards */
.Dubai-Attractions .attraction-card {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    height: 100%;

    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Icon */
.Dubai-Attractions .attraction-icon {
    font-size: 36px;
    color: #c9a45c;
    margin-bottom: 15px;
    padding: 0  !important;
}

/* Content */
.Dubai-Attractions .attraction-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.Dubai-Attractions .attraction-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    height: 148px;
    overflow: auto;
    margin: 0;
}

/* Navigation arrows */
.Dubai-Attractions .owl-nav {
    position: absolute;
    top: 37%;
    right: 0;
    display: flex;
    gap: 10px;
}

.Dubai-Attractions .owl-prev, .Dubai-Attractions .owl-next {
    width: 42px;
    height: 42px;
    background: #d72229 !important;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.Dubai-Attractions .owl-nav button span {
    font-size: 21px;
    line-height: 1;
}

.Dubai-Attractions .owl-prev:hover,
.Dubai-Attractions .owl-next:hover {
    background: #a8874a !important;
}

/* Dots */
.Dubai-Attractions .owl-dots {
    margin-top: 25px;
    display: none;
}

.Dubai-Attractions .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
}

.Dubai-Attractions .owl-dot.active span {
    background: #c9a45c;
}

section#visa-types .row {
    justify-content: center;
}section#pricing a.btn-primary-modern.w-100 {
    margin: 0 auto;
    width: 200px;
    max-width: 319px;
}section.section-padding.documents-required {
    padding: 60px 0;
    background: #fff;
}.section-modern {
    padding: 60px 0;
}.documents-required .visa-card li {
    margin-top: 7px;
    font-size: 16px;
}section.section-padding.bg-light.Dubai-Visa-Processing {
    padding: 60px 0;
}section.section-padding.Visa-Rejections {
    padding: 60px 0;
    background: #fff;
}section.section-padding.Terms-Conditions {
    padding: 60px 0;
}section.section-padding.Dubai-Attractions {
    padding: 60px 0;
    background: #fff;
}.visa-card-modern a.btn-primary-modern {
    width: auto;
    display: inline-block;
    width: 100px;
    /* max-width: 190px; */
    text-align: center;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}



  .modern-form-wrapper .form-container {
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .modern-form-wrapper .form-header {
            background: #000000;
            color: #ffffff;
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modern-form-wrapper .form-header h2 {
            margin: 0;
            font-size: 1.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .modern-form-wrapper .form-header .toggle-icon {
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .modern-form-wrapper .form-header .toggle-icon.rotated {
            transform: rotate(180deg);
        }
        
        .modern-form-wrapper .form-body {
            padding: 35px 30px;
            background: #ffffff;
        }
        
        .modern-form-wrapper .form-group {
            margin-bottom: 25px;
        }
        
        .modern-form-wrapper .form-control {
            border: none;
            border-bottom: 2px solid #e0e0e0;
            border-radius: 0;
            padding: 12px 0;
            font-size: 1rem;
            color: #333333;
            background: transparent;
            transition: border-color 0.3s ease;
        }
        
        .modern-form-wrapper .form-control:focus {
            box-shadow: none;
            border-bottom-color: #ff0000;
            background: transparent;
        }
        
        .modern-form-wrapper .form-control::placeholder {
            color: #999999;
            font-weight: 300;
        }
        
        .modern-form-wrapper .phone-input-group {
            display: flex;
            align-items: center;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 12px;
            transition: border-color 0.3s ease;
        }
        
        .modern-form-wrapper .phone-input-group:focus-within {
            border-bottom-color: #ff0000;
        }
        
        .modern-form-wrapper .country-code {
            display: flex;
            align-items: center;
            gap: 8px;
            padding-right: 15px;
            border-right: 2px solid #e0e0e0;
            margin-right: 15px;
            font-weight: 500;
            color: #333333;
            cursor: pointer;
            position: relative;
        }
        
        .modern-form-wrapper .country-code img {
            width: 24px;
            height: 16px;
            object-fit: cover;
        }
        
        .modern-form-wrapper .country-code .dropdown-arrow {
            font-size: 12px;
            color: #666666;
            margin-left: 2px;
        }
        
        .modern-form-wrapper .country-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            max-height: 250px;
            overflow-y: auto;
            z-index: 1000;
            min-width: 250px;
            margin-top: 20px;
            display: none;
        }
        
        .modern-form-wrapper .country-dropdown.active {
            display: block;
        }
        
        .modern-form-wrapper .country-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 15px;
            cursor: pointer;
            transition: background 0.2s ease;
        }
        
        .modern-form-wrapper .country-option:hover {
            background: #f5f5f5;
        }
        
        .modern-form-wrapper .country-option img {
            width: 28px;
            height: 20px;
            object-fit: cover;
        }
        
        .modern-form-wrapper .country-option .country-name {
            flex: 1;
            font-size: 0.95rem;
            color: #333333;
        }
        
        .modern-form-wrapper .country-option .country-dial-code {
            font-weight: 600;
            color: #666666;
        }
        
        .modern-form-wrapper .phone-input-group input {
            border: none;
            outline: none;
            flex: 1;
            padding: 0;
            font-size: 1rem;
            color: #333333;
        }
        
        .modern-form-wrapper .phone-input-group input::placeholder {
            color: #999999;
            font-weight: 300;
        }
        
        .modern-form-wrapper .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .modern-form-wrapper .custom-checkbox {
            width: 24px;
            height: 24px;
            min-width: 24px;
            border: 2px solid #333333;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .modern-form-wrapper .custom-checkbox.checked {
            background: #000000;
            border-color: #000000;
        }
        
        .modern-form-wrapper .custom-checkbox i {
            color: #ffffff;
            font-size: 14px;
            display: none;
        }
        
        .modern-form-wrapper .custom-checkbox.checked i {
            display: block;
        }
        
    .modern-form-wrapper .checkbox-label {
    flex: 1;
    font-size: 13px;
    color: #333333;
    line-height: 1.5;
    cursor: pointer;
}
        
        .modern-form-wrapper .submit-btn {
            width: 100%;
            background: #ff0000;
            color: #ffffff;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 10px;
        }
        
        .modern-form-wrapper .submit-btn:hover {
            background: #cc0000;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
        }
        
        .modern-form-wrapper .submit-btn:active {
            transform: translateY(0);
        }
        
        .modern-form-wrapper .accordion-section {
            background: #f8f8f8;
            border-top: 1px solid #e0e0e0;
        }
        
        .modern-form-wrapper .accordion-header {
            padding: 20px 30px;
            background: #ffffff;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .modern-form-wrapper .accordion-header:hover {
            background: #f8f8f8;
        }
        
        .modern-form-wrapper .accordion-header h3 {
            margin: 0;
            font-size: 1.3rem;
            font-weight: 600;
            color: #000000;
        }
        
        .modern-form-wrapper .accordion-header .accordion-icon {
            font-size: 1.2rem;
            color: #000000;
            transition: transform 0.3s ease;
        }
        
        .modern-form-wrapper .accordion-header .accordion-icon.rotated {
            transform: rotate(180deg);
        }
        
    .modern-form-wrapper .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #ffffff;
    padding: 0;
}
        .modern-form-wrapper .accordion-body.active {
            max-height: 500px;
            padding: 25px 30px;
        }
        
        .modern-form-wrapper .accordion-body p {
            margin: 0;
            color: #666666;
            line-height: 1.6;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .modern-form-wrapper .form-header h2 {
                font-size: 1.5rem;
            }
            
            .modern-form-wrapper .form-body {
                padding: 25px 20px;
            }
        }.modern-form-wrapper {
    position: relative;
    z-index: 9999;
}
.modern-form-wrapper {
    position: relative;
    z-index: 9999;
}

.modern-form-wrapper .form-header i.fas.fa-chevron-up.toggle-icon {
    display: none;
}

.modern-form-wrapper .form-header h2 {
    color: #fff;
    padding: 0px !important;
    text-align: center;
}

.modern-form-wrapper .form-header {
    padding: 21px;
    background: #000;
    text-align: center;
    display: flex;
    justify-content: center;
}

.modern-form-wrapper .form-body {
    padding: 20px 30px;
}.Dubai-Visa-Processing .feature-box p {
    margin: 0;
}.text-center.mb-5 {
    margin-bottom: 15px !important;
}section.section-padding.Dubai-Attractions .text-center.mb-5 {
    margin: 0 !important;
    padding: 0;
}