/********** Template CSS **********/
:root {
  --primary: #f77d0a;
  --secondary: #2b2e4a;
  --light: #f4f5f8;
  --dark: #1c1e32;
}

h1,
h2,
.font-weight-bold {
  font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
  font-weight: 600 !important;
}
.mission-vision-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #ececec;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  height: 100%;
}

/* Heading & Icon in Same Line */
.title-area {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff4ea;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  flex-shrink: 0;
}

.icon-box i {
  font-size: 26px;
  color: #f77d0a;
  transition: 0.4s;
}

.title-area h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  transition: 0.4s;
}

.mission-vision-box p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 0;
  text-align: justify;
}

/* Hover Effect */
.mission-vision-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #f77d0a;
}

.mission-vision-box:hover .icon-box {
  background: #f77d0a;
}

.mission-vision-box:hover .icon-box i {
  color: #fff;
  transform: rotate(360deg);
}

.mission-vision-box:hover h3 {
  color: #f77d0a;
}

h5,
h6,
.font-weight-medium {
  font-weight: 500 !important;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

.nav-bar::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  background: var(--dark);
}

.nav-bar::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background: #ffffff;
}

.navbar-dark .navbar-nav .nav-link {
  padding: 30px 15px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--light);
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    padding: 10px 15px;
  }
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(28, 30, 50, 0.7); */
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h4 {
    font-size: 18px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
}

.page-header {
  height: 400px;
  margin-bottom: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(28, 30, 50, 0.9), rgba(28, 30, 50, 0.9)),
    url(../img/bg-banner.jpg);
  background-attachment: fixed;
}

@media (max-width: 991.98px) {
  .page-header {
    height: 300px;
  }
}

.service-item {
  height: 320px;
  background: var(--light);
  transition: 0.5s;
}

.service-item:hover,
.service-item.active {
  background: var(--secondary);
}

.service-item h1,
.service-item h4 {
  transition: 0.5s;
}

.service-item:hover h1,
.service-item.active h1 {
  color: var(--dark) !important;
}

.service-item:hover h4,
.service-item.active h4 {
  color: var(--light);
}

.rent-item {
  padding: 30px;
  text-align: center;
  background: var(--light);
  transition: 0.5s;
}

.rent-item:hover,
.rent-item.active {
  background: var(--secondary);
  color: white;
}

.rent-item h4 {
  transition: 0.5s;
}

.rent-item:hover h4,
.rent-item.active h4 {
  color: var(--light);
}

.team-item {
  padding: 30px 30px 0 30px;
  text-align: center;
  background: var(--light);
  transition: 0.5s;
}

.team-item:hover,
.owl-item.center .team-item {
  background: var(--secondary);
  color: white;
}

.team-item h4 {
  transition: 0.5s;
}

.owl-item.center .team-item h4,
.owl-item.center .rent-item h4 {
  color: var(--light);
}

.team-item .team-social {
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.5s;
  background: var(--light);
}

.owl-item.center .team-item .team-social,
.owl-item.center .rent-item {
  background: var(--secondary);
}

.team-item:hover .team-social {
  opacity: 1;
  background: var(--secondary);
}

.team-carousel .owl-nav,
.related-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 60px;
  top: calc(50% - 30px);
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next,
.related-carousel .owl-nav .owl-prev,
.related-carousel .owl-nav .owl-next {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  font-size: 22px;
  transition: 0.5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover,
.related-carousel .owl-nav .owl-prev:hover,
.related-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
}

.vendor-carousel .owl-dots,
.testimonial-carousel .owl-dots {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vendor-carousel .owl-dot,
.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 20px;
  height: 20px;
  background: var(--secondary);
  transition: 0.5s;
}

.vendor-carousel .owl-dot.active,
.testimonial-carousel .owl-dot.active {
  width: 40px;
  height: 40px;
  background: var(--primary);
}

.testimonial-carousel .owl-item img {
  width: 80px;
  height: 80px;
}

.testimonial-carousel .owl-item .testimonial-item {
  height: 350px;
  transition: 0.5s;
  background: var(--light);
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: var(--secondary);
  color: white;
}

.testimonial-carousel .owl-item .testimonial-item h1,
.testimonial-carousel .owl-item .testimonial-item h4 {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item h1 {
  color: var(--dark) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item h4 {
  color: var(--light);
}

.bg-banner {
  background:
    linear-gradient(rgba(28, 30, 50, 0.9), rgba(28, 30, 50, 0.9)),
    url(../img/bg-banner.jpg);
  background-attachment: fixed;
}

.font-color {
  color: white !important;
}

.font-colors:hover {
  color: white !important;
}

/* form css  */
/*==================================================
            BOOKING FORM
==================================================*/

.booking-box {
  width: 100%;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 2;
}

/*==================================================
            TRIP TABS
==================================================*/

.booking-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 15px;
}

.trip-btn {
  flex: 1;

  min-width: 130px;

  height: 48px;

  border: none;

  background: #f5f5f5;

  color: #444;

  font-size: 14px;

  font-weight: 600;

  text-transform: uppercase;

  border-radius: 8px;

  cursor: pointer;

  transition: 0.3s ease;
}

.trip-btn:hover {
  background: #ff6b00;

  color: #fff;
}

.trip-btn.active {
  background: #ff6b00;

  color: #fff;

  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

/*==================================================
            FORM GRID
==================================================*/

.booking-form {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 15px;

  align-items: end;
}

/*==================================================
            FORM ITEM
==================================================*/

.booking-item {
  display: flex;

  flex-direction: column;
}

.booking-item label {
  font-size: 13px;

  font-weight: 600;

  color: #666;

  margin-bottom: 6px;
}

.booking-item input,
.booking-item select {
  width: 100%;

  height: 48px;

  border: 1px solid #ddd;

  border-radius: 8px;

  padding: 0 14px;

  font-size: 14px;

  background: #fff;

  transition: 0.3s;
}

.booking-item input:focus,
.booking-item select:focus {
  outline: none;

  border-color: #ff6b00;

  box-shadow: 0 0 10px rgba(255, 107, 0, 0.15);
}

/*==================================================
            BUTTON
==================================================*/

.booking-button {
  display: flex;

  align-items: flex-end;
}

.booking-button button {
  width: 100%;

  height: 48px;

  border: none;

  border-radius: 8px;

  background: #0d6efd;

  color: #fff;

  font-size: 16px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.booking-button button:hover {
  background: #ff6b00;
}

/*==================================================
            PLACEHOLDER
==================================================*/

.booking-item input::placeholder {
  color: #999;
}

/*==================================================
            SELECT
==================================================*/

.booking-item select {
  appearance: none;

  -webkit-appearance: none;

  -moz-appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");

  background-repeat: no-repeat;

  background-position: right 15px center;

  padding-right: 40px;
}

/*==================================================
            RESPONSIVE
==================================================*/

@media (max-width: 1400px) {
  .booking-form {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1200px) {
  .booking-form {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .booking-form {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .booking-tabs {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
  }

  .trip-btn {
    min-width: auto;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-button {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .booking-tabs {
    grid-template-columns: 1fr;
  }

  .booking-box {
    padding: 15px;
  }

  .trip-btn {
    font-size: 13px;

    height: 45px;
  }

  .booking-item input,
  .booking-item select {
    height: 45px;

    font-size: 14px;
  }

  .booking-button button {
    height: 45px;

    font-size: 15px;
  }
}
/* form css end  */

.booking-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 35px;
}

.trip-btn {
  min-width: 170px;
  height: 70px;

  border: none;
  border-radius: 15px;

  background: #fff;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  font-size: 15px;
  font-weight: 600;

  color: #555;

  transition: 0.35s;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.trip-btn i {
  font-size: 24px;

  margin-bottom: 8px;

  color: #f77d0a;
}

.trip-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.trip-btn.active {
  background: #f77d0a;

  color: #fff;
}

.trip-btn.active i {
  color: #fff;
}

@media (max-width: 768px) {
  .trip-btn {
    width: 46%;
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .trip-btn {
    width: 100%;
  }
}

/* package-gallery css  */
.card {
  transition: 0.35s;
  overflow: hidden;
  border-radius: 12px;
}

.card img {
  height: 240px;
  object-fit: cover;
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18) !important;
}

.card:hover img {
  transform: scale(1.08);
}

.card-body h5 {
  font-weight: 700;
}

.card-body p {
  font-size: 15px;
  line-height: 26px;
}

/* package-gallery css end  */

/*=========================================
        BLOG PAGE - MAHADEV TAXI TOURS
==========================================*/

body {
  background: #f5f7fb;
  font-family: "Poppins", sans-serif;
}

/* Main Container */

.blog-section {
  padding: 80px 0;
}

/* Row Gap */

.blog-section .row {
  row-gap: 35px;
}

.row {
  row-gap: 10px; /* Space between rows */
}

.col-lg-4 {
  margin-bottom: 20px;
}

/* Card */

.blog-card {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: 0.4s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.blog-card {
  margin: 15px;
}
/* Card Hover */

.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(28, 30, 50, 0.18);
}

/* Image */

.blog-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.5s;
}

/* Image Hover */

.blog-card:hover img {
  transform: scale(1.08);
}

/* Card Body */

.blog-card .card-body {
  padding: 28px;
}

/* Title */

.blog-card h4 {
  font-size: 24px;
  font-weight: 700;
  color: #1c1e32;
  margin-bottom: 15px;
}

/* Paragraph */

.blog-card p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 22px;
}

/* Button */

.blog-btn {
  background: #f77d0a;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.4s;
  display: inline-block;
}

/* Button Hover */

.blog-btn:hover {
  background: #1c1e32;
  color: #fff;
  letter-spacing: 0.5px;
}

/* Optional Badge */

.blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #f77d0a;
  color: #fff;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

/* Card Image Wrapper */

.card-img {
  position: relative;
  overflow: hidden;
}

/* Responsive */

@media (max-width: 991px) {
  .blog-card img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 50px 0;
  }

  .blog-card img {
    height: 200px;
  }

  .blog-card h4 {
    font-size: 21px;
  }
}
