* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;

}

/* REMOVE INHERIT COLOR (IMPORTANT) */
a {
  text-decoration: none;
}

/* ===== HEADER & NAVBAR ===== */
:root {
  --primary-color: #9f0808;
  --secondary-color: rgb(27, 18, 18);
  --text-color: white;
  --light-text: #fff;
  --bg-color: #fff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #f8f9fa;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-color);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  width: 100%;
  margin: 0 auto;
}

/* Logo Styles */
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  z-index: 1001;
}

.logo:hover {
  color: var(--secondary-color);
  transform: scale(1.05);
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: rgb(27, 18, 18);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown Styles */
.nav-item--dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  color: rgb(27, 18, 18);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0;
  font-family: inherit;
  font-size: inherit;
  transition: var(--transition);
}

.nav-dropdown-toggle:hover {
  color: var(--primary-color);
}

.nav-dropdown-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  transition: var(--transition);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-color);
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 0.5rem 0;
  list-style: none;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.nav-item--dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item--dropdown:hover .nav-dropdown-caret {
  transform: rotate(180deg);
}

.nav-dropdown a {
  display: block;
  padding: 0.7rem 1.5rem;
  color: rgb(27, 18, 18);
  text-decoration: none;
  transition: var(--transition);
}

.nav-dropdown a:hover {
  background-color: rgba(58, 134, 255, 0.1);
  color: var(--primary-color);
}

/* Apply Now Button */
.apply-now-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--light-text);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  text-align: center;
}

.apply-now-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.apply-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(58, 134, 255, 0.4);
}

.apply-now-btn:hover::before {
  opacity: 1;
}

/* Desktop Apply Now Button */
.desktop-apply-btn {
  display: block;
}

/* Mobile Apply Now Button */
.mobile-apply-btn {
  display: none;
  margin-top: 1rem;
  width: 100%;
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  color: var(--primary-color);
  font-size: 1.5rem;
  transition: var(--transition);
}

.nav-toggle:hover {
  color: var(--primary-color);
}

/* Mobile Styles */
@media (max-width: 1050px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    /* Changed to 100% */
    height: 100vh;
    color: var(--light-text);
    background-color: #071224;
    flex-direction: column;
    justify-content: center;
    /* Center items vertically */
    align-items: center;
    /* Center items horizontally */
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .nav-links.active {
    padding-top: 40%;
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
    margin-bottom: 1.5rem;
    text-align: center;
    /* Center text */
  }

  .nav-links a {
    display: block;
    width: 100%;
    color: var(--light-text);
    padding: 1rem 0;
    /* border-bottom: 1px solid #eee; */
    font-size: 1.1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-item--dropdown {
    width: 100%;

  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: center;
    padding: 1rem 0;
    /* border-bottom: 1px solid #eee; */
    font-size: 1.1rem;
    color: var(--light-text);
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: transparent;
    padding-left: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-dropdown.active {
    max-height: 300px;
  }

  .nav-dropdown a {
    display: block;
    padding: 0.8rem 0;
    text-align: center;
    /* border-bottom: 1px solid #f0f0f0; */
  }

  /* Apply Now Button on Mobile */
  .desktop-apply-btn {
    display: none;
  }

  .mobile-apply-btn {
    display: block;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
  }
}

/* media query from 700 to 970  */

@media (min-width: 900px) and (max-width: 1000px) {
  .nav-links.active {
    padding-top: 45%;
    transform: translateX(0);
  }

  .nav-links {
    width: 100%;
    background-color: #071224;
  }
}

@media (min-width: 800px) and (max-width: 900px) {
  .nav-links.active {
    padding-top: 50%;

  }

  .nav-links {
    width: 100%;
    background-color: #071224;
  }
}

@media (min-width: 700px) and (max-width: 800px) {
  .nav-links.active {
    padding-top: 60%;

  }

  .nav-links {
    width: 100%;
    background-color: #071224;
  }
}

@media (min-width: 650px) and (max-width: 700px) {
  .nav-links.active {
    padding-top: 65%;

  }

  .nav-links {
    width: 100%;
    background-color: #071224;
  }
}

@media (min-width: 600px) and (max-width: 650px) {
  .nav-links.active {
    padding-top: 70%;

  }

  .nav-links {
    width: 100%;
    background-color: #071224;
  }
}

@media (min-width: 500px) and (max-width: 600px) {
  .nav-links.active {
    padding-top: 80%;

  }

  .nav-links {
    width: 100%;
    background-color: #071224;
  }
}

@media (min-width: 370px) and (max-width: 500px) {
  .nav-links.active {
    padding-top: 85%;

  }

  .nav-links {
    width: 100%;
    background-color: #071224;
  }

}

@media (min-width: 0px) and (max-width: 370px) {
  .nav-links.active {
    padding-top: 90%;

  }

  .nav-links {
    width: 100%;
    background-color: #071224;
  }

}

/* header and navbar end  */

/* ==== HERO SECTION ==== */
.hero {
  background-color: #f8fafc;
  padding-top: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 2rem;
}

.hero-content {
  flex: 1 1 500px;
  color: #0f172a;
}

.tagline {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  border: 1px solid #cbd5e1;
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  color: #0f172a;
}

.hero-content h1 span {
  color: #0f172a;
}

.description {
  margin: 20px 0 30px;
  font-size: 1rem;
  color: #475569;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 5%;
}

.explore-now-btn {
  background-color: #b91c1c;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.explore-now-btn:hover {
  background-color: #dc2626;
}

.btn-secondary {
  display: flex;
  align-items: center;
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.play-icon {
  background: #fff;
  color: #b91c1c;
  border-radius: 50%;
  padding: 6px 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  margin-right: 8px;
}

.btn-secondary:hover {
  color: #b91c1c;
}

.hero-image {
  padding-top: 5%;
  flex: 1 1 400px;
  position: relative;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  background: linear-gradient(180deg, #b91c1c 0%, #991b1b 100%);
  padding: 10px;
}

.plane-icon {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 22px;
  color: white;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 992px) {
  .hero {
    padding: 60px 5%;
  }

  .hero-container {
    /* flex-direction: column-reverse; */
    text-align: center;
    gap: 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-content {
    margin-top: 40px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-image img {

    max-width: 350px;
  }
}



/* Visa Section Styles */
.visa-section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
  margin: 10 auto;
  padding: 0 2rem;
  background-color: #f8f9fa;
}

.visa-section__header {

  padding-top: 5%;
  text-align: center;
  margin-bottom: 50px;
}

.visa-section__title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
}

.visa-section__s ubtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.visa-section__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.visa-section__card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  transition: transform 0.3s ease;
}

.visa-section__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.visa-section__card-title {
  font-size: 1.8rem;
  color: #b91c1c;
  margin-bottom: 15px;
  font-weight: 600;
}

.visa-section__card-description {
  color: #5d6d7e;
  line-height: 1.6;
  margin-bottom: 20px;
}

.visa-section__button {
  display: inline-block;
  background-color: #b91c1c;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.visa-section__button:hover {
  background-color: rgba(203, 67, 67, 0.516);
  color: black;
}

.visa-section__about-link {
  text-align: center;
  margin-top: 40px;
}

.visa-section__about-link a {
  color: #b91c1c;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.visa-section__about-link a:hover {
  color: #2a1212;
  text-decoration: underline;

}

/* Responsive Design */
@media (max-width: 768px) {
  .visa-section__title {
    font-size: 2rem;
  }

  .visa-section__content {
    flex-direction: column;
    align-items: center;
  }

  .visa-section__card {
    width: 100%;
  }
}



/* Visa Services Section Styles */
.visa-services {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
  margin: 0 auto;
  padding: 80px 2rem;
  background-color: #ffffff;
}

.visa-services__header {
  text-align: center;
  margin-bottom: 60px;
}

.visa-services__title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.visa-services__title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #b91c1c;
  border-radius: 2px;
}

.visa-services__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.visa-services__card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  padding: 40px 30px;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-top: 5px solid #b91c1c;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

/* Dark overlay that appears on hover */
.visa-services__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

/* Content wrapper for text animation */
.visa-services__card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}

/* Hover state: overlay darkens and content slides up */
.visa-services__card:hover::before {
  opacity: 1;
}

.visa-services__card:hover .visa-services__card-content {
  transform: translateY(0);
  opacity: 1;
}

/* Card title inside content wrapper */
.visa-services__card-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.visa-services__card-title:before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #b91c1c;
  border-radius: 50%;
  margin-right: 10px;
}

/* Card description inside content wrapper */
.visa-services__card-description {
  color: #ecf0f1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Optional: Add a "Learn More" button that also animates */
.visa-services__card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #db3434;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.visa-services__card-button:hover {
  background-color: #b92929;
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .visa-services__card {
    min-height: 320px;
    padding: 30px 20px;
  }

  .visa-services__card-title {
    font-size: 1.25rem;
  }

  .visa-services__card-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .visa-services__card {
    min-height: 280px;
    padding: 20px 16px;
  }

  .visa-services__card-title {
    font-size: 1.1rem;
  }
}



/* Testimonials Section Styles */
#testimonials-section {
  background-color: #0c1632;
  /* navy dark background */
  padding: 60px 20px 80px 20px;
  color: #fff;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.container-testimonials {
  max-width: 1100px;
  margin: 0 auto;
}

.subheading-testimonials {
  font-size: 10px;
  letter-spacing: 1.5px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 5px 12px;
  margin-bottom: 10px;
  color: #abc0db;
  border-radius: 2px;
}

.title-testimonials {
  font-size: 2.5rem;
  color: #981b18;
  /* dark red */
  margin-bottom: 12px;
  font-weight: 700;
}

.desc-testimonials {
  font-size: 0.8rem;
  color: #a5abb8;
  max-width: 300px;
  margin: 0 auto 40px auto;
  line-height: 1.3;
}

/* Grid layout for review cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px 30px;
  justify-items: center;
}

/* Single Review Card */
.review-card {
  background: linear-gradient(180deg, #981b18 0%, #110422 100%);
  border-radius: 8px;
  color: #ddd;
  padding: 25px 25px 30px 25px;
  text-align: left;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Testimonial Text */
.review-text {
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 14px;
  color: #cfa5a2;
}

/* Stars */
.stars {
  font-size: 1rem;
  color: #ffd500;
  /* gold star color */
  margin-bottom: 15px;
}

/* Client Info */
.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.client-name {
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
}

.client-role {
  font-size: 0.65rem;
  color: #c5bfc0;
  font-weight: 500;
}

/* Responsive typography smaller on phones */
@media (max-width: 480px) {
  .title-testimonials {
    font-size: 1.8rem;
  }

  .desc-testimonials {
    max-width: 100%;
    font-size: 0.75rem;
  }

  .review-card {
    padding: 20px 18px 22px 18px;
    min-height: auto;
  }
}

/* Coaching Section */
#coaching-section {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #0b1626;
}

.coaching-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* Left side image wrapper with gradient background */
.coaching-image-wrapper {
  position: relative;
  flex: 1 1 320px;
  /* max-width: 450px; */
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.image-background-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #981b18 0%, rgba(255, 255, 255, 0) 85%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
  z-index: 1;
}

/* Image styling with fade at bottom */
.coaching-image {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  display: block;
  object-fit: cover;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

/* Right side content */
.coaching-content {
  flex: 1 1 400px;
  max-width: 600px;
}

/* Label */
.coaching-label {
  display: inline-block;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.8px;
  color: #0b1626;
  border: 1px solid #0b1626;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* Title */
.coaching-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
  color: #0b1626;
}

/* Description paragraph */
.coaching-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #687078;
  max-width: 520px;
  margin-bottom: 30px;
}

/* Button styling */
.coaching-btn {
  background-color: #981b18;
  color: white;
  border: none;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.coaching-btn:hover {
  background-color: #7f1515;
}

/* Responsive: smaller screens stack vertically */
@media (max-width: 768px) {
  .coaching-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .coaching-image {
    width: 100%;
  }

  .coaching-content {
    max-width: 100%;
    text-align: center;
  }

  .coaching-title {
    font-size: 1.8rem;
  }

  .coaching-description {
    max-width: 100%;
    font-size: 0.88rem;
  }
}

/* Achievement Section */
#achievement-section {
  background-color: #f6f8fb;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #0b1626;
  padding: 60px 20px 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Stats wrapper */
.achievement-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  flex: 1 1 150px;
  border-right: 1px solid #d6dce6;
  padding-right: 20px;
  min-width: 120px;
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
  padding-right: 0;
}

.stat-number {
  font-weight: 700;
  font-size: 1.8rem;
  color: #0c1632;
}

.plus-sign {
  font-size: 1.2rem;
  color: #0c1632;
  vertical-align: top;
}

.stat-label {
  margin-top: 4px;
  font-weight: 400;
  font-size: 0.85rem;
  color: #718096;
}

/* CTA area with image and text */
.achievement-cta {
  background-color: #0c1632;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 25px rgba(12, 22, 50, 0.25);
  flex-wrap: wrap;
}

/* Left image */
.achievement-image-wrapper {
  flex: 1 1 320px;
  min-width: 280px;
}

.achievement-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right text content */
.achievement-text {
  flex: 1 1 420px;
  color: #fff;
  padding: 45px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.achievement-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.achievement-text p {
  font-size: 1rem;
  line-height: 1.5;
  color: #b8c1d6;
  margin-bottom: 30px;
  max-width: 450px;
}

/* Button */
.btn-apply-visa {
  background-color: #981b18;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: flex-start;
  text-transform: uppercase;
}

.btn-apply-visa:hover {
  background-color: #7f1515;
}

/* Responsive Design */
@media (max-width: 900px) {
  .achievement-cta {
    flex-direction: column;
  }

  .achievement-text {
    padding: 35px 20px 45px;
    max-width: 100%;
    text-align: center;
  }

  .btn-apply-visa {
    align-self: center;
  }

  .achievement-image-wrapper {
    min-height: 240px;
  }
}

@media (max-width: 480px) {
  .achievement-stats {
    flex-direction: column;
    gap: 15px;
  }

  .stat-item {
    border-right: none;
    padding-right: 0;
    text-align: center;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

/* Blog Section */
#blog-section {
  background-color: #fff;
  padding: 60px 20px 90px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1100px;
  margin: 0 auto;
  color: #0c1632;
  text-align: center;
}

.blog-container {
  max-width: 1100px;
  margin: 0 auto;
}

.blog-label {
  display: inline-block;
  font-size: 10px;
  color: #71716f;
  background: #e4e7ed;
  padding: 6px 18px;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.blog-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0c1632;
}

/* Grid for blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px 20px;
  justify-items: center;
}

/* Blog Card */
.blog-card {
  background: #fff;
  border: 1px solid #dce4ed;
  border-radius: 8px;
  width: 100%;
  max-width: 320px;
  box-sizing: border-box;
  box-shadow: 0 1px 4px rgba(180, 187, 199, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
  transition: box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 4px 15px rgba(180, 187, 199, 0.6);
}

/* Image wrapper with blog tag */
.blog-image-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-bottom: 1px solid #dce4ed;
  border-radius: 8px 8px 0 0;
}

.blog-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image-wrapper img {
  transform: scale(1.05);
}

/* Blog Tag */
.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #f79428;
  color: white;
  font-weight: 700;
  font-size: 10px;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

/* Content inside card */
.blog-content {
  padding: 16px 18px 22px 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-post-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0c1632;
  line-height: 1.2;
}

.blog-excerpt {
  font-size: 0.85rem;
  color: #758298;
  margin-bottom: 20px;
  line-height: 1.3;
  flex-grow: 1;
}

/* Read more link */
.blog-readmore {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1c75bc;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.blog-readmore:hover {
  color: #f79428;
}

.blog-readmore .arrow {
  font-weight: 700;
  transition: transform 0.3s ease;
}

.blog-readmore:hover .arrow {
  transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .blog-title {
    font-size: 1.7rem;
  }

  .blog-card {
    max-width: 100%;
  }
}

/* ===== Global Container Refinements ===== */
.container,
.hero-container,
.visa-section,
.visa-services,
.container-testimonials,
.coaching-container,
.blog-container,
#achievement-section {
  width: 100%;
  max-width: 1200px;
  /* margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px; */
}

/* very small screens: ensure full width, adjust padding */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero {
    padding: 40px 4%;
  }
}

/* Fluid typography for better scaling */
:root {
  --type-base: 16px;
}

html {
  font-size: var(--type-base);
}

@media (min-width: 1200px) {
  :root {
    --type-base: 18px;
  }
}

@media (max-width: 480px) {
  :root {
    --type-base: 14px;
  }
}

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Improve grid responsivity (testimonials & blog already use auto-fit) */
.reviews-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Achievement stats stack earlier on medium screens */
@media (max-width: 900px) {
  .achievement-stats {
    gap: 12px;
  }

  .stat-item {
    flex: 1 1 40%;
    text-align: center;
    border-right: none;
    padding-right: 0;
  }
}

/* reduce heavy shadows & spacing on small devices */
@media (max-width: 600px) {

  .visa-section__card,
  .visa-services__card,
  .blog-card,
  .review-card {
    padding: 18px;
  }

  .hero-image img {
    max-width: 320px;
  }

  .coaching-image-wrapper {
    width: 100%;
  }
}

/* Accessibility: visible focus outlines */
a:focus,
button:focus {
  outline-offset: 2px;
}

/* ===== Page Header Section ===== */
.page-header {
  background: linear-gradient(135deg, #d4d4d4 0%, #e8e8e8 100%);
  padding: 80px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><defs><pattern id="pattern" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M30 0 L60 30 L30 60 L0 30 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="1200" height="200" fill="url(%23pattern)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.page-header-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.page-header-title {
  font-size: 3rem;
  font-weight: 800;
  color: #8B0000;
  margin: 0;
  letter-spacing: 1px;
  text-transform: capitalize;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-header {
    padding: 60px 16px;
  }

  .page-header-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 50px 16px;
  }

  .page-header-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 40px 16px;
  }

  .page-header-title {
    font-size: 1.6rem;
  }
}

/* ===== Contact Section Styles ===== */
.contact-section {
  padding: 60px 16px;
  background: #fff;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Info Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.15);
}

.contact-card-icon {
  margin-bottom: 20px;
}

.contact-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #8B0000;
  margin: 15px 0;
}

.contact-card-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 8px 0;
}

.contact-card-link {
  display: inline-block;
  color: #8B0000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin: 6px 0;
}

.contact-card-link:hover {
  color: #5a0000;
  text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
  background: linear-gradient(180deg, rgba(155, 28, 28, 0.06), rgba(255, 255, 255, 0.9));
  padding: 36px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(11, 20, 34, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  transition: transform .18s ease, box-shadow .18s ease;
  border: 1px solid rgba(155, 28, 28, 0.06);
}

/* Make title stand out */
.contact-form-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #8B0000;
  margin: 0 0 6px;
  letter-spacing: -0.2px;
}

/* Accent subtitle under title */
.contact-form-wrapper .contact-subtitle {
  color: #575f68;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

/* Form layout: two columns on wide screens, single column on small */
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: center;
}

@media (max-width: 880px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
}

/* Input styling */
.form-input,
.form-textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(11, 20, 34, 0.06);
  background: linear-gradient(180deg, #fff, #fbfbfb);
  box-shadow: 0 6px 18px rgba(11, 20, 34, 0.03);
  font-size: 0.98rem;
  color: #111827;
  transition: box-shadow .15s ease, border-color .15s ease, transform .12s ease;
  width: 100%;
}

/* Larger textarea style */
.form-textarea {
  min-height: 140px;
  resize: vertical;
  padding-top: 12px;
}

/* Focus states */
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(139, 0, 0, 0.9);
  box-shadow: 0 8px 26px rgba(139, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Labels */
.form-label {
  font-size: 0.9rem;
  color: #2c2c2c;
  margin-bottom: 6px;
  font-weight: 600;
}

/* Submit button: modern gradient */
.btn-submit {
  grid-column: 1 / -1;
  justify-self: center;
  padding: 14px 40px;
  border-radius: 12px;
  background: linear-gradient(90deg, #b91c1c 0%, #7f1010 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px rgba(185, 28, 28, 0.18);
  border: none;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, opacity .12s ease;
}

/* Button hover */
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(185, 28, 28, 0.22);
  opacity: 0.98;
}

/* Small help text under inputs */
.form-help {
  font-size: 0.82rem;
  color: #6b7280;
  margin-top: 6px;
}

/* Add subtle icon placeholders using pseudo elements on inputs (visual only) */
.form-group {
  position: relative;
}

.form-group .form-input.iconed,
.form-group .form-textarea.iconed {
  padding-left: 44px;
}

.form-group .form-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(11, 20, 34, 0.35);
  font-size: 14px;
  pointer-events: none;
}

/* Small decorative divider */
.contact-form-wrapper::after {
  content: "";
  display: block;
  height: 1px;
  width: calc(100% + 72px);
  margin-left: -36px;
  background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.06), transparent);
  margin-top: 8px;
  border-radius: 50%;
}

/* Responsive: tighten spacing on small screens */
@media (max-width: 480px) {
  .contact-form-wrapper {
    padding: 20px;
    border-radius: 12px;
  }

  .contact-form-title {
    font-size: 1.25rem;
  }

  .btn-submit {
    padding: 12px 22px;
    width: 100%;
  }
}

/* subtle input placeholder color */
::placeholder {
  color: #9aa3ad;
  opacity: 1;
}

/* ===== Footer styles (added) ===== */
#footer-section {
  background: linear-gradient(180deg, #071224 0%, #081426 100%);
  color: #dbe7f4;
  padding: 56px 16px 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

#footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr;
  gap: 40px;
  align-items: start;
}

/* About / logo block */
#footer-about {
  grid-column: 1;
}

#footer-about #footer-logo,
#footer-about h2#footer-logo {
  font-size: 1.35rem;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: 1px;
  font-weight: 700;
}

#footer-about #footer-description {
  color: #b8c9db;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 20px;
}

/* Social icons */
#footer-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

#footer-social-icons .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform .14s ease, background .14s ease;
}

#footer-social-icons .social-icon:hover {
  transform: translateY(-4px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.12));
}

/* Links column */
#footer-links {
  grid-column: 2;
}

#footer-contact {
  grid-column: 3;
}

#footer-links .footer-heading,
#footer-contact .footer-heading {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-list,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li,
.footer-contact-list li {
  margin: 10px 0;
}

.footer-list a {
  color: #cfe6ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color .12s ease, transform .12s ease;
  display: inline-block;
}

.footer-list a:hover {
  color: #fff;
  transform: translateX(6px);
}

/* Contact list links */
.footer-contact-list a {
  color: #cfe6ff;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: color .12s ease;
}

.footer-contact-list a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Footer bottom bar */
#footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 20px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9fb4d0;
  font-size: 0.92rem;
  text-align: center;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
}

/* ===== Responsive Footer Design ===== */

/* Large screens (laptops/desktops) - 993px and above: 3 columns as is */
@media (min-width: 993px) {
  #footer-container {
    grid-template-columns: 1.2fr 0.7fr 0.9fr;
    gap: 40px;
  }
}

/* Medium screens (tablets) - 400px to 992px: About in one row, Links & Contact in two columns */
@media (min-width: 400px) and (max-width: 992px) {
  #footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  #footer-about {
    grid-column: 1;
    text-align: center;
    margin-bottom: 8px;
  }

  #footer-about #footer-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  /* Quick Links and Contact in two columns side by side */
  #footer-links {
    grid-column: 1;
    display: inline-block;
    width: 48%;
    vertical-align: top;
    margin-right: 4%;
    text-align: left;
  }

  #footer-contact {
    grid-column: 2;
    display: inline-block;
    width: 48%;
    vertical-align: top;
    text-align: left;
  }

  #footer-about #footer-logo {
    font-size: 1.25rem;
  }

  #footer-links .footer-heading,
  #footer-contact .footer-heading {
    text-align: left;
  }
}

/* Small screens (mobile) - below 400px: All sections stacked in one column */
@media (max-width: 399px) {
  #footer-section {
    padding: 36px 12px 22px;
  }

  #footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  #footer-about {
    grid-column: 1;
    margin-bottom: 0;
  }

  #footer-about #footer-logo {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  #footer-about #footer-description {
    max-width: 100%;
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  #footer-social-icons {
    justify-content: center;
    margin-top: 20px;
  }

  #footer-links {
    grid-column: 1;
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 0;
    display: block !important;
  }

  #footer-contact {
    grid-column: 1;
    width: 100% !important;
    display: block !important;
  }

  #footer-links .footer-heading,
  #footer-contact .footer-heading {
    font-size: 1rem;
    margin-bottom: 14px;
    text-align: center;
  }

  .footer-list li,
  .footer-contact-list li {
    margin: 8px 0;
  }

  .footer-list a,
  .footer-contact-list a {
    font-size: 0.9rem;
  }

  #footer-social-icons .social-icon {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  #footer-bottom {
    font-size: 0.8rem;
    padding: 14px 10px;
    margin-top: 24px;
  }
}

/* ===== end footer styles ===== */





/* video model  */

/* Modal Background */
.modal {
  display: flex;
  justify-content: center;
  align-items: center;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.7);

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 9999;
}

/* When Modal Active */
.modal.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Box Animation */
.modal-content {
  background: #ffffff;
  width: 90%;
  max-width: 600px;
  padding: 50px 10px 10px 10px;
  border-radius: 10px;
  position: relative;

  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: scale(1);
}

/* Close Button */
.close {
  position: absolute;
  right: 15px;
  top: 5px;
  font-size: 25px;
  cursor: pointer;
}



.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 25px;
  /* thora upar dikhayega */
  right: 25px;
  /* side se spacing */
  z-index: 9999;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover img {
  transform: scale(1.1);
}

/* ===== DESTINATION CAROUSEL - CARD STYLE ===== */
.destination-section {
  background: #f8fafc;
  padding: 80px 20px;
}

.destination-header {
  text-align: center;
  margin-bottom: 50px;
}

.subtitle {
  font-size: 0.9rem;
  color: #9f0808;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.title {
  font-size: 2.5rem;
  color: #1a202c;
  font-weight: 800;
  margin-bottom: 15px;
}

.description {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 0;
}

.carousel::-webkit-scrollbar {
  display: none;
}

/* Card Styling */
.destination-card {
  position: relative;
  flex: 0 0 350px;
  height: 450px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.destination-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(159, 8, 8, 0.25);
}

.card-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover .card-image-wrapper img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.destination-card:hover .card-overlay {
  opacity: 1;
}

.card-content {
  padding: 30px 25px;
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 20px;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9f0808;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.destination-card:hover .card-cta {
  gap: 12px;
  color: #7d0606;
}

/* Arrow Buttons */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: #475569;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
  background: #9f0808;
  color: #fff;
  border-color: #9f0808;
  transform: translateY(-50%) scale(1.1);
}

.left-arrow {
  left: 0;
}

.right-arrow {
  right: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .carousel-container {
    padding: 0 50px;
  }

  .destination-card {
    flex: 0 0 300px;
    height: 400px;
  }

  .card-image-wrapper {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .destination-section {
    padding: 60px 15px;
  }

  .title {
    font-size: 2rem;
  }

  .carousel-container {
    padding: 0 40px;
  }

  .destination-card {
    flex: 0 0 280px;
    height: 380px;
  }

  .card-image-wrapper {
    height: 220px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .card-content {
    padding: 20px;
  }

  .card-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    padding: 0 30px;
  }

  .destination-card {
    flex: 0 0 260px;
    height: 360px;
  }

  .card-image-wrapper {
    height: 200px;
  }

  .title {
    font-size: 1.7rem;
  }

  .description {
    font-size: 1rem;
  }
}

/* ========================================
   RESPONSIVE DESIGN ENHANCEMENTS
   For Large Displays and Improved Mobile
   Full-Width Design (No Max-Width Limits)
   ======================================== */

/* Large Displays (4K and Ultra-Wide) - 2560px+ */
@media (min-width: 2560px) {

  .container,
  .hero-container,
  .visa-section,
  .visa-services {
    width: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .navbar {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .hero-content h1 {
    font-size: 4rem;
  }

  .hero-image img {
    max-width: 600px;
  }

  .visa-section__title,
  .visa-services__title {
    font-size: 3.5rem;
  }

  .destination-card {
    flex: 0 0 400px;
    height: 480px;
  }

  .course-card {
    flex: 0 0 calc(25% - 30px);
  }
}

/* Extra Large Displays (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {

  .container,
  .hero-container,
  .visa-section,
  .visa-services {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .navbar {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .visa-section__title {
    font-size: 3rem;
  }

  .destination-card {
    flex: 0 0 380px;
  }
}

/* Desktop Optimization (1200px - 1919px) */
@media (min-width: 1200px) and (max-width: 1919px) {
  .container {
    width: 100%;
    padding: 0 2rem;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }
}

/* Tablet Landscape (900px - 1199px) */
@media (min-width: 900px) and (max-width: 1199px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .navbar {
    padding: 1rem;
  }

  .destination-card {
    flex: 0 0 320px;
  }

  .course-card {
    flex: 0 0 calc(50% - 20px);
  }
}

/* Enhanced Mobile Touch Targets */
@media (max-width: 768px) {

  /* Increase tap target sizes for better mobile UX */
  .nav-links a,
  .apply-now-btn,
  .explore-now-btn,
  .enroll-btn {
    min-height: 44px;
    /* Apple HIG recommended minimum */
    min-width: 44px;
    padding: 12px 20px;
  }

  button,
  .btn {
    min-height: 44px;
    padding: 12px 24px;
  }

  /* Better spacing for mobile */
  .hero {
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Improve form  usability */
  input,
  textarea,
  select {
    font-size: 16px;
    /* Prevents zoom on iOS */
    padding: 14px;
  }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }

  .tagline {
    font-size: 12px;
    padding: 3px 10px;
  }

  .explore-now-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .btn-secondary {
    font-size: 0.85rem;
  }

  .course-card {
    padding: 20px 15px;
  }

  .destination-card {
    flex: 0 0 240px;
  }
}

/* Prevent horizontal scroll on all devices */
body,
html {
  max-width: 100vw;
  overflow-x: hidden;
}

* {
  max-width: 100%;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}


/* ========================================
   NAVBAR HEIGHT ADJUSTMENTS FOR LARGE DISPLAYS
   ======================================== */

/* Desktop and larger - subtle increase */
@media (min-width: 1200px) {
  .navbar {
    padding: 1.2rem 1rem;
  }

  .nav-links a {
    padding: 0.6rem 0;
  }
}

/* Large displays - moderate increase */
@media (min-width: 1920px) {
  .navbar {
    padding: 1.4rem 1.5rem;
  }

  .nav-links a {
    padding: 0.7rem 0;
  }

  .apply-now-btn {
    padding: 0.8rem 1.6rem;
  }
}

/* Ultra-wide and 4K displays - balanced increase */
@media (min-width: 2560px) {
  .navbar {
    padding: 1.6rem 2rem;
  }

  .nav-links a {
    padding: 0.8rem 0;
  }

  .nav-links {
    gap: 1.75rem;
  }
}