/* --- Place Card Responsive Styles --- */
.place-card {
  background: #fff;
  color: #222;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 1100px;
  min-width: 0;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  min-height: 180px;
  align-items: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  transition: box-shadow 0.2s;
}
  top: 0;
  left: 0;
.place-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px 0 0 16px;
  margin: 0;
  flex-shrink: 0;
  transition: border-radius 0.2s, height 0.2s, width 0.2s;
}
.place-card-content {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
@media (max-width: 900px) {
  .place-card {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 700px) {
  .place-card {
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 12px;
  }
  .place-card img {
    width: 100%;
    height: 180px;
    border-radius: 16px 16px 0 0;
    margin: 0;
  }
  .place-card-content {
    padding: 12px 8px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .place-card {
    font-size: 0.95em;
  }
  .place-card img {
    height: 120px;
    border-radius: 10px 10px 0 0;
  }
  .place-card-content {
    padding: 8px 2px;
  }
}
/* --- Footer Responsive Improvements --- */
@media (max-width: 900px) {
  .site-footer {
    padding: 24px 0 12px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
  .footer-brand {
    order: 3;
    margin-bottom: 10px;
  }
  .footer-col {
    margin-bottom: 8px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .footer-bottom__right ul {
    flex-direction: column;
    gap: 8px;
  }
  .social-links {
    justify-content: center !important;
    margin: 0 auto 8px auto;
  }
}
@media (max-width: 480px) {
  .site-footer {
    padding: 12px 0 8px;
  }
  .footer-brand h3 {
    font-size: 18px;
  }
  .footer-col h4 {
    font-size: 14px;
  }
  .footer-bottom p {
    font-size: 12px;
  }
}
/* --- Section & Container Padding Optimization for Mobile --- */
@media (max-width: 700px) {
  .container {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  section, .xy-spacing {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .section-header {
    margin-bottom: 18px;
  }
  .content-block {
    padding: 24px 0;
  }
  .details-card-section {
    padding: 12px 0 !important;
  }
  .card-section {
    padding: 8px 0 !important;
  }
  .monuments-table-section {
    padding: 18px 0 !important;
  }
}
@media (max-width: 480px) {
  .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .section-header {
    margin-bottom: 10px;
  }
  .content-block {
    padding: 12px 0;
  }
}
/* --- Responsive Hero Banner & Swiper Banner --- */
@media (max-width: 900px) {
  .hero-slider__inner {
    padding: 0 0px;
  }
  .hero-center-content {
    max-width: 95vw;
    padding: 0 8px;
  }
}

@media (max-width: 700px) {
  .hero-slider {
    min-height: 320px;
    height: 60vw;
    max-height: 400px;
  }
  .hero-slide img {
    width: 100vw;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
  }
  .hero-center-content {
    margin-top: 0 !important;
    padding: 12px 4px;
    font-size: 1em;
    border-radius: 8px;
  }
  .hero-center-content h1 {
    font-size: 1.5em;
  }
  .hero-center-content p {
    font-size: 1em;
  }
  .hero-slider__dots {
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .hero-slider {
    min-height: 180px;
    height: 40vw;
    max-height: 220px;
  }
  .hero-slide img {
    height: 120px;
  }
  .hero-center-content {
    padding: 8px 2px;
    font-size: 0.95em;
  }
}

/* Swiper image banner responsiveness */
.image-banner-section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
.image-banner-section .swiper {
  width: 100%;
  max-width: 100vw;
}
.image-banner-section img {
  width: 100%;
  max-width: 100vw;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 700px) {
  .image-banner-section img {
    border-radius: 10px;
    max-width: 100vw;
    height: 140px;
  }
  .image-banner-section .swiper {
    min-height: 140px;
  }
}
@media (max-width: 480px) {
  .image-banner-section img {
    border-radius: 6px;
    height: 90px;
  }
  .image-banner-section .swiper {
    min-height: 90px;
  }
}
/* --- Responsive Cards & Table (Custom Additions) --- */

/* Responsive cards container */
.places-cards-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .places-cards-container {
    max-width: 100%;
    padding: 0 8px;
  }
  .place-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .place-card {
    flex-direction: column !important;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    align-items: stretch;
    text-align: center;
    height: auto !important;
  }
  .place-card img {
    width: 100% !important;
    height: 180px !important;
    border-radius: 16px 16px 0 0 !important;
    margin: 0 !important;
    object-fit: cover;
  }
  .place-card > div {
    padding: 12px 8px !important;
  }
}

@media (max-width: 480px) {
  .places-cards-container {
    gap: 16px;
    padding: 0 2px;
  }
  .place-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    font-size: 0.95em;
  }
  .place-card img {
    height: 140px !important;
  }
}

/* Responsive table for mobile */
@media (max-width: 700px) {
  .table-wrapper {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    padding: 0;
  }
  .monuments-table,
  .monuments-table thead,
  .monuments-table tbody,
  .monuments-table th,
  .monuments-table td,
  .monuments-table tr {
    display: block;
    width: 100%;
  }
  .monuments-table thead {
    display: none;
  }
  .monuments-table tr {
    margin-bottom: 18px;
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 8px 0;
  }
  .monuments-table td {
    padding: 10px 12px;
    text-align: left;
    border: none;
    position: relative;
    font-size: 14px;
  }
  .monuments-table td:before {
    content: attr(data-label);
    font-weight: 600;
    color: #f4b941;
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    text-transform: uppercase;
  }
}
/* Custom Swiper Banner Fix */
.image-banner-section {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.image-banner-swiper {
  width: 100%;
  height: 340px;
  background: transparent;
  position: relative;
}
.image-banner-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  height: 340px;
}
.image-banner-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
}
.image-banner-swiper .swiper-pagination {
  bottom: 10px !important;
}
.image-banner-swiper .swiper-button-next,
.image-banner-swiper .swiper-button-prev {
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  .footer-brand .social-links {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Poppins fonts start */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.woff2') format('woff2'),
      url('../fonts/Poppins-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
      url('../fonts/Poppins-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
      url('../fonts/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
      url('../fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
      url('../fonts/Poppins-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Poppins fonts end */

/* :root start */
:root {
  /* color – travel & tours palette */
  --body-color: #0b1b24;
  --primary-gradiant: linear-gradient(180deg, #0f5c7a 0%, #0a3f57 100%);
  --secondary-gradiant: linear-gradient(180deg, #1b89c8 0%, #146fa4 100%);
  --secondary-gradiant-02: linear-gradient(180deg, #0f5c7a 0%, #062739 100%);
  --yellow-gradiant: linear-gradient(95.04deg, #f4b941 0.86%, #ff7b3a 98.56%);

  --primary-color: #0f5c7a;
  --secondary-color: #1b89c8;
  --pink-color: #ff7b3a;
  --rawani-color-01: #1b89c8;
  --rawani-color-02: #73ccfc;
  --rawani-color-03: #f4b941;
  --rawani-color-04: #aa825a;
  --rawani-color-05: #3c6484;
  --light-red-color: #ff7b3a;
  --hover-text-color: #73ccfc;
  --light-navy-blue-color: #29455b;
  --green-color: #27ae60;
  --yellow-color: #f4b941;
  --yellow-color-01: #f9d46a;
  --white-color: #ffffff;
  --black-color: #000000;
  --text-color: #f5f7fb;
  --gray-color: #cbc5aa;
  --gray-text-color: #9fb3c7;
  --gray-text-color-01: #8190a2;

  /* Font Family */
  --primary-font: "Poppins", sans-serif;

  /* spacing */
  --section-extra-big-spacing: 64px;
  --section-big-spacing: 48px;
  --section-mid-spacing: 32px;
  --section-spacing: 20px;

  /* header-less-spacing: */
  --header-less-spacing: 96px;
  --escort-details-col-left-width: 555px;
}
/* :root end */

/* default css start */
* {
  box-sizing: border-box;
  margin: 0;
}
.z-index-1 {
  z-index: 1;
}
.position-relative {
  position: relative;
}
.position-absolute{
  position: absolute;
}
/* selection css */
::selection {
  background: var(--yellow-color);
  color: var(--white-color);
}
/* selection css */
.fill-white {
  fill: var(--white-color);
}
html{
  scroll-behavior: smooth;
}
body {
  font-family: var(--primary-font);
  font-weight: 400;
  background: var(--body-color);
}
a {
  color: var(--yellow-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}

a:hover {
  color: var(--white-color) !important;
  text-decoration: none;
}
.active-page {
  color: var(--yellow-color) !important;
}
.hover-txt-black:hover {
  color: var(--black-color) !important;
}
.hover-txt-rawaini:hover{
  color: var(--rawani-color-01) !important;
}
a:focus {
  box-shadow: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
  font-weight: 400;
  color: var(--white-color);
  margin-bottom: 0;
}
p,.details-note-section ul li {
  font-weight: 400;
  font-size: 15px;
  color: var(--white-color);
}
.heading-title {
  font-family: var(--primary-font);
  font-weight: 700;
  color: var(--white-color);
}
.heading-title.big-heading-title {
  font-size: 25px;
}
.heading-title.small-heading-title {
  font-size: 45px;
}
.btn,
.form-control:focus,
button:focus,
.btn:focus {
  outline: none !important;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
ul {
  margin: 0px;
  padding: 0px;
}
ul li {
  padding: 0px;
  margin: 0px;
  list-style: none;
  -webkit-text-stroke: 0.3px;
}
.d-align {
  display: flex !important;
  align-items: center !important;
}
.d-align-justify {
  display: flex;
  align-items: center;
  justify-content: center;
}
.d-align-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.d-block{
  display: block;
}
.grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.d-wrap {
  display: flex;
  flex-wrap: wrap;
}
.cursor-pointer {
  cursor: pointer;
}
.img-cover {
  width: inherit;
  height: inherit;
  object-fit: cover;
}
section, .xy-spacing {
  padding-left: 12px;
  padding-right: 12px;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.small-scrollbar-width::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background-color: #ccc;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--white-color);
  border-radius: 10px;
}
.img-contain {
  object-fit: contain;
}
.img-cover {
  object-fit: cover;
}
.img-inherit {
  width: 100%;
  height: inherit;
}
.primary-bg {
  background-color: var(--primary-color);
}
.primary-gradiant-bg {
  background-color: var(--primary-gradiant);
}
.secondary-bg {
  background-color: var(--secondary-color);
}
.secondary-gradiant-bg {
  background-color: var(--secondary-gradiant);
}
.navy-blue-color{
  background-color: var(--light-navy-blue-color);
}
.hover-text {
  transition: all 0.3s;
}
.hover-text:hover {
  color: var(--hover-text-color) !important;
}
.active-link {
  color: var(--hover-text-color);
}
/* BUTTON STYLING */
.primary-btn {
  font-family: var(--primary-font);
  background: linear-gradient(90deg, #ff7b3a 0%, #f4b941 100%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  border-radius: 30px;
  min-width: 140px;
  min-height: 44px;
  font-size: 17px;
  font-weight: 700;
  padding: 10px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-size: 100% 100%;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  outline: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.primary-btn:hover {
  background: linear-gradient(90deg, #ff9454 0%, #ffcf63 100%);
  color: #fff;
  transform: scale(1.05);
}
.primary-btn:focus {
  outline: none;
  box-shadow: none;
}
a.primary-btn:hover {
  color: var(--black-color) !important;
}
/* BUTTON STYLING END */
.form-group {
  margin-bottom: 23px;
}
.custom-input,
.custom-textarea {
  width: 100%;
  background-color: rgba(2, 40, 63, 0.7);
  border: 2px solid #1c486c;
  border-radius: 5px;
  padding: 10px 19px;
  min-height: 52px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white-color);
  text-align: left;
  transition: all 0.3s;
}
.custom-input:hover,.custom-textarea:hover{
  border-color: #3b76a9;
}
.custom-textarea{
  min-height: 240px;
}
.custom-input:focus-within{
  outline: none;
  box-shadow: none;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > label {
  padding: 16px;
}
label {
  font-weight: 400;
  font-size: 16px;
  color: var(--white-color);
  text-align: left;
  display: block;
  margin-bottom: 10px;
}
label sup.star {
  color: #e1291e;
  font-size: 16px;
  font-weight: 700;
}
.form-control::placeholder {
  font-size: 16px;
  color: #5c7e98;
}
.form-control:focus {
  border: 1px solid var(--primary-color);
  box-shadow: none;
}
.custom-textarea:focus-visible{
  outline: none;
}
.section-py {
  padding: var(--section-spacing) 12px;
}
.section-pt {
  padding-top: var(--section-spacing);
}
.section-pb {
  padding-bottom: var(--section-spacing);
}
.section-my {
  margin: var(--section-spacing) 12px;
}
.section-mt {
  margin-top: var(--section-spacing);
}
.section-mb {
  margin-bottom: var(--section-spacing);
}

.section-mid-py {
  padding: var(--section-mid-spacing) 12px;
}
.section-mid-pt {
  padding-top: var(--section-mid-spacing);
}
.section-mid-pb {
  padding-bottom: var(--section-mid-spacing);
}
.section-mid-my {
  margin: var(--section-mid-spacing) 12px;
}
.section-mid-mt {
  margin-top: var(--section-mid-spacing);
}
.section-mid-mb {
  margin-bottom: var(--section-mid-spacing);
}

.section-big-py {
  padding: var(--section-big-spacing) 12px;
}
.section-big-pt {
  padding-top: var(--section-big-spacing);
}
.section-big-pb {
  padding-bottom: var(--section-big-spacing);
}
.section-big-my {
  margin: var(--section-big-spacing) 12px;
}
.section-big-mt {
  margin-top: var(--section-big-spacing);
}
.section-big-mb {
  margin-bottom: var(--section-big-spacing);
}

.section-extra-big-py {
  padding: var(--section-extra-big-spacing) 12px;
}
.section-extra-big-pt {
  padding-top: var(--section-extra-big-spacing);
}
.section-extra-big-pb {
  padding-bottom: var(--section-extra-big-spacing);
}
.section-extra-big-my {
  margin: var(--section-extra-big-spacing) 12px;
}
.section-extra-big-mt {
  margin-top: var(--section-extra-big-spacing);
}
.section-extra-big-mb {
  margin-bottom: var(--section-extra-big-spacing);
}

.fill-primary {
  fill: var(--primary-color);
}
.w-max-content {
  width: max-content;
}
.dropdown-toggle::after {
  vertical-align: unset;
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--primary-color);
}
.dropdown-menu {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border: 2px solid var(--primary-color);
}
.fw-800 {
  font-weight: 800;
}
.fw-700 {
  font-weight: 700;
}
.fw-600 {
  font-weight: 600;
}
.fw-500 {
  font-weight: 500;
}
.fw-400 {
  font-weight: 400;
}
.fw-300 {
  font-weight: 300;
}
.form-check-input {
  width: 20px;
  height: 20px;
  border-color: var(--primary-color);
  border-width: 2px;
}
.form-check label {
  padding-left: 5px;
  position: relative;
  top: 3px;
}
.form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.fill-path path {
  fill: var(--yellow-color);
  transition: all 0.3s;
}
.fill-path:hover path {
  fill: var(--white-color);
}
.heading-label-p {
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 12px;
}
.text-yellow{
  color: var(--yellow-color);
}
.text-white{
  color: var(--white-color);
}
.text-rawani-05{
  color: var(--rawani-color-05) !important;
}
.max-w-max-content{
  max-width: max-content;
}
.container{
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}
.img-fluid{
  max-width: 100%;
  height: auto;
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}
.row>* {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
.text-center{
  text-align: center;
}
.mb-0{
  margin-bottom: 0;
}
.w-100{
  width: 100% !important;
}
.text-uppercase{
  text-transform: uppercase;
}
.text-start{
  text-align: start;
}
.align-items-center{
  align-items: center !important;
}
.ms-auto{
  margin-left: auto;
}
.mb-0{
  margin-bottom: 0 !important;
}
.border-radius-inherit{
  border-radius: inherit;
}
/* default css end */

/* header start */
.text-secondry,
.text-secondry:hover{
  color: #f2f8f1 !important;
}

header{
  background: #0f5c7a;
  min-height: var(--header-less-spacing);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.07);
  padding: 5px 12px;
  justify-content: space-between;
  width: 100%;
  transition: all 0.3s;
}
header.fixed{
  position: sticky;
  top: 0;
  z-index: 99;
  transition: all 0.3s;
}
header.fixed{
  min-height: calc(var(--header-less-spacing) - 10px);
}
header.fixed + .mobile-sidebar-wrap {
  height: calc(100vh - var(--header-less-spacing) + 10px);
}
.header-auth-wrap{
  grid-gap: 20px;
}
header ul li a{
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: var(--white-color);
  display: flex;
  align-items: center;
}
header ul li:not(:last-child){
  margin-right: 25px;
}
header .dropmenu-option-ico{
  margin-left: 15px;
}
.hero-head-max-text{
  max-width: 1065px;
  margin: 25px auto 0;
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.04em;
  color: var(--white-color);
}
.hero-line-claim-text{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.sub-menu-option {
  position: absolute;
  background: var(--yellow-gradiant);
  padding: 20px;
  border-radius: 10px 0;
  min-width: 150px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 99;
  top: 110px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.sub-menu-option li:not(:last-child){
  padding-bottom: 18px;
}
header ul li .sub-menu-option li{
  margin: 0;
}
.header-menu-list > li{
  padding: 30px 0;
}
.sub-menu-option li a{
  color: var(--white-color);
}
.sub-menu-tag:hover .sub-menu-option {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.sub-menu-option li a:hover{
  color: var(--black-color) !important;
}
/* header end */

/* mobile header start */
.mobile-sidebar-wrap{
  max-width: 375px;
  width: 100%;
  height: calc(100vh - var(--header-less-spacing));
  background-color: var(--body-color);
  position: fixed;
  z-index: 99;
  padding: 60px 30px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-380px);
  transition: all 0.3s;
  top: 0;
  left: 0;
}
.mobile-sidebar-wrap-show{
  transform: translateX(0);
}
.mobile-sidebar-wrap .close-ico{
  position: absolute;
  top: 30px;
  right: 30px;
}
.mobile-sidebar-wrap .sidebar-data {
  width: 100%;
  height: calc(100vh - 100px);
  overflow-y: auto;
}
.mobile-sidebar-wrap .sidebar-data .primary-btn {
  margin-bottom: 15px;
  font-weight: 500;
}
.mobile-sidebar-wrap .menu > li > a {
  padding: 15px;
  display: block;
  color: var(--white-color);
  border: 1.5px solid #0b375c;
  border-width: 1px 0;
}
.mobile-sidebar-wrap .contact-details h6{
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  color: var(--white-color);
  word-break: break-word;
}
.mobile-sidebar-wrap .contact-details img{
  margin-right: 15px;
}
.mobile-sidebar-wrap .contact-details li:not(:last-child){
  margin-bottom: 22px;
}
.mobile-sidebar-wrap .contact-details{
  margin: 50px 0;
}
.mobile-sidebar-wrap .social-list li:not(:last-child) {
  margin: 0 7px 7px 0;
}
.mobile-sidebar-wrap .social-list li:not(:last-child){
  margin: 0 10px 10px 0;
}
.mobile-sidebar-wrap .menu li a span{
  margin-left: 5px;
}
.mobile-sidebar-wrap .sub-menu-tag{
  position: relative;
}
/* mobile header end */

.card-col{
}
.details-card-box{
  background-color: #0a3f57;
  padding: 20px;
  margin-bottom: 15px;
}
.details-card-box h4{
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 10px;
}
.details-card-box p{
  color: #f5f7fb;
  font-size: 15px;
  line-height: 1.2;
}
.img-wrap{
  max-height: 550px;
  width: auto;
  float: none;
  overflow: hidden;
  position: relative;
  min-height: 550px;
}
.img-wrap img{
  display: block;
  width: 100%;
  height: auto;
  min-height: 550px;
  object-fit: cover;
}
.heading-review{
  width: 100%;
  float: left;
}
.heading-review .hover-text{
  margin-top: 10px;
}
.heading-review .review a {
  width: 46%;
  float: left;
  text-align: center;
}
.heading-review .review a.callnow {
  background: #1b89c8;
}
.heading-review .review a.whatapp,
.heading-review .review a.callnow {
  float: left;
  width: 45%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 10px;
  font-size: 12px;
}
.heading-review .review a.whatapp {
  background: #27ae60;
  margin-left: 12px;
}
a.d-align.hover-txt-rawaini.callnow:hover {
  color: white !important;
  background: #146fa4;
}
a.d-align.hover-txt-rawaini.whatapp:hover {
  color: white !important;
  background: #018c3c;
}
.heading-review .review a {
  display: inline-block !important;
  width: auto;
  margin: 0px 6px;
  float: right;
}
.card-col .heading-review a.hover-text,
.heading-review .review{
  float: left;
  width: 50%;
}
.hourse-left,
.customer-reivew{
  float: left;
  width: 47%;
}

.card-col a{
  display: block;
  padding: 5px 0;
  font-weight: 500;
  font-size: 19px;
  text-decoration: none;
  text-align: left;
  color: var(--white-color);
}
.card-col span{
  color: var(--rawani-color-04);
  font-size: 13px;
  letter-spacing: 1.2px;
  display: block;
  margin-bottom: 5px;
}
.card-col p{
  line-height: 1.5;
  font-size: 12px;
  color: var(--gray-text-color);
}
.contact-number-wrap{
  flex-wrap: wrap;
  grid-gap: 10px;
  margin-top: 8px;
}
.contact-number-wrap a{
  font-size: 17px;
  color: var(--white-color);
  text-decoration: none;
  grid-gap: 8px;
  padding: 0;
}
.contact-number-wrap small{
  font-size: 17px;
  color: var(--white-color);
}
.advertise-btn{
  background-color: var(--pink-color);
  margin-top: 50px;
}
.pagination {
  display: inline-block;
  margin-top: 100px;
}

.pagination a {
  color: var(--white-color);
  background-color: var(--primary-color);
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
  border: 1px solid var(--primary-color);
  font-size: 22px;
}

.pagination a.active {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border: 1px solid var(--secondary-color);
}

.pagination a:hover:not(.active) {
  background-color: #ddd;
  color: #000;
}
.details-note-box{
  padding: 20px;
  background: #0a3f57;
  margin-bottom: 15px;
}
.details-note-section .inner-data-wrap{
  margin-bottom: 20px;
}
.details-note-section h3{
  color: #f4b941;
  font-weight: 400;
  margin: 5px 0 15px;
  font-size: 20px;
  padding-bottom: 5px;
  border-bottom: solid 1px var(--gray-text-color-01);
}
.details-note-section ul li:not(:last-child),
.details-note-section ul,
.details-note-section p{
  margin-bottom: 15px;
}
.details-note-box-info-col2{
  margin-top: 15px;
  grid-gap: 4px;
  font-size: 13px;
}
.details-note-box-info-col2 a{
  text-decoration: underline;
}
.copy-text{
  margin-top: 25px;
  color: var(--white-color);
}
/* learning js */
.d-none {
  display: none;
}
.visiblity-hidden {
  visibility: hidden;
}
/* learning start */
.h-100 {
  height: 100%;
}
.escort-details-wrap {
  display: flex;
}
.escort-details-col-left {
  width: var(--escort-details-col-left-width);
}
.escort-details-col-right {
  width: calc(100% - var(--escort-details-col-left-width));
  padding-left: 30px;
}
.thumbslider-wrap {
  margin-top: 15px;
  padding: 10px;
  background-color: #000;
}
.thumbslider-wrap .swiper-slide {
  height: 100px;
  border: 2px solid transparent;
}
.thumbslider-wrap .swiper-slide-thumb-active{
  border-color: var(--white-color);
}
.full-screen-img .swiper-slide {
  height: 660px;
  background-color: var(--black-color);
  padding: 15px;
}
.escort-details-col-left .swiper-button-next:after,
.escort-details-col-left .swiper-button-prev:after {
  font-size: 14px;
  color: var(--white-color);
  font-weight: 700;
}
.escort-details-col-left .swiper-button-next,
.escort-details-col-left .swiper-button-prev {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: var(--light-red-color);
  margin-top: 0;
  transform: translateY(-50%);
}
.escort-details-col-left .swiper-button-next {
  right: -15px;
}
.escort-details-col-left .swiper-button-prev {
  left: -15px;
}
.like-number-wrap {
  min-width: 70px;
  min-height: 40px;
  background-color: var(--body-color);
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  color: var(--white-color);
  justify-content: center;
  gap: 8px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
}
.like-number-wrap svg {
  transition: all 0.3s;
}
.like-number-wrap:hover {
  background-color: var(--light-red-color);
}
.profile-data-wrap {
  background-color: #062739;
}
.details-note-box.name-box h3,
.details-note-box.name-box span:not(:last-child) {
  margin-bottom: 15px;
}
.details-note-box.name-box span {
  line-height: 1.4;
}
.details-note-box.name-box a{
  font-size: 24px;
  color: var(--rawani-color-01);
}
.details-note-box .like-counting-wrap {
  grid-gap: 10px;
}
.details-note-box .like-counting-wrap span {
  grid-gap: 5px;
}
.details-note-box .like-counting-wrap span:hover {
  color: var(--rawani-color-01);
}
.transiaiton-all-03s {
  transition: all 0.3s;
}
.details-note-box .incall-box-wrap {
  padding: 5px 10px;
  background-color: var(--rawani-color-05);
  color: var(--white-color);
  font-size: 14px;
  grid-gap: 5px;
  font-weight: 500;
  letter-spacing: 1.1px;
}
.details-note-box .incall-box-wrap:not(:last-child),
.details-note-box ul li:not(:last-child) {
  margin-bottom: 10px;
}
.details-note-box ul li {
  color: var(--white-color);
}
.details-note-box ul li b {
  margin-right: 10px;
  font-weight: 600;
}
.prev-next-girls-head-btn-wrap {
  margin-bottom: 20px;
  justify-content: space-between;
}
.prev-next-girls-head-btn-wrap a {
  min-width: 70px;
  min-height: 30px;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 5px;
}
.img-inner-card{
  grid-gap: 5px;
  bottom: 20px;
  right: 10px;
}
.girl-rating{
  width: 27px;
  height: 25px;
  background-color: var(--yellow-color);
  padding: 2px 8px;
  border-radius: 10px;
  margin: 2px;
  float: right;
}
.varified-card{
  min-width: 70px;
  min-height: 40px;
  width: max-content;
  background-color: var(--black-color);
  padding: 2px 8px;
  border-radius: 2px;
  color: var(--white-color);
  font-size: 14px;
  font-weight: 600;
}
.new-bg{
  background-color: var(--light-navy-blue-color);
}
.verified-bg{
  background-color: #27ae60;
}
.back-again-bg{
  background-color: var(--yellow-color-01);
  color: var(--black-color);
}
.grid.previous-girl-grid{
  grid-template-columns: repeat(6, 1fr);
  margin-top: 15px;
}
.previous-girl-img-wrap{
  height: 193px;
}
.previous-girl-card h5{
  margin-top: 8px;
}
.header-wrap a{
  font-size: 22px;
}

/* filter css start */
#filtersbt,.filter_option{
  padding: 17px 37px;
  cursor: pointer;
  background: linear-gradient(-45deg, #1b89c8, #73ccfc, #f4b941, #ff7b3a);
  border: none;
  font-size: 18px;
  border-radius: 5px;
  width: 22%;
  margin: 12px 14px;
  animation: anime 16s linear infinite;
  -webkit-animation: anime 16s linear infinite;
  background-size: 600%;
}

@keyframes anime{
  0%{
    background-position: 0% 50%;
  }
  50%{
    background-position: 100% 50%;
  }
  100%{
    background-position: 0% 50%;
  }
}
/* filter css end */

/* top bar css */
.header-auth-wrap a {
  font-size: 15px;
}
/* top bar end */

.section-breadcrumb{
  background-color: #146fa4;
  padding: 20px;
  grid-gap: 10px;
  margin-top: 0;
}

/* pagination start (override older one if duplicated) */
.pagination a.active {
  background: #1b89c8;
  border-color: #1b89c8;
}

a.previouspage,
a.previouspage:hover,
a.nextpage,
a.nextpage:hover {
  background-color: #191919 !important;
}

.pagination a {
  margin: 5px;
}
.pagination {
  display: flex;
  margin-top: 100px;
  justify-content: center;
}
/* pagination end */

.section-mt-2 {
  margin-top: 20px;
}
.bg_offwhite .container {
  text-align: -webkit-center;
}
.textarea h1,
.textarea h2,
.textarea h3,
.textarea h4,
.textarea h5,
.textarea h6 {
  color: var(--primary-color);
  margin-bottom: 10px;
}
.textarea p {
  text-align: justify;
  font-weight: 500;
  color: #f5f7fb;
}
.textarea>p,
.textarea ul {
  margin-top: 15px;
  margin-bottom: 20px;
}
.new-loc li {
  list-style: none;
  text-align: center;
  background-color: #0f5c7a;
  border: 3px solid #73ccfc;
  margin: 5px;
  padding: 5px;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 35px;
}
.new-loc li a {
  color: #fff;
}

@media (min-width: 768px) {
  .new-loc li {
    width: 29.6%;
  }
  .details-note-section ul li {
    font-weight: 400;
    font-size: 15px;
    color: var(--white-color);
  }
  .details-note-box ul li {
    color: var(--white-color);
  }
  .new-loc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* responsive widths for .new-loc */
@media(min-width:320px){
  .new-loc li {
    width: 100%;
  }
}
@media screen and (min-width:425px) {
  .new-loc li {
    width: 42.8%;
  }
}
@media(min-width:768px){
  .new-loc li {
    width: 29.6%;
  }
}
@media(min-width:992px){
  .new-loc li {
    width: 22.29%;
  }
}

/* age verification popup */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2147483647 !important;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s;
  overscroll-behavior: contain;
  font-family: 'Poppins', sans-serif;
}
#age-verification-overlay.visible {
  opacity: 1;
  visibility: visible;
}
.age-popup {
  background: #fafacc;
  color: #000;
  max-width: 620px;
  width: 100%;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.age-popup .title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.age-popup p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
  opacity: 0.9;
  color: #000 !important;
}
.buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.btn {
  padding: 14px 24px;
  border: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  min-height: 52px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn:hover {
  opacity: 0.9;
}
.btn-yes {
  background: linear-gradient(135deg, #1b89c8, #73ccfc);
  color: #fff;
  border: revert-layer;
}
.btn-no {
  background: linear-gradient(135deg, #ff7b3a, #d95a2a);
  color: #fff;
  border: revert-layer;
}
.legal-note {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 24px;
  line-height: 1.4;
}
.notice-box {
  background: rgba(255, 123, 58, 0.15);
  border: 1px solid #560413;
  border-radius: 25px;
  padding: 16px;
  font-size: 15px;
  line-height: 1.5;
}
.notice-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.85);
}
@media (min-width: 480px) {
  .buttons {
    flex-direction: row;
    justify-content: center;
  }
  .btn {
    flex: 1;
    max-width: 200px;
  }
}


/* body background image */

  body {
    background-image: url("/images/body-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    min-height: 100vh;
  }



  /* banner sectio  */
  /* banner section */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 80vh;           /* a bit taller for hero */
  max-height: 100vh;
  overflow: hidden;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

/* make sure nothing inside creates side gaps */
.hero-slider__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Each slide */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

/* Slide image – fully cover without side gaps */
.hero-slide img {
  width: 100%;
  height: 100vh;              /* fill full viewport height */
  object-fit: cover;
  display: block;
}

/* Dark overlay for text readability */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.35)
  );
}

/* Content */
.hero-slide__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 12px;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

.hero-slide__content h1 {
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 700;
}

.hero-slide__content p {
  font-size: clamp(14px, 2vw, 18px);
  max-width: 520px;
  margin-bottom: 20px;
}

/* CTA button */
.hero-slide__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f4b941, #ff7b3a);
  color: #000;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-slide__btn:hover {
  background: linear-gradient(135deg, #ffcf63, #ff9454);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
}

/* Dots navigation */
.hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-slider__dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-slider__dots .dot.active {
  width: 22px;
  background: #ffffff;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .hero-slider {
    min-height: 70vh;
  }

  .hero-slide img {
    height: 70vh;            /* avoid very tall image on small phones */
  }

  .hero-slide__content {
    align-items: center;
    text-align: center;
    padding: 0 16px;
  }

  .hero-slide__content p {
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .hero-slider {
    min-height: 100vh;       /* full-screen hero on large devices */
  }
}


.hero-center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);     /* perfect center */
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  box-sizing: border-box;
}

.hero-center-content h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-center-content p {
  font-size: clamp(16px, 2.5vw, 20px);
  max-width: 600px;
  margin: 0 auto 20px;
}


  /* banner section  */

  /* Footer */
  .site-footer {
  background: linear-gradient(180deg, rgba(15,92,122,0.85) 0%, rgba(10,63,87,0.85) 100%), url('../images/footer-banner.webp') center center/cover no-repeat;
  color: #f5f7fb;
  padding: 40px 0 20px;
  margin-top: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.footer-brand h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--yellow-color);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--yellow-color);
  color: #000;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--yellow-color);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #f5f7fb;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--yellow-color);
}

.footer-col ul li i {
  margin-right: 8px;
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
}

.footer-bottom__right ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-bottom__right a {
  color: #f5f7fb;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom__right a:hover {
  color: var(--yellow-color);
}

/* Mobile */
@media (max-width: 767.98px) {
  .site-footer {
    padding: 32px 0 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-brand {
    order: 3;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom__right ul {
    flex-direction: column;
    gap: 12px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

  /* Footer */


  /* table 1 */
  .monuments-table-section {
  padding: 48px 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #0f5c7a;
  margin-bottom: 8px;
}

.section-header p {
  font-size: 14px;
  color: #64748b;
  max-width: 640px;
  margin: 0 auto;
}

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #0f5c7a, #1b89c8);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Desktop table */
.monuments-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.monuments-table th {
  background: linear-gradient(135deg, #0f5c7a, #1b89c8);
  color: #ffffff;
  padding: 16px 12px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.monuments-table td {
  padding: 16px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.monuments-table tbody tr {
  transition: background-color 0.2s ease;
}

.monuments-table tbody tr:hover {
  background: rgba(244, 185, 65, 0.08);
}

.monuments-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.5);
}

/* Mobile card layout */
/* Mobile card layout removed for .monuments-table to keep table structure same on all devices */

/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
  .monuments-table th,
  .monuments-table td {
    padding: 12px 8px;
    font-size: 13px;
  }
}

/* Price styling */
.monuments-table .free {
  color: #27ae60;
  font-weight: 600;
}

/* Scrollbar styling */
.table-wrapper::-webkit-scrollbar {
  height: 6px;
}

.table-wrapper::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: #0f5c7a;
  border-radius: 3px;
}

  /* table 1 */

  /* content section 1 */
  .content-block {
  padding: 12px 0;
  background: #fafbfc;
}

.content-block:nth-child(even) {
  background: #f8fafc;
}

.content-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.content-block__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}

.content-block__image:hover img {
  transform: scale(1.02);
}

.content-block__text h3 {
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 700;
  color: #0f5c7a;
  margin-bottom: 12px;
}

.content-block__text p {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 20px;
}

.content-block__btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f4b941, #ff7b3a);
  color: #000;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(244, 185, 65, 0.3);
  transition: all 0.3s ease;
}

.content-block__btn:hover {
  background: linear-gradient(135deg, #ffcf63, #ff9454);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(244, 185, 65, 0.4);
}

/* Mobile - stack vertically */
@media (max-width: 767.98px) {
  .content-block {
    padding: 40px 0;
  }

  .content-block__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .content-block__image img {
    height: 240px;
  }

  .content-block__text {
    order: -1; /* text first on mobile */
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
  .content-block__inner {
    gap: 32px;
  }

  .content-block__image img {
    height: 280px;
  }
}

  /* content section 1 */