/* ===== General ===== */
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

/* Hero Slider */
#hero {
    position: relative;
}

#hero .carousel-item {
    height: 80vh; /* adjust height as needed */
    position: relative;
}

#hero .carousel-item img {
    object-fit: cover;
    height: 100%;
}

#hero .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

#hero .btn-gradient {
    background: linear-gradient(45deg, #007bff, #00d4ff);
    color: #fff;
    border: none;
}


/* ===== Services ===== */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.service-icon {
  font-size: 2.5rem;
  color: #0d6efd;
}

/* ===== Cards (Tours, Tips) ===== */
.card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.card .btn-gradient {
  margin-top: auto;
  background: linear-gradient(90deg, #0d6efd, #6610f2);
  color: #fff;
  border: none;
}

.card .btn-gradient:hover {
  background: linear-gradient(90deg, #6610f2, #0d6efd);
}

/* ===== Partners ===== */
.partner-logo {
  max-height: 60px;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ===== CTA ===== */
section.container .btn-lg {
  background: linear-gradient(90deg, #0d6efd, #6610f2);
  border: none;
  color: #fff;
}

section.container .btn-lg:hover {
  background: linear-gradient(90deg, #6610f2, #0d6efd);
}

/* ===== Scroll to Top ===== */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}

#scrollTopBtn:hover {
  background: #6610f2;
}

/* ===== Dark Mode ===== */
.dark-mode {
  background-color: #121212 !important;
  color: #e0e0e0 !important;
}

.dark-mode .navbar {
  background-color: #1f1f1f !important;
}

.dark-mode .service-card, 
.dark-mode .card, 
.dark-mode section.container {
  background-color: #1f1f1f !important;
  color: #e0e0e0 !important;
}

.dark-mode .btn-gradient {
  color: #fff !important;
}

/* ===== Responsive adjustments ===== */
@media (max-width: 992px) {
  #hero .carousel-caption h1 {
    font-size: 2.2rem;
  }

  #hero .carousel-caption p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  #hero .carousel-caption {
    padding: 0 1rem;
  }

  .service-card {
    margin-bottom: 1rem;
  }
}
/* Consultation Section */
.consultation-section {
  background: linear-gradient(135deg, #004aad, #0078ff);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.consultation-form {
  background: #fff;
  border-radius: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.consultation-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.consultation-section h2 {
  font-size: 2rem;
  color: #fff;
}

.consultation-section p {
  font-size: 1.1rem;
}

.consultation-section ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.object-fit-cover {
  object-fit: cover;
}

.btn-gradient {
  background: linear-gradient(90deg, #007bff, #00bcd4);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  background: linear-gradient(90deg, #0056b3, #0097a7);
  color: #fff;
  transform: translateY(-2px);
}
/* ------------------------------
   TRAVEL TIPS & GUIDES STYLES
------------------------------- */

/* Section Styling */
#travel-tips, 
section.container.my-5 {
  scroll-margin-top: 80px;
}

/* Page Titles */
section h2.fw-bold {
  font-size: 2.2rem;
  color: #004aad;
  position: relative;
  display: inline-block;
}

section h2.fw-bold::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00bcd4);
  margin: 0.5rem auto;
  border-radius: 5px;
}

/* Card Styles */
.card {
  border: none;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.card img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card-body {
  background: #fff;
  border-top: 2px solid #00bcd4;
  padding: 1.5rem;
}

.card h5 {
  font-weight: 600;
  color: #003366;
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.95rem;
  color: #555;
}

/* Buttons */
.btn-gradient {
  background: linear-gradient(90deg, #007bff, #00bcd4);
  color: #fff;
  border: none;
  transition: 0.4s;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #00bcd4, #007bff);
  color: #fff;
  transform: scale(1.05);
}

/* Image + Text Layout */
.row.align-items-center img {
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.row.align-items-center h2 {
  color: #004aad;
}

.row.align-items-center p, 
.row.align-items-center ul li {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
}

/* Lists */
ul {
  padding-left: 1rem;
}

ul li {
  margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .card img {
    height: 180px;
  }
  section h2.fw-bold {
    font-size: 1.7rem;
  }
  .btn-gradient {
    font-size: 0.9rem;
    padding: 10px 18px;
  }
}
/* ------------------------------
   PAGE BANNER / BREADCRUMB HEADER
------------------------------- */
.page-banner {
  height: 45vh;
  overflow: hidden;
  position: relative;
  background-color: #001f3f;
}

.page-banner img {
  object-fit: cover;
  opacity: 0.7;
  filter: brightness(70%);
}

.page-banner .overlay {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}

.page-banner h1 {
  z-index: 2;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

.page-banner .breadcrumb {
  background: transparent;
  margin-bottom: 0;
}

.page-banner .breadcrumb-item a {
  color: #aad8ff;
  text-decoration: none;
  font-weight: 500;
}

.page-banner .breadcrumb-item.active {
  color: #fff;
  font-weight: 600;
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
  color: #aad8ff;
}
/* HERO SECTION */
#hero-study {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

#hero-study h1 {
    font-size: 3rem;
}

#hero-study p {
    font-size: 1.25rem;
}

#hero-study .btn-gradient {
    background: linear-gradient(90deg, #007BFF, #00BFFF);
    color: #fff;
    border: none;
    transition: 0.3s;
}

#hero-study .btn-gradient:hover {
    background: linear-gradient(90deg, #0056b3, #0099cc);
}

/* WHY CHOOSE US */
#why-choose i {
    font-size: 3rem;
}

#why-choose h5 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

#why-choose p {
    font-size: 1rem;
}

/* PROGRAM CARDS */
.program-card {
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.program-card h5 {
    margin-top: 1rem;
}

.program-card p {
    font-size: 0.95rem;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card img {
    border: 3px solid #007BFF;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.testimonial-card p {
    font-size: 0.95rem;
    color: #555;
}

/* CTA SECTION */
.bg-gradient {
    background: linear-gradient(135deg, #007BFF, #00BFFF);
    color: #fff;
}

.bg-gradient h3 {
    margin-bottom: 0.5rem;
}

.bg-gradient p {
    font-size: 1.1rem;
}

.bg-gradient .btn-light {
    color: #007BFF;
    font-weight: bold;
}

.bg-gradient .btn-light:hover {
    background-color: #fff;
    color: #0056b3;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    #hero-study h1 {
        font-size: 2rem;
    }
    #hero-study p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .program-card, .testimonial-card {
        margin-bottom: 1rem;
    }
}
/* Reduced banner height like page banner */
#hero-study {
  position: relative;
  height: 250px; /* reduced from 70vh */
  overflow: hidden;
}

#hero-study .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero-study .hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
}

#hero-study .hero-content {
  position: absolute;
  z-index: 2;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
/* Study Abroad Hero Banner */
#hero-study {
  position: relative;
  height: 250px; /* default for desktop */
  overflow: hidden;
}

#hero-study .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero-study .hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
}

#hero-study .hero-content {
  position: absolute;
  z-index: 2;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 15px;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  #hero-study {
    height: 220px;
  }
  #hero-study .hero-content h1 {
    font-size: 1.8rem;
  }
  #hero-study .hero-content p {
    font-size: 0.95rem;
  }
  #hero-study .hero-content .btn {
    font-size: 0.9rem;
    padding: 0.45rem 1rem;
  }
}

@media (max-width: 576px) {
  #hero-study {
    height: 180px;
  }
  #hero-study .hero-content h1 {
    font-size: 1.4rem;
  }
  #hero-study .hero-content p {
    font-size: 0.85rem;
  }
  #hero-study .hero-content .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
  }
}
