/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Body Styling */
body {
  background-color: #f8f9fa;
  color: #333;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #012c60;
  padding: 15px 50px;
  color: white;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Logo */
.header-logo {
  width: 260px;
  transition: all 0.3s ease;
}

.header-logo img {
  width: 90%;
  height: auto;
  display: block;
  margin-top: 10px;
}

/* Navigation Links */
.header-links {
  display: flex;
  gap: 20px;
}

.header-links h1 {
  margin: 0;
  font-size: 1.1rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Apply transition correctly to the entire link */
.header-links h1 a {
  text-decoration: none;
  color: white;
  display: inline-block; /* Ensures transform works properly */
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.header-links h1 a:hover {
  color: #e2ae3f;
  transform: scale(1.1); /* Smooth zoom-in effect */
}

/* Hide Menu Toggle Checkbox */
.menu-toggle {
  display: none;
}

/* Menu Icon */
.menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .header-logo {
    position: absolute;
    left: 20px;
  }

  header {
    height: 80px;
    padding: 15px 50px;
  }

  /* Show Menu Icon */
  .menu-icon {
    display: block;
  }

  /* Hide Navigation Links Initially */
  .header-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 90px;
    right: 0;
    background: #012c60;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .header-links h1 {
    margin: 10px 0;
  }

  /* Show Dropdown When Checkbox is Checked */
  .menu-toggle:checked + .menu-icon + .header-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: -20px;
  }
} /*trending text*/
/* Ensure the link container is relative and inline-block */
.trending-link a {
  position: relative;
  display: inline-block;
  padding-right: 0; /* no extra padding needed */
  white-space: nowrap; /* prevents text wrap which could break badge */
}

/* Trending badge styling */
.trending-label {
  position: absolute;
  bottom: -18px;
  right: 0px;
  background: linear-gradient(135deg, #ffb347, #ffcc33);
  color: #012c60;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 0 12px rgba(255, 204, 51, 0.6);
  pointer-events: none;
  user-select: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  transform: rotate(0deg);
  overflow: hidden;

  /* pulse animation */
  animation: pulse 1.5s infinite;
}

/* hover pop effect */
.trending-label:hover {
  transform: rotate(0deg) scale(1.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25), 0 0 16px rgba(255, 204, 51, 0.8);
}

/* ribbon pseudo-elements for 3D ribbon effect */
.trending-label::before,
.trending-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 6px;
  height: 100%;
  background: #ffb347;
  transform: skewX(-20deg);
  z-index: -1;
}

.trending-label::before {
  left: -6px;
}

.trending-label::after {
  right: -6px;
}

/* pulse animation keyframes */
@keyframes pulse {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 0 12px rgba(255, 204, 51, 0.6);
  }
  50% {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 204, 51, 0.9);
  }
}

/* responsive tweaks */
@media screen and (max-width: 480px) {
  .trending-label {
    font-size: 0.6rem;
    bottom: -15px;
    right: 0px;
    padding: 2px 6px;
  }
}

.header-under-image {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.header-under-image img {
  width: 100%;
  height: auto;
  max-height: 700px; /* Limit the height on large screens */
  display: block;
  object-fit: cover;
  margin-top: 80px;
}

/* Responsive tweaks */

@media (max-width: 1024px) {
  .header-under-image img {
    max-height: 520px;
  }
}

@media (max-width: 768px) {
  .header-under-image img {
    max-height: 400px;
  }
}

@media (max-width: 480px) {
  .header-under-image img {
    max-height: 250px;
    margin-top: 50px;
  }
}

@media (max-width: 2560px) {
  .header-under-image img {
    max-height: 700px;
    margin-top: 50px;
  }
}
.centered-title {
  position: absolute;
  top: 50%; /* vertical center */
  left: 10%; /* shifted to left side */
  transform: translateY(-50%);
  color: #ffffff; /* golden color for attractiveness */
  text-align: left; /* left aligned text */
  text-shadow: 2px 2px 10px #012c60;
  font-family: 'Georgia', serif;
  user-select: none;
  max-width: 900px;
  padding: 20px 25px;
  background: rgba(0, 0, 0, 0.55); /* translucent dark background */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
  z-index: 5;
  animation: fadeInLeft 1.5s ease forwards;
}

.centered-title h1 {
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 3px;
}

.centered-title h1 span {
  display: block;
  font-size: 4rem;
  margin-top: 8px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
  .centered-title {
    left: 8%;
    max-width: 850px;
    padding: 16px 20px;
    margin-top: 60px;
  }
  .centered-title h1 {
    font-size: 4rem;
  }
  .centered-title h1 span {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .centered-title {
    left: 6%;
    max-width: 580px;
    padding: 12px 16px;
    margin-top: 60px;
  }
  .centered-title h1 {
    font-size: 3rem;
  }
  .centered-title h1 span {
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .centered-title {
    left: 4%;
    max-width: 350px;
    padding: 10px 12px;
    margin-top: 50px;
  }
  .centered-title h1 {
    font-size: 1.8rem;
  }
  .centered-title h1 span {
    font-size: 1.4rem;
  }
}

/* Animation sliding in from left */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(-30%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.whatsapp-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #012c60;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  font-size: 20px;
  transition: background 0.3s ease;
  cursor: pointer;

  /* Responsive tweaks */
  max-width: 90%;
  text-align: center;
  box-sizing: border-box;
}

/* Hover effect */
.whatsapp-button:hover {
  background-color: #ffae00;
  color: #000000;
}

/* Tablet view */
@media (max-width: 768px) {
  .whatsapp-button {
    font-size: 18px;
    padding: 10px 20px;
  }
}

/* Mobile view */
@media (max-width: 480px) {
  .whatsapp-button {
    font-size: 16px;
    padding: 10px 16px;
  }
}

.trail-info {
  position: absolute;
  top: 100px; /* distance from top */
  right: 20px; /* distance from right */
  background-color: rgba(0, 0, 0, 0.6); /* semi-transparent black bg */
  padding: 15px 20px;
  border-radius: 8px;
  color: white;
  width: 302px; /* or adjust as needed */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.trail-info h2 {
  margin: 0 0 10px 0;
  font-size: 20px;
  cursor: pointer; /* pointer cursor */
  text-decoration: underline; /* underline */
  user-select: none; /* prevent text selection on click */
  color: #ffd700; /* optional highlight color */
  transition: color 0.3s ease;
}

.trail-info h2:hover {
  color: #ffcc25;
}

.dropdown-container {
  border-radius: 5px;
  max-width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  user-select: none;
  color: #9ad8ee;
  font-weight: 700;
}

.dropdown-option {
  padding: 5px 15px;
  cursor: pointer;
  transition: background-color 0.25s, text-decoration 0.25s;
}

.dropdown-option:hover {
  border-radius: 2px slide #000000;
  text-decoration: underline;
  color: #ffffff;
}
/* Keep your base styles as is */

/* Responsive tweaks */
@media (max-width: 1024px) {
  .trail-info {
    top: 100px; /* reduce top distance */
    right: 15px; /* reduce right margin */
    width: 260px; /* slightly narrower */
    padding: 12px 16px;
    font-size: 16px;
  }

  .trail-info h2 {
    font-size: 17px;
  }

  .dropdown-container {
    max-width: 100%;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .trail-info {
    top: 90px;
    right: 12px;
    width: 220px;
    padding: 10px 14px;
  }

  .trail-info h2 {
    font-size: 14px;
  }

  .dropdown-container {
    max-width: 100%;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .trail-info {
    top: 83px;
    right: 10px;
    width: 180px;
    padding: 2px 9px;
  }

  .trail-info h2 {
    font-size: 11px;
  }

  .dropdown-container {
    max-width: 100%;
    font-size: 12px;
  }
  .dropdown-option {
    padding: 3px 10px;
  }
}

/*ramayana intro*/
.ramayana-intro {
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}

.intro-background {
  background-image: linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 1)),
    url('https://dxk1acp76n912.cloudfront.net/images/tours/ramayana.png'); /* Replace if needed */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 55px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.6);
}

.intro-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  animation: fadeInUp 1.4s ease-out;
}

.intro-content h1 {
  font-size: 3.2rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  margin-top: -30px;
  line-height: 1.3;
  letter-spacing: 1.5px;
}

.intro-content h1 span {
  color: #ffd700;
  font-weight: bold;
  font-style: italic;
}

.intro-content p {
  font-size: 1.3rem;
  margin-bottom: 10px;
  line-height: 1.7;
  color: #eaeaea;
  padding: 0 10px;
}

/* Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .intro-content h1 {
    font-size: 2rem;
  }

  .intro-content p {
    font-size: 1rem;
  }

  .intro-background {
    padding: 60px 15px;
  }
}

/*page links*/
.excursions-section {
  padding: 10px 20px;
  background: #fffcf3;
  text-align: center;
}

.excursions-section h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  color: #012c60;
}

.excursions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.excursion-card {
  position: relative;
  width: 160px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: white;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-end;
  background-color: #000;
}

.excursion-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.4s ease;
}

.excursion-card:hover img {
  transform: scale(1.08);
}

.excursion-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.5);
  font-size: 1.3rem;
  border-radius: 0 0 12px 12px;
  width: 100%;
  box-sizing: border-box;
  transition: color 0.3s ease;
}

.excursion-card h3:hover {
  color: #e2ae3f;
}

/* Responsive tweaks */

/* Medium screens (tablets) */
@media (max-width: 900px) {
  .excursion-card {
    width: 140px;
    height: 120px;
  }
  .excursion-card h3 {
    font-size: 1.1rem;
    padding: 12px 15px;
  }
  .excursions-section h2 {
    font-size: 2rem;
  }
}

/* Small screens (mobile) */
@media (max-width: 600px) {
  .excursions-grid {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .excursion-card {
    width: 70%;
    max-width: 320px;
    height: 80px;
  }
  .excursion-card h3 {
    font-size: 1.2rem;
    padding: 14px 18px;
  }
  .excursions-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

/* Main Popup Container---------------------------------------------------------------- */
.popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
}

.popup-content {
  background: linear-gradient(135deg, #c9ffd4, #dacdff);
  padding: 15px;
  width: 100%;
  max-width: 650px;
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  overflow: hidden;
  flex-wrap: wrap;
}

/* Inner Layout */
.popup-inner {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%;
}

.popup-image img {
  width: 220px;
  height: 350px;
  border-radius: 8px;
  object-fit: cover;
  margin-top: 0px;
}

/* Text Content */
.popup-text {
  flex: 1;
  text-align: center;
  font-size: 15px;
}

.popup-text h2 {
  color: #012c60;
  font-size: 28px;
  margin-bottom: 10px;
}

.popup-text h2 strong {
  color: #007f5f;
  font-weight: 700;
}

.time-number {
  font-size: 2.2rem;
  color: #012c60;
  font-weight: bold;
  padding: 10px 12px;
  border: 2px solid #ffffff;
  border-radius: 8px;
  min-width: 60px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.time-label {
  font-size: 0.9rem;
  margin-top: 5px;
  color: #555;
}

/* Button */
.whatsapp-btn {
  background-color: #e2ae3f;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: glowButton 1.5s infinite alternate;
}

.whatsapp-btn:hover {
  background-color: #012c60;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .popup-content {
    flex-direction: column;
    align-items: center;
    width: 400px;
  }

  .popup-inner {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .popup-image img {
    width: 300px;
    height: auto;
    max-height: 300px;
  }

  .popup-text {
    font-size: 14px;
  }

  .popup-text h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .popup-content {
    width: 360px;
  }
  .popup-image img {
    width: 300px;
    height: 200px;
    max-height: 300px;
  }
  .whatsapp-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .popup-text h2 {
    font-size: 28px;
  }

  .popup-text {
    font-size: 16px;
  }
}

.saffron {
  color: #ff9933; /* Saffron */
  font-weight: 800;
}

.white-highlight {
  color: #ffffff; /* White */
  font-weight: 800;
  text-shadow: 0 0 1.5px #000; /* optional black outline to make white visible */
}

.green {
  color: #138808; /* Green */
  font-weight: 800;
}

/* end pop up -------------------------------------------------------------------------------*/

/* Why Book With Us */
.why-book {
  background: #ffd70021;
  padding: 60px 20px;
  color: #333;
  text-align: center;
}

.why-book h2 {
  font-size: 40px;
  margin-bottom: 40px;
  margin-top: -25px;
  color: #a16e00;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.feature-box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.feature-box i {
  font-size: 36px;
  color: #d97706;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 20px;
  color: #012c60;
  margin-bottom: 10px;
}

/* Container */
.route-container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

/* ✅ STYLES */
.route-intro {
  text-align: center;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-in-out;
}

.route-heading {
  font-size: 34px;
  color: #012c60;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 30px;
}

.route-subtext {
  font-size: 16px;
  color: #555;
  max-width: 1500px;
  margin: 0 auto;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SVG Responsive */
svg {
  width: 100%;
  height: auto;
  margin-top: -70px;
}

/* Location dot */
.location-dot {
  fill: #ccc;
  stroke: #666;
  stroke-width: 2;
}

.location-dot.active {
  fill: red;
}

/* Labels */
.location-label {
  font-size: 12px;
  fill: #333;
}

/* Red animated line */
#route-path-red {
  stroke: red;
  stroke-width: 6;
  fill: none;
}

/* Description box as card */
.description-box {
  width: 100%;
  max-width: 900px; /* or any suitable max width */
  margin: 30px auto 0 auto;
  background: #d7d6d2;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: nowrap;
}

.desc-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.desc-left img {
  width: 100%;
  max-width: 300px;
  height: auto;
  aspect-ratio: 3 / 2; /* Keeps 3:2 aspect ratio */
  border-radius: 5px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.desc-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 600px;
}

.desc-title {
  font-size: 24px;
  margin-bottom: 6px;
  color: #4a0606;
}

.desc-subtitle {
  font-size: 16px;
  color: #666;
  font-style: italic;
  margin-bottom: 15px;
}

.desc-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 768px) {
  .description-box {
    flex-direction: column;
  }

  .desc-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .desc-left img {
    width: 80%;
    max-width: 80%;
  }

  .desc-right {
    max-width: 100%;
  }
}

/*iteneries*/
.itinerary-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 40px;
  color: #012c60;
}

.day-card {
  background: white;
  padding: 24px;
  margin-bottom: 24px;
  border-left: 6px solid #e2ae3f;
  border-radius: 10px;
  transition: transform 0.2s ease;
}

.day-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.day-card h3 {
  color: #bb7f00;
  margin-bottom: 16px;
  font-size: 22px;
}

.day-card ul {
  padding-left: 20px;
}

.day-card li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.day-card strong {
  color: #2c3e50;
}

/*rules*/
.info-notice-no-icon {
  max-width: 1200px;
  margin: 60px auto;
  padding: 36px 40px;
  background: linear-gradient(145deg, #fff8f0, #fff1db);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(230, 160, 50, 0.25);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #7a5a0c;
  border-left: 8px solid #d18e00;
  transition: box-shadow 0.3s ease;
}

.info-notice-no-icon:hover {
  box-shadow: 0 14px 44px rgba(209, 142, 0, 0.5);
}

.info-notice-no-icon h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 28px;
  color: #a36c00;
  text-shadow: 0 1px 3px rgba(160, 110, 0, 0.2);
  letter-spacing: 0.03em;
}

.info-block-no-icon {
  margin-bottom: 22px;
}

.info-block-no-icon p {
  font-size: 17.5px;
  line-height: 1.6;
  margin: 0;
  color: #6a4d00;
  letter-spacing: 0.015em;
}

.info-block-no-icon strong {
  font-weight: 700;
  color: #543d00;
}
.trail-end {
  font-size: 1.1rem;
  text-align: center;
  margin-top: 40px;
  color: #001733;
  font-style: italic;
}

/*whatsapp button*/
.ramayana-booking {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #fff0e5, #d8f8ff);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.ramayana-container {
  max-width: 900px;
  margin: auto;
}

.ramayana-title {
  font-size: 2rem;
  color: #012c60;
  margin-bottom: 1rem;
}

.ramayana-title span {
  color: #007f5f;
}

.ramayana-subtext {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.ramayana-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background-color: #012c60;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.8rem 1.6rem;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.ramayana-whatsapp-btn img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.ramayana-whatsapp-btn:hover {
  background-color: #e2ae3f;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .ramayana-title {
    font-size: 1.5rem;
  }

  .ramayana-subtext {
    font-size: 1rem;
  }

  .ramayana-whatsapp-btn {
    font-size: 1rem;
    padding: 0.7rem 1.4rem;
  }

  .ramayana-whatsapp-btn img {
    width: 22px;
    height: 22px;
  }
}

/* footer */
footer {
  background: url('https://dxk1acp76n912.cloudfront.net/images/homepage/waterma.png')
    no-repeat center center;
  background-size: cover;
  color: #ffffff;
  padding: 30px 20px; /* Adjust padding as needed */
  text-align: center;
  margin-top: 0px;
}

/* Footer Logo */
.footer-logo {
  position: relative; /* Changed from absolute to relative */
  padding: 10px;
  width: 140px; /* Adjusted the width as per your requirement */
  height: auto; /* Keeps the aspect ratio of the logo */
  margin: 0 auto;
  font-weight: bold;
  margin-top: 40px;
}

.footer-logo img {
  width: 240%; /* Ensure the image fills the container */
  height: auto;
  margin-top: -300px !important;
  margin-left: -80px;
}
.footer-social {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;
  gap: 20px;
  font-size: 1.4rem;
  text-align: center;
  margin-top: -5px !important;
}

.footer-social a {
  color: white;
}

/* Footer Content Section */
.footer-content {
  max-width: 1200px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
  margin-top: 10px;
  gap: 5;
  text-align: center; /* Ensure text is centered */
}

.footer p a {
  color: #ffffff;
  text-decoration: none;
}

.footer p a:hover {
  text-decoration: none;
}

.footer p a:active {
  color: #f0a500; /* Optional color change on click */
}

.payment-box {
  background-color: white;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 1px 0; /* Add some vertical padding */
  text-align: center;
  box-sizing: border-box;
  height: 60px;
}

.inline-payment-icons {
  display: inline-flex;
  flex-wrap: wrap; /* Wrap on small screens */
  justify-content: center;
  gap: 15px;
  align-items: center;
  opacity: 1;
}

/* Base icon size for large screens */
.inline-payment-icons img {
  height: 58px;
  width: auto;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.inline-payment-icons img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

/* Responsive adjustments */

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991px) {
  .inline-payment-icons img {
    height: 45px; /* Slightly smaller icons */
  }
}

/* Small devices (mobiles, less than 768px) */
@media (max-width: 768px) {
  .inline-payment-icons img {
    height: 45px; /* Smaller icons for small screens */
  }

  .payment-box {
    padding: 8px 5px; /* Less padding on very small screens */
    height: 60px;
  }
}

/* Very small devices (extra small phones, less than 480px) */
@media (max-width: 479px) {
  .inline-payment-icons {
    gap: 10px; /* Less gap on very small screens */
  }

  .inline-payment-icons img {
    height: 32px; /* Smallest icons */
  }
  .payment-box {
    height: 50px;
  }
}

/* Mobile-Friendly Adjustments */
@media (max-width: 768px) {
  .footer {
    padding: 20px 10px; /* Adjust padding for smaller screens */
    height: auto; /* Remove fixed height for flexibility */
    font-size: 14px; /* Slightly smaller font size for mobile */
    flex-direction: column; /* Stack elements vertically */
  }

  .footer-logo {
    position: relative; /* Changed from absolute to relative */
    padding: 10px;
    width: 140px; /* Adjusted the width as per your requirement */
    height: auto; /* Keeps the aspect ratio of the logo */
    margin: 0 auto;
    margin-top: 40px;
  }

  .footer-logo img {
    width: 240%; /* Ensure the image fills the container */
    height: auto;
    margin-top: -300px !important;
    margin-left: -80px;
  }

  .footer-social {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;
    gap: 20px;
    font-size: 1.2rem;
    text-align: center;
  }

  .footer-social a {
    color: white;
  }

  /* Footer Content Adjustments */
  .footer-content {
    font-size: 14px; /* Adjust text size for mobile */
    margin-top: 20px; /* Reduce margin-top */
    line-height: 1.5;
  }
}
