/* ===== GLOBAL RESET (MUST) ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden; /* 👈 side scroll & gap remove */
  font-family: 'Inter', sans-serif; /* 👈 FIX */
}

html {
  scroll-behavior: smooth;
}


/* ===== TOP BAR (VERY SMALL) ===== */
.dcs-topbar {
  height: 28px;                 /* 👈 aur chhota */
  background: #ffc107;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
   width: 100%;
}
#dcs-topbar-text {
  line-height: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ===== HEADER ===== */
.dcs-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
   width: 100%;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

/* 👇 HEIGHT CONTROL HERE */
.dcs-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 14px;            /* 👈 space aur kam */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LOGO AREA ===== */
.dcs-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.dcs-logo img {
  height: 62px;                 /* logo thoda bada */
  display: block;
}

/* BRAND TEXT */
.dcs-brand {
  line-height: 1.05;
}
.dcs-brand-main {
  font-size: 28px;              /* 👈 bada font (image jaisa) */
  font-weight: 800;
  color: #111;
}
.dcs-brand-sub {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #ffc107;
  letter-spacing: 0.5px;
}

/* ===== NAV ===== */
.dcs-nav {
  display: flex;
  gap: 26px;
}
.dcs-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  position: relative;
}
.dcs-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #ffc107;
  transition: 0.25s;
}
.dcs-nav a:hover::after {
  width: 100%;
}

/* ===== CALL BUTTON ===== */
.dcs-call {
  background: #0f2a44;
  color: #fff;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dcs-call:hover {
  background: #ffc107;
  color: #000;
}

/* ===== MOBILE ===== */
.dcs-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
}
.dcs-toggle span {
  width: 22px;
  height: 2px;
  background: #000;
}

@media (max-width: 992px) {
  .dcs-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 14px;
    display: none;
    flex-direction: column;
    gap: 14px;
  }
  .dcs-nav.active {
    display: flex;
  }
  .dcs-toggle {
    display: flex;
  }
}






/* ===== HERO SECTION ===== */
/* ===== HERO SECTION ===== */
.hero-cab {
  min-height: 100vh;
  background: url("images/hero-bg.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
}

/* DARK LEFT OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 30%,
    rgba(0,0,0,0.4) 60%,
    rgba(0,0,0,0.2) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}

/* ===== LEFT CONTENT ===== */
.hero-content h1 {
  font-size: 52px;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
}

.hero-content h1 span {
  color: #ffc107;
}

.hero-line {
  width: 120px;
  height: 4px;
  background: #ffffff;
  margin: 20px 0;
  border-radius: 4px;
}

.hero-content p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 28px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 18px;
}

.btn-primary {
  background: #ffc107;
  color: #000;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-4px);
}

.btn-secondary {
  background: #1f7fbf;
  border: none;
  color: #fff;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #0d6efd;
}

/* ===== FORM CARD ===== */
.hero-form {
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.hero-form h3 {
  font-size: 26px;
  color: #f4a300;
  font-weight: 700;
}

.hero-form p {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-form label {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.hero-form input,
.hero-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.form-radio {
  display: flex;
  gap: 22px;
  font-size: 14px;
  margin: 15px 0 22px;
}

.hero-form button {
  width: 100%;
  padding: 14px;
  border: none;
  background: #193241;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.hero-form button:hover {
  background: #0f2430;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 38px;
  }
}

/* ===== FEEDBACK MODAL ===== */
.feedback-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

.feedback-modal.active {
  opacity: 1;
  visibility: visible;
}

.feedback-box {
  background: #193241;
  color: #fff;
  width: 90%;
  max-width: 600px;
  border-radius: 14px;
  padding: 30px;
  position: relative;
  transform: translateY(40px);
  transition: 0.4s ease;
}

.feedback-modal.active .feedback-box {
  transform: translateY(0);
}

.feedback-box h2 {
  color: #ffc107;
  margin-bottom: 6px;
}

.feedback-box p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #ddd;
}

.feedback-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.feedback-box input,
.feedback-box select,
.feedback-box textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
}

.feedback-submit {
  width: 100%;
  padding: 14px;
  background: #ffc107;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.feedback-submit:hover {
  background: #fff;
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 22px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 600px) {
  .feedback-row {
    grid-template-columns: 1fr;
  }
}


/* ===== BOOK A CAB SECTION ===== */
/* ===== CAB SECTION ===== */
.dcs-cab-section {
  padding: 80px 20px;
  background: #f3f3f3;
}

.dcs-cab-container {
  max-width: 1250px;
  margin: auto;
}

.dcs-cab-head {
  text-align: center;
  margin-bottom: 60px;
}

.dcs-cab-tag {
  color: #f4b400;
  font-weight: 700;
  font-size: 20px;
  display: block;
  margin-bottom: 8px;
}

.dcs-cab-head h2 {
  font-size: 48px;
  font-weight: 800;
  margin: 0;
}

/* GRID */
.dcs-cab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.dcs-cab-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.dcs-cab-img {
  background: #efefef;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  text-align: center;
}

.dcs-cab-img img {
  max-width: 100%;
  height: 160px;
  object-fit: contain;
}

/* RATING */
.dcs-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ffc107;
  font-weight: 700;
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 6px;
}

/* TITLE */
.dcs-cab-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 18px 0 14px;
}

/* LIST */
.dcs-cab-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.dcs-cab-card ul li {
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.dcs-cab-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #000;
  font-weight: bold;
}

/* PRICE */
.dcs-price {
  font-size: 28px;
  font-weight: 800;
}

.dcs-price span {
  font-size: 14px;
  font-weight: 600;
}

.dcs-est {
  font-size: 12px;
  margin-left: 6px;
  font-weight: 600;
}

/* BUTTON */
.dcs-btn {
  display: block;
  margin-top: 15px;
  background: #0f2a44;
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.dcs-btn:hover {
  background: #ffc107;
  color: #000;
}

/* BIG BUS CARD */
.dcs-big {
  grid-column: span 4;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .dcs-cab-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dcs-big {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .dcs-cab-grid {
    grid-template-columns: 1fr;
  }
  .dcs-big {
    grid-column: span 1;
  }
  .dcs-cab-head h2 {
    font-size: 30px;
  }
}

/* ===== PREMIUM BOOK SECTION ===== */

.banner-section {
  width: 96%;
  height: 450px;
  margin: 40px auto;
  border-radius: 25px;
  background: url('images/cab-service.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

/* dark overlay */
.banner-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 25px;
}

.banner-content {
  position: relative;
  max-width: 520px;
  color: #ffffff;
  z-index: 2;
}

.banner-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.book-car-btn {
  background: #f4b400;
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

/* ===== BOOKING MODAL ===== */

.booking-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

.booking-modal.active {
  opacity: 1;
  visibility: visible;
}

.booking-box {
  background: #193241;
  width: 90%;
  max-width: 600px;
  padding: 30px;
  border-radius: 16px;
  color: #fff;
  position: relative;
  transform: translateY(40px);
  transition: 0.4s ease;
}

.booking-modal.active .booking-box {
  transform: translateY(0);
}

.booking-box h2 {
  color: #ffc107;
  margin-bottom: 5px;
}

.booking-box p {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.booking-box input,
.booking-box select {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
}

.trip-options {
  display: flex;
  gap: 15px;
  margin: 15px 0;
  font-size: 14px;
}

.book-btn {
  width: 100%;
  padding: 14px;
  border-radius: 40px;
  border: none;
  background: #ffc107;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.book-btn:hover {
  background: #fff;
  transform: scale(1.03);
}

.booking-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 22px;
  cursor: pointer;
}

/* Responsive */
@media(max-width: 600px){
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== FARE SECTION ===== */

.fare-section{
  padding:80px 4%;
  background:#f3f3f3;
}

/* Container Box Like Screenshot */
.fare-container{
  background:#e9e9e9;
  padding:40px;
  border-radius:14px;
}

/* Header */
.fare-header{
  margin-bottom:25px;
}

.fare-header h2{
  font-size:34px;
  font-weight:700;
  border-bottom:1px solid #cfcfcf;
  padding-bottom:15px;
}

.fare-header span{
  color:#000;
}

.fare-header p{
  display:none; /* screenshot doesn't show tagline */
}

/* Tabs Row */
.fare-tabs{
  background:#dddddd;
  padding:15px;
  border-radius:12px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:40px;
}

.fare-tabs button{
  padding:8px 18px;
  border-radius:20px;
  border:1px solid transparent;
  background:transparent;
  font-size:14px;
  cursor:pointer;
}

.fare-tabs button.active{
  border:1px solid #0d6efd;
  color:#0d6efd;
  background:#fff;
}

/* Grid */
.fare-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

/* Card */
.fare-card{
  background:#fff;
  border-radius:12px;
  padding:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  position:relative;
  transition:.3s;
}

.fare-card:hover{
  transform:translateY(-5px);
}

/* Rating badge */
.rating-badge{
  position:absolute;
  top:15px;
  right:15px;
  background:#ffc107;
  padding:6px 12px;
  border-radius:6px;
  font-size:13px;
  font-weight:600;
}

.rating-badge::after{
  content:" ★";
}

/* Image box */
.car-img{
  background:#efefef;
  padding:20px;
  border-radius:8px;
  text-align:center;
  margin-bottom:20px;
}

.car-img img{
  max-width:100%;
}

/* Title */
.fare-card h3{
  font-size:20px;
  margin-bottom:15px;
}

/* List */
.fare-card ul{
  list-style:none;
  padding:0;
  margin-bottom:18px;
}

.fare-card ul li{
  font-size:14px;
  margin-bottom:8px;
  color:#333;
}

/* Price */
.price{
  font-size:28px;
  font-weight:700;
  margin-bottom:5px;
}

.price span{
  font-size:16px;
  font-weight:500;
}

.price::after{
  content:"  6AM To 11PM";
  font-size:12px;
  font-weight:600;
  margin-left:10px;
}

/* Button */
.fare-btn{
  width:100%;
  padding:12px;
  background:#193241;
  color:#fff;
  border:none;
  border-radius:6px;
  font-weight:600;
  cursor:pointer;
  margin-top:15px;
}

.fare-btn:hover{
  background:#0f1f29;
}

/* Responsive */
@media(max-width:768px){
  .fare-container{
    padding:20px;
  }
}

/* ===== CAB SERVICES SECTION ===== */

/* SECTION */
.cab-services-section {
  padding: 90px 6%;
  background: #f5f6f8; /* same light bg */
}

.cab-heading {
  text-align: center;
  margin-bottom: 60px;
}

.cab-heading span {
  color: #f4b400;
  font-weight: 600;
}

.cab-heading h2 {
  font-size: 38px;
  margin-top: 10px;
  font-weight: 700;
}

/* GRID */
.cab-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.cab-card {
  display: flex;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.07);
  transition: 0.4s ease;
}

.cab-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* IMAGE */
.cab-img {
  flex: 1;
}

.cab-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.cab-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cab-content h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.cab-content p {
  margin-bottom: 20px;
  color: #555;
}

/* BUTTONS */
.cab-buttons {
  display: flex;
  gap: 12px;
}

.book-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  background: #f4b400;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.book-btn:hover {
  background: #e0a800;
}

.whatsapp-btn {
  padding: 10px 20px;
  border-radius: 6px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background: #1ebc59;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .cab-grid {
    grid-template-columns: 1fr;
  }

  .cab-card {
    flex-direction: column;
  }

  .cab-img img {
    height: 250px;
  }
}

/* SECTION */
.reach-section {
  padding: 100px 6%;
  background: #f5f6f8;
}

.reach-heading {
  text-align: center;
  margin-bottom: 70px;
}

.reach-heading span {
  color: #f4b400;
  font-weight: 600;
}

.reach-heading h2 {
  font-size: 40px;
  margin: 10px 0;
}

.reach-heading p {
  color: #666;
}

/* GRID */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 35px;
}

/* CARD */
.reach-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.5s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.reach-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.6s ease;
}

/* Overlay */
.reach-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  transition: 0.4s ease;
}

.reach-overlay h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

/* Hover Effect */
.reach-card:hover img {
  transform: scale(1.1);
}

.reach-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

/* Responsive */
@media(max-width:768px){
  .reach-heading h2{
    font-size: 28px;
  }

  .reach-card img {
    height: 250px;
  }
}

/* ===== WHY CHOOSE WITH IMAGE ===== */

.why-choose {
  position: relative;
  padding: 100px 20px;
  background: url("images/why-bg.jpg") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

/* DARK OVERLAY */

.why-choose .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(10, 15, 30, 0.85),
    rgba(10, 15, 30, 0.9)
  );
  z-index: 1;
}

/* content above overlay */

.why-choose .container {
  position: relative;
  z-index: 2;
}

/* ===== TITLES ===== */

.section-title {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: #cbd5e1;
  max-width: 620px;
  margin: 0 auto 60px;
}

/* ===== GRID ===== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ===== CARD ===== */

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

/* hover effect */

.feature-card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: #3b82f6;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* ===== ICON ===== */

.icon-box {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.4s ease;
}

.feature-card:hover .icon-box {
  transform: rotateY(180deg) scale(1.1);
}

/* ===== TEXT ===== */

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-card p {
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 30px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .why-choose {
    padding: 70px 15px;
  }
}

.fare-wrapper{
  background:#efefef;
  padding:40px 3%;
}

/* Yellow Header */
.fare-top{
  background:#f4b400;
  padding:25px;
  text-align:center;
}

.fare-top h2{
  color:#fff;
  font-size:36px;
  font-weight:700;
}

/* Buttons Row */
.fare-buttons{
  background:#f2f2f2;
  padding:15px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.oneway-btn{
  background:#193241;
  color:#fff;
  border:none;
  padding:10px 18px;
  border-radius:6px;
  font-weight:600;
}

.center-text{
  font-weight:600;
}

.service-btn{
  background:#28a745;
  color:#fff;
  border:none;
  padding:10px 18px;
  border-radius:6px;
  font-weight:600;
}

/* Table Box */
.fare-table-box{
  background:#e5e5e5;
  padding:0;
}

table{
  width:100%;
  border-collapse:collapse;
}

th, td{
  border:1px solid #bdbdbd;
  padding:14px;
  text-align:left;
  font-size:14px;
}

thead{
  background:#dcdcdc;
  font-weight:700;
}

/* Bottom Strip */
.call-strip{
  background:#193241;
  color:#fff;
  text-align:center;
  padding:15px;
  font-weight:600;
}

.note{
  margin-top:10px;
  font-size:14px;
}

/* ===============================
   TESTIMONIAL SECTION
================================= */

.testimonial-section {
  background: #ffffff;
  padding: 90px 20px;
}

.testimonial-container {
  max-width: 1200px;
  margin: auto;
}

/* header */

.testimonial-header {
  text-align: center;
  margin-bottom: 45px;
}

.testimonial-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
}

.tag {
  background: #f59e0b;
  color: #000;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

/* ===============================
   SLIDER
================================= */

.testimonial-wrapper {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}

/* card */

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

/* stars */

.stars {
  color: #f59e0b;
  margin-bottom: 12px;
}

/* client */

.client {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.client img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

/* ===============================
   DOTS
================================= */

.testimonial-dots {
  text-align: center;
  margin-top: 30px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background: #cbd5e1;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #2563eb;
  transform: scale(1.3);
}

/* ===============================
   📱 TABLET
================================= */

@media (max-width: 992px) {
  .testimonial-card {
    min-width: calc(50% - 12px);
  }
}

/* ===============================
   📱 MOBILE
================================= */

@media (max-width: 600px) {
  .testimonial-card {
    min-width: 100%;
  }

  .testimonial-section {
    padding: 60px 14px;
  }
}










/* ================= FOOTER ================= */
.dcs-footer {
  background: #193241;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.dcs-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 45px 12px;   /* LEFT RIGHT SPACE KAM */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;           /* columns gap thoda kam */
}

/* ===== FOOTER SOCIAL ===== */
.dcs-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.dcs-footer-social a {
  width: 38px;
  height: 38px;
  background: #ffc107;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.dcs-footer-social a:hover {
  background: #fff;
  color: #193241;
  transform: translateY(-4px);
}


/* Heading */
.dcs-footer-col h4 {
  color: #ffc107;
  font-size: 18px;     /* ✅ heading 18px */
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
}
.dcs-footer-col h4::after {
  content: "";
  width: 36px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -6px;
}

/* Footer items */
.dcs-footer-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.dcs-footer-item strong {
  font-size: 16px;     /* ✅ 16px */
  display: block;
}

.dcs-footer-item p,
.dcs-footer-item a {
  font-size: 16px;     /* ✅ 16px */
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
}

/* Hover for links */
.dcs-footer-item a:hover {
  color: #ffc107;
}

/* Icon circle */
.dcs-icon-circle {
  min-width: 40px;
  height: 40px;
  background: #ffc107;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

/* Lists */
.dcs-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dcs-footer-col ul li {
  font-size: 16px;     /* ✅ 16px */
  margin-bottom: 10px;
}

.dcs-footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dcs-footer-col ul li a:hover {
  color: #ffc107;
  padding-left: 4px;   /* subtle hover move */
}

/* Bottom bar */
.dcs-footer-bottom {
  text-align: center;
  padding: 14px 10px;
  background: #142733;
  font-size: 14px;
}

.dcs-footer-bottom a {
  color: #ffc107;
  text-decoration: none;
  font-weight: 600;
}

.dcs-footer-bottom a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .dcs-footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .dcs-footer-container {
    grid-template-columns: 1fr;
    padding: 35px 12px;
  }
}


/* ===== SCROLL TO TOP ===== */

#scrollTopBtn {
  position: fixed;
  bottom: 90px;
  right: 22px;
  width: 48px;
  height: 48px;
  background: #ffc107;
  color: #000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 9999;
  font-size: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  background: #193241;
  color: #fff;
  transform: translateY(-4px) scale(1.05);
}


/* ===== WHATSAPP FLOAT ===== */
.dcs-whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 999;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  text-decoration: none;
}

.dcs-whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* Pulse Animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
