:root {
  --primary: #1a3c5e;
  --accent: #e8720c;
  --accent2: #f0a500;
  --light-bg: #f7f9fc;
  --white: #ffffff;
  --text: #2c3e50;
  --muted: #6c7a8a;
  --border: #e2e8f0;
}

* {
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif !important;
  color: var(--text);
}
h1,
h2,
h3,
h4 {
  font-family: "Poppins", serif;
}

html,
body {
  scroll-behavior: auto !important;
}

/* ── NAVBAR ─────────────────────────────────────── */
.navbar {
  background: rgb(255, 255, 255);
  box-shadow: 0 2px 12px #ffffff14;
  padding: 12px 0;
}
.navbar-brand img {
  height: 60px;
}
.navbar-brand span {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}
.navbar-brand small {
  display: block;
  font-family: "Poppins";
  font-size: 10px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.nav-link {
  font-size: 16px !important;
  font-weight: 500;
  color: #fff !important;
  padding: 6px 14px !important;
}
.nav-link:hover {
  color: #000 !important;
}

/* .navbar-toggler-icon {
  background-image: url("../images/menu-icon.png") !important;
} */
.btn-whatsapp {
  background: #25d366 !important;
  color: #fff !important;
  border: none;
  border-radius: 50px !important;
  padding: 8px 18px !important;
  font-size: 13px;
  font-weight: 500;
}
.btn-whatsapp:hover {
  background: #107137 !important;
  color: #fff;
}

/* ── HERO ────────────────────────────────────────── */

/* .hero-banner img {
  width: 100%;
  height: 100vh;
  display: block;
  position: relative;
} */

.hero-banner {
  position: relative;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 28, 50, 0.5) 0%,
    rgba(10, 28, 50, 0.3) 60%,
    rgba(10, 28, 50, 0) 100%
  );
  z-index: 1;
}

.hero-banner img {
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
}
.hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: none;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
}
.hero-badge {
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 50px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}
.hero h1 em {
  color: var(--accent2);
  font-style: italic;
}
.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  max-width: 460px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.hero-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-features {
  padding: 20px 0;
  margin-bottom: 15px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-item {
  color: #fff;
  position: relative;
}

.feature-item i {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}

.feature-item h6 {
  font-size: 14px !important;
  font-weight: 500;
  margin-bottom: 1px;
}

.feature-item small {
  font-size: 12px !important;
  font-weight: 500;
}

.feature-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

@media (min-width: 768px) {
  .feature-item {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .feature-item:last-child {
    border-right: none;
  }
}

.review-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #fff;
  font-size: 16px;
}

.excellent {
  font-weight: 500;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars span {
  width: 24px;
  height: 24px;
  background: #00aa6c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.rating {
  font-weight: 700;
}

.reviews {
  color: #f1f1f1;
}

.tripadvisor-logo {
  height: 22px;
  width: auto;
}

/* Quote card */
.quote-card {
  background: rgba(232, 114, 12, 1);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  text-align: center;
  margin-top: 40px;
}
.quote-card h5 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
}
.quote-card p {
  font-size: 12px;
  color: #fff;
  margin-bottom: 20px;
}
.quote-card .form-control,
.quote-card .form-select {
  border: 1px solid #797777;
  border-radius: 10px;
  font-size: 13px;
  padding: 10px 14px;
  margin-bottom: 12px;
}
.quote-card .form-control:focus,
.quote-card .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 114, 12, 0.12);
}
.btn-quote {
  background: #245814;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  transition: background 0.2s;
}
.btn-quote:hover {
  background: #c55e08;
  color: #fff;
}

.inputcol {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}
.trust-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 10px;
  font-size: 11px;
  color: #fff;
}
.trust-badges span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── USP BAR ─────────────────────────────────────── */
.usp-bar {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
}
.usp-item i {
  font-size: 26px;
  color: var(--accent);
}
.usp-item strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: block;
}
.usp-item span {
  font-size: 11px;
  color: var(--muted);
}

.trip-planner-card {
  background: #ebf5fd;
  border-radius: 20px;
  padding: 30px 25px 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  /* background-image: url("../images/kalbeliya-ma-jivan-shaifaly-1.jpg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto; */
}

.trip-planner-card h2 {
  text-align: center;
  color: #12386b;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 35px;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 15px;
  bottom: 15px;
  width: 2px;
  background: #1d5bbf;
}

.timeline-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  position: relative;
}

.icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border: 2px solid #1d5bbf;
  border-radius: 50%;
  background: #fff;
  color: #1d5bbf;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.content h6 {
  font-size: 18px;
  font-weight: 700;
  color: #12386b;
  margin-bottom: 4px;
}

.content p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.testimonial-card {
  background: #f8f9fb;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.cta-banner {
  background: #1a3c6e;
  padding: 28px 0;
}

.cta-title {
  font-size: 22px !important;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.cta-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* WhatsApp button */
.btn-wa {
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-wa:hover {
  background: #1aad52;
  color: #fff;
}

/* OR divider */
.or-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

/* Get Free Quote button */
.btn-quote1 {
  background: #e8720c;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 11px 26px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-quote1:hover {
  background: #c55e08;
  color: #fff;
}

/* Badge items */
.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.badge-item i {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.8);
}
.badge-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.badge-item span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.divider-v {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  height: 50px;
  align-self: center;
}

@media (max-width: 767px) {
  .cta-title {
    font-size: 18px;
    text-align: center;
  }
  .cta-sub {
    text-align: center;
  }
  .btn-group-cta {
    justify-content: center !important;
  }
  .badges-row {
    justify-content: center !important;
    gap: 20px !important;
    margin-top: 20px;
  }
  .divider-v {
    display: none;
  }
}

.section-title {
  color: #12386b;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.quote {
  color: #bfc5d2;
  margin-right: 8px;
}

.review-item {
  background: #fff;
  border-radius: 14px;
  padding: 3px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.review-item img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.review-content h5 {
  font-size: 16px;
  color: #12386b;
  margin-bottom: 2px;
  font-weight: 700;
}

.review-content small {
  display: block;
  color: #777;
  margin-bottom: 5px;
}

.stars {
  color: #f5a623;
  letter-spacing: 2px;
  font-size: 14px;
}

.rating-text {
  text-align: center;
  color: #666;
  margin: 0px 0px 20px 0;
  font-size: 14px;
}

.review-platforms {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.review-platforms span {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* ── SECTION TITLES ──────────────────────────────── */
.section-title {
  color: var(--primary);
  margin-bottom: 8px;
}
.section-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 40px;
}
.section-divider {
  width: 56px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 12px auto 14px;
}

/* ── TOUR CARDS ──────────────────────────────────── */
.tour-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  /* max-width: 380px; */
  width: 100%;
  border: #ddd 1px solid;
  margin-bottom: 20px;
}

/* Image */
.tour-card .card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Body */
.tour-card .card-body {
  padding: 18px 18px 0;
}

/* Title */
.tour-card .card-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 12px;
}

/* Duration */
.tour-card .duration {
  font-size: 16px;
  color: #333;
  margin-bottom: 14px;
}
.tour-card .duration span.label {
  color: #e8720c;
  font-weight: 700;
  font-size: 16px;
}

/* Destinations */
.tour-card .destinations {
  font-size: 13px;
  color: #333;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  line-height: 1.8;
}
.tour-card .destinations .label {
  color: #e8720c;
  font-weight: 700;
  white-space: nowrap;
  font-size: 16px;
}
.night-badge {
  background: #fbe8d9;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #444;
  padding: 2px 7px;
  white-space: nowrap;
}
.dest-name {
  font-size: 13px;
  color: #333;
}

/* Inclusions */
.inclusions {
  border-top: 1px solid #eee;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}
.incl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.incl-item i {
  font-size: 22px;
  color: #444;
}
.incl-item span {
  font-size: 13px;
  color: #000;
  font-weight: 500;
}

/* Button */
.card-footer-custom {
  padding: 0 18px 20px;
  text-align: center;
}
.btn-enquire {
  background: #245814;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.2s;
  cursor: pointer;
}
.btn-enquire:hover {
  background: #c55e08;
}

/* ── WHY CHOOSE ──────────────────────────────────── */
.why-section {
  background: #ecf5fd;
}
.why-card {
  /* background: #fff; */
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  /* border: 1px solid var(--border); */
  height: 100%;
  transition: box-shadow 0.2s;
}
.why-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
  color: #003b8a;
}
.why-card h6 {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ── DESTINATIONS ────────────────────────────────── */
.dest-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}
.dest-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.35s;
}
.dest-card:hover img {
  transform: scale(1.06);
}
.dest-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10, 28, 50, 0.85));
  padding: 18px 14px 14px;
}
.dest-overlay h6 {
  color: #fff;
  font-family: "Poppins";
  font-size: 17px;
  margin: 0 0 2px;
}
.dest-overlay p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  margin: 0;
}

/* ── HOW IT WORKS ────────────────────────────────── */
.step-num {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.step-line {
  width: 2px;
  background: var(--border);
  flex: 1;
  margin: 4px 0;
  min-height: 30px;
}

/* ── TESTIMONIALS ────────────────────────────────── */
.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--border);
  height: 100%;
}
.stars {
  color: #f0a500;
  font-size: 13px;
  margin-bottom: 12px;
}
.review-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.reviewer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.reviewer strong {
  font-size: 13px;
  color: var(--primary);
  display: block;
}
.reviewer span {
  font-size: 11px;
  color: var(--muted);
}

/* ── CTA BANNER ──────────────────────────────────── */
.cta-banner {
  background: #013d74;
  padding: 30px 0;
  text-align: center;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(28px, 5vw, 44px);
  margin-bottom: 12px;
  text-align: left;
}
.cta-banner p {
  color: rgb(241, 30, 30) (255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 32px;
  text-align: left;
}
.btn-cta-wa {
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
}
.btn-cta-quote {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
}

/* ── WHAT'S INCLUDED ─────────────────────────────── */
.included-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.included-item i {
  font-size: 24px;
  color: var(--accent);
}
.included-item span {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
}

.mountain-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  min-height: 510px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

/* Background image */
.mountain-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(10, 25, 60, 0.55) 0%,
      rgba(10, 25, 60, 0.3) 30%,
      rgba(10, 25, 60, 0.75) 70%,
      rgba(10, 25, 60, 0.92) 100%
    ),
    url("../images/gwalior-fort.jpg") center/cover no-repeat;
  z-index: 0;
}

.mountain-card-body {
  position: relative;
  z-index: 1;
  padding: 28px 24px 28px;
  width: 100%;
}

.mountain-card h2 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.mountain-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 22px;
}

.btn-plan {
  background: #e8720c;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  text-decoration: none;
}
.btn-plan:hover {
  background: #c55e08;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive — full width on small screens */
@media (max-width: 400px) {
  .mountain-card {
    max-width: 100%;
    min-height: 340px;
  }
  .mountain-card h2 {
    font-size: 22px;
  }
}
/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: #0d1f31;
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 0;
}
footer h6 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 18px;
}
footer a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 13px;
  display: block;
  margin-bottom: 8px;
}
footer a:hover {
  color: var(--accent);
}
footer p {
  font-size: 13px;
  line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  margin-top: 40px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.social-icons a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  margin-right: 6px;
  text-decoration: none;
}
.social-icons a:hover {
  background: var(--accent);
  color: #fff;
}

/* ── TRUSTPILOT ROW ──────────────────────────────── */
.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.rating-row .stars-lg {
  color: #00b67a;
  font-size: 20px;
}
.rating-row span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.btn:hover {
  color: #fff;
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.thanks {
  margin: 150px 0px 20px 0px;
  padding: 0px;
  text-align: center;
  min-height: 560px;
}

.thanks h1 {
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 50px 0px;
  line-height: 40px;
  letter-spacing: 0px;
  color: #009640;
  font-size: 30px;
  font-weight: 600;
}

.thanks h4 {
  padding: 0px 0px 0px 0px;
  margin: 25px 0px 15px 0px;
  line-height: 35px;
  letter-spacing: 0px;
  color: #000;
  font-size: 18px !important;
  font-weight: 400;
}

.textBg {
  background: #fff;
  border-radius: 15px;
  margin-top: -40px;
  box-shadow: 1px 1px 8px #3c3c3c;
  position: relative;
  z-index: 99;
}

.topTaxt {
  display: flex;
}
.topTaxt a {
  font-size: 14px;
  color: #1f1e1e;
  padding: 0px 10px;
  text-decoration: none;
}
.topTaxt a:hover {
  font-size: 14px;
  color: #f6861e;
}

#enqury {
  scroll-margin-top: 90px;
}

.testimonial-section {
  background: linear-gradient(135deg, #f3f3f3, #f3f3f3);
}

.testimonial-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: #12386b;
}

.testimonial-section h2 span {
  color: #12386b;
}

.video-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.video-box img {
  width: 100%;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.yt-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 3px solid #00c8ff;
}

.yt-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.yt-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.yt-title {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #fff;
}

.yt-title h5 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.yt-title span {
  font-size: 14px;
}

.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 65px;
  background: #ff0000;
  border-radius: 18px;
  color: #fff;
  font-size: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-watch {
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.testimonial-content h3 {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.9;
  font-style: italic;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  left: 0px;
}

.carousel-control-next {
  right: 0px;
}

@media (max-width: 767px) {
  .testimonial-content h3 {
    color: #000;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .carousel-control-next {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    top: 25%;
    transform: translateY(-50%);
    opacity: 1;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    top: 25%;
    transform: translateY(-50%);
    opacity: 1;
  }
  .topTaxt {
    display: flex;
    flex-direction: column;
  }
  .hero-banner {
    display: none;
  }
  .textBg {
    background: #fff;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 1px 1px 8px #3c3c3c;
    position: relative;
    z-index: 99;
  }
  .hero {
    min-height: auto;
    padding: 100px 0 40px;
  }
  .quote-card {
    margin-top: 0px;
  }
  .hero-stats {
    gap: 16px;
  }
  .hero-banner img {
    width: 100%;
    height: 100vh;
    display: block;
    position: relative;
  }
  .hero {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #09131b;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 20px 0 60px;
  }

  .date-field {
    background: url("../images/calender.png") no-repeat right 12px center;
    background-size: 18px;
    padding-right: 40px;
  }
}
