/* 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('manalikasol1.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;
    }
}

.tumhi {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nemeri {
    color: #2c3e50;
    font-weight: bold;
}

.zindagi {
    margin-top: 10px;
}

.kharab {
    color: #34495e;
    line-height: 1.6;
}

.kihai {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.abejaabe {
    margin-top: 20px;
}

.chalnikal {
    margin-bottom: 20px;
}

.kyabhai {
    list-style-type: disc;
    padding-left: 20px;
}

.kyabhai .kharab {
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .tumhi, .kihai {
        margin: 10px;
        padding: 15px;
    }

    .nemeri {
        font-size: 1.5em;
    }

    .kharab {
        font-size: 1em;
    }

    .kyabhai {
        padding-left: 15px;
    }
}

/*pdf ke liye*/

/*body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}*/

.chaltikya-nausebadhaa {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    font-size: 18px;
    color: orangered;
    /*background: linear-gradient(45deg, #007BFF, #00BFFF);*/
    /*border: #000 solid;*/
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}
.chaltikya-nausebadhaa button{
    color: black;
    background-color: #ffa500;
    border-radius: 10px;
    border: #000 solid;
    
}

.chaltikya-nausebadhaa:hover {
   /*background: linear-gradient(45deg, #0056b3, #0096d6);*/
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.chaltikya-nausebadhaa:focus {
    outline: none;
}

@media (max-width: 600px) {
    .chaltikya-nausebadhaa {
        width: 80%;
        font-size: 20px;
    }
}


/*Image Carousel*/
  .carousel-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    border: 2px solid #000;
  }
  
  .carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .carousel-slide {
    display: flex;
  }
  
  .carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  /*button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
  }*/
  
  button.prev {
    left: 0;
  }
  
  button.next {
    right: 0;
  }
  
  @media (max-width: 600px) {
    .carousel-slide img {
      width: 100%;
      height: auto;
    }
  }
  
.hindi h1 {
    text-align: center;

}
.marathi h1 {
    text-align: center;
}

.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;
  }
  

  .mainhu {
    padding: 1.5rem; /* Equivalent to p-6 */
  }
  
  .nannani {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem; /* Equivalent to gap-6 */
  }
  
  @media (min-width: 768px) {
    .nannani {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .artedf {
    background-color: var(--card-background, #fff); /* Default to white */
    color: var(--card-foreground, #000); /* Default to black */
    padding: 1.5rem; /* Equivalent to p-6 */
    border-radius: 0.5rem; /* Equivalent to rounded-lg */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Equivalent to shadow */
    transition: transform 0.3s ease;
  }
  
  .artedf:hover {
    transform: translateY(-5px);
  }
  
  .artedf h3 {
    font-size: 1.125rem; /* Equivalent to text-lg */
    font-weight: 600; /* Equivalent to font-semibold */
    margin-bottom: 0.5rem;
  }
  
  .artedf .text-yellow-500 {
    color: #f59e0b; /* Tailwind yellow-500 */
  }
  
  .artedf .text-muted-foreground {
    color: var(--muted-foreground, #6b7280); /* Adjust as needed */
  }
  
  .artedf .text-sm {
    font-size: 0.875rem; /* Equivalent to text-sm */
  }
  
  .artedf .text-primary {
    color: var(--primary, #3b82f6); /* Adjust as needed */
  }
  
  .artedf .text-2xl {
    font-size: 1.5rem; /* Equivalent to text-2xl */
  }
  
  @media (max-width: 767px) {
    .mainhu {
      padding: 1rem; /* Adjust padding for smaller screens */
    }
  
    .artedf {
      padding: 1rem; /* Adjust padding for smaller screens */
      font-size: 0.875rem; /* Adjust font size for smaller screens */
    }
  
    .artedf h3 {
      font-size: 1rem; /* Adjust heading size for smaller screens */
    }
  
    .artedf .text-2xl {
      font-size: 1.25rem; /* Adjust quote size for smaller screens */
    }
  
    .artedf .text-sm {
      font-size: 0.75rem; /* Adjust text size for smaller screens */
    }
  }

  /*.pdf-container {
    width: 100%;
    margin-top: 20px;
  }
  embed {
    width: 100%;
    height: 500px; /* Adjust height as needed */
  
  .pdf-container {
    width: 100%;
    margin-top: 20px;
    overflow: auto; /* Enable scrolling if PDF is larger than container */
  }
  
  embed {
    width: 100%;
    height: 100%; /* Fill available height */
    min-height: 450px; /* Minimum height to ensure content visibility */
  }
  