/* 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;
    }
}


/*ye woh nya hai*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
}

.hero-section {
    background: url('bali0.jpg') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    position: relative;
}

.overlay {
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 20px;
}

.content {
    max-width: 50%;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.ratings {
    display: flex;
    gap: 15px;
}

.rating {
    background: #fff;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.star {
    color: gold;
}

.callback-form {
    background: #fff;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
}

.callback-form h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.callback-form h2 span {
    color: #00aaff;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form input, form button {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

form button {
    background: #ffd700;
    color: #000;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background: #ffcc00;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .content, .callback-form {
        max-width: 100%;
    }

    .callback-form {
        margin-top: 20px;
    }
    .ratings {
        display: flex;
        gap: 5px;
    }
    
    .rating {
        background: #fff;
        color: #000;
        padding: 1px 1px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        gap: 1px;
    }
    h1 {
        font-size: 1rem;
        margin-bottom: 1px;
    }
    
    p {
        font-size: 0.8rem;
        margin-bottom: 1px;
    }
}
/*ab kya bolu book now*/
/* 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: 300px;
  }
  .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;
  }



  
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.kastu {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.meena {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pushu {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
    transition: transform 0.3s;
}
.pushu img {
    max-width: 300px;
    max-height: 300px;
}

.pushu:hover {
    transform: translateY(-5px);
}

.strrict {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
}

.tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: yellow;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

.heading {
    font-size: 1.5em;
    margin: 15px 0;
    color: #555;
}

.info {
    display: flex;
    justify-content: space-around;
    margin: 10px 0;
}

.duration, .location, .date {
    font-size: 0.9em;
    color: #777;
}

.button {
    background-color: #00bfff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 10px;
}

.button:hover {
    background-color: #009acd;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .kastu {
        width: 90%;
        padding: 10px;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .pushu {
        padding: 15px;
    }
    
    .info {
        flex-direction: column;
        align-items: center;
    }
    
    .button {
        width: 100%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .meena {
        font-size: 1.5em;
    }
    
    .heading {
        font-size: 1.2em;
    }
    
    .button {
        font-size: 0.9em;
    }
}


/* Custom Colors */
:root {
    --color-agar: #f8f8f8; /* Light color */
    --color-tum: #2d2d2d;  /* Dark color */
    --color-sathho: #e2e8f0; /* Medium light color */
    --color-mausam: #3182ce; /* Highlight color */
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: var(--color-agar);
    color: var(--color-tum);
  }
  
  .bg-agar {
    background-color: var(--color-agar);
  }
  
  .bg-tum {
    background-color: var(--color-tum);
  }
  
  .text-agar {
    color: var(--color-agar);
  }
  
  .text-tum {
    color: var(--color-tum);
  }
  
  .bg-sathho {
    background-color: var(--color-sathho);
  }
  
  .text-mausam {
    color: var(--color-mausam);
  }
  
  .p-6 {
    padding: 1.5rem;
  }
  
  .text-center {
    text-align: center;
  }
  
  .mb-8 {
    margin-bottom: 2rem;
  }
  
  .text-3xl {
    font-size: 1.875rem; /* 30px */
  }
  
  .font-bold {
    font-weight: bold;
  }
  
  .text-lg {
    font-size: 1.125rem; /* 18px */
  }
  
  .mt-2 {
    margin-top: 0.5rem;
  }
  
  .grid {
    display: grid;
    gap: 1.5rem;
  }
  
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .rounded-lg {
    border-radius: 0.5rem;
  }
  
  .shadow-md {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .overflow-hidden {
    overflow: hidden;
  }
  
  .w-full {
    width: 100%;
  }
  
  .h-48 {
    height: 12rem; /* 192px */
  }
  
  .object-cover {
    object-fit: cover;
  }
  
  .p-4 {
    padding: 1rem;
  }
  
  .flex {
    display: flex;
  }
  
  .items-center {
    align-items: center;
  }
  
  .text-sm {
    font-size: 0.875rem; /* 14px */
  }
  
  .mb-2 {
    margin-bottom: 0.5rem;
  }
  
  .mb-4 {
    margin-bottom: 1rem;
  }
  
  .text-xl {
    font-size: 1.25rem; /* 20px */
  }
  
  .font-semibold {
    font-weight: 600;
  }
  
  .text-zinc-700 {
    color: #3f3f46; /* Darker gray */
  }
  
  .dark\:text-zinc-300 {
    color: #d1d5db; /* Lighter gray */
  }
  
  .text-zinc-500 {
    color: #71717a; /* Medium gray */
  }
  
  .w-4 {
    width: 1rem; /* 16px */
  }
  
  .h-4 {
    height: 1rem; /* 16px */
  }
  
  .mr-1 {
    margin-right: 0.25rem;
  }
  
  @media (max-width: 768px) {
    .md\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 465px) {
    .grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
      }
  }
  @media (min-width: 1024px) {
    .lg\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  
