@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');

body {
  font-family: "PT Sans", Sans-serif !important;
  font-style: inherit;
  margin: 0;
  padding: 0;
}

p {
  font-family: "PT Sans", Sans-serif !important;
  font-style: inherit;
}

.navbar {
  background: #fff;
  padding: 10px 20px;
}

.navbar-nav .nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000 !important;
  margin-left: 5px;
}

.navbar-nav .nav-link.active {
  color: #007bff !important;
}

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 500px;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 20px;
}

.hero-content span {
  font-size: 18px;
  font-weight: 500;
}

.hero-content h2 {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.3;
}

.btn-custom {
  border: 2px solid #fff;
  padding: 10px 25px;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  margin-top: 15px;
}

.btn-custom:hover {
  background: #fff;
  color: #000;
}

/* ✅ Responsive adjustments */
@media (max-width: 992px) {
  .hero-content h2 {
    font-size: 32px;
  }

  .hero-content span {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 26px;
  }

  .btn-custom {
    font-size: 14px;
    padding: 8px 20px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 80vh;
  }

  .hero-content h2 {
    font-size: 22px;
  }

  .hero-content span {
    font-size: 14px;
  }

  .btn-custom {
    font-size: 13px;
    padding: 7px 18px;
  }
}

.custom-list {
  list-style: none;
  padding-left: 20px;
  border-left: 5px solid #133d7d;
}

.custom-list li {
  padding-left: 10px;
}


.stats-section {
  background: url('https://themeim.com/demo/flynext/assets/images/bg/bg-1.png') no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

.stats-section .overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 60px 0;
}

.stat-wrapper {
  text-align: center;
}

.stat-box {
  background: rgba(255, 255, 255, 0.18);
  width: 300px;
  /* fixed width */
  height: 250px;
  /* fixed height */
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: transform 0.3s ease;
}




.stat-box h2 {
  font-size: 3rem;
  margin-bottom: 5px;
}

.stat-box h2 span {
  font-size: 2rem;
}

.stat-box p {
  font-size: 1rem;
  /* font-weight: 600; */
  letter-spacing: 1px;
}

.underline {
  height: 3px;
  background: #00ff66;
  margin: 6px 0 0 0;
  width: 100%;
  transition: width 0.4s ease;
  display: block;
}

.stat-wrapper:hover .underline {
  width: 0;
}

:root {
  --primary-blue: #0d6efd;
  /* bootstrap primary */
  --card-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
  font-family: 'PT Sans', sans-serif;
}

.services-section {
  background: #f3f6f8;
  /* light grey background like screenshot */
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 6px;
  color: #222;
}

.section-decor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-decor .dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.section-decor .dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-blue);
  display: block;
  opacity: 0.95;
}

.section-decor .short-line {
  width: 70px;
  height: 4px;
  background: var(--primary-blue);
  border-radius: 3px;
}

/* card */
.service-card {
  background: transparent;
  /* border-radius: 8px; */
  box-shadow: var(--card-shadow);
  overflow: visible;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 420px;
  /* ensures equal heights on desktop */
}

/* top image */
.service-img {
  width: 100%;
  height: 210px;
  /* matches screenshot proportions */
  object-fit: cover;
  display: block;
}

/* white body area */
.service-body {
  background: #fff;
  padding: 24px 22px 30px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  flex: 1 1 auto;
  /* blue thin vertical strip placed inside the left side of the white body */
  border-left: 4px solid var(--primary-blue);
  padding-left: 20px;
  /* space between border and text */
}

.service-title {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  color: #111;
}

.service-desc {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  flex: 1 1 auto;
}

/* read more button similar to screenshot: small, subtle border, rounded */
.btn-readmore {
  display: inline-block;
  align-self: flex-start;
  padding: .45rem .9rem;
  border-radius: 6px;
  border: 1px solid rgba(13, 110, 253, 0.16);
  color: var(--primary-blue);
  background: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.btn-readmore:hover {
  text-decoration: none;
  background: rgba(13, 110, 253, 0.04);
  box-shadow: none;
}

/* card hover lift */
.service-card:hover {
  transform: translateY(-8px);
  transition: transform .25s ease;
}

/* responsive adjustments */
@media (max-width: 991.98px) {
  .service-img {
    height: 200px;
  }

  .service-card {
    min-height: 420px;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 28px;
  }

  .section-decor .short-line {
    width: 50px;
  }

  .service-card {
    min-height: auto;
  }

  .service-img {
    height: 180px;
  }
}



.a2z-section {
  background: url("https://jetly-html.vercel.app/main-html/assets/images/backgrounds/main-slider-2-1.jpg") no-repeat center center/cover;
  min-height: 70vh;
  position: relative;
}

/* Dark overlay */
.a2z-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Title */
.a2z-section .section-title {
  font-size: 2.5rem;
  /* font-weight: 600; */
  color: #fff;
}

.a2z-section p {
  font-size: 15px;
}

/* Decorative line */
.decor-line {
  width: 80px;
  height: 3px;
  background: #0d6efd;
  /* Bootstrap primary blue */
  margin: 0 auto;
  border-radius: 3px;
}

/* Button */
.a2z-section .btn-outline-light {
  border-width: 1px;
  transition: all 0.3s ease;
}

.a2z-section .btn-outline-light:hover {
  background: #fff;
  color: #000;
}


.global-edu {
  background-color: #f2f5fb;
  /* Light gray background */
}

.global-edu h2 {
  font-size: 2.3rem;
  color: #112240;
  /* Dark navy */
}

.global-edu p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #000 !important;
}

.global-edu .btn-danger {
  background-color: #c8102e;
  /* Custom deep red */
  border: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 15px !important;
}

.global-edu .btn-danger:hover {
  background-color: #a50d24;
}



.testimonial-section {
  background: url("https://jetly-html.vercel.app/main-html/assets/images/backgrounds/page-header-bg.jpg") no-repeat center center/cover;
  position: relative;
  min-height: 400px;
  /* set your desired height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 🔥 makes it match image height */
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  /* vertically center */
  justify-content: center;
  /* horizontally center */
  text-align: center;
  padding: 40px 20px;
  /* smaller padding */
}

.testimonial p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 20px;
}

.testimonial .stars {
  font-size: 1.2rem;
  color: #fff;
}

.slick-prev,
.slick-next {
  font-size: 2rem;
  z-index: 999;
  color: #fff;
}

.slick-prev:hover,
.slick-next:hover {
  color: #ffcc00;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #fff;
}

.slick-dots li.slick-active button:before {
  color: #ffcc00;
}



.tour-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}


/* Card Section */
.tour-card {
  background: #fff;
  border-left: 5px solid #0056ff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 5rem 2rem;
  border-radius: 5px;
}

.tour-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tour-card p {
  color: #555;
  line-height: 1.7;
}

/* Button */
.tour-btn {
  background: #d62045;
  color: #fff;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 3px;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}

.tour-btn:hover {
  background: #a81535;
  color: #fff;
}




.travel-footer {
  background-color: #0d1224;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

/* Top Contact Banner */
.travel-footer-top {
  background-color: #193875;
  padding: 20px 0;
}

.travel-footer-top h3 {
  font-size: 24px;
  font-weight: 600;
}

/* Main Footer */
.travel-footer-main {
  background-color: #0d1224;
}

.travel-footer-text {
  color: #b8b8b8;
}

.travel-footer-heading {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.travel-footer-heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #e63946;
  margin-top: 8px;
}

.travel-footer-links li {
  margin-bottom: 8px;
}

.travel-footer-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.travel-footer-links a:hover {
  color: #e63946;
}

.travel-footer-info li {
  margin-bottom: 10px;
  color: #b8b8b8;
}

.travel-footer-info i {
  color: #e63946;
}

/* Bottom Footer */
.travel-footer-bottom {
  background-color: #0b0f1a;
  border-top: 1px solid #222;
  color: #b8b8b8;
  font-size: 14px;
}


.small-banner {
  position: relative;
  height: 450px;
  /* Short height */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.small-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.small-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
  /* Overlay */
}

.small-banner-content {
  position: relative;
  z-index: 2;
}

.small-banner h1 {
  font-size: 2.2rem;
  font-weight: 700;
}

.small-banner p {
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.counter-section {
  background-color: #0d2a72;
  /* Dark Blue */
  color: #fff;
  padding: 40px 0;
}

.counter-item {
  text-align: center;
}

.counter-item i {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.counter-item h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.counter-item p {
  margin: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Vertical divider */
.counter-divider {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  height: 80px;
  margin: auto;
}

.mission-section {
  background-color: #f8f9fa;
  /* light gray background */
  padding: 60px 0;
}

.mission-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.mission-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.mission-section img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}



.top-banner {
  height: 100vh;
  /* Adjust height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #fff;
}

.top-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.top-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /* dark overlay */
  z-index: 1;
}

.top-banner-content {
  position: relative;
  z-index: 2;
}

.top-banner-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
}



.global-service {
  background: #f7f8fa;
  padding: 60px 0;
}

.global-service h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.global-service-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  background: #fff;
}

.global-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.global-service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.global-service-card .card-body {
  text-align: center;
  padding: 20px;
}

.global-service-card .card-body h5 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #222;
}

.global-service-card .card-body h5 a {
  text-decoration: none;
  color: #111213;
}

.global-service-card .card-body h5 a:hover {
  text-decoration: underline;
}

.enquiry-section {
  background: #f7f8fa;
  padding: 80px 0;
}

.enquiry-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  padding: 50px 40px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.enquiry-box h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #444;
}

.enquiry-box p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.enquiry-btn {
  display: inline-block;
  background: #5f97f6;
  color: #fff;
  padding: 12px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.enquiry-btn:hover {
  background: #3d76e0;
  color: #fff;
}

/* Section wrapper */
.immigration-section {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

/* Red small title */
.immigration-section .subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #c7152c;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Main heading */
.immigration-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
}

/* Tabs */
.nav-tabs {
  border: none;
  margin-bottom: 0;
}

.nav-tabs .nav-link {
  border: 1px solid #ddd;
  border-bottom: none;
  border-radius: 0;
  font-weight: 700;
  font-size: 16px;
  color: #444;
  padding: 12px 25px;
  background: #f9f9f9;
}

.nav-tabs .nav-link.active {
  background: #fff;
  color: #00aef0;
  border-color: #ddd #ddd #fff;
}

/* Tab content box */
.tab-content {
  border: 1px solid #ddd;
  padding: 25px;
  background: #fff;
  text-align: left;
}

.tab-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #333;
}


.study-country .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.study-country .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.study-country .card-title {
  margin-top: 10px;
  color: #222;
}


/* Section Styling */
.online-services {
  padding: 60px 0;
}

.online-services .section-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #222;
}

.online-services .section-subtitle {
  color: #444;
  margin-bottom: 40px;
}

.online-services .divider {
  width: 60px;
  height: 3px;
  background: #0056d2;
  margin: 10px auto 20px auto;
  border-radius: 3px;
}

/* Card Styling */
.online-service-card {
  border-radius: 0;
  border: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.online-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.online-service-card img {
  border-radius: 0;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.online-service-card .card-body {
  text-align: center;
  padding: 15px;
  background: #fff;
}

.online-service-card h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0d2c6c;
}





.contact-section {
  padding: 60px 0;
}

.contact-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

/* Contact Card */
.contact-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-card-header {
  background: #d61f41;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.contact-icon {
  background: #d61f41;
  color: #fff;
  font-size: 1.5rem;
  padding: 12px;
  border-radius: 4px;
  margin-right: 15px;
}

.contact-info h6 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.contact-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #444;
}

.contact-social {
  text-align: center;
  padding: 15px;
}

.contact-social a {
  display: inline-block;
  margin: 0 5px;
  background: #0d2c6c;
  color: #fff;
  font-size: 1.2rem;
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none;
}

/* Contact Form */
.contact-form .form-control {
  border-radius: 6px;
  padding: 10px 12px;
  background-color: transparent;
}

.contact-form .btn-submit {
  background: #4b1979;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 20px;
  border: none;
}

.contact-form .btn-submit:hover {
  background: #37125a;
}



.tickets .nav-pills .nav-link {
  border: 1px solid #000;
  border-radius: 8px;
  margin-right: 5px;
  color: rgb(170, 8, 8);
  border: solid 1px rgb(170, 8, 8);
  padding: 20px;
}

@media (max-width: 767.98px) {
  .tickets .nav-pills .nav-link {
  border: 1px solid #000;
  border-radius: 8px;
  margin-right: 5px;
  color: rgb(170, 8, 8);
  border: solid 1px rgb(170, 8, 8);
  padding: 10px 5px;
  margin-top: 10px;
  font-size: 14px;
}
}

.tickets .nav-pills .nav-link.active {
  background-color: #010204 !important;
  color: #fff !important;
}

.flight-card {
  background-color: #dc3545;
  /* Bootstrap red */
  color: white;
  border-radius: 12px;
  padding: 20px;
  margin: 10px 0;
  text-align: left;
  position: relative;
  height: 150px;
}

.flight-card h3 {
  font-weight: bold;
  font-size: 2rem;
  margin: 0;
}

.flight-card small {
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.9;
}

.flight-card i {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 22px;
}

.departure-card {
  background-color: #f7f2fc;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.departure-card .left {
  flex: 1;
}

.departure-card .right {
  text-align: right;
  min-width: 150px;
}

.departure-card .logo {
  height: 30px;
  margin-bottom: 8px;
}

.departure-card .date {
  color: #6c757d;
  font-size: 0.9rem;
}

.departure-card .title {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 4px 0;
}

.departure-card .timing {
  font-size: 0.9rem;
  color: #555;
}

.departure-card .baggage {
  font-size: 0.85rem;
  color: #444;
  margin-bottom: 5px;
}

.departure-card .price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
}

.departure-card .seats {
  font-size: 0.9rem;
  margin: 4px 0;
  color: #6c757d;
}

.departure-card .btn-book {
  background-color: #ba0909;
  color: #fff;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.9rem;
  font-weight: 500;
}


.bg-image {
  background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216') no-repeat center center/cover;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  width: 100%;
  overflow: hidden;
}

/* Buttons */
.btn-login {
  background-color: #2f6d3f;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  transition: 0.3s;
  width: 100%;
}

.btn-login:hover {
  background-color: #255633;
}

/* Inputs */
.form-control {
  border-radius: 6px;
  padding: 12px;
  font-size: 15px;
}

/* Forgot link */
.forgot {
  font-size: 14px;
  color: #666;
  text-decoration: none;
}

.forgot:hover {
  text-decoration: underline;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .login-card {
    border-radius: 8px;
  }

  .login-card img {
    border-radius: 8px 8px 0 0 !important;
    max-height: 250px;
    object-fit: cover;
    width: 100%;
  }
}