body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
    padding: 0px;
}

.couch-btn-glass {
    text-decoration: none;
}
.couch-btn-gradient {
  margin-top: 10px; /* or any value you prefer */
  padding: 8px 12px;
  font-size: 16px;
  font-weight: bold;
  background: linear-gradient(to right, red, orange);
  color:blue;
}


.brand-text {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: baseline;
}

.brand-dream {
  font-family: "Script MT Bold", cursive;
  color: rgb(253, 0, 0) !important;
  font-size: 1.5rem;
}

.brand-coach-lines {
  font-family: "Copperplate Gothic Bold", serif;
  color: #0d47a1; /* Dark blue. Use black if needed: #000 */
  font-size: 1.5rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1030; /* above content */
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: #111 !important; /* Darker when scrolled */
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}


h2 {
    font-size: 28px;
    margin-top: 40px;
}

p {
    font-size: 18px;
    /* color: white; */
    margin-bottom: 30px;
}

body, ul {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  header * {
    animation: fadeIn 0.8s ease-in-out;
  }

  .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f5f5;
    padding: 8px 20px;
    font-size: 14px;
    color: #333333;
  }

  .contact-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .contact-info span {
    margin-right: 15px;
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #100254;
  }

  .contact-info i {
    margin-right: 5px;
    color: #100254;
  }

  .social-container {
    display: flex;
    align-items: center;
    background: #f4b400;
    padding: 8px 20px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
  }

  .social-icons {
    display: flex;
    gap: 12px;
  }

  .social-icons i {
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
  }

  .social-icons i:hover {
    color: #b336ed;
  }

  /* Navbar Styling */
  .navbar-custom {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 20px;
  }

  .business-name {
    display: inline-block;
    font-size: 24px;
  }
  
  .dream {
    font-family: "Script MT Bold";
    color: red !important;
    margin-right: 3px;
  }
  
  .coach-lines {
    font-family: "Copperplate Gothic Bold";
    color: #0b2545 !important;
  }

  .logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0a012d;
  }

  .logo span {
    font-size: 22px;
    font-weight: bold;
    color: #004d40;
    letter-spacing: 1px;
  }

  .nav-link {
    font-weight: bold;
    color: #333 !important;
  }

  .nav-link.active,
  .nav-link:hover {
    color: #007bff !important;
    border-bottom: 2px solid #007bff;
  }

  .nav-link.active {
    color: #fff !important;
  }

  .quote-btn {
    background: #3399ff  !important;
    color: white !important;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    border: none;
    transition: background 0.3s ease;
    text-decoration: none;
}

.quote-btn:hover {
    background: #0056b3 !important;
}


  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .top-bar {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .navbar-collapse {
      margin-top: 10px;
    }

    .desktop-quote-btn {
      display: none !important;
    }

    .mobile-quote-btn {
      display: block !important;
      width: 100%;
      text-align: center;
    }

    .mobile-quote-btn button {
      margin-top: 10px;
      width: 90%;
      max-width: 300px;
    }
  }

  @media (min-width: 992px) {
    .mobile-quote-btn {
      display: none !important;
    }
  }
  
.couch-body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  min-height: 400px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.couch-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:white;
}

.couch-search-input {
  width: 100%;
  padding: 12px 15px 12px 40px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  outline: none;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease-in-out;
  color: white;
}

.couch-search-input:focus {
  background: rgba(255, 255, 255, 0.6);
  color: black;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.couch-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.couch-wave-heading {
  margin-bottom: 130px;
  font-size: 3rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  animation: couchFadeSlideIn 1.2s ease-in-out forwards 1s;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-welcome {
  margin-bottom: 8rem; /* adjust as needed */
}


@keyframes couchFadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.couch-animate-fade-in {
  animation: couchFadeIn 1s ease-in-out forwards 1s;
}

@keyframes couchFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ✅ FLEX container for buttons */
.couch-btn-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  padding: 5px;
  border-radius: 10px;
}

/* Buttons */
.couch-btn-glass,
.couch-btn-gradient {
  flex: 1 1 auto;
  min-width: 160px;
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
}

.couch-btn-glass {
  background: rgba(93, 90, 90, 0.15);
  color: blue;
  transition: background 0.3s, transform 0.2s;
}

.couch-btn-glass:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.couch-btn-gradient {
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  color: white;
}

/* Responsive fixes */
@media (max-width: 768px) {
  .couch-wave-heading {
    font-size: 2rem;
  }

  .couch-btn-glass,
  .couch-btn-gradient {
    font-size: 12px;
  }
}
  
/* Destination Style */
.destination-card img {
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.rating-container .star {
  color: lightgray;
  cursor: pointer;
}

.rating-container .star.selected {
  color: gold;
}

.rating-value {
  background: rgb(79, 79, 255);
  color: white;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 14px;
  margin-left: 6px;
  display: inline-block;
}

/* Make carousel controls more visible */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 20px;
  background-size: 100% 100%;
}

.carousel-control-prev {
  left: -50px;
}

.carousel-control-next {
  right: -50px;
}

.carousel-inner {
  padding: 0 120px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-inner-custom {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.carousel-card {
  flex: 0 0 25%;   /* 100% ÷ 4 = 25% */
  max-width: 25%;  /* ensure 4 per row */
  box-sizing: border-box;
  padding: 0 10px; /* spacing between cards */
}
.destination-fe-img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

/* ----------- MOBILE RESPONSIVE ----------- */
@media (max-width: 576px) {
  .carousel-inner {
      padding: 0 15px; /* Reduce padding on mobile */
  }

  .carousel-item {
      display: flex;
      justify-content: center;
  }

  .destination-card {
      flex: 0 0 100%; /* Show only 1 card per view */
      max-width: 100%;
  }

  .carousel-control-prev,
  .carousel-control-next {
      width: auto;
      top: 50%;
      transform: translateY(-50%);
      opacity: 1;
  }

  .carousel-control-prev {
      left: 10px;
  }

  .carousel-control-next {
      right: 10px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
      padding: 15px;
  }
}


/* Unique Heading Style for Discover Section */
.discover-heading {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(to right, #007bff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 123, 255, 0.3);
  padding: 15px;
  display: block;
  margin-bottom: 30px;
}

/* Responsive circular gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  padding: 20px;
}

/* Circular image containers with fixed smaller size */
.image-container {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
}

.image-container:hover {
  transform: scale(1.1);
}

/* Responsive adjustments for mobile view */
@media (max-width: 768px) {
  .image-container {
    width: 120px;
    height: 120px;
    justify-content: center;
  }
}


/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.footer {
  background: linear-gradient(135deg, #0f2143, #4779d0, #0f2143); 
  color: white;
}

.footer h5 {
  color: #fff;
  font-weight: 600;
}

.footer a:hover {
  text-decoration: underline;
}

.footer input.form-control {
  background-color: #f8f9fa;
  border: none;
}

.footer .btn-outline-light:hover {
  background-color: #fff;
  color: #000;
}

/* Add hover effect on the social media icons */
.d-flex a:hover {
  color: #070707; 
  transform: scale(1.2); 
  transition: color 0.3s ease, transform 0.3s ease; 
}

html {
  scroll-behavior: smooth;
}

/*Contact Us Style*/

/* Header Section */
.contactus-header {
  background:
    linear-gradient(rgba(247, 244, 244, 0.315), rgba(255, 255, 255, 0.372)),
    url('../../images/contactheader.jpg') center/cover no-repeat;
  text-align: center;
  padding: 100px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
}

.contactus-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.contactus-content {
  position: relative;
  z-index: 1;
  color: white; /* Makes all text inside this div white */
}

.contactus-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Contact Info Section */
.twc-contact-info-section {
  background-color: #f0faff;
  padding: 60px 15px;
}

.twc-contact-info-section h3 {
  color: #007ea7;
  font-weight: bold;
}

.twc-contact-info-section p {
  color: #0f0f10;
  font-size: 15px;
}

.twc-info-box {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #0d4f66;
}

.twc-map-section iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Contact Form Section */
.twc-form-section {
  background-color: #e6f7ff;
  padding: 60px 15px;
}

.twc-contact-form {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.twc-contact-form label {
  font-weight: 500;
  margin-bottom: 5px;
  color: #0d4f66;
}

.twc-contact-form .form-control,
.twc-contact-form .form-select {
  border-radius: 10px;
  border: 1px solid #b3e0f7;
}

.twc-contact-form .btn-primary {
  background-color: #2cb3d2;
  border: none;
  border-radius: 25px;
  padding: 10px 30px;
  margin-top: 20px;
}

.twc-contact-form .btn-primary:hover {
  background-color: #199ab8;
}

/* Responsive spacing */
@media (min-width: 768px) {
  .twc-contact-form {
    padding: 50px 60px;
  }
}

/* About Us Style*/
 
.aboutus-body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: white;
}

.aboutus-header {
  background:
    linear-gradient(rgba(247, 244, 244, 0.441), rgba(255, 255, 255, 0.372)),
    url('../../images/head.jpg') center/cover no-repeat;
  text-align: center;
  padding: 100px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
}

.aboutus-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.aboutus-content {
  position: relative;
  z-index: 1;
  color: white; /* Makes all text inside this div white */
}

.aboutus-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 600;
}


/* Intro */
.intro-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.intro-img img {
  width: 550px;
  margin-top: -20px;
}

.intro-text {
  flex: 1;
  max-width: 800px;
  text-align: center;
}

.intro-text h2 {
  font-size: 32px;
  font-weight: 600;
  margin-top: -30px;
  margin-bottom: 15px;
  color: #0056b3;
}

.intro-text p {
  font-size: 20px;
  margin-bottom: 15px;
  color: black;
}

.intro-text ul {
  list-style-type: disc;
  padding-left: 0;
  display: inline-block;
  text-align: left;
  font-size: 16px;
}

/* Testimonial Carousel */
.testimonial-carousel {
  background-color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.testimonial-item {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 20px;
  text-align: center;
  position: relative;
}

.quote-mark {
  font-size: 300px;
  color: rgba(0, 0, 0, 0.19);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0px;
  font-family: 'Georgia', serif;
  z-index: 0;
}

.quote {
  font-family: cursive;
  font-size: 35px;
  font-weight: 400;
  color: #333333e8;
  line-height: 1.6;
  max-width: 700px;
  margin: 0px auto 30px;
  z-index: 1;
}

.testimonial-item h4 {
  color: #110879;
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 600;
}

.client-title {
  font-size: 18px;
  color: #666;
}

.carousel-buttons {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel-btn {
  background-color: #1316c8dd;
  border: none;
  color: white;
  font-size: 24px;
  padding: 10px 10px;
  border-radius: 3px;
  cursor: pointer;
  pointer-events: all;
  transition: background-color 0.3s ease;
}

.carousel-btn:hover {
  background-color: #516de0;
}

/* Why Choose Us */
.why-choose-us-section {
  position: relative;
  background: url('../../images/choose-us.jpg') no-repeat center center/cover;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}

.choose-overlay {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 8px;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-left: 190px;
}

.why-choose h2 {
  color: linear-gradient(90deg, #000000, #414243);;
}
.why-choose-box h2 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-choose-box .faded {
  color: #ccc;
  font-weight: 300;
}

.why-choose-box p {
  font-size: 14px;
  margin-bottom: 30px;
 
}

.bar {
  margin-bottom: 20px;
}

.bar span {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.progress {
  background-color: #e0e0e0;
  height: 10px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.fill {
  background-color: #0b0d21;
  height: 100%;
  text-align: right;
  padding-right: 5px;
  color: #fff;
  font-size: 12px;
  line-height: 10px;
  border-radius: 6px;
}


/* Work Stats */
.work-impressions {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.work-impressions h2 span {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(90deg, #1e3c72, #4776c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stat-box {
  border-top: 2px solid #e2e2e2;
  padding-top: 20px;
  min-width: 180px;
}

.icon-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.icon-number i {
  font-size: 28px;
  color: #2a5298;
}

.stat-box h3 {
  font-size: 40px;
  font-weight: 600;
  color: #d1d1d1;
  margin: 0;
}

.stat-box p {
  font-size: 16px;
  color: #1c1b1b;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .aboutus-header {
    padding: 60px 10px;
  }

  .aboutus-header h1 {
    font-size: 28px;
  }

  .intro-flex {
    flex-direction: column;
    text-align: center;
  }

  .intro-img img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .intro-text {
    max-width: 100%;
    padding: 0 15px;
  }

  .intro-text h2 {
    font-size: 24px;
    margin-top: 0;
  }

  .intro-text p {
    font-size: 16px;
  }

  .testimonial-carousel {
    padding: 60px 10px;
  }

  .quote {
    font-size: 24px;
    margin: 40px auto 20px;
  }

  .quote-mark {
    font-size: 150px;
    top: 0;
  }

  .testimonial-item h4 {
    font-size: 18px;
  }

  .client-title {
    font-size: 16px;
  }

  .carousel-btn {
    font-size: 20px;
    padding: 8px 8px;
  }

  .why-choose-us-section {
    flex-direction: column;
    padding: 60px 10px;
    text-align: center;
  }

  .choose-overlay {
    margin-left: 0;
    padding: 20px;
  }

  .why-choose-box h2 {
    font-size: 32px;
  }

  .bar span {
    font-size: 12px;
  }

  .work-impressions h2 span {
    font-size: 28px;
  }

  .stats-container {
    flex-direction: column;
    gap: 40px;
  }

  .stat-box h3 {
    font-size: 32px;
  }

  .stat-box p {
    font-size: 14px;
  }
}

/*Destination Page style*/

.dcl-login-page {
  min-height: 100vh;
  background: 
    linear-gradient(rgba(247, 244, 244, 0.441), rgba(255, 255, 255, 0.372)), 
    url('../../images/Login.jpg') center/cover no-repeat;
  padding: 2rem 1rem;
  position: relative;
  color: #222; /* Set default text color to dark */
}

.dcl-login-page h1,
.dcl-login-page h2,
.dcl-login-page p {
  color: #222; /* Override text color to dark */
}

.dcl-login-card {
  background-color: rgba(255, 255, 255, 0.95); 
  backdrop-filter: blur(4px); 
  color: #000; /* Ensure form text is dark */
}

.dcl-brand {
  font-size: 1.2rem;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}

.dcl-title {
  color: #fff;
}

.dcl-subtitle {
  color: #f0f0f0;
}

.dcl-description {
  color: #ddd;
}

.dcl-login-card {
  backdrop-filter: blur(12px);
}

.dcl-input {
  border-radius: 0.5rem;
}

.dcl-signin-btn {
  font-weight: 500;
  border-radius: 0.5rem;
}

.dcl-google-btn img {
  margin-right: 8px;
}

.dcl-or {
  color: #666;
}


/*Destintion Page*/
.travel-header {
  background-image: url('../../images/Dest.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
}
 
.travel-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
 
.travel-header .container {
  position: relative;
  z-index: 1;
}
 
.travel-header h1 {
  font-size: 3rem;
  font-weight: bold;
}
 
.travel-header p {
  font-size: 1.2rem;
  margin-top: 20px;
}
 
.travel-header a {
  color: #aadcf5;
  text-decoration: none;
  font-size: 1.1rem;
}
 
.travel-header a:hover {
  text-decoration: underline;
}
 
.tour-section-custom {
  padding: 10rem 5rem;
  background-color: #f8f9fa;
}
 
.tour-card-custom {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
 
.tour-img-custom {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  object-fit: cover;
  height: 100%;
}
 
.tour-badge-custom {
  background-color: #e0e0e0;
  color: #333;
  margin-right: 5px;
  font-size: 0.75rem;
}
 
.tour-price {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #db0f0f;
}
 
.tour-card-custom p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.3rem;
}
 
.tour-card-custom strong {
  color: #000;
  font-weight: 600;
}
 
/*Best Plan*/
.vacation-plan-section {
  background-color: #fff;
}

.vacation-plan-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.vacation-plan-subtitle {
  color: #555;
  font-size: 1rem;
}

.vacation-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
  padding: 15px;
  transition: transform 0.3s;
}

.vacation-card:hover {
  transform: translateY(-5px);
}

.vacation-card img {
  border-radius: 10px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.vacation-card-title {
  font-weight: 600;
  margin-top: 10px;
}

.vacation-card-info {
  color: #555;
  font-size: 0.9rem;
}

.vacation-plan-see-more {
  font-weight: 500;
  color: #007bff;
  text-decoration: none;
}
.vacation-plan-see-more:hover {
  text-decoration: underline;
}


@media (max-width: 767px) {
  .tour-section-custom {
    padding: 3rem 1rem;
  }
 
  .tour-img-custom {
    border-radius: 15px 15px 0 0;
    height: 200px;
    width: 100%;
    object-fit: cover;
  }
 
  .tour-card-custom .row {
    flex-direction: column;
  }
 
  .tour-card-custom .col-md-4,
  .tour-card-custom .col-md-8 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
 
  .tour-price {
    position: static;
    text-align: right;
    margin-top: 10px;
  }
 
  .travel-header {
    padding: 60px 15px;
  }
 
  .travel-header h1 {
    font-size: 2rem;
  }
 
  .travel-header p {
    font-size: 1rem;
  }
 
  .tour-filter-dropdown,
  .tour-search-bar {
    width: 100%;
  }
}

/*Blogs Page Style*/ 
/* General Styling */
.blog-body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

/* Header */
.inner-hero {
  position: relative;
  background: url('../../blogs-images/blg-head.jpg') no-repeat center center/cover;
  padding: 100px 0;
  text-align: center;
  color: white;
  z-index: 1;
  overflow: hidden;
}

.inner-hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  z-index: 0;
}

.inner-hero a {
  color: #add8e6; 
  text-decoration: underline; 
  position: relative;
  z-index: 1;
}

.inner-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.blog-container {
  position: relative; /* keep text above overlay */
  z-index: 1;
}

.hero__title h2 {
  color: white !important;
  -webkit-text-fill-color: white !important; 
  font-size: 2.5rem;
  font-weight: bold;
}

.breadcrumb {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  color: #ddd;
}

.breadcrumb li::after {
  content: '/';
  margin-left: 0.5rem;
  color: #bbb;
}

.breadcrumb li:last-child::after {
  content: '';
}

/* Main Content Sections */
.unique-destination-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.unique-main-heading {
  font-size: 1.8rem;
  margin-top: 10px;
  margin-bottom: 15px;
}

.unique-article-item img {
  width: 100px;
  height: auto;
  object-fit: cover;
  filter: grayscale(100%);
}

.unique-article-item h6 {
  font-size: 1rem;
  margin-top: 5px;
}

/* Link Styling */
a.text-primary {
  font-weight: 300;
  font-size: 14px;
  transition: color 0.2s ease-in-out;
}

a.text-primary:hover {
  color: #1667bd;
}

/* Image Styling */
.unique-main-image {
  border-radius: 10px;
  max-height: 400px;
  object-fit: cover;
  width: 100%;
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero__title h2 {
    font-size: 2rem;
  }

  .unique-main-heading {
    font-size: 1.5rem;
  }

  .unique-article-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .unique-article-item img {
    width: 80%;
    max-width: 250px;
    margin-bottom: 10px;
  }

  .breadcrumb {
    flex-direction: column;
    align-items: center;
  }

  .breadcrumb li::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .inner-hero {
    padding: 40px 10px;
  }

  .hero__title h2 {
    font-size: 1.6rem;
  }

  .unique-main-heading {
    font-size: 1.3rem;
  }

  .text-muted, h6 {
    font-size: 0.95rem;
  }

  .unique-article-item img {
    max-width: 100%;
  }
}
/* News letter */

.Newsletter-body {
  background: #e3f2fd;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.dream-coach-newsletter-section {
  padding: 60px 20px;
  text-align: center;
}
.dream-coach-newsletter-header {
  font-size: 2rem;
  font-weight: 700;
}
.highlight-color {
  color: #0d47a1;
}
.dream-coach-newsletter-description {
  max-width: 800px;
  margin: 20px auto;
  color: #555;
  font-size: 1rem;
}
.newsletter-form-container input,
.newsletter-form-container button {
  height: 50px;
}
@media (max-width: 768px) {
  .newsletter-form-container .form-control {
    margin-bottom: 10px;
  }
}



.blogCard {
  max-width: 100%;
  margin: 30px auto;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
  padding: 10px;

}

.blogCard:hover {
  transform: translateY(-5px);
}

.blogCard img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blogCard .unique-main-heading {
  margin: 8px 0;
  font-size: 1.25rem;
}

.blogCard h2 {
  font-size: 1.5rem;
}

.blogCard h3,
.blogCard h4 {
  color: #555;
  font-weight: 500;
}

.blogCard .text-muted {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.blogCard a {
  display: inline-block;
  margin-top: 12px;
  font-weight: 500;
  color: #007BFF;
  transition: color 0.2s;
}

.blogCard a:hover {
  color: #0056b3;
}


