

.navigation {
     height: 60px;
     background: linear-gradient(45deg, #fd66b1, #74b4fe);
     display: flex;
     align-items: center;
}
 .brand {
     position: absolute;
     float: left;
     line-height: 55px;
     text-transform: uppercase;
     font-size: 1.4em;
}
 .brand a, .brand a:visited {
     color: #ffffff;
     text-decoration: none;
     text-transform: capitalize;
     font-weight: 700;
     font-size: 30px;
}

 nav {
     float: right;
}
 nav ul {
     list-style: none;
     margin: 0;
     padding: 0;
     gap: 40px;
     display: flex;
}
 nav ul li {
     float: left;
     position: relative;
}
 nav ul li a,nav ul li a:visited {
     display: block;
     line-height: 55px;
     color: #fff;
     background: #262626 ;
     text-decoration: none;
     font-weight: 600;
     font-size: 20px;
}
 nav ul li a{
     background: transparent;
     color: #FFF;
}
 nav ul li a:hover, nav ul li a:visited:hover {
     background: #fd66b1;
     color: #ffffff;
    
}
 .navbar-dropdown li a{
     background: #fd66b1;
}
 nav ul li a:not(:only-child):after, nav ul li a:visited:not(:only-child):after {
     padding-left: 4px;
     content: ' \025BE';
}
 nav ul li ul li {
     min-width: 190px;
}
 nav ul li ul li a {
     padding: 15px;
     line-height: 20px;
}
 .navbar-dropdown {
     position: absolute;
     display: none;
     z-index: 1;
     background: #fff;
     box-shadow: 0 0 35px 0 rgba(0,0,0,0.25);
}
/* Mobile navigation */
 .nav-mobile {
     display: none;
     position: absolute;
     top: 0;
     right: 0;
     background: transparent;
     height: 55px;
     width: 70px;
}
 @media only screen and (max-width: 800px) {
     .nav-mobile {
         display: block;
    }

  
     nav {
         width: 100%;
         padding: 55px 0 15px;
    }
     nav ul {
         display: none;
    }
     nav ul li {
         float: none;
    }
     nav ul li a {
         padding: 15px;
         line-height: 20px;
         background: #262626;
    }
     nav ul li ul li a {
         padding-left: 30px;
    }
     .navbar-dropdown {
         position: static;
}
 @media screen and (min-width:800px) {
     .nav-list {
         display: block !important;
    }
}
 #navbar-toggle {
     position: absolute;
     left: 18px;
     top: 15px;
     cursor: pointer;
     padding: 10px 35px 16px 0px;
}
 #navbar-toggle span, #navbar-toggle span:before, #navbar-toggle span:after {
     cursor: pointer;
     border-radius: 1px;
     height: 3px;
     width: 30px;
     background: #ffffff;
     position: absolute;
     display: block;
     content: '';
     transition: all 300ms ease-in-out;
}
 #navbar-toggle span:before {
     top: -10px;
}
 #navbar-toggle span:after {
     bottom: -10px;
}
 #navbar-toggle.active span {
     background-color: transparent;
}
 #navbar-toggle.active span:before, #navbar-toggle.active span:after {
     top: 0;
}
 #navbar-toggle.active span:before {
     transform: rotate(45deg);
}
 #navbar-toggle.active span:after {
     transform: rotate(-45deg);
}
}




/* ----------------------------HERO-SECTION---------------------------------- */



  .hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    color: #fdfdfd;
    margin-bottom: 30px;
  }

  .hero-buttons{
    display: flex;
    gap: 20px;
  }
  
  .hero-buttons .btn {
    font-size: 1.1rem;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 50px;
    text-transform: uppercase;
  }
  
  .hero-buttons .btn-primary {
    background-color: #ff69b4;
    border: none;
  }
  
  .hero-buttons .btn-primary:hover {
    background-color: #ff85c1;
  }
  
  .hero-buttons .btn-success {
    background-color: #32cd32;
    border: none;
  }
  
  .hero-buttons .btn-success:hover {
    background-color: #3ee053;
  }
  
  .hero-section img {
    max-width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2rem;
    }
  
    .hero-subtitle {
      font-size: 1rem;
    }
  
    .hero-buttons .btn {
      font-size: 0.9rem;
      padding: 8px 15px;
    }
  
    .hero-section img {
      margin-top: 0px;
    }
  }
  


  .hero-section {
    position: relative;
   
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
padding: 280px 0px;
 background-blend-mode: overlay;
 background-color: rgba(0, 0, 0, 0.548);
 width: 100%;
  }

  .hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
  }

  .hero-slider img.active {
    opacity: 1;
  }

  .hero-section .container {
    text-align: left;
    z-index: 1;
  }

  .hero-title {
    font-size: 45px;
    color: white;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 20px;
    color: white;
    margin-bottom: 2rem;
  }

  .hero-buttons .btn {
    margin-right: 1rem;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    text-decoration: none;
    color: white;
    border-radius: 5px;
  }

  .btn-primary {
    background-color: #007bff;
  }

  .btn-success {
    background-color: #28a745;
  }

  .btn-primary:hover, .btn-success:hover {
    opacity: 0.8;
  }




.top-heading{
    padding: 50px 0px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.top-heading  h3{
font-weight: 500;
}


.top-heading  p{
   font-size: 17px;
   text-align: justify;
    }








    .content-box {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        background-color: #fff;
        border-radius: 5px;
        margin: 12px 0;
       border: 1px solid #ffe8e8;
        background-color : #f8f9fa;
      }
 
      .section-title {
        color: #212529;
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 15px;
      }
  
      .content-text {
        font-size: 15px;
        color: #555;
        margin-bottom: 20px;
      }
  
     .image-container{
      width: 30%;
     }

     
  
      .image-container img {
        width: 100%;
        height: 100%;
        border-radius: 0px;
        object-fit: cover;
        transition: all 0.3s ease;
        max-height: 226px;
      }
  
    
  
      .text-container {
       padding: 15px;
       width: 70%;
      }

      .whatsapp-link , .call-link{
        background-color: #32cd32;
        padding: 4px 12px;
        font-size: 22px;
        border-style: none;
        transition: all 0.3s ease;
        color: white;
        border-radius: 6px;
      }



       .whatsapp-link:hover{
        background-color: #1a6e7a;
        transform: scale(1.05);
      }
  

   .call-link:hover {
        background-color: #1a6e7a;
        transform: scale(1.05);
      }
      /* Responsive Styling */
      @media (max-width: 768px) {
        .content-box {
          flex-direction: column;
          text-align: center;
        }
        .text-container {
          padding-left: 0;
          padding-top: 20px;
        }
        .image-container img {
          width: 100%;
          margin: 0 auto;
        }

          .image-container{
      width: 100%;
    }
    .text-container{
      width: 100%;
    }

    .section-title
 {
    color: #212529;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 15px;
}

      }

      .bottom-heading{
        padding: 25px 0px;
        gap: 5px;
      }

    
      .bottom-heading h3{
       font-size: 22px;
      }
      .call-link{
        background-color: #fd66b1;
      }

      .custom-link {
        font-size: 20px;
        font-weight: 400;
        display: flex;
        align-items: center;
        gap: 5px;

      }
      .footer {
        background-color: #28282b;
        color: white;
        padding: 20px 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 50px;

      }
      .footer a {
        color: white;
        text-decoration: none;
        position: relative !important;

      }
      .footer a:hover {
        text-decoration: underline;
      }

      .footer h1{
        padding-bottom: 30px;
      }

      .footer-links{
        gap: 50px;

      }

      .copyrite{
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .copyrite p{
        margin: 0px;
        color: white;
      }

      


      /* Contact Us Banner */
.contact-banner {
    background: url(../img/contact-us-banner.jpg) no-repeat center center/cover;
    color: #fff;
    padding: 120px 0;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.664);
  }
  
  .contact-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .contact-banner p {
    font-size: 18px;
    margin-bottom: 40px;
  }
  
  .contact-banner .btn-contact {
    background-color: #2c97a2;
    color: #fff;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  
  .contact-banner .btn-contact:hover {
    background-color: #1f7c82;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 60px 0;
    background-color: #f9f9f9;
  }
  
  .contact-form h2 {
    font-size: 36px;
    margin-bottom: 20px;

  }
  
  .contact-form p {

    margin-bottom: 40px;
  }
  
  .contact-form .form-group {
    margin-bottom: 20px;
  }
  
  .contact-form label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .contact-form textarea {
    height: 150px;
  }
  
  .contact-form .btn-submit {
    background-color: #2c97a2;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
  }
  
  .contact-form .btn-submit:hover {
    background-color: #1f7c82;
  }

.contact-img-main{
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: space-around;
}

.envelop{
    background-color: #538add;
}

.footer-icon-div{
    padding-left: 15%;
}



.table-container {
    padding: 20px;

  }

  .responsive-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
  }
  
  .responsive-table thead {
    background-color: #df4596;
    color: #fff;
  }
  
  .responsive-table thead th {
    padding: 10px;
    text-align: left;
    font-weight: bold;
    font-size: 16px;
  }
  
  .responsive-table tbody td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
  }
  
  .responsive-table tbody tr:nth-child(odd) {
    background-color: #f8f9fa;
  }
  
  .responsive-table tbody tr:nth-child(even) {
    background-color: #fff;
  }
  
  @media (max-width: 768px) {
    .responsive-table thead {
      display: none;
    }
    .hero-section {
      padding: 70px 0;
    }

    .hero-title {
    font-size: 24px;
    color: white;
    margin-bottom: 1rem;
}

  
    .responsive-table tbody td {
      display: block;
      width: 100%;
      text-align: right;
      position: relative;
      padding-left: 50%;
    }
  
    .responsive-table tbody td::before {
      content: attr(data-label);
      position: absolute;
      left: 10px;
      width: calc(50% - 20px);
      font-weight: bold;
      text-align: left;
    }
  
    .responsive-table tbody td:nth-child(1)::before {
      content: "Girls Category";
    }
  
    .responsive-table tbody td:nth-child(2)::before {
      content: "1 - Short";
    }
  
    .responsive-table tbody td:nth-child(3)::before {
      content: "2 - Short";
    }
  
    .responsive-table tbody td:nth-child(4)::before {
      content: "Full Night";
    }
  }
  














  .gallery-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
  }
  .filter-buttons {
    text-align: center;
    margin-bottom: 20px;
  }
  .filter-buttons button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background-color: #2c97a2;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
  }
  .filter-buttons button.active {
    background-color: #f169b3;
  }
  .filter-buttons button:hover {
    background-color: #f169b3;
  }
  .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .gallery-grid .gallery-item {
    flex: 1 1 calc(25% - 15px);
    max-width: calc(25% - 15px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .gallery-grid .gallery-item:hover img {
    transform: scale(1.1);
  }
  @media (max-width: 768px) {
    .gallery-grid .gallery-item {
      flex: 1 1 calc(50% - 15px);
      max-width: calc(50% - 15px);
    }
  }
  @media (max-width: 480px) {
    .gallery-grid .gallery-item {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }





  /* About Us Section */
.about-us {
    background-color: #ffffff;
    padding: 50px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .about-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-text h1 {
    font-size: 2.5rem;
    color: #f169b3;
    margin-bottom: 20px;
  }
  
  .about-text p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .read-more {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    color: #fff;
    background-color: #f169b3;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .read-more:hover {
    background-color: #f169b3;
  }


  