.oneshot-body {
    background-color: #ffffff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }

  .oneshot-header {
    text-align: center;
    padding: 50px 15px 30px;
    color: #000;
  }

  .oneshot-header-small {
    color: #ff68b8;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    font-size: 18px;
  }

  .oneshot-header-title {
    font-weight: bold;
    font-size: 36px;
    color: #000;
    margin-top: 10px;
  }

  .oneshot-service-box {
    background-color: #ff68b8;
    margin-bottom: 30px;
    text-align: center;
    padding: 25px 15px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .oneshot-service-box:hover {
    background-color: #e957a3;
  }

  .oneshot-service-icon {
    font-size: 60px;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
  }

  .oneshot-service-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
  }

  .oneshot-service-text {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    padding: 0 10px;
  }

  .oneshot-readmore {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .oneshot-readmore:hover {
    color: #fff;
    text-decoration: underline;
  }




























/* Keyframes for arrow sliding */
  @keyframes slideArrow {
    0% { transform: translateX(0); }
    100% { transform: translateX(5px); }
  }
.bodylllll {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
  }

  /* Footer Styling */
  footer {
    background-color: #ff68b8;
    color: white;
    padding: 60px 20px 30px;
  }

  footer .footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }

  footer h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  footer ul {
    list-style: none;
    padding: 0;
    line-height: 2;
  }

  footer ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    width: 100%;
  }

  footer ul li a:hover {
    color: #000000;
    text-decoration: underline;
  }

  footer p {
    line-height: 1.6;
  }

  /* Clickable logo cursor */
  footer .logo-link {
    display: inline-block;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }

  footer .logo-link:hover {
    opacity: 0.8;
  }

  /* Animation container fade-in */
  footer .social-icons {
    opacity: 0;
    animation: fadeInScale 1s ease forwards;
    animation-delay: 0.5s;
  }

  footer .social-icons a {
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  footer .social-icons a img {
    width: 24px;
    height: 24px;
    display: block;
    transition: transform 0.3s ease;
    transform-origin: center bottom;
  }

  footer .social-icons a:hover img {
    animation: bounce 0.6s;
  }

  footer .bottom-bar {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
  }

  @media (max-width: 768px) {
    footer .footer-container {
      flex-direction: column;
      text-align: center;
      gap: 30px;
    }

    footer .social-icons a {
      margin-right: 15px;
    }
  }

  /* Keyframes for fade in & scale */
  @keyframes fadeInScale {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }

    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Bounce keyframe */
  @keyframes bounce {
    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-10px);
    }
  }

:root{
  --card-w: 320px;  /* desktop card width  */
  --gap: 24px;
  --shadow: 0 4px 12px rgba(0,0,0,.08);
  --blue: #0057b7;
  --badge: #28c76f;
  --radius: 6px;
  --bg: #fff;
  --heading: #0d47a1;
  --text: #444;
}

/* ---------- Layout ---------- */
.blog-slider-wrapper{
  padding:40px 15px;
  overflow:hidden;
  font-family: "Arial", sans-serif;
}
.blog-slider-title{
  font-size:32px;
  font-weight:700;
  color:var(--blue);
  margin:0 0 30px 0;
}
.blog-slider-container{
  overflow:hidden;               /* masks track while it slides */
  position:relative;
}
.blog-slider-track{
  display:flex;
  gap:var(--gap);
  transition:transform .5s ease;
}

/* ---------- Card ---------- */
.blog-card{
  flex:0 0 var(--card-w);
  background:var(--bg);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
}
.blog-card-imgwrap{
  position:relative;
  height:190px;
  overflow:hidden;
  border-radius:var(--radius) var(--radius) 0 0;
}
.blog-card-imgwrap img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .4s ease;
}
.blog-card-imgwrap:hover img{ transform:scale(1.05);}
.blog-badge{
  position:absolute;
  top:12px; right:12px;
  background:var(--badge);
  color:#fff;
  padding:4px 10px;
  font-size:11px;
  border-radius:14px;
  text-transform:uppercase;
  letter-spacing:.5px;
}
.blog-card-body{ padding:22px 22px 0;}
.blog-card-title{
  font-size:20px;
  font-weight:700;
  line-height:1.3;
  color:var(--heading);
  margin:0 0 12px 0;
}
.blog-card-text{
  font-size:14px;
  line-height:1.6;
  color:var(--text);
  max-height:70px;
  overflow:hidden;
}
.blog-readmore{
  display:inline-block;
  margin:18px 0 22px;
  font-size:13px;
  font-weight:700;
  color:var(--blue);
  text-transform:uppercase;
  letter-spacing:.4px;
  text-decoration:none;
}
.blog-date{
  font-size:13px;
  padding:14px 22px;
  border-top:1px solid #eee;
  color:#777;
}

/* ---------- Responsive ---------- */
@media (max-width:767px){
  :root{ --card-w: 88vw; --gap:14px; }
  .blog-slider-title{ font-size:26px;}
}

.body2222 {
  margin: 0;
  padding: 0;
}

.escort-slider-wrapper {
  background-color: #fff5ec;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 30px 10px;
  position: relative;
}

.escort-slider-title {
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.escort-slider-container {
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.escort-slider-track {
  display: flex;
  transition: transform 2s ease-in-out;
  gap: 20px;
  padding: 0 10px;
}

.escort-slider-image {
  flex-shrink: 0;
  width: 100%;
  max-width: 240px;
  height: 360px;
  border-radius: 8px;
  object-fit: cover;
}

.escort-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5px 12px;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
  user-select: none;
}

.escort-arrow.left {
  left: 5px;
}

.escort-arrow.right {
  right: 5px;
}

@media (max-width: 767px) {
  .escort-slider-track {
    gap: 10px;
  }

  .escort-slider-image {
    max-width: 100%;
    height: auto;
  }

  .escort-slider-container {
    max-width: 90%;
  }

  .escort-slider-title {
    font-size: 20px;
    padding: 0 5px;
  }

  .escort-arrow {
    font-size: 22px;
    padding: 4px 10px;
  }
}

.bodycc {
    background-color: #fff6ef;
    font-family: 'Arial', sans-serif;
  }

  .riya-testimonial-section {
    padding: 60px 20px;
  }

  .riya-testimonial-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 50px;
  }

  .riya-testimonial-card {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 30px 20px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  .riya-testimonial-card:hover {
    border-color: #ff68b8;
    box-shadow: 0 8px 20px rgba(255, 104, 184, 0.3);
    transform: translateY(-5px);
  }

  .riya-testimonial-icon {
    font-size: 48px;
    color: #3a5a40;
    margin-bottom: 15px;
  }

  .riya-testimonial-name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .riya-testimonial-stars {
    color: #f5b301;
    font-size: 18px;
    margin-bottom: 15px;
  }

  .riya-testimonial-heading {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
  }

  .riya-testimonial-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
  }

  @media (max-width: 767px) {
    .riya-testimonial-card {
      margin-bottom: 40px;
    }
  }
.riya-background {
    background: url('model-call-girls-in-laxmi-nagar.webp') no-repeat top center fixed;
    background-size: cover;
    font-family: 'Arial', sans-serif;
    color: #000;
  }

  .riya-section {
    padding: 60px 20px;
    background-color: rgba(255, 255, 255, 0);
  }

  .riya-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
  }

  .riya-card {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px 20px;
    margin-bottom: 20px;
    min-height: 400px;
    position: relative;
    transition: all 0.3s ease;
  }

  .riya-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
  }

  .riya-card-highlight {
    background-color: #ff68b8;
    color: #fff;
  }

  .riya-card-title {
    font-size: 24px;
    font-weight: bold;
  }

  .riya-card-price {
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0;
  }

  .riya-card-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .riya-card-list {
    padding-left: 20px;
    margin-bottom: 20px;
  }

  .riya-card-list-item {
    margin-bottom: 10px;
  }

  .riya-btn-wrapper {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  .riya-book-btn {
    border: 2px solid #ff68b8;
    color: #ff68b8;
    background: transparent;
    width: 100%;
    transition: all 0.3s ease;
    font-weight: bold;
  }

  .riya-book-btn:hover {
    background-color: #ff68b8;
    color: #fff;
  }

  .riya-card-highlight .riya-book-btn {
    border-color: #fff;
    color: #fff;
  }

  .riya-card-highlight .riya-book-btn:hover {
    background-color: #fff;
    color: #ff68b8;
  }

  .riya-card-highlight .riya-card-description,
  .riya-card-highlight .riya-card-list-item {
    color: #fff;
  }



@media screen and (min-width: 767px){
.nav-wrapper {
    padding-top: 20px;
    padding-bottom: 25px;
    margin-bottom: 0;
    background-color: white;
    border: none;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-size: 17px;
   
  }}

   @media screen and (max-width: 767px){
.nav-wrapper {
    padding-top: 10px;
    padding-bottom: 6px;
    margin-bottom: 0;
    background-color: white;
    border: none;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-size: 17px;
   
  }}

  .brand-logo {
    padding: 0;
  }

  .logo-img {
    max-height: 60px;
    width: auto;
  }

  @media (max-width: 768px) {
    .logo-img {
      max-height: 45px;
      margin-left: 5px;
    }
  }

  .main-nav > li > a {
    color: #e86aa7 !important;
  }

  .dropdown-menu > li > a {
    color: rgb(242, 9, 188) !important;
  }

  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
  }






  /* ============== */

@media screen and (min-width: 992px){
.img-margen{
  margin-bottom: 40px;
}
}

@media screen and (max-width: 992px){
  .img-margen{
      margin-bottom: 10px;
  }
  }
.escort-card {
  
  border-radius: 0px;
  overflow: hidden;
  background-color: #ffffff;
  color: white;
  width: 100%;
  max-width: 370px;
  font-family: Arial, sans-serif;
  box-shadow: 0 0 10px #ff68b8;
}

.escort-image-container {
  position: relative;
}

.escort-image-container img {
  width: 100%;
  display: block;
}

.escort-rating {
  position: absolute;
  top: 0px;
  right: 0px;
  background: linear-gradient(to right, #000, #333);
  padding: 6px 12px;
  border-radius: 0px;
  color: #ffd700;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 5px #000;
  
}

.escort-name {
  font-size: 20px;
  font-weight: bold;
  padding-top: 10px;
  text-align: center;
}

.escort-details {
  font-size: 14px;
  text-align: center;
  padding: 10px 0 15px 0;
}
details summary {
  cursor: pointer;
  position: relative;
  padding: 14px 16px;
  font-weight: 600;
  background-color: #1a1a1a;
  color: #ffffff;
  border-radius: 10px;
  margin-bottom: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #333;
}

details summary:hover {
  background-color: #292929;
  color: #ff68b8;
}

details[open] summary::after {
  transform: rotate(90deg);
}

details summary::after {
  content: '▶';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: #ccc;
  transition: transform 0.3s ease, color 0.3s ease;
}

.question-for-answers {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: scaleY(0.95);
  transition: 
    max-height 0.6s ease,
    opacity 0.4s ease,
    transform 0.4s ease;
  padding: 0 18px;
  font-size: 15px;
  line-height: 1.6;
  color: #eaeaea;
}

details[open] .question-for-answers {
  max-height: 600px;
  opacity: 1;
  transform: scaleY(1);
  padding: 14px 18px;
  background-color: #111;
  border-left: 3px solid #ff68b8;
  border-bottom: 3px solid #ff68b8;
  border-radius: 0 0 10px 10px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  details summary::after {
    display: none;
  }
}

/* ===== */

/* Make navbar links look like buttons */
.navbar-nav > li > a.navbar-noida {
  background-color: #111; /* Dark button background */
  border: 1px solid #ff68b8;
  color: #ff68b8 !important;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-shadow: none;
}

/* Hover effect for button look */
.navbar-nav > li > a.navbar-noida:hover {
  background-color: #ff68b8;
  color: #fff !important;
  box-shadow: 0 0 10px #ff68b8;
  text-shadow: 0 0 5px #fff;
}
.navbar-nav > li.active > a.navbar-noida {
  background-color: #ff68b8;
  color: #fff !important;
  box-shadow: 0 0 10px #ff68b8;
}

/* ====== */

/* Main glow and scale on load */
.brand-animated {
  animation: glowFadeIn 2s ease-in-out;
  font-weight: bold;
  font-size: 24px;
  text-shadow: 0 0 10px #ff68b8, 0 0 20px #ff68b8;
  display: inline-block;
  position: relative;
}

/* Glow & Fade In */
@keyframes glowFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
    text-shadow: none;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 0 10px #ff68b8, 0 0 20px #ff68b8;
  }
}

/* Pulse animation */
.brand-pulse {
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% {
    text-shadow: 0 0 10px #ff68b8;
  }
  50% {
    text-shadow: 0 0 20px #ff68b8, 0 0 30px #ff68b8;
    transform: scale(1.03);
  }
  100% {
    text-shadow: 0 0 10px #ff68b8;
    transform: scale(1);
  }
}

/* Bounce on hover */
.brand-hover-bounce:hover {
  animation: bounce 1s;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}


/* == */


/* Fade-up animation for cards */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation to each card */
.card-animate {
  animation: fadeUp 1s ease-in-out both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover animation for interactivity */
.card-animate:hover {
  transform: scale(1.03);
  box-shadow: 0 0 100px #ff68b8;
}



/* =========   */
  





@media screen and (min-width: 992px){
  .logo{
      width: 40%;
      padding-top: 10px;
  }
}

@media screen and (max-width: 992px){
  .logo{
      width: 30%;
      padding-top: 10px;

  }
}

@media screen and (max-width: 992px){
  .display-none-noida{
      display: none;
  }
}






@media screen and (min-width: 992px){
.background-color{
  height: 65px;
  background: linear-gradient(50deg, #ff68b8, #ff68b8, #ff68b8, #ff68b8);
  background-size: cover;
  animation: color 12s ease-in-out infinite; /* referring directly to the animation's @keyframe declaration */
animation-duration: 5s;
}}
@media screen and (max-width: 992px){
  .background-color{
      height: 115px;
      background: linear-gradient(50deg, #ff68b8, #ff68b8, #ff68b8, #ff68b8);
      background-size: cover;
      animation: color 12s ease-in-out infinite;
  }}

@media screen and (max-width: 615px){
  .background-color{
      height: 115px;
      background: linear-gradient(50deg, #ff68b8, #ff68b8, #ff68b8, #ff68b8);
      background-size: cover;
      animation: color 12s ease-in-out infinite;
  }}
  
  @media screen and (max-width: 450px){
      .background-color{
          height: 115px;
          background: linear-gradient(50deg, #ff68b8, #ff68b8, #ff68b8, #ff68b8);
          background-size: cover;
          animation: color 12s ease-in-out infinite;
      }}

      @media screen and (max-width: 400px){
          .background-color{
              height: 115px;
              background: linear-gradient(50deg, #ff68b8, #ff68b8, #ff68b8, #ff68b8);
              background-size: cover;
              animation: color 12s ease-in-out infinite;
          }}
      

@keyframes color{
  0%{
      background-position: 0 50%;
  }
  50%{
      background-position: 100% 50%;
  }
  100%{
      background-position: 0 50%;
  }
}




.affix {
  top: 0;
  width: 100%;
  z-index: 9999 !important;
  background-color: rgb(255, 255, 255);
}

.affix + .container-fluid {
  padding-top: 70px;
}





                  @media screen and (min-width: 992px){
                      .naughty-font{
                          text-align: center;
                          color:  white;
                          font-weight: bolder;
                          font-size: 20px;
                          font-family: sans-serif;
                      }}

                      @media screen and (max-width: 992px){
                          .naughty-font{
                              text-align: center;
                              color:  white;
                              font-weight: bolder;
                              font-size: 15px;
                              font-family: sans-serif;
                          }}



 








 

  @media screen and (min-width: 767px){
  .rates-p2{
      color: rgb(0, 0, 0);
      font-size: 19px;
      text-align: justify;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }}

  @media screen and (max-width: 767px){
      .rates-p2{
          color: rgb(0, 0, 0);
          font-size: 15px;
          text-align: justify;
          font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      }}
  /*  */

  
 

/* // */

@media screen and (min-width: 992px){
  .verified-top-call-noida{
      color: rgba(233, 187, 79, 0.864);
      font-weight: bold;
      font-size: 35px;
      margin-bottom: 20px;
  }}

  @media screen and (max-width: 992px){
  .verified-top-call-noida{
      color: rgba(233, 187, 79, 0.864);
      font-weight: bold;
      font-size: 29px;
      
      margin-bottom: 20px;
  }}

  @media screen and (max-width: 767px){
      .verified-top-call-noida{
          color: rgba(233, 187, 79, 0.864);
          font-weight: bold;
          font-size: 22px;
         
      }}

      @media screen and (max-width: 480px){
          .verified-top-call-noida{
              color: rgba(233, 187, 79, 0.864);
              font-weight: bold;
              font-size: 19px;
              
          }}

          @media screen and (max-width: 400px){
              .verified-top-call-noida{
                  color: rgba(233, 187, 79, 0.864);
                  font-weight: bold;
                  font-size: 15px;
                  
              }}


  

@media screen and (min-width: 992px){
  .h1-p1{
      color: white;
      font-weight: bold;
      color:  #ff68b8;
      font-size: 20px;
      font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
}


@media screen and (max-width: 992px){
  .h1-p1{
      color: white;
      font-weight: bold;
      color:  #ff68b8;
      font-size: 20px;
      font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
}

@media screen and (max-width: 500px){
  .h1-p1{
      color: white;
      font-weight: bold;
      color:  #ff68b8;
      font-size: 20px;
      font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
}

@media screen and (max-width: 400px){
  .h1-p1{
      color: white;
      font-weight: bold;
      color:  #ff68b8;
      font-size: 16px;
      font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
}

/* =============== */


@media screen and (min-width: 992px){
  .h1-p1-h2{
      color: white;
      font-weight: bold;
      color:  #ff68b8;
      font-size: 32px;
      font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
}


@media screen and (max-width: 992px){
  .h1-p1-h2{
      color: white;
      font-weight: bold;
      color:  #ff68b8;
      font-size: 25px;
      font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
}

@media screen and (max-width: 500px){
  .h1-p1-h2{
      color: white;
      font-weight: bold;
      color:  #ff68b8;
      font-size: 20px;
      font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
}

@media screen and (max-width: 400px){
  .h1-p1-h2{
      color: white;
      font-weight: bold;
      color:  #ff68b8;
      font-size: 18px;
      font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
}







  @media screen and (min-width: 767px){
  .faq{
      font-size: 22px;
  }}

  @media screen and (max-width: 767px){
      .faq{
          font-size: 17px;
      }}

      summary{
          font-weight: bolder;
      }

      /* FOOTER */



      @media screen and (min-width: 767px){
          .our-service-locations{
              color: rgba(233, 187, 79, 0.864);
              font-weight: bold;
              font-size: 40px;
              margin-bottom: 20px;
              text-align: center;
          }}

          @media screen and (max-width: 767px){
              .our-service-locations{
                  color: rgba(233, 187, 79, 0.864);
                  font-weight: bold;
                  font-size: 22px;
                  margin-bottom: 20px;
                  text-align: center;
              }}
  




  /* <====== call whatsapp start ======> */

  @media screen and (min-width: 992px){
      .call-action{
          bottom: 0;
          left: 0;
          position: fixed;
          z-index: +1;
          margin-bottom: 30px;
          animation:alternate-reverse;
          margin-left: 20px;
      }
  }

  @media screen and (max-width: 992px){
      .call-action{
          bottom: 0;
          left: 0;
          position: fixed;
          z-index: +1;
          margin-bottom: 15px;
          margin-left: 1.5px;
      }
  }
  @media screen and (min-width: 992px){
      .call-action-2{
          bottom: 0;
          left: 0;
          position: fixed;
          z-index: +1;
          margin-bottom: 110px;
          animation:alternate-reverse;
          margin-left: 25px;
          background-color: white;
          border-radius: 50px;
      }
  }

  @media screen and (max-width: 992px){
      .call-action-2{
          bottom: 0;
          left: 0;
          position: fixed;
          z-index: +1;
          margin-bottom: 100px;
          margin-left: 5px;
          background-color: white;
          border-radius: 50px;
      }
  }

  @media screen and (max-width: 800px){
      .call-action-2{
          bottom: 0;
          left: 0;
          position: fixed;
          z-index: +1;
          margin-bottom: 90px;
          margin-left: 5px;
          background-color: white;
          border-radius: 50px;
      }
  }

  @media screen and (max-width: 700px){
      .call-action-2{
          bottom: 0;
          left: 0;
          position: fixed;
          z-index: +1;
          margin-bottom: 70px;
          margin-left: 5px;
          background-color: white;
          border-radius: 50px;
      }
  }

  @media screen and (max-width: 600px){
      .call-action-2{
          bottom: 0;
          left: 0;
          position: fixed;
          z-index: +1;
          margin-bottom: 70px;
          margin-left: 5px;
          background-color: white;
          border-radius: 50px;
      }
  }
  @media screen and (max-width: 502px){
      .call-action-2{
          bottom: 0;
          left: 0;
          position: fixed;
          z-index: +1;
          margin-bottom: 100px;
          margin-left: 5px;
          background-color: white;
          border-radius: 50px;
      }
  }

  @media screen and (max-width: 400px){
      .call-action-2{
          bottom: 0;
          left: 0;
          position: fixed;
          z-index: +1;
          margin-bottom: 85px;
          margin-left: 5px;
          background-color: white;
          border-radius: 50px;
      }
  }

  @media screen and (min-width: 992px){
      .whatsapp-call{
         width: 4.7%;
      }
  }

  @media screen and (max-width: 992px){
      .whatsapp-call{
         width: 8%;
      }
  }
  
  @media screen and (max-width: 502px){
      .whatsapp-call{
         width: 18%;
      }
  }



  @media screen and (min-width: 992px){
      .whatsapp-call-2{
         width: 4.2%;
      }
  }

  @media screen and (max-width: 992px){
      .whatsapp-call-2{
         width: 7%;
      }
  }
  
  @media screen and (max-width: 502px){
      .whatsapp-call-2{
         width: 16%;
      }
  }




  /* <====== call whatsapp end ======> */
  @media screen and (min-width: 440px){
  .enquiry-now{
font-size: 30px;
  }
  }


  @media screen and (max-width: 440px){
      .enquiry-now{
  font-size: 20px;
      }
      }

  .span-highlight{
      color: #ff68b8;
      font-weight: bold;
  }


 










/* <-- button3 */
@media screen and (min-width: 992px){
  .booking-button{
      text-align: center;
      margin-top: 40px;
      color: white;
      font-weight: bolder;
      margin-bottom: -40px;
  }}
  
  @media screen and (max-width: 992px){
      .booking-button{
          text-align: center;
          margin-top: 30px;
          color: white;
          font-weight: bolder;
      }}
  
      @media screen and (max-width: 767px){
          .booking-button{
              text-align: center;
              margin-top: 35px;
              color: white;
              font-weight: bolder;
          }}
  
      


      @media screen and (max-width: 500px){
          .question-for-answers{
            font-size: 12px;
            color: white;
          }
          }
          @media screen and (min-width: 501px){
          .question-for-answers{
            font-size: 17px;
            color: white;
          }
          }

          @media screen and (min-width: 700px){
              .table-t1{
                  font-size: 20px;
                  color: white;
      
              }
          }
              @media screen and (max-width: 700px){
              .table-t1{
                font-size: 14px;
                color: white;
              }
              }


.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 90%;
  margin-top: 10px;
  min-width: 400px;
  background-color: #fff0f6; /* light pink background */
  border: 1px solid #f19bcc; /* matching pink border */
  box-shadow: 0 4px 12px rgba(250, 17, 141, 0.3); /* soft pink shadow */
  padding: 10px 0;
  z-index: 999;
  border-radius: 6px;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Optional: Style links inside submenu */
.custom-navbar-sub-dropdown a {
  padding: 8px 20px;
  display: block;
  color: #ff68b8;
  font-weight: 500;
}

.custom-navbar-sub-dropdown a:hover {
  background-color: #ffe4f2; /* hover background */
  color: #c4006c;
  text-decoration: none;
}
.dropdown-submenu > .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown-submenu:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
  
@media screen and (max-width: 768px){
  .display-noida{
      display: none;
  }}





@media screen and (max-width: 524px){
  .display-noida-2{
      display: none;
  }}

   

  