/* ========== Reset & Base ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  overflow-x: hidden;
}

.wrapper {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

/* ========== Topbar & Header ========== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background-color: rgb(31, 58, 80);
  color: #fff;
  width: 100%;
}

.header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 70px;
}

.logo h2 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: rgb(217, 144, 9);
}

/* ========== Navigation / Links ========== */
.hamburger {
  display: none;
  font-size: 44px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.navBar {
  display: block;
}

.navLinks {
  width: 100%;
  /* overflow-x: hidden; */ /* removed to allow dropdown to show */
}

.linkRight {
  display: flex;
  flex-direction: row;
  gap: 27px;
  align-items: center;
  list-style: none;
}

.linkRight a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
}

.linkRight a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

.linkRight a:hover {
  color: rgb(217, 144, 9);
}

.linkRight a:hover::after {
  width: 100%;
}

.linkRight button {
  padding: 6px 12px;
  background: rgb(217, 144, 9);
  width: 120px;
  color: black;
  border: none;
  height: 40px;
  border-top-right-radius: 40px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.linkRight button:hover {
  background: white;
  color: rgb(31, 58, 80);
}

/* ========== Dropdown Menu ========== */
.linkRight li.dropdown {
  position: relative; /* parent reference for absolute menu */
}

/* Dropdown appears ABOVE parent link */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* show above the link */
  left: 0;
  margin-top: 5px;
  background: white;
  min-width: 150px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  border-radius: 6px;
  overflow: hidden;
  z-index: 1000;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: rgb(31, 58, 80);
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
  background: rgb(217, 144, 9);
  color: black;
  font-weight: bold;
}


/* .linkRight li.dropdown:hover > .dropdown-menu {
  display: block;
} */

/* Desktop: show on hover */
@media (min-width: 451px) {
  .linkRight li.dropdown:hover > .dropdown-menu {
    display: block;
  }
}

/* ========== Mobile / Responsive ========== */
@media (max-width: 450px) {
  .topbar {
    flex-direction: column;
    align-items: stretch;
    padding: 15px 15px;
    gap: 10px;
  }

  .logo {
    margin-left: 0;
  }

  .hamburger {
    display: block;
    align-self: flex-end;
    margin-left: 60px;
    margin-bottom: 10px;
  }

  .navBar {
    display: none;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
  }

  .navBar.active {
    display: block !important;
  }

  .linkRight {
    flex-direction: column;
    gap: 20px;
    padding: 10px 20px;
  }

  .linkRight button {
    background-color: rgb(223, 181, 104);
    color: #555;
    width: 100%;
    border-radius: 6px;
  }

  .linkRight a {
    color: #fff !important;
    font-size: 18px;
  }

  /* Mobile dropdown shows below parent (clickable) */
  .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    background-color: rgb(31, 58, 80);
    border-radius: 0;
    box-shadow: none;
    display: none; /* hidden initially */
  }

  .dropdown-menu li a {
    background-color: rgb(223, 181, 104) !important;
    color: #555 !important;
  }

  /* Show dropdown when parent gets focus */
  .linkRight li.dropdown:focus-within > .dropdown-menu {
    display: block;
  }
}







/* Hero Section Styling */
.hero {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
  /* color:white; */
  padding: 0 20px;
  text-align: center;
  animation: backgroundChange 15s infinite;
}

@keyframes backgroundChange {
  0% {
    background: url('./hero_img_1.png') no-repeat center center;
    background-size: 1000px 700px;

  }
  33% {
    background: url('./hero_img_4.png') no-repeat center center;
    background-size: 1200px 1200px;
  }
  66% {
    background: url('./hero_img_3.png') no-repeat center center;
    background-size: 1200px 1400px;
  }
  100% {
    background: url('./hero_img_2.png') no-repeat center center;
    background-size: 1000px 700px;
  }
}

.hero-content {
  /* max-width: 50%; */
  background-color: rgba(251, 249, 249, 0.5); 
  /* border-radius: 40px; */
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  margin-left: 150px;
  padding: 30px;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  /* margin-left: 180px; */
  color:rgb(31, 58, 80);
}

.hero p {
  font-size:18px;
  margin-bottom: 30px;
  line-height: 1.5;
  color:black;
  font-weight: bold;
  width: 800px;
  margin-left:150px;
  /* background-color: rgba(35, 34, 34, 0.5); */
 
}

.cta-button {
  border-top-right-radius: 40px;
  padding: 15px 30px;
  background-color:rgb(31, 58, 80);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  /* border-radius: 5px; */
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color:rgb(217, 144, 9);
  color:black;
}

/* Responsive Design */
@media (max-width: 450px) {
  .hero {
    flex-direction: column;  /* stack content vertically */
    justify-content: center;
    align-items: center;
    height: auto;  /* let content decide height */
    padding: 20px;
    text-align: center;
  }

  .hero-content {
    margin-left: 0;  /* remove left margin */
    padding: 20px;
    background-color: rgba(35, 34, 34, 0.6); /* keep background for readability */
    width: 100%;
  }

  .hero h1 {
    font-size: 1.8rem; /* smaller heading */
    margin-left: 0;
    color: #1abc9c;
  }

  .hero p {
    font-size: 14px; /* smaller text */
    width: 100%;  /* no fixed width */
    margin-left: 0;
    color: white;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  @media (max-width: 440px) {
  @keyframes backgroundChange {
    0% {
      background: url('./hero_img_1.png') no-repeat center center;
      background-size: cover;
    }
    33% {
      background: url('./hero_img_4.png') no-repeat center center;
      background-size: cover;
    }
    66% {
      background: url('./hero_img_3.png') no-repeat center center;
      background-size: cover;
    }
    100% {
      background: url('./hero_img_2.png') no-repeat center center;
      background-size: cover;
    }
  }
}
}










.search-section {
  margin-top: 50px;
  background-color: rgb(31, 58, 80);
  padding: 80px 20px;
  display: flex;
  justify-content: center;

  /* Animation properties */
  animation: slideInUp 1s ease-out forwards;
}

/* Initial slide-in animation */
@keyframes slideInUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.search-container {
  background:rgb(215, 160, 154);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
  max-width: 1000px;
  width: 100%;
}

.search-container h2 {
  font-size:2.5rem;
  margin-bottom: 25px;
  text-align: center;
  /* color:rgb(31, 58, 80); */
  color:rgb(31, 58, 80);
}

.search-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.trip-type {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 600;
  color:black !important;
  font-size: 14px;
}

.form-group input,
.form-group select {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: rgb(31, 58, 80);
  /* box-shadow: 0 0 8px rgba(46,134,222,0.3); */
  outline: none;
}

.search-btn {
  grid-column: 1 / -1;
  padding: 14px;
  background:rgb(31, 58, 80);
  margin-left: 350px;
  width: 200px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border: none;
  /* border-radius: 12px; */
  cursor: pointer;
  transition: 0.3s ease;
  border-top-right-radius: 40px;
}

.search-btn:hover {
  transform: translateY(-2px);
  background-color:rgb(217, 144, 9);
  color:black;
}



/* ========== Mobile / Responsive (max-width: 450px) ========== */
@media (max-width: 450px) {
  .search-section {
    padding: 40px 10px;
  }

  .search-container {
    padding: 20px 15px;
    border-radius: 12px;
    /* width: 500px; */
  }

  .search-container h2 {
    font-size: 1.5rem;
  }

  .search-form {
    grid-template-columns: 1fr; /* stack all fields vertically */
    gap: 15px;
  }

  .trip-type {
    flex-direction: column; /* stack radio buttons */
    gap: 15px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group select {
    font-size: 14px;
    padding: 10px;
  }

  .search-btn {
    grid-column: 1 / -1;
    margin-left: 0;
    width: 100%; /* button full width */
    font-size: 16px;
    padding: 12px;
    border-top-right-radius: 20px;
  }
}









/* ========== Pricing Section Styles ========== */
.pricing-section {
  padding: 80px 20px;
  background:url('./43.img.jpg') no-repeat center center / cover fixed;
  font-family: "Segoe UI", sans-serif;
}

.pricing-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color:rgb(217, 144, 9);
  margin-bottom: 40px;
  position: relative;
  animation: fadeInDown 1s ease-out;
}

/* Fancy underline effect */
.pricing-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background:rgb(217, 144, 9);
  margin: 10px auto 0;
  border-radius: 2px;
  animation: growLine 1.2s ease-out;
}

/* Fade + slide down */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Underline animation */
@keyframes growLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}

.pricing-section h3 {
  margin-left: 150px;
  font-size: 1.5rem;
  margin-bottom: 15px;
  padding: 10px 20px;
  background-color:rgb(217, 144, 9);
  color:black;
  border-radius: 6px;
  display: inline-block;
  transform-origin: center center;

  animation:
    fadeSlide 1s ease forwards,
    pulse 2s ease-in-out infinite 1s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Add a simple entrance animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.pricing-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  /* background: #ff6600; */
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ========== Fare Table ========== */
.fare-table {
  width: 80%;
  border-collapse: collapse;
  margin-bottom: 50px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
  background-color: whitesmoke;
  margin-left: 150px;
  animation: fadeInTable 1s ease-out;
}

.fare-table th, 
.fare-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.fare-table th {
  background:rgb(31, 58, 80);
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
}

.fare-table tbody tr {
  background: #fff;
  transition: background 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInRow 0.6s ease forwards;
}

.fare-table tbody tr:nth-child(1) { animation-delay: 0.2s; }
.fare-table tbody tr:nth-child(2) { animation-delay: 0.4s; }
.fare-table tbody tr:nth-child(3) { animation-delay: 0.6s; }
.fare-table tbody tr:nth-child(4) { animation-delay: 0.8s; }

.fare-table tbody tr:hover {
  background: #fdf2e9;
}

/* Animations */
@keyframes fadeInTable {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeInRow {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .fare-table thead {
  background: #cc6060;
  color: #fff;
} */

.fare-table th, 
.fare-table td {
  padding: 15px;
  text-align: center;
  font-size: 15px;
}

/* .fare-table tbody tr:nth-child(even) {
  background: #b2a1a1;
} */

.fare-table tbody tr:hover {
  background:rgb(223, 181, 104);
  transition: 0.3s ease;
}

/* ========== Mobile / Responsive for 450px ========== */
@media (max-width: 450px) {
  .pricing-section {
    padding: 50px 15px;
    background-position: center top;
  }

  .pricing-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .pricing-section h2::after {
    width: 60px;
  }

  .pricing-section h3 {
    margin-left: 0;
    font-size: 1.2rem;
    padding: 8px 15px;
    display: block;
  }

  .fare-table {
    width: 100%;
    margin-left: 0;
    font-size: 14px;
  }

  .fare-table th,
  .fare-table td {
    padding: 10px;
  }
}












/* ========== Offers Section ========== */
.offers {
  padding: 80px 20px;
  background-blend-mode: overlay;
  font-family: "Segoe UI", sans-serif;
  margin-top: 100px;
}

.offer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.offer-card {
  background:rgb(31, 58, 80);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease forwards,
             pulse 2s ease-in-out infinite; /* add the pulse animation */
  opacity: 0;
  /* optionally, to avoid jittering, set transform origin */
  transform-origin: center center;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05); /* grow 5% */
  }
  100% {
    transform: scale(1);
  }
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered animations */
.offer-card:nth-child(1) { animation-delay: 0.2s; }
.offer-card:nth-child(2) { animation-delay: 0.4s; }
.offer-card:nth-child(3) { animation-delay: 0.6s; }

.offer-card:hover {
  transform: translateY(-10px);
  background-color: rgb(217, 144, 9);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.offer-card:hover h3{
  color: black;
}

.offer-card:hover .offer-content .btn {
  color: black;
  border: 2px solid black;
}

.badge {
  position: absolute;
  top:15px;
  left:70px;
  background:whitesmoke;
  color:rgb(31, 58, 80);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.offer-img {
  margin-top: 10px;
  margin-left: 10px;
  width: 20%;
  height: 20%;
  object-fit: cover;
}

.offer-content {
  padding: 20px;
  text-align: center;
}

.offer-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color:salmon;
  margin-top: 10px;
}

.offer-content p {
  font-size: 14px;
  color:whitesmoke;
  /* font-weight: bold; */
  margin-bottom: 15px;
}

.offer-content .btn {
  display: inline-block;
  padding: 10px 18px;
  /* background: rgb(187,16,16); */
  border: 2px solid white;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.offer-content .btn:hover {
  background:whitesmoke;
  color: #555;
  transform: scale(1.05);
}

/* ========== Mobile / Responsive for 450px ========== */
@media (max-width: 450px) {
  .offers {
    padding: 50px 15px;
    margin-top: 60px;
  }

  .offer-container {
    gap: 25px;
  }

  .offer-card {
    transform-origin: top center;
    width: 300px;
    margin-left: 10px;
  }

  .badge {
    top: 10px;
    left: 15px;
    font-size: 12px;
    padding: 6px 10px;
  }

  .offer-img {
    width: 35%;
    height: auto;
    margin: 10px auto 0;
    display: block;
  }

  .offer-content {
    padding: 15px;
  }

  .offer-content h3 {
    font-size: 1.2rem;
    margin-top: 8px;
  }

  .offer-content p {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .offer-content .btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}











/* ====== Tracking Section Styles ====== */
.tracking-section {
  padding: 30px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
}

.navigate{
  margin-top:130px;
  border: 8px solid rgb(31, 58, 80);
  margin-left:20px;
  padding: 60px;
  height:350px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

/* ===== Modern Tracking Section ===== */
.modern-tracking {
  margin-top:20px;
  width: 700px;
  margin: 40px auto;
  font-family: "Segoe UI", sans-serif;
  text-align: center;
  padding: 40px 20px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  /* border: 8px solid rgb(217, 144, 9); */
  border: 8px solid salmon;
}

/* Title */
.modern-tracking h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color:#1abc9c;
  font-weight: 600;
}

/* Form */
.tracking-form .input-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 35px;
}

.tracking-form input {
  flex: 1 1 250px;
  padding: 15px 20px;
  /* border-radius: 50px; */
  border: 2px solid rgb(31, 58, 80);
  outline: none;
  font-size: 1rem;
  transition: 0.3s;
}

.tracking-form input:focus {
  border-color:rgb(217, 144, 9);
  box-shadow: 0 0 10px rgba(255,123,107,0.3);
}

.tracking-form button {
  padding: 15px 30px;
  font-size: 1rem;
  border: none;
  /* border-radius: 50px; */
  border-top-right-radius: 50px;
  background-color:rgb(31, 58, 80);
  /* background: linear-gradient(135deg, #ff7b6b, #fcb69f); */
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s, background 0.3s;
}

.tracking-form button:hover {
  transform: scale(1.05);
  background:rgb(217, 144, 9);
}

/* Map Container with Overlay */
.map-container {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  margin-bottom: 25px;
}

.map {
  width: 100%;
  height: 100%;
  background-color: #e0e0e0; /* Placeholder for map */
  object-fit: cover;
}

.status-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.9);
  padding: 15px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  width: 85%;
  max-width: 400px;
  text-align: center;
}

.status-overlay h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color:#1abc9c;
  font-weight: 600;
}

.status-overlay p {
  margin: 5px 0;
  font-size: 0.95rem;
  color: #555;
}

.status-overlay span {
  font-weight: 600;
  color: #ff6f61;
}

/* ====== Mobile / Responsive for 450px ====== */
@media (max-width: 450px) {
  .tracking-section {
    flex-direction: column;
    padding: 20px 10px;
  }

  .navigate {
    margin-top: 60px;
    margin-left: 0;
    padding: 40px 20px;
    height: auto;
    border-radius: 30px 0 0 30px;
    border: none;
  }

  .navigate img{
    width: 380px;
    height: 300px;
    margin-top: -50px;
    margin-bottom: 40px;
    margin-left: -50px;
  }

  .modern-tracking {
    width: 90%;
    margin: 20px auto;
    padding: 25px 15px;
    border-radius: 0 30px 30px 0;
    border-width: 6px;
  }

  .modern-tracking h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .tracking-form .input-group {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
  }

  .tracking-form input {
    flex: 1 1 100%;
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .tracking-form button {
    width: 100%;
    padding: 12px 0;
    font-size: 0.95rem;
  }

  .map-container {
    height: 250px;
  }

  .status-overlay {
    width: 90%;
    padding: 12px 15px;
  }

  .status-overlay h3 {
    font-size: 1rem;
  }

  .status-overlay p {
    font-size: 0.85rem;
  }
}










/* ====== Testimonials Section ====== */
.testimonials-section{
  width: 1520px;
  padding: 80px 20px;
  /* background: rgb(37, 135, 142); */
}

.section-title{
  margin-left:36%;
  color:rgb(217, 144, 9);
  font-size:2.5rem;
}

.testimonials-slider {
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  height: 190px; /* adjust as needed */
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 25%;
  width: 50%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.8s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-card.exit-left {
  opacity: 0;
  transform: translateX(-100%);
}

/* Optional: style testimonial card */
.testimonial-card {
  /* background: #ffffffcc; */
  background:rgb(31, 58, 80);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial-text {
  font-size: 1rem;
  color:whitesmoke;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 80%;
  object-fit: cover;
  border: 2px solid #ff9f80;
}

.testimonial-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.testimonial-info p {
  font-size: 0.85rem;
  color:white;
  margin: 2px 0;
  margin-top:5px;
}

.testimonial-stars {
  color: #ffb400;
  font-size: 1rem;
  margin-top: 3px;
  margin-bottom: 20px;
}

/* ====== Mobile / Responsive for 450px ====== */
@media (max-width: 450px) {
  .testimonials-section {
    width: 100%;
    padding: 50px 15px;
  }

  .section-title {
    margin-left: 0;
    text-align: center;
    font-size: 2rem;
  }

  .testimonials-slider {
    height: auto; 
  }

  .testimonial-card {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateX(0);
    opacity: 1;
    margin-bottom: 25px;
    transition: none;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .testimonial-footer {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .testimonial-avatar {
    width: 70px;
    height: 70px;
  }

  .testimonial-info h3 {
    font-size: 0.95rem;
  }

  .testimonial-info p {
    font-size: 0.8rem;
  }

  .testimonial-stars {
    font-size: 0.9rem;
  }
}







/* Base reset / typography tweaks */
.safety-section {
  padding: 60px 20px;
  background:rgb(31, 58, 80);
  color: #333;
  font-family: Arial, sans-serif;
}

.safety-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.safety-header {
  text-align: center;
  margin-bottom: 40px;
}

.safety-header h2 {
  font-size: 2.5rem;
  color:whitesmoke;
  margin-bottom: 15px;
}

.safety-header .lead {
  font-size: 1.125rem;
  color:rgb(217, 144, 9);
  margin: 20px auto;
}


/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.card {
   border: 5px solid salmon;
  /* background:rgb(155, 57, 57); */
  /* border-radius: 15px; */
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  background-color:whitesmoke;
}

.card h3 {
  margin-top: 0;
  color:rgb(96, 152, 198);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.card:hover h3{
  color: rgb(31, 58, 80);
}

.card p {
  color:white;
  line-height: 1.6;
  margin-bottom: 15px;
}

.card:hover p {
  /* color:rgb(217, 144, 9); */
  color:red;
}

.mini-list {
  list-style: disc inside;
  color:#1abc9c;
  padding-left: 1em;
  margin: 0;
  /* background-color: whitesmoke;
  padding: 30px;
  border-top-left-radius: 40px; */
}

.mini-list li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* Details row (two-column) */
.details-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
}

.details-left h4 {
  font-size: 1.6rem;
  /* color:salmon; */
  color:rgb(217, 144, 9);
  margin-bottom: 15px;
}

.details-left p {
  color:whitesmoke;
  line-height: 1.6;
  margin-bottom: 25px;
}

.actions {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-top-right-radius: 40px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
  background-color:salmon;
  color:#555;
  font-weight: bold;
}

.btn-primary:hover {
  background-color:whitesmoke;
}

.btn-outline {
  background-color: transparent;
  color:whitesmoke;
  border: 2px solid whitesmoke;
  font-weight: bold;
}

.btn-outline:hover {
  background-color:rgb(1, 16, 29);
  color: #fff;
  border: none;
}

/* Accordion (toggle panels) */
.toggle {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.acc-btn {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: #f0f4f8;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1rem;
  color: #1f3a50;
  position: relative;
  /* border-top-right-radius: 40px; */
  transition: background 0.3s ease;
}

.acc-btn::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.acc-btn.active::after {
  content: '–'; /* minus sign */
}

.acc-btn:hover {
  background: #e6ebf2;
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background:rgb(31, 58, 80);
  padding: 0 20px;
}

.acc-panel p {
  margin: 16px 0;
  color:white;
  line-height: 1.6;
}


/* ====== Mobile / Responsive for 450px ====== */
@media (max-width: 450px) {
  .safety-section {
    padding: 40px 10px;
  }

  .safety-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .safety-header .lead {
    font-size: 1rem;
    margin: 15px auto;
  }

  .cards-grid {
    grid-template-columns: 1fr; /* single column for mobile */
    gap: 20px;
    margin-bottom: 40px;
  }

  .card {
    padding: 20px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .card h3 {
    font-size: 1.2rem;
  }

  .card p {
    font-size: 0.9rem;
  }

  .mini-list li {
    font-size: 0.85rem;
  }

  .details-row {
    grid-template-columns: 0.9fr; /* stack columns vertically */
    padding: 20px 30px;
    margin-left: 20px;
    gap: 20px;
  }

  .details-left h4 {
    font-size: 1.4rem;
  }

  .details-left p {
    font-size: 0.9rem;
  }

  .actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width:65%;
    padding: 10px 15px;
    font-size: 0.95rem;
    margin-left: 60px;
    margin-bottom: 10px;
  }

  /* Accordion */
  .acc-btn {
    padding: 14px 16px;
    font-size: 0.95rem;
    /* margin-top: 30px; */
  }

  .acc-panel {
    padding: 0 15px;
  }

  .acc-panel p {
    font-size: 0.85rem;
  }
}











/* Contact Section Base */
.contact-section {
  background: #f5f5f5;
  padding: 4rem 0;
  color: #333;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color:black;
}

.contact-header p {
  font-size: 1.1rem;
  color: #666;
}

/* Main layout */
.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}



/* Info column */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-block {
  background:rgb(31, 58, 80);
  /* border: 8px solid salmon; */
  border-radius: 6px;
  padding: 2rem;
  transition: box-shadow 0.3s;
}

.info-block:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.info-block h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color:salmon;
}

.info-block p,
.info-block address {
  margin: 0.4em 0;
  line-height: 1.5;
  color:whitesmoke;
}

.info-block a {
  color:#1abc9c;
  text-decoration: none;
  transition: color 0.3s;
}

.info-block a:hover {
  color:burlywood; 
  /* color: rgb(166, 198, 224); */
}

/* Form column */
.contact-form {
  background: #fff;
  border: 3px solid rgb(31, 58, 80);
  border-radius: 6px;
  padding: 3rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.contact-form h3 {
  margin-top: 0;
  margin-bottom:2rem;
  color:rgb(31, 58, 80);
  margin-left:120px;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: 500;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  color: #333;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007BFF;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
  outline: none;
}

.contact-form button {
  display: inline-block;
  margin-left: 150px;
  background:rgb(31, 58, 80);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  /* border-radius: 6px; */
  border-top-right-radius: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.contact-form button:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* Response area */
.form-response {
  margin-top: 1rem;
  font-size: 1rem;
  color: #007BFF;
}

/* Chat widget / button */
.chat-widget-placeholder {
  margin-top: 3rem;
  text-align: center;
}

.chat-btn {
  background:rgb(31, 58, 80);
  border-top-right-radius: 50px;
  color: #fff;
  border: none;
  /* border-radius: 6px; */
  padding: 1rem 2rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.chat-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* ====== Mobile / Responsive for 450px ====== */
@media (max-width: 450px) {
  .contact-main {
    grid-template-columns: 0.8fr; /* stack columns vertically */
    gap: 2rem;
    margin-left: 75px;
  }

  .contact-form h3 {
    margin-left: 0; /* remove large left margin */
    text-align: center;
  }

  .contact-form button {
    margin-left: 0; /* center button */
    width: 100%;
    text-align: center;
    padding: 0.75rem 0;
  }

  .contact-header h2 {
    font-size: 2rem; /* slightly smaller heading */
  }

  .contact-header p {
    font-size: 1rem;
  }

  .info-block {
    padding: 1.5rem; /* reduce padding */
  }

  .contact-form {
    padding: 2rem; /* reduce padding */
  }

  .chat-btn {
    width:40%; /* full width button */
    padding: 1rem;
  }

  .contact-container {
    padding: 0 0.5rem; /* reduce container padding */
  }
}







/* Footer Styles */
.site-footer {
  background-color:rgb(31, 58, 80);   /* dark background */
  color: #f9f9f9;            /* light text */
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
  margin-left:100px;
}


.footer-contact{
  color:rgb(217, 144, 9);
}

.col{
  display: flex;
  flex-direction: row;
  margin-left: -50px;
  margin-top: -25px;
}

.col p{
  margin-top: 30px;
}

.footer-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-contact a {
  color: #f9f9f9;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  transition: color 0.3s;
  /* font-weight: bold; */
}

.footer-contact a:hover {
  color: #1abc9c;  /* accent color */
}

.footer-column h4 {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: rgb(217, 144, 9);
  position: relative;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: rgb(217, 144, 9);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #f9f9f9;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: bold;
}

.footer-column ul li a:hover {
  color: #1abc9c;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #333;
  border-radius: 50%;
  color: #f9f9f9;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s, transform 0.3s;
}

.social-icon:hover {
  background-color: #1abc9c;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #aaaaaa;
}

.footer-bottom a {
  color: #cccccc;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #1abc9c;
}

/* ====== Mobile / Responsive Footer for 450px ====== */
@media (max-width: 450px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
  }

  .footer-column {
    margin-left: 0; /* remove extra left margin */
    text-align: center;
    margin-top: -20px;
  }

  .footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-column ul li {
    margin-bottom: 8px;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
    margin-top: -80px;
  }

  .footer-bottom a {
    margin: 0 5px;
  }

  .col {
    flex-direction:row;
    margin-left: 0;
    margin-top: 0;
  }

  .col p {
    margin-top:30px;
  }

  .footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
  }
}
