/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'CustomFont', sans-serif;
  color: #333;
}

/* Header */
header {
  width: 100%;
  background-color: #efd7d7; /* You can change this to any color you like */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Subtle shadow under the header */
}

/* Container to center content and space items */
.header-container {
  max-width: 1200px; /* Adjust max-width as needed */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

/* Logo and Brand */
.logo-and-brand {
  display: flex;
  align-items: center;
}

.logo-and-brand img {
  height: 40px; /* Adjust logo size */
  margin-right: 10px;
}

/* Navigation Menu */
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  transition: color 0.2s ease;
}

nav ul li a:hover {
  color: #007bff; /* Change hover color if desired */
}

/* Main Slider Styles */
.main-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 1s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.slide-caption {
    position: absolute;
    left: 50%; /* Move to the horizontal center of parent */
  top: 50%;  /* Move to the vertical center of parent */
  transform: translate(-50%, -50%); /* Pull element back by half its own width/height */
  background: rgba(255, 255, 255, 0.5);
  padding: 20px;
  text-align: center;
  border-radius: 4px;
}

.slide-caption h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.slide-caption p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    padding: 10px 20px;
    background-color: #00a859;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #007d3b;
}

.page-title {
  text-align: center;  /* Center content */
  padding: 20px 20px;
  background: #222;
  color: white;
  font-family: 'Arial', sans-serif;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.page-title h1 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-title p {
  font-size: 18px;
  opacity: 0.8;
}

/* Main container with two columns */
.content-container {
  display: flex;
  max-width: 1200px; /* Adjust width as needed */
  margin: 20px auto;
  gap: 20px;
  padding: 0 15px;
}

/* Left and Right Columns */
.left-column {
  flex: 2;
}
.right-column {
  flex: 1;
}

/* Card styling (common) */
.card {
  background-color: #fff;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Day card specific */
.day-card .day-heading {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.day-card h2 {
  margin: 0;
  font-size: 1.2rem;
  color: #000000;
  font-family: 'Roboto', sans-serif;
}

/* Fare Breakup specific */
.fare-breakup h3 {
  margin-bottom: 10px;
  color: #2d1610;
  font-family: 'Roboto', sans-serif;
}
.right-column ul {
  list-style-type: none;
  padding: 0;
}

.right-column li {
  position: relative;
  padding-left: 25px; /* Space for custom bullet */
}

.right-column li::before {
  content: "•"; /* Custom bullet */
  color: #df8200; /* Orange bullet */
  font-size: 25px;
  position: absolute;
  left: 0;
  top: -5px;
  font-family: 'Roboto', sans-serif;
}
.left-column ul {
  list-style-type: none;
  padding: 0;
}

.left-column li {
  position: relative;
  padding-left: 25px; /* Space for custom bullet */
}

.left-column li::before {
  content: "•"; /* Custom bullet */
  color: #d50808; /* Orange bullet */
  font-size: 25px;
  position: absolute;
  left: 0;
  top: -5px;
  font-family: 'Roboto', sans-serif;
}

hr {
  margin-top: 15px;
  margin-bottom: 15px;
}
p{
  margin-top: 8px;
  margin-bottom: 8px;
  font-family: 'Roboto', sans-serif;
}
strong{
  color: #0e549f;
}
h3{
  margin-top: 20px;
  margin-bottom: 8px;
  font-family: 'Roboto', sans-serif;
  color: #264936;
}

footer {
  background: #222;
  color: white;
  padding: 20px 0;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  text-align: left;
  max-width: 1100px;
  margin: auto;
}

.footer-section {
  width: 100%;
}

.aboutus {
  width: 50%;
}

.link {
  width: 25%;
}

.social {
  width: 25%;
}

.footer-section h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-copyright {
  text-align: center;
  background: #4a3f3f;
  color: white;
  padding: 15px;
}
