/* Base Styles */
:root {
  /* Color Palette */
  --primary-color: #d62828;   /* Bold Red */
  --secondary-color: #ffffff; /* Pure White */
  --accent-color: #1c1c1c;    /* Dark Gray */
  --light-color: #f5f5f5;     /* Light Gray (Silver) */
  --dark-color: #2e2e2e;      /* Deeper Dark Gray for text */
  --gray-color: #a8a8a8;      /* Neutral Gray for borders or icons */
  --silver-color: #f5f5f5;    /* Used for soft backgrounds */

  /* Layout Settings */
  --header-height: 80px;
  --nav-height: 50px;

  /* Transitions & Effects */
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
nav a:focus,
nav a:active,
nav a {
  outline: none;
  text-decoration: none;

}
body {
  
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(230, 57, 70, 0.3);
}

.btn:hover {
  background-color: #d32836;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(230, 57, 70, 0.4);
}


.btn-full {
  width: 100%;
  display: block;
}

.btn-secondary {
  background-color: var(--secondary-color);
  box-shadow: 0 2px 5px rgba(69, 123, 157, 0.3);
}

.btn-secondary:hover {
  background-color: #3a6a8a;
  box-shadow: 0 4px 8px rgba(69, 123, 157, 0.4);
}
.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap; /* allows wrapping if needed on small screens */
}


.number {
  position: absolute;
  top: -5px;
  right: -5px;
  background: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  width: 10px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 40px;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: bold;
}
.number {
  position: absolute;
  top: -5px;
  right: -5px;
  background: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-header p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.section-header.left-align {
  text-align: left;
}

.section-header.left-align h2::after {
  left: 0;
  transform: none;
}

.mt-4 {
  margin-top: 20px;
}

/* Header Styles */
header {
  
  background-color: var(--primary-color);
  height: var(--header-height);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 10px; /* space from top of header */
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-circle {
  background-color: white;
  border-radius: 50%;
  width: 40px; /* smaller circle */
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-image {
  width: 50px; /* smaller logo inside circle */
  height: auto;
}

.logo h1 {
  color: white;
  font-size: 1.4rem;
  margin: 0;
  padding-left: 10px;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-image {
    height: 40px;
    max-width: 50px;
  }
  
  .logo h1 {
    font-size: 24px;
  }
  
  .logo a {
    gap: 8px;
  }
}

@media (max-width: 576px) {
  .logo-image {
    height: 35px;
    max-width: 45px;
  }
  
  .logo h1 {
    font-size: 20px;
  }
  
  .logo a {
    gap: 6px;
  }
}

.search-bar {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 5px;
  transition: var(--transition);
  flex: 0 1 350px;
  border: 1px solid transparent;
}

.search-bar:hover,
.search-bar:focus-within {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
}

.search-bar input {
  padding: 10px 15px;
  border: none;
  border-radius: 50px 0 0 50px;
  width: 100%;
  font-size: 14px;
  background-color: transparent;
  color: white;
}

.search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-bar input:focus {
  outline: none;
}

.search-bar button {
  padding: 10px 15px;
  background-color: white;
  color: var(--primary-color);
  border: none;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-bar button:hover {
  background-color: var(--light-color);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-action-btn {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.header-action-btn:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Navigation Styles */
nav {
  background-color: var(--accent-color);
  height: var(--nav-height);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 999;
}

nav .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  height: 100%;
  gap: 2px;
}

nav ul li {
  position: relative;
  height: 100%;
}

nav ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  color: white;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 70%;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

nav ul li a.active {
  font-weight: 600;
}

/* Dropdown menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: var(--accent-color) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.nav-dropdown-content a:hover {
  background-color: rgba(230, 57, 70, 0.1) !important;
  color: var(--primary-color) !important;
  padding-left: 25px;
}

.nav-dropdown-content a::after {
  display: none;
}

/* Mobile navigation */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 992px) {
  header .container {
    padding: 0 15px;
  }

  .search-bar {
    flex: 0 1 200px;
  }

  nav .container {
    padding: 0 15px;
  }

  .mobile-nav-toggle {
    display: block;
  }

  nav ul {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 250px;
    height: calc(100vh - var(--header-height));
    background-color: var(--accent-color);
    flex-direction: column;
    gap: 0;
    transition: left 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
  }

  nav.active ul {
    left: 0;
  }

  nav ul li {
    width: 100%;
    height: auto;
  }

  nav ul li a {
    padding: 15px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: flex-start;
  }

  nav ul li a::after {
    display: none;
  }

  nav ul li a:hover,
  nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 30px;
  }

  .nav-dropdown-content {
    position: static;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    transition: max-height 0.3s ease;
  }

  .nav-dropdown.active .nav-dropdown-content {
    max-height: 500px;
  }

  .nav-dropdown-content a {
    color: rgba(255, 255, 255, 0.8) !important;
    padding-left: 40px;
  }

  .nav-dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    padding-left: 45px;
  }

  .nav-dropdown > a::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: transform 0.3s ease;
  }

  .nav-dropdown.active > a::after {
    transform: rotate(180deg);
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  nav.active + .overlay {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
    padding: 10px 15px;
  }

  .logo {
    margin-bottom: 0;
  }

  .search-bar {
    order: 3;
    flex: 1 0 100%;
    margin-top: 10px;
  }

  .header-actions {
    margin-left: auto;
  }

  header .container {
    flex-direction: column;
    padding: 15px 0;
  }

  .logo {
    margin-bottom: 15px;
  }

  .search-bar {
    width: 100%;
  }

  .search-bar input {
    width: 100%;
  }

  nav ul {
    flex-wrap: wrap;
  }

  nav ul li {
    flex: 1;
    min-width: 120px;
    text-align: center;
  }

  nav ul li a {
    justify-content: center;
    padding: 10px;
  }

  .hero {
    height: 450px;
  }

  .slide-content h2 {
    font-size: 28px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .about-content {
    flex-direction: column;
  }

  .footer-section {
    min-width: 100%;
  }

  .visa-type-selection {
    flex-direction: column;
    align-items: center;
  }

  .visa-type-card {
    width: 100%;
  }

  .form-actions {
    flex-direction: column;
    gap: 15px;
  }

  .form-actions button {
    width: 100%;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .stat-item {
    min-width: 100%;
  }

  .partner {
    min-width: 100%;
  }

  .prev,
  .next {
    width: 40px;
    height: 40px;
  }

  .prev-testimonial,
  .next-testimonial {
    display: none;
  }

  .visa-box {
    min-width: 100%;
  }

  .contact-options {
    flex-direction: column;
    gap: 10px;
  }

  .contact-option:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* Hero Section Styles */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.slider {
  position: relative;
  height: 100%;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 30px;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: var(--border-radius);
  backdrop-filter: blur(5px);
  transform: translateY(0);
  transition: transform 0.5s ease;
}

.slide.active .slide-content {
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 700;
}

.slide-content p {
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 300;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.prev:hover,
.next:hover {
  background-color: var(--primary-color);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active,
.dot:hover {
  background-color: var(--primary-color);
}

/* Stats Section Styles */
.stats {
  padding: 80px 0;
  background-color: var(--light-color);
}

.stats .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 25px;
  margin: 10px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: white;
  font-size: 24px;
}

.stat-content {
  flex: 1;
}

.counter {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
  line-height: 1;
}

.stat-item h3 {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

/* Featured Destinations */
.featured-destinations {
  padding: 80px 0;
  background-color: white;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.destination-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.destination-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.destination-price {
  background-color: var(--primary-color);
  color: white;
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
}

.destination-content {
  padding: 25px;
}

.destination-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.destination-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: #666;
  font-size: 14px;
}

.destination-meta span {
  display: flex;
  align-items: center;
}

.destination-meta span i {
  margin-right: 5px;
  color: var(--primary-color);
}

.destination-content p {
  margin-bottom: 20px;
  color: #666;
}

/* Partners Section Styles */
.partners {
  padding: 60px 0;
  background-color: var(--light-color);
}

.partner-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.partner {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 20px;
  margin: 10px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* About Us Section Styles */
.about-us {
  padding: 80px 0;
  background-color: white;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.experience-badge span:first-child {
  font-size: 28px;
  line-height: 1;
}

.experience-badge span:last-child {
  font-size: 16px;
  font-weight: 400;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #666;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.feature {
  display: flex;
  align-items: center;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 20px;
}

.feature-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--accent-color);
}

.feature-text p {
  font-size: 14px;
  margin-bottom: 0;
  color: #666;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--light-color);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.testimonial {
  display: none;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.testimonial-content {
  padding: 30px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 24px;
  color: rgba(230, 57, 70, 0.2);
}

.quote {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  padding-left: 40px;
}

.rating {
  margin-bottom: 20px;
  color: #ffc107;
}

.testimonial-author {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  background-color: var(--accent-color);
  color: white;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid white;
}

.author-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.author-info p {
  font-size: 14px;
  opacity: 0.8;
}

.prev-testimonial,
.next-testimonial {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  color: var(--accent-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  z-index: 1;
}

.prev-testimonial {
  left: -20px;
}

.next-testimonial {
  right: -20px;
}

.prev-testimonial:hover,
.next-testimonial:hover {
  background-color: var(--primary-color);
  color: white;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Newsletter Section */
.newsletter {
  padding: 60px 0;
  background-color: var(--accent-color);
  color: white;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.newsletter-text {
  flex: 1;
  min-width: 300px;
}

.newsletter-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.newsletter-text p {
  opacity: 0.8;
}

.newsletter-form {
  flex: 1;
  min-width: 300px;
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 16px;
}

.newsletter-form .btn {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 0 25px;
}

/* Footer Styles */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
  padding-right: 20px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-section p {
  margin-bottom: 15px;
  line-height: 1.8;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: white;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
  opacity: 1;
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-info li i {
  margin-right: 10px;
  margin-top: 5px;
  color: var(--primary-color);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 24px;
}

.accreditations {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: white;
  opacity: 0.8;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary-color);
  opacity: 1;
}

/* Visa Page Styles */
.visa-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/placeholder.svg?height=400&width=1600");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0 60px;
  position: relative;
}

.electronic-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/placeholder.svg?height=400&width=1600&text=Electronic Visa");
}

.regular-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/placeholder.svg?height=400&width=1600&text=Regular Visa");
}

.visa-banner h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.visa-banner p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 20px;
}

.breadcrumbs {
  font-size: 14px;
  opacity: 0.8;
}

.breadcrumbs a {
  color: white;
  opacity: 0.8;
}

.breadcrumbs a:hover {
  color: var(--primary-color);
  opacity: 1;
}

/* Visa Type Selection */
.visa-type-selection {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.visa-type-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.visa-type-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.type-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 36px;
  transition: var(--transition);
}

.visa-type-card:hover .type-icon {
  background-color: var(--primary-color);
  color: white;
}

.visa-type-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.visa-type-card p {
  margin-bottom: 20px;
  color: #666;
}

.visa-type-card ul {
  text-align: left;
  margin-bottom: 25px;
}

.visa-type-card ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.visa-type-card ul li i {
  color: var(--primary-color);
  margin-right: 10px;
}

.visa-type-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.processing-time {
  color: #666;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.processing-time i {
  margin-right: 5px;
  color: var(--primary-color);
}

/* Visa Process Section */
.visa-process {
  padding: 80px 0;
  background-color: var(--light-color);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 20px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  right: 0;
  width: 50%;
  height: 2px;
  background-color: var(--primary-color);
}

.process-step:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: var(--primary-color);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: var(--shadow-sm);
}

.step-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.process-step p {
  font-size: 14px;
  color: #666;
}

/* Visa Options Section */
.visa-options-section {
  padding: 80px 0;
  background-color: white;
}

.visa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.visa-box {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid #eee;
}

.visa-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.visa-box-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.visa-box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.visa-box:hover .visa-box-image img {
  transform: scale(1.1);
}

.visa-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
}

.visa-box-content {
  padding: 25px;
}

.visa-box-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.country-flag {
  width: 30px;
  height: 20px;
  margin-right: 10px;
  border-radius: 2px;
  overflow: hidden;
}

.visa-box-header h3 {
  font-size: 20px;
  color: var(--accent-color);
}

.visa-box-content p {
  margin-bottom: 20px;
  color: #666;
  font-size: 15px;
}

.visa-box-details {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #666;
}

.detail-item i {
  margin-right: 5px;
  color: var(--primary-color);
}

/* Visa Benefits Section */
.visa-benefits {
  padding: 80px 0;
  background-color: var(--light-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 28px;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background-color: var(--primary-color);
  color: white;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.benefit-card p {
  color: #666;
}

/* Visa Services Section */
.visa-services {
  padding: 80px 0;
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
}

.service-icon i {
  font-size: 28px;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Visa Details Page */
.country-banner {
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0 60px;
  position: relative;
}

.country-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.country-info {
  position: relative;
  display: flex;
  align-items: center;
}

.country-flag {
  margin-right: 20px;
}

.country-flag img {
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.country-details h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.visa-information {
  padding: 80px 0;
  background-color: white;
}

.visa-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.visa-details {
  flex: 2;
  min-width: 300px;
}

.visa-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.highlight {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 20px;
  display: flex;
  align-items: center;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 20px;
  box-shadow: var(--shadow-sm);
}

.highlight-content h3 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--accent-color);
}

.highlight-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.visa-description {
  margin-top: 30px;
}

.visa-description h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.visa-description p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #666;
}

.check-list {
  margin-bottom: 30px;
}

.check-list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: #666;
}

.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.visa-sidebar {
  flex: 1;
  min-width: 300px;
}

.application-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid #eee;
}

.application-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.application-card p {
  margin-bottom: 20px;
  color: #666;
}

.price-tag {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 15px;
  text-align: center;
  margin-bottom: 20px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.price-note {
  font-size: 14px;
  color: #666;
}

.benefits-list {
  margin-bottom: 25px;
}

.benefits-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.benefits-list li i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 5px;
}

.info-card {
  background-color: var(--accent-color);
  color: white;
  border-radius: var(--border-radius);
  padding: 30px;
}

.info-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.info-card p {
  margin-bottom: 20px;
  opacity: 0.8;
}

.contact-options {
  display: flex;
  justify-content: space-between;
}

.contact-option {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  padding: 15px;
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.contact-option:not(:last-child) {
  margin-right: 10px;
}

.contact-option:hover {
  background-color: var(--primary-color);
  color: white;
}

.contact-option i {
  font-size: 24px;
  margin-bottom: 5px;
}

/* Application Form */
.application-form {
  padding: 80px 0;
  background-color: var(--light-color);
}

.visa-form {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.form-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
  gap: 20px;
}

.form-group {
  flex: 1;
  min-width: 250px;
}

.form-group.full-width {
  flex: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--accent-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group small {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #666;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: var(--light-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(230, 57, 70, 0.1);
}

.faq-question h3 {
  font-size: 18px;
  color: var(--accent-color);
  margin: 0;
}

.faq-question i {
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 1000px;
}

/* Contact CTA Section */
.contact-cta {
  padding: 80px 0;
  background: linear-gradient(rgba(29, 53, 87, 0.9), rgba(29, 53, 87, 0.9)),
    url("/placeholder.svg?height=400&width=1600");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}


/* Loading Styles */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(230, 57, 70, 0.2);
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  header .container {
    padding: 0 15px;
  }

  .search-bar {
    flex: 0 1 200px;
  }

  nav .container {
    padding: 0 15px;
  }

  .mobile-nav-toggle {
    display: block;
  }

  nav ul {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 250px;
    height: calc(100vh - var(--header-height));
    background-color: var(--accent-color);
    flex-direction: column;
    gap: 0;
    transition: left 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
  }

  nav.active ul {
    left: 0;
  }

  nav ul li {
    width: 100%;
    height: auto;
  }

  nav ul li a {
    padding: 15px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: flex-start;
  }

  nav ul li a::after {
    display: none;
  }

  nav ul li a:hover,
  nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 30px;
  }

  .nav-dropdown-content {
    position: static;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    transition: max-height 0.3s ease;
  }

  .nav-dropdown.active .nav-dropdown-content {
    max-height: 500px;
  }

  .nav-dropdown-content a {
    color: rgba(255, 255, 255, 0.8) !important;
    padding-left: 40px;
  }

  .nav-dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    padding-left: 45px;
  }

  .nav-dropdown > a::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: transform 0.3s ease;
  }

  .nav-dropdown.active > a::after {
    transform: rotate(180deg);
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  nav.active + .overlay {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
    padding: 10px 15px;
  }

  .logo {
    margin-bottom: 0;
  }

  .search-bar {
    order: 3;
    flex: 1 0 100%;
    margin-top: 10px;
  }

  .header-actions {
    margin-left: auto;
  }

  header .container {
    flex-direction: column;
    padding: 15px 0;
  }

  .logo {
    margin-bottom: 15px;
  }

  .search-bar {
    width: 100%;
  }

  .search-bar input {
    width: 100%;
  }

  nav ul {
    flex-wrap: wrap;
  }

  nav ul li {
    flex: 1;
    min-width: 120px;
    text-align: center;
  }

  nav ul li a {
    justify-content: center;
    padding: 10px;
  }

  .hero {
    height: 450px;
  }

  .slide-content h2 {
    font-size: 28px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .about-content {
    flex-direction: column;
  }

  .footer-section {
    min-width: 100%;
  }

  .visa-type-selection {
    flex-direction: column;
    align-items: center;
  }

  .visa-type-card {
    width: 100%;
  }

  .form-actions {
    flex-direction: column;
    gap: 15px;
  }

  .form-actions button {
    width: 100%;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .stat-item {
    min-width: 100%;
  }

  .partner {
    min-width: 100%;
  }

  .prev,
  .next {
    width: 40px;
    height: 40px;
  }

  .prev-testimonial,
  .next-testimonial {
    display: none;
  }

  .visa-box {
    min-width: 100%;
  }

  .contact-options {
    flex-direction: column;
    gap: 10px;
  }

  .contact-option:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* Hero Section Styles */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.slider {
  position: relative;
  height: 100%;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 30px;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: var(--border-radius);
  backdrop-filter: blur(5px);
  transform: translateY(0);
  transition: transform 0.5s ease;
}

.slide.active .slide-content {
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 700;
}

.slide-content p {
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 300;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.prev:hover,
.next:hover {
  background-color: var(--primary-color);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active,
.dot:hover {
  background-color: var(--primary-color);
}

/* Stats Section Styles */
.stats {
  padding: 80px 0;
  background-color: var(--light-color);
}

.stats .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 25px;
  margin: 10px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: white;
  font-size: 24px;
}

.stat-content {
  flex: 1;
}

.counter {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
  line-height: 1;
}

.stat-item h3 {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

/* Featured Destinations */
.featured-destinations {
  padding: 80px 0;
  background-color: white;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.destination-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.destination-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.destination-price {
  background-color: var(--primary-color);
  color: white;
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
}

.destination-content {
  padding: 25px;
}

.destination-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.destination-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: #666;
  font-size: 14px;
}

.destination-meta span {
  display: flex;
  align-items: center;
}

.destination-meta span i {
  margin-right: 5px;
  color: var(--primary-color);
}

.destination-content p {
  margin-bottom: 20px;
  color: #666;
}

/* Partners Section Styles */
.partners {
  padding: 60px 0;
  background-color: var(--light-color);
}

.partner-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.partner {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 20px;
  margin: 10px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* About Us Section Styles */
.about-us {
  padding: 80px 0;
  background-color: white;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.experience-badge span:first-child {
  font-size: 28px;
  line-height: 1;
}

.experience-badge span:last-child {
  font-size: 16px;
  font-weight: 400;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #666;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.feature {
  display: flex;
  align-items: center;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 20px;
}

.feature-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--accent-color);
}

.feature-text p {
  font-size: 14px;
  margin-bottom: 0;
  color: #666;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--light-color);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.testimonial {
  display: none;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.testimonial-content {
  padding: 30px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 24px;
  color: rgba(230, 57, 70, 0.2);
}

.quote {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  padding-left: 40px;
}

.rating {
  margin-bottom: 20px;
  color: #ffc107;
}

.testimonial-author {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  background-color: var(--accent-color);
  color: white;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid white;
}

.author-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.author-info p {
  font-size: 14px;
  opacity: 0.8;
}

.prev-testimonial,
.next-testimonial {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  color: var(--accent-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  z-index: 1;
}

.prev-testimonial {
  left: -20px;
}

.next-testimonial {
  right: -20px;
}

.prev-testimonial:hover,
.next-testimonial:hover {
  background-color: var(--primary-color);
  color: white;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Newsletter Section */
.newsletter {
  padding: 60px 0;
  background-color: var(--accent-color);
  color: white;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.newsletter-text {
  flex: 1;
  min-width: 300px;
}

.newsletter-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.newsletter-text p {
  opacity: 0.8;
}

.newsletter-form {
  flex: 1;
  min-width: 300px;
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 16px;
}

.newsletter-form .btn {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 0 25px;
}

/* Footer Styles */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
  padding-right: 20px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-section p {
  margin-bottom: 15px;
  line-height: 1.8;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: white;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
  opacity: 1;
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-info li i {
  margin-right: 10px;
  margin-top: 5px;
  color: var(--primary-color);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 24px;
}

.accreditations {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: white;
  opacity: 0.8;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary-color);
  opacity: 1;
}

/* Visa Page Styles */
.visa-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/placeholder.svg?height=400&width=1600");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0 60px;
  position: relative;
}

.electronic-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/placeholder.svg?height=400&width=1600&text=Electronic Visa");
}

.regular-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/placeholder.svg?height=400&width=1600&text=Regular Visa");
}

.visa-banner h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.visa-banner p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 20px;
}

.breadcrumbs {
  font-size: 14px;
  opacity: 0.8;
}

.breadcrumbs a {
  color: white;
  opacity: 0.8;
}

.breadcrumbs a:hover {
  color: var(--primary-color);
  opacity: 1;
}

/* Visa Type Selection */
.visa-type-selection {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.visa-type-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.visa-type-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.type-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 36px;
  transition: var(--transition);
}

.visa-type-card:hover .type-icon {
  background-color: var(--primary-color);
  color: white;
}

.visa-type-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.visa-type-card p {
  margin-bottom: 20px;
  color: #666;
}

.visa-type-card ul {
  text-align: left;
  margin-bottom: 25px;
}

.visa-type-card ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.visa-type-card ul li i {
  color: var(--primary-color);
  margin-right: 10px;
}

.visa-type-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.processing-time {
  color: #666;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.processing-time i {
  margin-right: 5px;
  color: var(--primary-color);
}

/* Visa Process Section */
.visa-process {
  padding: 80px 0;
  background-color: var(--light-color);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 20px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  right: 0;
  width: 50%;
  height: 2px;
  background-color: var(--primary-color);
}

.process-step:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: var(--primary-color);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: var(--shadow-sm);
}

.step-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.process-step p {
  font-size: 14px;
  color: #666;
}

/* Visa Options Section */
.visa-options-section {
  padding: 80px 0;
  background-color: white;
}

.visa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.visa-box {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid #eee;
}

.visa-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.visa-box-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.visa-box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.visa-box:hover .visa-box-image img {
  transform: scale(1.1);
}

.visa-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
}

.visa-box-content {
  padding: 25px;
}

.visa-box-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.country-flag {
  width: 30px;
  height: 20px;
  margin-right: 10px;
  border-radius: 2px;
  overflow: hidden;
}

.visa-box-header h3 {
  font-size: 20px;
  color: var(--accent-color);
}

.visa-box-content p {
  margin-bottom: 20px;
  color: #666;
  font-size: 15px;
}

.visa-box-details {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #666;
}

.detail-item i {
  margin-right: 5px;
  color: var(--primary-color);
}

/* Visa Benefits Section */
.visa-benefits {
  padding: 80px 0;
  background-color: var(--light-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 28px;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background-color: var(--primary-color);
  color: white;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.benefit-card p {
  color: #666;
}

/* Visa Services Section */
.visa-services {
  padding: 80px 0;
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
}

.service-icon i {
  font-size: 28px;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Visa Details Page */
.country-banner {
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0 60px;
  position: relative;
}

.country-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.country-info {
  position: relative;
  display: flex;
  align-items: center;
}

.country-flag {
  margin-right: 20px;
}

.country-flag img {
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.country-details h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.visa-information {
  padding: 80px 0;
  background-color: white;
}

.visa-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.visa-details {
  flex: 2;
  min-width: 300px;
}

.visa-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.highlight {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 20px;
  display: flex;
  align-items: center;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 20px;
  box-shadow: var(--shadow-sm);
}

.highlight-content h3 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--accent-color);
}

.highlight-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.visa-description {
  margin-top: 30px;
}

.visa-description h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.visa-description p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #666;
}

.check-list {
  margin-bottom: 30px;
}

.check-list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: #666;
}

.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.visa-sidebar {
  flex: 1;
  min-width: 300px;
}

.application-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid #eee;
}

.application-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.application-card p {
  margin-bottom: 20px;
  color: #666;
}

.price-tag {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 15px;
  text-align: center;
  margin-bottom: 20px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.price-note {
  font-size: 14px;
  color: #666;
}

.benefits-list {
  margin-bottom: 25px;
}

.benefits-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.benefits-list li i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 5px;
}

.info-card {
  background-color: var(--accent-color);
  color: white;
  border-radius: var(--border-radius);
  padding: 30px;
}

.info-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.info-card p {
  margin-bottom: 20px;
  opacity: 0.8;
}

.contact-options {
  display: flex;
  justify-content: space-between;
}

.contact-option {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  padding: 15px;
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.contact-option:not(:last-child) {
  margin-right: 10px;
}

.contact-option:hover {
  background-color: var(--primary-color);
  color: white;
}

.contact-option i {
  font-size: 24px;
  margin-bottom: 5px;
}

/* Application Form */
.application-form {
  padding: 80px 0;
  background-color: var(--light-color);
}

.visa-form {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.form-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
  gap: 20px;
}

.form-group {
  flex: 1;
  min-width: 250px;
}

.form-group.full-width {
  flex: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--accent-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group small {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #666;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: var(--light-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(230, 57, 70, 0.1);
}

.faq-question h3 {
  font-size: 18px;
  color: var(--accent-color);
  margin: 0;
}

.faq-question i {
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 1000px;
}

/* Contact CTA Section */
.contact-cta {
  padding: 80px 0;
  background: linear-gradient(rgba(29, 53, 87, 0.9), rgba(29, 53, 87, 0.9)),
    url("/placeholder.svg?height=400&width=1600");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}



/* Loading Styles */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(230, 57, 70, 0.2);
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .search-bar input {
    width: 200px;
  }

  .process-step:not(:last-child)::after,
  .process-step:not(:first-child)::before {
    display: none;
  }

  .process-steps {
    flex-direction: column;
    gap: 30px;
  }

  .process-step {
    max-width: 400px;
    margin: 0 auto;
  }

  .visa-content {
    flex-direction: column;
  }

  .visa-sidebar {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    padding: 15px 0;
  }

  .logo {
    margin-bottom: 15px;
  }

  .search-bar {
    width: 100%;
  }

  .search-bar input {
    width: 100%;
  }

  nav ul {
    flex-wrap: wrap;
  }

  nav ul li {
    flex: 1;
    min-width: 120px;
    text-align: center;
  }

  nav ul li a {
    justify-content: center;
    padding: 10px;
  }

  .hero {
    height: 450px;
  }

  .slide-content h2 {
    font-size: 28px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .about-content {
    flex-direction: column;
  }

  .footer-section {
    min-width: 100%;
  }

  .visa-type-selection {
    flex-direction: column;
    align-items: center;
  }

  .visa-type-card {
    width: 100%;
  }

  .form-actions {
    flex-direction: column;
    gap: 15px;
  }

  .form-actions button {
    width: 100%;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .stat-item {
    min-width: 100%;
  }

  .partner {
    min-width: 100%;
  }

  .prev,
  .next {
    width: 40px;
    height: 40px;
  }

  .prev-testimonial,
  .next-testimonial {
    display: none;
  }

  .visa-box {
    min-width: 100%;
  }

  .contact-options {
    flex-direction: column;
    gap: 10px;
  }

  .contact-option:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}


