/********** Template CSS **********/
:root {
  --primary: #f77d0a;
  --secondary: #2b2e4a;
  --light: #f4f5f8;
  --dark: #1c1e32;
}

/* ===========================
   GLOBAL RESPONSIVE SAFETY
=========================== */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
h2,
.font-weight-bold {
  font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
  font-weight: 600 !important;
  margin-top: 15px;
}
.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: #000;
  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;
  z-index: -1;
}

.nav-bar::after {
  position: absolute;
  z-index: -1;
}
.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);
}
/* ===========================
   TOP HEADER
=========================== */

.topbar {
  background: #111827;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .contact-info a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  margin-right: 20px;
  transition: 0.3s;
}

.topbar .contact-info a:hover {
  color: #f97316;
}

.topbar .social-icons a {
  color: #fff;
  margin-left: 18px;
  font-size: 17px;
  transition: 0.3s;
}

.topbar .social-icons a:hover {
  color: #f97316;
  transform: translateY(-2px);
}

/* ===========================
   NAVBAR
=========================== */

.navbar {
  background: #ffff;
  padding: 15px 0;
  transition: 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ===========================
   LOGO
=========================== */

.navbar-brand img {
  height: 75px;
  width: auto;
  transition: 0.3s;
}

.navbar-brand img:hover {
  transform: scale(1.03);
}

/* ===========================
   MENU
=========================== */

.navbar-nav {
  gap: 10px;
}

.navbar-nav .nav-link {
  position: relative;
  color: #000000 !important;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 18px !important;
  transition: 0.3s;
}

/* Hover */

.navbar-nav .nav-link:hover {
  color: #f97316 !important;
}

/* Active */

.navbar-nav .nav-link.active {
  color: #f97316 !important;
}

/* Underline Animation */

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0;
  height: 3px;
  background: #f97316;
  border-radius: 50px;
  transition: 0.35s;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 70%;
}

/* ===========================
   DROPDOWN
=========================== */

.dropdown-menu {
  background: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.dropdown-item {
  color: #000000;
  padding: 7px 18px;
  transition: 0.3s;
  border-radius: 8px;
}

.dropdown-item:hover {
  background: linear-gradient(90deg, #ffb300, #f57c00);
  color: #fff;
}

/* ===========================
   BOOK NOW BUTTON
=========================== */

.book-btn {
  background: #f97316;
  color: #fff;
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.35s;
}

.book-btn:hover {
  background: #fff;
  color: #f97316;
  transform: translateY(-3px);
}

/* ===========================
   MOBILE
=========================== */

.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
}

.navbar-toggler i {
  color: #fff;
  font-size: 26px;
}

@media (max-width: 991px) {
  .navbar {
    padding: 12px 0;
  }

  .navbar-brand img {
    height: 60px;
  }

  .navbar-nav {
    background: #ffffff;
    margin-top: 15px;
    padding: 15px;
    border-radius: 10px;
  }

  .navbar-nav .nav-link {
    padding: 12px 10px !important;
  }
}

/* ===========================
   SMOOTH TRANSITION
=========================== */

* {
  transition: 0.3s ease;
}
@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    padding: 10px 15px;
    text-align: center;
  }
}

.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
========================================== */

.page-header {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;

  background:
    linear-gradient(rgba(5, 15, 35, 0.28), rgba(5, 15, 35, 0.28)),
    url("../package-img/background-image.webp");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Optional Glass Effect */
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(0, 0, 0, 0.1)
  );
  z-index: 1;
}

/* Content */
.page-header .container {
  position: relative;
  z-index: 2;
}

/* Main Heading */
.page-header h1 {
  color: #ffffff;
  font-size: 60px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;

  text-shadow:
    0 4px 10px rgba(0, 0, 0, 0.5),
    0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Paragraph */
.page-header p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Breadcrumb */
.page-header .breadcrumb {
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  padding: 10px 22px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  margin: auto;
}

.page-header .breadcrumb-item {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
}

.page-header .breadcrumb-item a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.page-header .breadcrumb-item a:hover {
  color: #ffd54a;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 991px) {
  .page-header {
    min-height: 340px;
    background-attachment: scroll;
  }

  .page-header h1 {
    font-size: 46px;
  }
}

@media (max-width: 767px) {
  body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .container,
  .container-fluid {
    width: 100%;
    max-width: 100%;
  }

  .page-header {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .page-header img {
    width: 100%;
    max-width: 100%;
    display: block;
    object-fit: cover;
  }
}

.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: #646994;
  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);
  color: #fff;
}

.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;
}
/* ===========================
   Booking Section
=========================== */

.booking-section {
  padding: 30px 0;
  background: #f5f7fb;
}

.booking-box {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* ===========================
   Header
=========================== */

.booking-header {
  background: linear-gradient(90deg, #ffb300, #f57c00);
  padding: 22px;
  text-align: center;
}

.booking-header h2 {
  margin: 0;
  color: #222;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ===========================
   Form
=========================== */

.booking-form {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding: 30px;
  flex-wrap: nowrap;
}

/* ===========================
   Fields
=========================== */

.booking-item {
  flex: 1;
  position: relative;
}

.booking-item label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  margin-bottom: 8px;
}

.booking-item input,
.booking-item select {
  width: 100%;
  height: 58px;
  border: 2px solid #ececec;
  border-radius: 12px;
  padding: 0 18px;
  background: #fff;
  font-size: 15px;
  transition: 0.3s;
  outline: none;
}

.booking-item input:hover,
.booking-item select:hover {
  border-color: #ffb300;
}

.booking-item input:focus,
.booking-item select:focus {
  border-color: #ff9800;
  box-shadow: 0 0 0 5px rgba(255, 179, 0, 0.18);
}

/* ===========================
   Button
=========================== */

.booking-button {
  min-width: 200px;
}

.booking-button button {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffb300, #f57c00);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.35s;
  box-shadow: 0 8px 20px rgba(245, 124, 0, 0.35);
}

.booking-button button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(245, 124, 0, 0.45);
}

.booking-button i {
  margin-right: 8px;
}

/* ===========================
   Responsive
=========================== */

@media (max-width: 991px) {
  .booking-form {
    flex-wrap: wrap;
  }

  .booking-item,
  .booking-button {
    flex: 0 0 calc(50% - 9px);
  }
}

@media (max-width: 576px) {
  .booking-form {
    flex-direction: column;
  }

  .booking-item,
  .booking-button {
    width: 100%;
    flex: 100%;
  }

  .booking-header h2 {
    font-size: 24px;
  }
}
.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: 280px;
  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;
  color: #000;
}

/* 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;
  }
}

/* Floating Contact Buttons */
.floating-contact {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: auto;
  padding: 0;
  margin: 0;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Common Button Style */
.call-btn,
.whatsapp-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-decoration: none;
  font-size: 22px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.call-btn:hover,
.whatsapp-btn:hover {
  color: #fff;
  text-decoration: none;
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Call */
.call-btn {
  background: #007bff;
}

/* WhatsApp */
.whatsapp-btn {
  background: #25d366;
}

/* Mobile */
@media (max-width: 767px) {
  .floating-contact {
    right: 12px;
    bottom: 15px;
    gap: 10px;
  }

  .call-btn,
  .whatsapp-btn {
    width: 46px;
    height: 46px;
    font-size: 19px;
    margin-left: 15px;
  }
}

/* Small Mobile */
@media (max-width: 375px) {
  .floating-contact {
    right: 10px;
    bottom: 12px;
  }

  .call-btn,
  .whatsapp-btn {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }
}

/* Better performance */
[data-aos] {
  will-change: transform, opacity;
}

/* ================================
   SMOOTH SCROLLING
================================ */

html {
  scroll-behavior: smooth;
}

/* Prevent section heading from hiding behind navbar */
[id] {
  scroll-margin-top: 90px;
}

/* ===========================
   FINAL RESPONSIVE SAFETY
=========================== */
img,
svg,
video,
canvas {
  max-width: 100%;
}

input,
select,
textarea,
button {
  max-width: 100%;
}

@media (max-width: 991px) {
  .page-header {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .booking-form {
    gap: 12px;
    padding: 20px 15px;
  }

  .booking-item,
  .booking-button {
    width: 100%;
    flex: 0 0 100%;
  }

  .booking-button {
    min-width: 0;
  }

  .booking-header {
    padding: 18px 15px;
  }

  .booking-header h2 {
    font-size: 24px;
    line-height: 1.3;
  }
}
/* ===============================
   SERVICES IMAGE
================================ */

.service-image {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #f3f3f3;
}

.service-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

/* Image zoom on hover */

.service-card:hover .service-image img {
  transform: scale(1.08);
}

/* Dark overlay */

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.05));
  z-index: 1;
  pointer-events: none;
}

/* Image Label */

.image-label {
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 2;

  padding: 6px 12px;

  background: #f5a623;
  color: #111;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;

  border-radius: 3px;
}

/* Featured Text */

.featured-text {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;

  z-index: 2;

  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;

  opacity: 0;
  transform: translateY(15px);

  transition: all 0.4s ease;
}

.service-card.featured:hover .featured-text {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 767px) {
  .service-image {
    height: 400px;
  }

  .image-label {
    font-size: 10px;
    padding: 5px 9px;
  }

  .featured-text {
    font-size: 13px;
    opacity: 1;
    transform: none;
  }
}
.flip-phone {
  display: inline-block;
  transform: scaleX(-1);
}
/* =========================================
   MOBILE NAVBAR TOGGLE FIX
========================================= */

@media (max-width: 991.98px) {
  .navbar-toggler {
    display: block !important;
    border: 2px solid #ff7d00 !important;
    padding: 6px 10px !important;
    border-radius: 5px;
    background: #ff7d00 !important;
    margin-left: auto;
    position: relative;
    z-index: 9999;
  }

  .navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
  }

  .navbar-toggler-icon {
    background-image: none !important;
    width: 24px;
    height: 18px;
    position: relative;
    display: inline-block;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after,
  .navbar-toggler-icon {
    /* hamburger */
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: #ffffff;
  }

  .navbar-toggler-icon::before {
    top: 3px;
    box-shadow: 0 7px 0 #ffffff;
  }

  .navbar-toggler-icon::after {
    top: 17px;
  }

  /* Mobile menu */
  #navbarCollapse {
    background: #ffffff;
    width: 100%;
    padding: 10px 0;
  }

  #navbarCollapse .navbar-nav {
    width: 100%;
    margin-left: 0 !important;
  }

  #navbarCollapse .nav-link {
    color: #222 !important;
    padding: 10px 15px !important;
  }

  #navbarCollapse .nav-link:hover {
    color: #ff7d00 !important;
  }

  /* Dropdown */
  #navbarCollapse .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    border: none;
    box-shadow: none;
    background: #f8f8f8;
  }

  #navbarCollapse .dropdown-item {
    padding: 10px 25px;
  }
}
.team-section {
  width: 100%;
  margin: 0 auto;
  background: url("../img/about-bg.jpg") center center / cover no-repeat;
}
/* =========================
   TEAM SECTION
========================= */

.team-section {
  width: 100%;
}

.team-section .container {
  max-width: 900px;
}

.team-section .row {
  padding: 0;
}

.team-item {
  text-align: center;
  padding: 25px;
}

.team-item img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}
.text :hover{
  color: #fff;
}
/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 767px) {
  .team-section {
    width: 100%;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .team-section .container {
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
  }

  .team-section .row {
    margin: 0;
  }

  .team-item {
    width: 100%;
    padding: 10px 5px;
    margin-bottom: 25px;
  }

  .team-item img {
    width: 90%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
  }

  .team-item h4 {
    font-size: 20px;
  }

  .team-item p {
    font-size: 14px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .team-item img {
    width: 95%;
    max-width: 300px;
  }

  .team-item {
    padding-left: 0;
    padding-right: 0;
  }
}


        .call-btn i {
            transform: scaleX(-1);
        }

        