/* Adjust font size for smaller screens */
@media (max-width: 576px) {
    .navbar-brand span {
        font-size: 8px;
    }
  }
  
.container{
    max-width: 1300px;
    margin: auto;
    padding-left: 10px;
    padding-right: 10px;
    
}
.navbar{
    display: flex;
    align-items: center;
    padding: 0px;
}
nav{
    flex: 1;
    text-align: right;
}
nav ul{
    display: inline-block;
    list-style-type: none;
}
nav ul li{
    display: inline-block;
    margin-right: 20px;
    margin: 5px;
    padding: 5px;
}
.dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Style the dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
  }
  /* Style the links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #f1f1f1;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {background-color: #3e8e41;}


  .primary-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: #0196ae;
}

.primary-header .logo img {
    height: 60px;
    width: auto;
}

.primary-header .nav-links {
    display: flex;
}

.primary-header .nav-links li {
    margin: 0 15px;
}

.primary-header .nav-links a {
    color: black;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.primary-header .nav-links a:hover {
    color: #ffa500;
}

/* Responsive header for smaller screens */
@media (max-width: 768px) {
    .primary-header nav {
        flex-direction: column;
    }

    .primary-header .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .primary-header .nav-links li {
        margin: 10px 0;
    }
}




/* Reset some default styles */
body, h1, h2, h3, h4, h5, h6, ul, li, a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    color: inherit;
}


body {
    font-family: 'Times New Roman', Arial, serif, sans-serif;
    line-height: 1.6;
}

.primary-header {
    /*background-color: #333;*/
    color: black;
    padding: 5px 0;
}
.primary-header .logo img {
    height: 60px;
    width: auto;
}
.secondary-header {
    background-color: #0196ae;
    color: black;
    padding: 0 0;
}

.primary-header, .secondary-header {
    width: 100%;
    text-align: center;
}

.primary-header ul {
    display: flex;
    justify-content: right;
    padding: 0;
    text-decoration: underline;
}
.secondary-header ul {
    display: flex;
    justify-content: center;
    padding: 0;
}
.secondary-header {
    line-height: 1.5;
}
.primary-header li {
    margin: 0 15px;
}
.secondary-header li {
    margin: 0 5px;
}

.primary-header a, .secondary-header a {
    color: black;
    font-size: 16px;
    transition: color 0.3s ease;
}

.primary-header a:hover, .secondary-header a:hover {
    color: #ffa500;
}

/* Add some space between the two headers */
/*.secondary-header {
    margin-top: 10px;
}*/

/* Responsive header for smaller screens */
@media (max-width: 768px) {
    .primary-header ul, .secondary-header ul {
        flex-direction: column;
    }
    
    .primary-header li, .secondary-header li {
        margin: 10px 0;
    }
}

/* Main content styling (for demonstration) */
main {
    padding: 20px;
    background: #f4f4f4;
    min-height: 80vh;
}



/* Hero section styling */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    /*margin-bottom: 20px;*/
    
}
.hero-content h2 {
    font-size: 3rem;
}

.hero-content p {
    font-size: 1.5rem;
}

/* Responsive hero section */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* Main content styling (for demonstration) */
main {
    padding: 20px;
    background: #f4f4f4;
    min-height: 80vh;
}






/* General Styles */
/*body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
  }*/
  
  .bg-amber-50 {
    background-color: #fff8e1; /* Light amber background */
  }
  
  .dark .bg-zinc-800 {
    background-color: #27272a; /* Dark background for dark mode */
  }
  
  .text-zinc-900 {
    color: #18181b; /* Dark text color */
  }
  
  .dark .text-white {
    color: #ffffff; /* White text color for dark mode */
  }
  
  .text-zinc-600 {
    color: #52525b; /* Medium dark text color */
  }
  
  .dark .text-zinc-300 {
    color: #d4d4d8; /* Light text color for dark mode */
  }
  
  .text-orange-500 {
    color: #f97316; /* Orange text color */
  }
  
  .text-teal-400 {
    color: #f97316; /* Teal text color */
  }
  
  /* Container and Layout */
  .p-8 {
    padding: 2rem; /* Padding */
  }
  
  .max-w-7xl {
    max-width: 80rem; /* Max width */
    margin: auto; /* Center alignment */
  }
  
  .mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Typography */
  .text-4xl {
    font-size: 3.25rem; /* Heading font size */
    line-height: 2.5rem; /* Line height */
  }
  
  .font-bold {
    font-weight: 800; /* Bold font */
  }
  
  .mt-2 {
    margin-top: 0.5rem; /* Margin top */
  }
  
  .mb-8 {
    margin-bottom: 2rem; /* Margin bottom */
  }
  
  .h-1 {
    height: 0.30rem; /* Height */
  }
  
  .w-16 {
    width: 14rem; /* Width */
  }
  
  .bg-orange-500 {
    background-color: #f97316; /* Orange background color */
  }
  
  /* Grid Layout */
  .grid {
    display: grid;
    gap: 2rem; /* Gap between grid items */
  }
  
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)); /* Single column grid */
  }
  
  @media (min-width: 768px) {
    .md\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr)); /* Three column grid for medium screens and up */
    }
  }
  
  .gap-8 {
    gap: 2rem; /* Gap between grid items */
  }
  
  /* Card Styles */
  .bahut{
    position: relative; /* Relative positioning */
    border: #0196ae 10px solid;
    overflow: hidden; /* Hidden overflow */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* Shadow */

  }
  /*.relative {
    position: relative; /* Relative positioning */
  
  
  /*.rounded-lg {
    /*border-radius: 0.5rem; /* Rounded corners */
    /*border: #0196ae 10px solid;
  
  
  /*.overflow-hidden {
    overflow: hidden; /* Hidden overflow */
  
  
  /*.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* Shadow */
  
  
  .w-full {
    width: 100%; /* Full width */
  }
  
  .h-full {
    height: 100%; /* Full height */
  }
  
  .object-cover {
    object-fit: cover; /* Cover object fit */
  }
  
  .absolute {
    position: absolute; /* Absolute positioning */
  }
  
  .inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; /* Full inset */
  }
  
  /*.bg-black {
    background-color: #000000; /* Black background */
  
  /*.bg-opacity-50 {
    background-opacity: 0.5; /* 50% opacity */
  
  
  .flex {
    display: flex; /* Flex display */
  }
  
  .flex-col {
    flex-direction: column; /* Column direction */
  }
  
  .justify-end {
    justify-content: flex-end; /* End alignment */
  }
  
  .p-4 {
    padding: 1rem; /* Padding */
  }
  
  .text-2xl {
    font-size: 2rem; /* Font size */
    line-height: 2rem; /* Line height */
  }
  
  .text-3xl {
    font-size: 2.875rem; /* Font size */
    line-height: 2.25rem; /* Line height */
  }
  
  .font-semibold {
    font-weight: 900; /* Semi-bold font */
  }
  
  /* Responsive Typography */
  @media (max-width: 768px) {
    .text-4xl {
      font-size: 1.875rem; /* Smaller font size for mobile */
      line-height: 2.25rem;
    }
  
    .text-2xl {
      font-size: 1.25rem; /* Smaller font size for mobile */
      line-height: 1.75rem;
    }
  
    .text-3xl {
      font-size: 1.5rem; /* Smaller font size for mobile */
      line-height: 2rem;
    }
  }
  
  /* Dark Mode */
  @media (prefers-color-scheme: dark) {
    .dark\:bg-zinc-800 {
      background-color: #27272a; /* Dark mode background */
    }
  
    .dark\:text-white {
      color: #ffffff; /* Dark mode text color */
    }
  
    .dark\:text-zinc-300 {
      color: #d4d4d8; /* Dark mode text color */
    }
  }
  







/* General Styles */
/*body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
  }
  
  .bg-light-cream {
    background-color: #f5f3e7; /* Light cream background */
  
  
  .text-white {
    color: #ffffff; /* White text color */
  }
  
  .text-black {
    color: #000000; /* Black text color */
  }
  
  .text-yellow-500 {
    color: #facc15; /* Yellow text color */
  }
  
  .bg-yellow-500 {
    background-color: #facc15; /* Yellow background color */
  }
  
  /* Container and Layout */
  .padding-4 {
    padding: 1rem; /* Padding */
  }
  
  .mt-4 {
    margin-top: 1rem; /* Margin top */
  }
  
  .grid-container {
    display: grid;
    gap: 1rem; /* Gap between grid items */
  }
  
  .grid-single {
    grid-template-columns: repeat(1, minmax(0, 1fr)); /* Single column grid */
  }
  
  @media (min-width: 768px) {
    .md\:grid-double {
      grid-template-columns: repeat(2, minmax(0, 1fr)); /* Two column grid for medium screens and up */
    }
    
    .md\:grid-quad {
      grid-template-columns: repeat(4, minmax(0, 1fr)); /* Four column grid for medium screens and up */
    }
  }
  
  .gap-4 {
    gap: 1rem; /* Gap between grid items */
  }
  
  /* Card Styles */
  .card {
    position: relative; /* Relative positioning */
    border-radius: 0.5rem; /* Rounded corners */
    overflow: hidden; /* Hidden overflow */
  }
  
  .full-width {
    width: 100%; /* Full width */
  }
  
  .full-height {
    height: 100%; /* Full height */
  }
  
  .object-cover {
    object-fit: cover; /* Cover object fit */
  }
  
  .overlay {
    position: absolute; /* Absolute positioning */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; /* Full inset */
    /*background-color: #000000; /* Black background */
    /*background-opacity: 0.5; /* 50% opacity */
    display: flex; /* Flex display */
  }
  
  .flex-col {
    flex-direction: column; /* Column direction */
  }
  
  .justify-center {
    justify-content: center; /* Center alignment */
  }
  
  .justify-start {
    justify-content: flex-start; /* Start alignment */
  }
  
  .items-start {
    align-items: flex-start; /* Start alignment */
  }
  
  .items-center {
    align-items: center; /* Center alignment */
  }
  
  .padding-4 {
    padding: 1rem; /* Padding */
  }
  
  .px-4 {
    padding-left: 1rem; /* Padding left */
    padding-right: 1rem; /* Padding right */
  }
  
  .py-2 {
    padding-top: 0.5rem; /* Padding top */
    padding-bottom: 0.5rem; /* Padding bottom */
  }
  
  .mt-4 {
    margin-top: 1rem; /* Margin top */
  }
  
  .text-3xl {
    font-size: 1.875rem; /* Font size */
    line-height: 2.25rem; /* Line height */
  }
  
  .text-xl {
    font-size: 1.25rem; /* Font size */
    line-height: 1.75rem; /* Line height */
  }
  
  .text-lg {
    font-size: 1.125rem; /* Font size */
    line-height: 1.75rem; /* Line height */
  }
  
  .font-bold {
    font-weight: 700; /* Bold font */
  }
  
  .btn-yellow {
    background-color: #facc15; /* Yellow background color */
    color: #000000; /* Black text color */
    padding: 0.5rem 1rem; /* Padding */
    text-align: center; /* Center alignment */
    border-radius: 0.375rem; /* Rounded corners */
    transition: background-color 0.3s;
  }
  
  .btn-yellow:hover {
    background-color: #eab308; /* Hover background color */
  }
  
  /* Responsive Typography */
  @media (max-width: 768px) {
    .text-3xl {
      font-size: 1.5rem; /* Smaller font size for mobile */
    }
  
    .text-xl {
      font-size: 1rem; /* Smaller font size for mobile */
    }
  
    .text-lg {
      font-size: 0.875rem; /* Smaller font size for mobile */
    }
  }







    .background-cream {
      background-color: #fdf5e6;
    }
    .min-height-screen {
      min-height: 100vh;
    }
    .padding-6 {
      padding: 1.5rem;
    }
    .text-center {
      text-align: center;
    }
    .margin-bottom-6 {
      margin-bottom: 1.5rem;
    }
    .title {
      font-size: 1.875rem;
      font-weight: bold;
    }
    .gri-container {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: repeat(1, 1fr);
    }
    .card {
      position: relative;
      border-radius: 2.75rem;
      overflow: hidden;
      /*box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);*/
      border: #0196ae 9px solid;
    }
    .image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      /*background: linear-gradient(to top, black, transparent);*/
      padding: 1rem;
    }
    .overlay-text {
      color: white;
      font-size: 1.25rem;
      font-weight: bold;
    }
    @media (min-width: 640px) {
      .gri-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (min-width: 1024px) {
      .gri-container {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    @media (min-width: 1280px) {
      .gri-container {
        grid-template-columns: repeat(4, 1fr);
      }
    }



    .custom-bg-cream {
      background-color: #fdf5e6;
    }
    .custom-min-h-screen {
      min-height: 100vh;
    }
    .custom-p-8 {
      padding: 2rem;
    }
    .custom-text-4xl {
      font-size: 2.25rem;
    }
    .custom-font-bold {
      font-weight: bold;
    }
    .custom-text-center {
      text-align: center;
    }
    .custom-mb-8 {
      margin-bottom: 2rem;
    }
    .custom-grid {
      display: grid;
      gap: 1.5rem;
    }
    .custom-grid-cols-1 {
      grid-template-columns: repeat(1, 1fr);
    }
    .custom-sm-grid-cols-2 {
      grid-template-columns: repeat(2, 1fr);
    }
    .custom-lg-grid-cols-4 {
      grid-template-columns: repeat(4, 1fr);
    }
    .custom-gap-6 {
      gap: 1.5rem;
    }
    .custom-relative {
      position: relative;
    }
    .custom-rounded-lg {
      border-radius: 0.5rem;
    }
    .custom-border-4 {
      border-width: 4px;
    }
    .custom-border-teal-500 {
      border-color: #38b2ac;
    }
    .custom-absolute {
      position: absolute;
    }
    .custom-bottom-4 {
      bottom: 1rem;
    }
    .custom-left-4 {
      left: 1rem;
    }
    .custom-text-white {
      color: white;
    }
    .custom-text-2xl {
      font-size: 1.5rem;
    }
    .custom-font-bold {
      font-weight: bold;
    }
    
    @media (min-width: 640px) {
      .custom-grid.custom-sm-grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (min-width: 1024px) {
      .custom-grid.custom-lg-grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    






    .custom-bg-cream-light {
      background-color: #fdf5e6;
    }
    .custom-dark-bg-zinc-800 {
      background-color: #0196ae;
    }
    .custom-min-h-screen {
      min-height: 100vh;
    }
    .custom-p-4 {
      padding: 1rem;
    }
    .custom-text-center {
      text-align: center;
    }
    .custom-text-3xl {
      font-size: 1.875rem;
    }
    .custom-font-bold {
      font-weight: bold;
    }
    .custom-mb-8 {
      margin-bottom: 2rem;
    }
    .custom-text-zinc-800 {
      color: #27272a;
    }
    .custom-dark-text-zinc-100 {
      color: #f4f4f5;
    }
    .custom-grid {
      display: grid;
      gap: 1rem;
      grid-template-columns: repeat(2, 1fr);
    }
    
    @media (min-width: 640px) {
      .custom-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    @media (min-width: 768px) {
      .custom-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    
    .custom-relative {
      position: relative;
    }
    .custom-rounded-lg {
      border-radius: 0.5rem;
    }
    .custom-border-2 {
      border-width: 2px;
    }
    .custom-border-teal-500 {
      border-color: #38b2ac;
    }
    .custom-absolute {
      position: absolute;
    }
    .custom-bottom-2 {
      bottom: 0.5rem;
    }
    .custom-left-2 {
      left: 0.5rem;
    }
    .custom-text-white {
      color: white;
    }
    









.custom-container {
  background-color: #fffbe6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.custom-header {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: #2d2d2d;
}

.custom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.custom-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.custom-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.custom-card-title {
  padding: 15px;
  text-align: center;
  background-color: #008080;
  color: #ffffff;
  font-weight: bold;
}

/* Responsive styles */
@media (min-width: 640px) {
  .custom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .custom-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .custom-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #2d2d2d;
  }
  .custom-container {
    background-color: #303030;
  }
  .custom-header {
    color: #f5f5f5;
  }
  .custom-card {
    background-color: #424242;
  }
  .custom-card-title {
    background-color: #007070;
  }
}





/* Base styles */


.custom-bg-cream {
  background-color: #fff5e6;
}

.custom-padding {
  padding: 16px;
}

.custom-relative {
  position: relative;
}

.custom-img-full {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.custom-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.custom-title {
  font-size: 2.5rem;
  font-weight: bold;
}

.custom-subtitle {
  font-size: 1.25rem;
}

@media (min-width: 640px) {
  .custom-title {
    font-size: 3rem;
  }
  .custom-subtitle {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .custom-title {
    font-size: 3.5rem;
  }
  .custom-subtitle {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .custom-title {
    font-size: 4rem;
  }
  .custom-subtitle {
    font-size: 2rem;
  }
}

@media (prefers-color-scheme: dark) {
  .custom-bg-cream {
    background-color: #303030;
  }
  .custom-title, .custom-subtitle {
    color: #f5f5f5;
  }
}






/* Base styles */

.unique-bg {
  background-color: #fffbeb;
}

.p-8 {
  padding: 32px;
}

.unique-title {
  font-size: 2rem;
  font-weight: bold;
}

.text-center {
  text-align: center;
}

.mb-8 {
  margin-bottom: 32px;
}

.unique-grid {
  display: grid;
  gap: 32px;
}

.unique-card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.unique-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.unique-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-right: 16px;
}

.unique-card-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.unique-rating {
  color: #fbbf24;
}

.unique-card-text {
  color: #4b5563;
}

.unique-read-more {
  color: #3b82f6;
}

/* Responsive styles */
@media (min-width: 640px) {
  .unique-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .unique-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .unique-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-color-scheme: dark) {
  .unique-bg {
    background-color: #303030;
  }
  .unique-title {
    color: #f5f5f5;
  }
  .unique-card {
    background-color: #424242;
  }
  .unique-card-text {
    color: #d1d5db;
  }
  .unique-read-more {
    color: #60a5fa;
  }
}





/* Base styles */

/* Unique class names to avoid overlap */
.unique-min-h-screen {
  min-height: 100vh;
}

.unique-bg-cream {
  background-color: #fff9f2;
}

.unique-flex {
  display: flex;
}

.unique-items-center {
  align-items: center;
}

.unique-justify-center {
  justify-content: center;
}

.unique-p-4 {
  padding: 16px;
}

.unique-max-w-lg {
  max-width: 32rem;
}

.unique-w-full {
  width: 100%;
}

.unique-bg-white {
  background-color: #ffffff;
}

.unique-p-8 {
  padding: 32px;
}

.unique-rounded-lg {
  border-radius: 8px;
}

.unique-shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.unique-border-4 {
  border-width: 4px;
}

.unique-border-teal-500 {
  border-color: #38b2ac;
}

.unique-text-4xl {
  font-size: 2.25rem;
}

.unique-font-bold {
  font-weight: 700;
}

.unique-text-center {
  text-align: center;
}

.unique-mb-2 {
  margin-bottom: 8px;
}

.unique-mb-6 {
  margin-bottom: 24px;
}

.unique-space-y-4 > * + * {
  margin-top: 16px;
}

.unique-block {
  display: block;
}

.unique-mb-1 {
  margin-bottom: 4px;
}

.unique-font-semibold {
  font-weight: 600;
}

.unique-relative {
  position: relative;
}

.unique-w-full {
  width: 100%;
}

.unique-p-3 {
  padding: 12px;
}

.unique-border-2 {
  border-width: 2px;
}

.unique-rounded-lg {
  border-radius: 8px;
}

.unique-pl-10 {
  padding-left: 40px;
}

.unique-absolute {
  position: absolute;
}

.unique-left-3 {
  left: 12px;
}

.unique-top-3 {
  top: 12px;
}

.unique-w-5 {
  width: 20px;
}

.unique-h-5 {
  height: 20px;
}

.unique-bg-teal-500 {
  background-color: #38b2ac;
}

.unique-text-white {
  color: #ffffff;
}

.unique-rounded-lg {
  border-radius: 8px;
}

.unique-font-semibold {
  font-weight: 600;
}








/* Base styles */

/* Unique class names to avoid overlap */
.unique-bg-cream {
  background-color: #fff9f2;
}

.unique-p-8 {
  padding: 32px;
}

.unique-grid {
  display: grid;
}

.unique-grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md\:unique-grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.unique-gap-8 {
  gap: 32px;
}

.unique-font-bold {
  font-weight: 700;
}

.unique-mb-2 {
  margin-bottom: 8px;
}

.unique-mt-4 {
  margin-top: 16px;
}

.unique-text-blue-600 {
  color: #2563eb;
}

.unique-flex {
  display: flex;
}

.unique-justify-center {
  justify-content: center;
}

.unique-space-x-4 > * + * {
  margin-left: 16px;
}

.unique-mt-8 {
  margin-top: 32px;
}

.unique-w-10 {
  width: 40px;
}

.unique-h-10 {
  height: 40px;
}

.unique-text-center {
  text-align: center;
}

.unique-text-xl {
  font-size: 1.25rem;
}

/*Month wala chalu hoga yaha se*/

.month-selector {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.month-button {
  padding: 0.5rem 1rem;
  background-color: #d1d5db;
  color: #374151;
  border-radius: 9999px;
  cursor: pointer;
}
.trip-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
}
.trip-card {
  position: relative;
  width: 16rem;
}
.trip-image {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.trip-price {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background-color: #facc15;
  color: #000;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}
.trip-content {
  background-color: #fff;
  padding: 1rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.trip-title {
  font-weight: bold;
}
.trip-detail {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.trip-detail img {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}


/*Romantic wala chalu hoga yaha se*/
.romesc-bg-light-blue {
  background-color: #ebf8ff;
  padding: 1rem;
}
.romesc-relative-container {
  position: relative;
}
.romesc-full-width-img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 0.5rem;
}
.romesc-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 0.5rem;
}
.romesc-overlay h2 {
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
}
.romesc-overlay p {
  font-size: 1.125rem;
  color: #fff;
  margin-top: 0.5rem;
}
.romesc-overlay button {
  margin-top: 1rem;
  background-color: #fbbf24;
  color: #000;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
}
.romesc-trip-cards-container {
  margin-top: 1.5rem;
  display: flex;
  overflow-x: auto;
  gap: 1rem;
}
.romesc-trip-card {
  position: relative;
  width: 12rem;
  flex-shrink: 0;
}
.romesc-trip-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 0.5rem;
}
.romesc-trip-card-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  border-radius: 0.5rem;
}
.romesc-trip-card-overlay h3 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
}
.romesc-trip-card-overlay p {
  color: #fff;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .romesc-full-width-img {
      height: 12rem;
  }
  .romesc-overlay h2 {
      font-size: 1.5rem;
  }
  .romesc-overlay p {
      font-size: 1rem;
  }
  .romesc-trip-card {
      width: 10rem;
  }
  .romesc-trip-card img {
      height: 10rem;
  }
}

@media (max-width: 480px) {
  .romesc-full-width-img {
      height: 10rem;
  }
  .romesc-overlay h2 {
      font-size: 1.25rem;
  }
  .romesc-overlay p {
      font-size: 0.875rem;
  }
  .romesc-trip-card {
      width: 8rem;
  }
  .romesc-trip-card img {
      height: 8rem;
  }
}


/*why wander on */

.wanderon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background-color: #fafafa;
  color: #1a202c;
}
.wanderon-container.dark {
  background-color: #18181b;
  color: #e2e8f0;
}
.wanderon-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #2d3748;
}
.wanderon-title.dark {
  color: #e2e8f0;
}
.wanderon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .wanderon-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .wanderon-grid {
      grid-template-columns: repeat(4, 1fr);
  }
}
.wanderon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
}
.wanderon-card.dark {
  background-color: #1a202c;
  border-color: #2d3748;
}
.wanderon-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3182ce;
  margin-bottom: 1rem;
}
.wanderon-card-title.dark {
  color: #90cdf4;
}
.wanderon-card-text {
  color: #4a5568;
  margin-bottom: 1rem;
  text-align: center;
}
.wanderon-card-text.dark {
  color: #cbd5e0;
}
.wanderon-card-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin: auto;
}


/*carousel se kar rha hu try*/
.trip-container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
}
.trip-heading {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}
.trip-carousel-wrapper {
  position: relative;
}
.trip-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding-bottom: 1rem;
}
.trip-carousel-item {
  position: relative;
  flex: none;
  width: 16rem;
  height: 16rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
.trip-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trip-carousel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 1rem;
}
.trip-carousel-overlay h2 {
  font-size: 1.5rem;
  font-weight: bold;
}
.trip-carousel-overlay p {
  margin-top: 0.5rem;
}
.trip-control-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1a202c;
  color: white;
  padding: 0.5rem;
  border-radius: 9999px;
}
.trip-control-button-left {
  left: 0;
}
.trip-control-button-right {
  right: 0;
}
.trip-control-button svg {
  width: 1.5rem;
  height: 1.5rem;
}
@media (max-width: 768px) {
  .trip-carousel-item {
      width: 12rem;
      height: 12rem;
  }
  .trip-carousel-overlay h2 {
      font-size: 1.25rem;
  }
  .trip-carousel-overlay p {
      font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .trip-carousel-item {
      width: 10rem;
      height: 10rem;
  }
  .trip-carousel-overlay h2 {
      font-size: 1rem;
  }
  .trip-carousel-overlay p {
      font-size: 0.75rem;
  }
}

/* Bro abhi kuchh naya karunga india ka hai*/
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
}
@media (min-width: 564px) {
  .packages-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .packages-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .packages-grid {
      grid-template-columns: repeat(4, 1fr);
  }
}
.package-card {
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.package-image {
  width: 100%;
  height: auto;
}
.package-details {
  padding: 1rem;
  text-align: center;
}
.package-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1e3a8a;
}
.package-price {
  color: #4b5563;
}
.book-button {
  margin-top: 1rem;
  background-color: #3b82f6;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
}
.book-button:hover {
  background-color: #2563eb;
}

/*ye full on foreign ka hai */
.unique-wrapper {
  background-color: #f5f5f5;
  padding: 1rem;
}
.unique-banner-section {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 16rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
.unique-banner-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1.5rem;
}
.unique-banner-title {
  color: white;
  font-size: 2rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .unique-banner-title {
      font-size: 2.5rem;
  }
}
.unique-banner-subtitle {
  color: white;
  margin-top: 0.5rem;
}
.unique-banner-button {
  margin-top: 1rem;
  background-color: #fbbf24;
  color: black;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
}
.unique-banner-button:hover {
  background-color: #f59e0b;
}
.unique-trips-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .unique-trips-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .unique-trips-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .unique-trips-grid {
      grid-template-columns: repeat(5, 1fr);
  }
}
.unique-trip-item {
  background-color: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.unique-trip-item:hover {
  transform: scale(1.05);
}
.unique-trip-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}
.unique-trip-details {
  padding: 1rem;
  text-align: center;
}
.unique-trip-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e3a8a;
}
.unique-trip-price {
  color: #4b5563;
  margin-top: 0.5rem;
}


/*video ka hai*/
.adventure-hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  overflow: hidden;
}
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.content-wrapper {
  text-align: center;
  z-index: 1;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0.5rem;
}
.small-title {
  font-size: 2rem;
  margin: 0;
}
.large-title {
  font-size: 3rem;
  margin: 0.5rem 0;
  text-decoration: solid;
  text-transform: capitalize;
  font-weight: bold;
}
.description-text {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .small-title {
      font-size: 3rem;
  }
  .large-title {
      font-size: 4rem;
  }
  .description-text {
      font-size: 1.5rem;
  }
}
/*ye woh find the perfect escape hai*/
.escape-section {
  background-color: white; /* Amber 50 */
  color: #1a1a1a; /* Zinc 900 */
  padding: 2rem;
}
.dark-mode .escape-section {
  /*background-color: #292524; /* Zinc 800 */
  color: #008080;
}
.escape-heading {
  text-align: left;
  margin-bottom: 2rem;
}
.escape-title {
  font-size: 2rem;
  font-weight: bold;
}
.escape-subtitle {
  margin-top: 0.5rem;
  color: #525252; /* Zinc 600 */
}
.dark-mode .escape-subtitle {
  color: #008080; /* Zinc 300 */
}
.escape-divider {
  height: 0.25rem;
  width: 5rem;
  background-color: #fb923c; /* Orange 500 */
  margin-top: 0.5rem;
}
.escape-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;

}
.escape-card {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  border-color: goldenrod;
  /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
}
.escape-card img {
  width: 250px;
  height: 400px;
  background-position: center;
  border-radius: 60% / 33%;
  overflow: hidden;
  background-color: #007070;
  border: 4px solid goldenrod;
}
.escape-overlay {
  position: absolute;
  inset: 0;
  /*background-color: rgba(0, 0, 0, 0.5);*/
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  border-color: orangered;
}
.escape-text {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
}
.escape-highlight {
  color: #38bdf8; /* Teal 400 */
  font-size: 1.875rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .escape-title {
      font-size: 2.5rem;
  }
  .escape-subtitle {
      font-size: 1.125rem;
  }
  .escape-divider {
      height: 0.5rem;
      width: 10rem;
  }
  .escape-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .escape-grid {
      grid-template-columns: repeat(4, 1fr);
  }
}

/*ye jo hai naa 4 ke baad wahi hai */
.travel-section {
  background-color: #fffaf0; /* Beige */
  padding: 1rem;
}
.travel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .travel-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}
.highlighted-item {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}
.highlighted-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.highlighted-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1rem;
}
.highlighted-overlay h2 {
  color: #ffffff;
  font-size: 1.875rem;
  font-weight: bold;
}
.highlighted-overlay p {
  color: #ffffff;
  font-size: 1.125rem;
}
.highlighted-overlay button {
  margin-top: 1rem;
  background-color: #facc15; /* Yellow 500 */
  color: #000000;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}
.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .thumbnail-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}
.thumbnail-item {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}
.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumbnail-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.thumbnail-overlay span {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: bold;
}
/*sddfghkjhgvb*/
/* Unique classes to avoid overlap */
/*.unique-bg-cream {
  background-color: #f5f5dc;
}

.unique-p-8 {
  padding: 2rem;
}

.unique-grid {
  display: grid;
  gap: 2rem;
}

.unique-grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .unique-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.unique-gap-8 {
  gap: 2rem;
}

.unique-font-bold {
  font-weight: bold;
}

.unique-mb-2 {
  margin-bottom: 0.5rem;
}

.unique-text-blue-600 {
  color: #2563eb;
}

.unique-mt-4 {
  margin-top: 1rem;
}

.unique-mb-2 {
  margin-bottom: 0.5rem;
}

.unique-flex {
  display: flex;
}

.unique-justify-center {
  justify-content: center;
}

.unique-space-x-4 > :not(:last-child) {
  margin-right: 1rem;
}

.unique-mt-8 {
  margin-top: 2rem;
}

.unique-w-10 {
  width: 2.5rem;
}

.unique-h-10 {
  height: 2.5rem;
}

.unique-text-center {
  text-align: center;
}

.unique-text-xl {
  font-size: 1.25rem;
}

/* Dropdown functionality for mobile */
/*@media (max-width: 767px) {
  .unique-dropdown-content {
    display: none;
  }

  .unique-dropdown:hover .unique-dropdown-content {
    display: block;
  }

  .unique-dropdown h2 {
    cursor: pointer;
  }
}
/*dsfcgh bjk*/
/* Unique classes to avoid overlap */
/* Unique classes to avoid overlap */
.cream-bg {
  background-color: #f5f5dc;
}

.full-height {
  min-height: 100vh;
}

.padding-large {
  padding: 1.5rem;
}

.center-text {
  text-align: center;
}

.margin-bottom-large {
  margin-bottom: 1.5rem;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.carousel {
  display: flex;
  flex-wrap: nowrap;
}

.carousel-item-new {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  max-width: 300px;
  margin-right: 1rem;
  scroll-snap-align: center;
}

.carousel-item-new img {
  width: 100%;
  border-radius: 0.5rem;
}

.overlay-new {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 1rem;
  text-align: center;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

/* Responsive Design */
@media (max-width: 767px) {
  .carousel-wrapper {
    flex-direction: row;
  }

  .carousel-item-new {
    max-width: none;
    width: 90%;
    margin-right: 1rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*fdxcvhbjnk*/
/* Ensure root elements have no unwanted margins */
body, html {
  margin: 0;
  padding: 0;
}

/* Cream background styling */
.cream-bg {
  background-color: #f5f5dc;
  padding-top: 1.5rem; /* Adjust as needed */
  padding-bottom: 1.5rem; /* Adjust as needed */
}

/* Ensure the container and wrapper elements have no extra margins/paddings */
.full-height {
  min-height: 100vh;
  margin: 0;
}

.padding-large {
  padding: 1.5rem;
}

.center-text {
  text-align: center;
}

.margin-bottom-large {
  margin-bottom: 1.5rem;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 0; /* Remove margin to prevent spacing */
  padding-bottom: 0; /* Remove padding to prevent spacing */
}

.carousel-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 0; /* Remove margin to prevent spacing */
  padding-bottom: 0; /* Remove padding to prevent spacing */
}

.carousel {
  display: flex;
  flex-wrap: nowrap;
  margin: 0; /* Remove margin to prevent spacing */
  padding: 0; /* Remove padding to prevent spacing */
}

.carousel-item-new {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  max-width: 300px;
  margin-right: 1rem;
  scroll-snap-align: center;
}

.carousel-item-new img {
  width: 100%;
  border-radius: 0.5rem;
}

.overlay-new {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 1rem;
  text-align: center;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

/* Responsive Design */
@media (max-width: 767px) {
  .carousel-wrapper {
    flex-direction: row;
  }

  .carousel-item-new {
    max-width: none;
    width: 90%;
    margin-right: 1rem;
  }
}

/* Ensure next section has no unwanted margins/paddings */
.next-section {
  margin: 0;
  padding: 0;
}
/*ye nya hai romeo*/
/* General Styles */
.romeo-bg-light-blue {
  background-color: #add8e6;
  padding: 20px;
}

.romeo-relative-container {
  position: relative;
}

.romeo-full-width-img {
  width: 100%;
  height: auto;
}

.romeo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

.romeo-trip-cards-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.romeo-trip-card {
  position: relative;
  min-width: 200px;
  flex: 0 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  margin: 0 10px;
  scroll-snap-align: center;
}

.romeo-trip-card img {
  width: 300px;
  height: 300px;
}

.romeo-trip-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  text-align: center;
}

.romeo-carousel-control-prev,
.romeo-carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.romeo-carousel-control-prev {
  left: 0;
}

.romeo-carousel-control-next {
  right: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .romeo-overlay {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .romeo-overlay {
    padding: 10px;
  }
}
/* General Styles for romeo-overlay */
.romeo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

/* Styles for h2 inside romeo-overlay */
.romeo-overlay h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Styles for p inside romeo-overlay */
.romeo-overlay p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Styles for button inside romeo-overlay */
.romeo-overlay button {
  background-color: #0196ae;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .romeo-overlay {
      padding: 15px;
  }
  
  .romeo-overlay h2 {
      font-size: 1.5rem;
  }
  
  .romeo-overlay p {
      font-size: 1rem;
  }
  
  .romeo-overlay button {
      padding: 8px 16px;
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .romeo-overlay {
      padding: 1px;
  }
  
  .romeo-overlay h2 {
      font-size: 0.8rem;
  }
  
  .romeo-overlay p {
      font-size: 0.5rem;
  }
  
  .romeo-overlay button {
      padding: 5px 10px;
      font-size: 0.7rem;
  }
  .romeo-trip-card img {
    max-width: 200px;
    max-height: 200px;
  }

}


/*sdfdfasdfdg*/
/*.jeevan {
  position: relative;
  width: 80%;
  max-width: 1000px;
  overflow: hidden;
}

.meindukh {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.bahothai {
  flex: 0 0  0 33.33%; /* Show 3 items at a time (100% / 3) */
  /*text-align: center;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.bahothai img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 5px;
}

#kosis, #aawarahu {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
}

#kosis {
  left: 10px;
}

#aawarahu {
  right: 10px;
}

/* Responsive Styles */
/*@media (max-width: 768px) {
  .bahothai {
      flex: 0 0 50%; /* Show 2 items at a time on tablets */
  /*}
}

@media (max-width: 480px) {
  .bahothai {
      flex: 0 0 100%; /* Show 1 item at a time on mobile */
  /*}

  #kosis, #aawarahu {
      padding: 6px;
      font-size: 18px;
  }
}*/
.jeevan {
  position: relative;
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
}

.meindukh {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.bahothai {
  flex: 0 0 33.33%; /* Show 4 cards by making each card take up 25% of the width */
  text-align: center;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.bahothai img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 5px;
}

#kosis, #aawarahu {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
}

#kosis {
  left: 10px;
}

#aawarahu {
  right: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .bahothai {
      flex: 0 0 50%; /* Show 2 cards at a time on tablets */
  }

  .bahothai img {
      max-height: 250px;
  }

  button {
      padding: 8px 15px;
      font-size: 14px;
  }

  #kosis, #aawarahu {
      padding: 8px;
      font-size: 20px;
  }
}

@media (max-width: 480px) {
  .bahothai {
      flex: 0 0 100%; /* Show 1 card at a time on mobile */
  }

  .bahothai img {
      max-height: 180px;
  }

  button {
      padding: 6px 12px;
      font-size: 12px;
  }

  #kosis, #aawarahu {
      padding: 6px;
      font-size: 18px;
  }
}