/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: 0.2px;

}
html {
  scroll-behavior: smooth;
}
.tulip_container{
    max-width: 100%;
    width: 100%;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
}
.container{
  padding: 0;
  margin: 0 auto;

}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 74vh;
  color: white;
  display: flex;
  align-items: center;
  /* flex-direction: column; */
  justify-content: center;
  text-align: center;
  overflow: hidden;
  /* background: linear-gradient(0deg, rgba(202, 117, 245, 0.35) 10%, rgba(250, 172, 219, 0) 40%); */
 /* background: linear-gradient(0deg, rgba(202, 117, 245, 0.6) 0%, rgba(250, 172, 219, 0.1) 60%); */

background: linear-gradient(
  180deg,
  rgba(0, 0, 0, 0.55) 100%,       
  rgba(0, 0, 0, 0.25) 20%,       
  rgba(202, 117, 245, 0.6) 21%,  
  rgba(250, 172, 219, 0.4) 100%  
);

}


/* Background Video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
   transition: opacity 1s ease-in-out;
  opacity: 0;
  z-index: -2;
}
.hero-video.active {
  opacity: 1;
  z-index: -1;
}

.video-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  width: 25px;
  border-radius: 15px;
  background: white;
}

/* Overlay effect */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
  /* background: linear-gradient(0deg, rgba(202, 117, 245, 0.35) 0%, rgba(250, 172, 219, 0) 100%); */
  z-index: -1;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%); 
  width: 100%;
  padding: 10px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  transition: all 0.3s ease;
  background: transparent;
}
/* When scrolled */
.navbar.scrolled {
  /* background: rgba(0, 0, 0, 0.7);  */
      background: rgb(255 255 255 / 47%);
  backdrop-filter: blur(10px);
  background-color: #ffffff;
  .menu a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 14px;
}
.btn_cont {
  /* color: #585858; */
  color: #ffffff;
}
.menu a:hover {
  color: #ff4fa3;
}
.powered{
color: black;
}
.whiteLogo{
  display: none;
}
.blackLogo{
  display: block;
}
.dropdown .tglebtn{
color:#000000;
}
}


.logo {
  font-size: 24px;
  font-weight: bold;
}
.logo .tulip_logo {
  width: 100px;
  height: 30px;
}
.menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
}
.menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 14px;
  text-transform: uppercase;
}
.dropdown .tglebtn{
  color:#ffffff;
  padding: 0;
  background-color: none;
  outline: none;
  border: none;
  border-color: none;
  
  
}
.anch{
color: #000000 !important;
}
.anch:hover{
color: #ff4fa3 !important;
background: none;
}
.anch:active{
background: none !important;
}
.tglebtn:active{
  border-color: none;
  border-color: none;
}

.menu a:hover {
  color: #ff4fa3;
}

/* Navbar buttons */
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.btn_cont {
  padding: 0px 8px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid #828282;
  height: 32px;
}

.btn_cont img{
  width: 16px;
  height: auto;
}

.powered{
    color: white;
    border-radius: 20px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 2px;
    text-decoration: none;
    flex-direction: column;
}

.powered img{
width: 180px;
height: auto;
}
.blackLogo{
  display: none;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 600px;
  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.heart{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.heart img{
width: 32px;
height: auto;
}

.startForm{
  color: black;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: bold;
}
.hero-content h1 .pink {
  background: linear-gradient(90deg, #DB3A7E, #D267DF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; 
  color: transparent;
}
.hero-content p {
  margin-top: 5px;
  font-size: 16px;
  color: #ddd;
}

/* CTA buttons */
.cta-buttons {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.primary {
    display: inline-flex;
    align-items: center;
    padding: 12px 50px;
    background: linear-gradient(135deg, #B950C6 0%, #DB3A7E 100%);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.3s ease;
}

.primary:hover::before {
    left: 100%;
}


.secondary {
  background: white;
  color: #333;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}


/* Hide hamburger on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 20;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: #212122;
  border-radius: 2px;
}

/* Sidebar styles */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(80, 80, 80, 0.82);
  backdrop-filter:blur(20px);
  color: white;
  z-index: 100;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}
.sidebar.active {
  right: 0;
}
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar-logo {
  width: 120px;
  height: auto;
}
.close-btn {
  font-size: 28px;
  cursor: pointer;
}
.sidebar-menu {
  list-style: none;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-menu a {
  color: white;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
}
.sidebar-menu a:hover {
  color: #ff4fa3;
}
.sidebar-footer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* **********popup 10mins*********** */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fce4ec; 
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 90%;
    max-width: 550px;
    text-align: center;
}

.popup h2 {
       color: #d81e5b;
    font-size: 22px;
    padding: 20px 0 10px;
    font-weight: bold;
}

.popup p {
  color: #333;
    font-size: 14px;
    line-height: 19px;
    margin: 0;
    padding: 0 10px 10px;
}

.popup .urexp{
  color: #000000;
    margin: 0;
    padding: 10px;
}
.urexp span{
     color: #d81e5b;
    font-weight: 600;
    text-transform: capitalize;
    font-style: italic;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    flex: 1;
    margin-bottom: 12px;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    font-size: 0.9rem;
}

.form-control::placeholder {
    color: #999;
    opacity: 1;
}

.btnpop{
    /* width: 100%; */
    border: 0 none;
    padding: 10px;
    font-weight: 300;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
}
.btngrp .btn-call-later{
    background: linear-gradient(135deg, #DB3A7E 0%, #B950C6 100%); 
    color: #ffffff;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 13px 35px;
    border-radius: 50px;
}
.btn-call-later a{
  text-decoration: none;
  color: #ffffff;
}
.btn-icon {
    width: 13px;
    height: 13px;
    margin: 5px;
}
.btngrp i{
    font-size: 12px;
    font-weight: 400;
    color: #333;
    letter-spacing: 0;
}
.btn_cont.call {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    background: linear-gradient(135deg, #B950C6 0%, #DB3A7E 100%); 
    color: white;
    text-decoration: none;
    border:0  none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: auto;
  }
  .btn_cont.call::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }

    .btn_cont.call:hover::before {
      left: 100%; 
    }

    .btn_cont.call:hover {
      background: linear-gradient(135deg, #B950C6 0%, #DB3A7E 100%); /* Gradient reversal for variety */
    }

    .btn_cont.call:active {
      transform: translateY(0); 
    }


.btngrp .btnclose{
    background: black;
    border: none;
    color: #fff;
}
.btnpop{

}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Active classes to show popup and overlay */
.popup.active {
    display: block;
}

.overlay.active {
    display: block;
}
/* partners section  */
.partner_head{
width: 100%;
text-align: center;
padding: 30px 10px 0px;
}

.partner h3{
    background: linear-gradient(90deg, #DB3A7E 0%, #B950C6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 32px;
    font-weight: 700;
    margin:0 12px;
}
.partners-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    background: #fff;
}

.partenrsimages {
    width: 100%;
    overflow: hidden;
}

.partners-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.partnerimg {
    width: 180px;
    height: 90px;
    object-fit: contain;
}

/* Hide duplicate logos on desktop */
.mobile-only {
    display: none;
}



/* section 2 */
.hopw_head{
width: 100%;
text-align: center;
padding: 30px 10px;
}
.hopw{
  width: 100%;
}
.hopw h3{
      background: linear-gradient(90deg, #DB3A7E 0%, #B950C6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 32px;
    font-weight: 700;
    margin:0 12px;
}
.hopw p{
    font-size: 16px;
    font-weight: 400;
}
.features {
  display: flex;
  gap: 15px;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  height: 270px;
}
.feature {
  flex: 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: flex 0.6s ease;
  display: flex;
  align-items: flex-end;
}
/* First feature is expanded by default */
.feature.default {
  flex: 2;

}
/* On hover, expand the hovered card */
.features:hover .feature {
  flex: 1;
}

.features:hover .feature:hover {
  flex: 2;
  transition: all ease 1.3s;
 .content h2 {
  font-size: 68px;
  transition: all ease 1.3s;
}
}
.feature.active {
  flex: 2;
}
.feature .content {
  position: relative;
  padding: 20px;
  color: white;
  z-index: 2;
  text-align: start;
  background: linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, rgba(0, 0, 0, 0.65) 66.35%);
  width: 100%;
  transition: all ease 1.3s;
}
.feature .content h2 {
  font-size: 48px;
  font-weight: 800;
  opacity: 0.6;
  margin: 0;
}
.feature .content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0 5px;
}
.feature .content p {
  font-size: 14.5px;
  max-width: 300px;
  opacity: 0.9;
}

/* our service */
section#preconception{
  background-color:#EFE9FD ;
}
.ourservice_heading {
    text-align: center;
    padding: 0px 30px 0;
}
.ourservice_heading .urs{
 background: linear-gradient(90deg, #DB3A7E 0%, #B950C6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}
.ourservice_heading .comprens{
 font-size: 16px;
 font-weight:400;
 margin-bottom: 30px;
}
.our_service{
  width: 100%;
}
/* Section layout */
.services-section {
  padding: 40px 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
.image-box {
  position: relative;
  width: 33%;
  margin: auto;
}
/* circular image */
.white_circle{
   width: 100%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.2); */
  padding: 5px;
  background-color: #ffffff;
}
.purple_circle{
   width: 100%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.2); */
  padding: 25px;
  background-color: #efe9fd;
}
.circle {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  padding: 15px;
  background-color: #E3DAF2;
}
.circle_1{
  background-color: #E3DAF2;
  padding: 22px;
}
.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.8s ease-in-out;
  border-radius: 100%;
}
/* orbiting icons */
.icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: -150px center; /* distance from center */
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 1s ease-in-out;
}
.icon_img {
  width: 35px;
  height: 30px;
  display: block;
}
/* initial rotation (angle positions) */
.icon1 { transform: rotate(0deg) translateX(180px) rotate(0deg);
top: 35%;
  left: 48%;
   transform-origin: -150px center;
}
.icon2 { transform: rotate(120deg) translateX(180px) rotate(-120deg); 
 top: 53%;
left: 48%; 
 transform-origin: -150px center;
}
.icon3 { transform: rotate(240deg) translateX(180px) rotate(-240deg);
top: 35%;
left: 48%;
  transform-origin: -150px center;
}

/* animation states (applied via JS) */
.stage1 .icon1 { transform: rotate(120deg) translateX(180px) rotate(-120deg);
top: 53%;
transform-origin: -150px center;
}
.stage1 .icon2 { transform: rotate(240deg) translateX(180px) rotate(-240deg);
top: 35%;
transform-origin: -150px center;
}
.stage1 .icon3 { transform: rotate(360deg) translateX(180px) rotate(-360deg);
 }

.stage2 .icon1 { transform: rotate(240deg) translateX(180px) rotate(-240deg); 
  top: 35%;
transform-origin: -150px center;
}
.stage2 .icon2 { transform: rotate(360deg) translateX(180px) rotate(-360deg); }
.stage2 .icon3 { transform: rotate(480deg) translateX(180px) rotate(-480deg);
top: 53%;
transform-origin: -150px center;}

/* Right content */
.content_head {
width: 63%;
}
.content_head .urs {
background: linear-gradient(90deg, #DB3A7E 0%, #B950C6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 32px;
    font-weight: 600;
    
}

.content_head .comprens {
    font-size: 16px;
    font-weight: 400;
    background: #7853A0;
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

}
.vertical-carousel {
  position: relative;
  /* height: 474px;  */
      height: 572px;
  overflow: hidden;
}
.content_box_corsusel {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease-in-out;
}
.carousel-slide {
  /* min-height: 410px; */
  min-height: 570px;
  padding: 0px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-behavior: smooth;
   transition: transform 1.5s ease-in-out;
}

/* Individual items height = container height for smooth scrolling */
.content_box_corsusel > .content_box,
.content_box_corsusel > .cards {
  height: 100%;
}

/* Dots styling (already in your code) */
.service_dots {
  position: absolute;
  right: 0px; /* vertical alignment, right side */
  top: 23%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}

.servdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
 background-color: #ED476B33;
}

.servdot.active {
  width: 10px;
    background: #ED476BCC;
    height: 24px;
    border-radius: 15px;
}
.content_box{
  margin-top: 20px 30px;
}
.content_box h3 {
    background: linear-gradient(90deg, #DB3A7E 0%, #B950C6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 28px;
    font-weight: 700;
}
.content_box p {
  margin-top: 1px;
  color: #5D5D5D;
  
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.include_cards{
  width: 100%;
  display: flex;
  
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-width: 100%;
}
.video_card {
    width: 100%;
    height: 100%; /* parent should have a defined height */
    padding: 10px;
}
.video_card video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* or contain, depending on how you want scaling */
    border-radius: inherit; /* keep card corners if needed */
}

.card h4 {
  margin-top: 0;
  font-weight: bold;
  color: #444;
  font-size: 20px;
}
.card_listinld{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.card ul {
  list-style: none;
  padding: 0;
  /* margin: 0px 0 30px; */
  color: #555;
}
.card ul li {
  margin: 8px 0;
  font-size: 15px;
  display: flex;
  justify-content: start;
  gap: 8px;
  align-items: center;
}
.card ul .exld_list{
  font-size: 13px;
}
.card ul li img{
      width: 17px;
    height: auto;
}
.excluded{
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #E6E0F3;
    background: #FAF9FD;
}
.excluded h5{
font-size: 15px;
font-weight: 600;
}
.excluded p{
font-size: 13px;
color: #555;
text-align: left;
margin: 0;
}

.btnbookclnt{
  display: flex;
  align-items: start;
  margin: 20px 0px 0;
  gap: 20px;
  flex-direction: column-reverse;
}
.btns{
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}

/* Button */
.book-btn {
  /* margin-top: 20px; */
  padding: 10px 20px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  /* box-shadow: 0 2px 6px rgba(0,0,0,0.2); */
  transition: background 0.3s;
}

button.book-btn.getbrochure {
  background: linear-gradient(90deg, #DB3A7E 0%, #B950C6 100%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  color: #DB3A7E; 
  transition: all 0.4s ease;
  border: 1px solid #DB3A7E;
}

button.book-btn.getbrochure:hover {
  color: white;
  background-size: 100% 100%; 
}


.getstart{
 background: linear-gradient(90deg, #DB3A7E 0%, #B950C6 100%);
 border: 1px solid #DB3A7E;
}
.booknow {
  /* background-color: #000000;
  border: 1px solid #000000; */
   background: linear-gradient(90deg, #DB3A7E 0%, #B950C6 100%);
 border: 1px solid #DB3A7E;
}
/* get brochure */
  .custom-modal {
            border: 1px solid #000;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        .modaltitle{
          font-weight: 600;
          font-size: 20px;
        }
        .modal-header {
          border-bottom: none;
          border-bottom: 1px solid #80808045;
        }
        .modal-footer {
            border-top: none;
        }
        .btn-blue {
             background: linear-gradient(90deg, #DB3A7E 0%, #B950C6 100%);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
        }
        .btn-green {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
        }
        .form-control {
            border-radius: 10px;
            border: 1px solid #e5c8d2;
            background-color: #ffffff87;
            padding: 10px;
            
        }
        .brochurelabel{
          font-size: 13px;
        }
        .brochform{
          padding: 0;
          margin: 0;
        }
        .brochform a{
          text-decoration: none;
          width: 100%;
        }
        .brochform a:hover{
         color :#c3c3c3;
        }
        .donwnow{
          width: 100%;
          margin: 0;
        }

        .donwnow a {
          color: #fff;
          text-decoration: none;
        }

        .donwnow a.disabled {
          pointer-events: none;
          opacity: 0.6;
          cursor: not-allowed;
        }

        


.play-btn {
  /* margin-top: 20px; */
  padding: 10px 16px;
 background: #303030;
  color: #fff;
  font-weight: 400;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  /* box-shadow: 0 2px 6px rgba(0,0,0,0.2); */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.playIcon{
  width: 17px;
  height: auto;
}
.client_logo{
  display: flex;
  justify-content: center;
  align-content: center;
  gap: 30px;
}
 .imglogo{
/* width: 130px; */
height: 35px;
}

/* section 4 */
.ndmh_head{
  width: 100%;
  text-align: center;
  padding: 50px 0;
}
.ndmh{
  width: 100%;
  padding: 10px 30px;
}
.ndmh h3{
  background: linear-gradient(90deg, #DB3A7E 0%, #B950C6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 32px;
  font-weight: 600;
  
  margin: 0;
}
.ndmh p{
    font-size: 16px;
    font-weight: 400;

}
.support-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
    gap: 10px;
    width: 100%;
    margin: 40px;
    padding: 20px 0;
    margin: 0 auto;
}

/* LEFT SIDE */
.support-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 40%;
}

.support-item {
  display: flex;
  gap: 15px;
  margin: 10px 0;
  align-items: center;
}
.support-icon {
  border-radius: 50%;
  /* background: #ffeaf2; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.supiconImg{
width: 60px;
height: auto;
}
.support-item h4 {
  margin: 0;
  font-size: 16px;
  color: #111827;
  font-weight: 600;
}
.support-item p {
  margin: 4px 0 0 0;
  font-size: 14px;
  color: #666;
}
/* RIGHT SIDE */
.support-form-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0px 4px 61.7px 12px #00000026; -webkit-box-shadow: 0px 4px 61.7px 12px #00000026; -moz-box-shadow: 0px 4px 61.7px 12px #00000026;
  width: 50%;
}
.support-form-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.support-subtext {
  margin: 0 0 16px;
  font-size: 14px;
  color: #666;
}
.support-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.support-flex .required-wrapper {
  position: relative;
  flex: 1 1 calc(50% - 12px);
}

.support-flex input,
.support-flex select,
.support-flex textarea {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #9ca3af;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  background: #fff;
}


/* Floating label */
.required-label {
  position: absolute;
  top: -10px;
  left: 12px;
  background: #fff;
  padding: 0 6px;
  font-size: 12px;
  color: #6b7280;
  pointer-events: none;
}

.required-label span {
  color: red;
  margin-left: 2px;
}
/* textarea full width */
.support-flex textarea {
  flex: 1 1 100%;
  min-height: 80px;
}

/* red asterisk for required fields */
/* .required-wrapper.required::after {
  content: "*";
  color: red;
  position: absolute;
  top: -12px;
  right: 0px;
  font-size: 16px;
  pointer-events: none;
} */

/* ACTION BUTTONS */
.support-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.btn-call {
width: 100%;
 /* background: linear-gradient(90deg, #DB3A7E 0%, #B950C6 100%); */
 background: #ccc;
  border: none;
  color: #fff;
  padding: 12px;
  border-radius: 50px;
 cursor: not-allowed;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}
.btn-call.active {
  background: linear-gradient(90deg, #DB3A7E 0%, #B950C6 100%);
  cursor: pointer;
  opacity: 1;
}
.supaction{
  width: 14px;
  height: auto;
}

.btn-brochure {
  width: 48%;
  background: #000;
  border: none;
  color: #fff;
  padding: 12px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}
.btn-brochure a {
  text-decoration: none;
}
.down_brochure{
  border: none;
    color: white;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.faq_head{
  width: 100%;
text-align: center;
padding: 50px 20px;
background-color: #E9C9D540;
}
.faq{
  width: 100%;
  padding: 10px 30px;

}
.faq h3{
      background: linear-gradient(90deg, #DB3A7E 0%, #B950C6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 32px;
    font-weight: 600;
    
margin: 0;
}
.faq h3 .quest{
   background: black;
  -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 32px;
    font-weight: 600;
    
  
}
.faq p{
    font-size: 16px;
    font-weight: 400;

}

.faqs_ans{
display: flex;
justify-content: center;
align-items: center;
  width: 70%;
  margin: 0 auto;
  padding: 20px 0px;
}

.accord {
  width: 100%;
}
/* FAQ Accordion Wrapper */
.accordion{
  width: 100%;
}
/* Accordion Item */
.accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Accordion Button */
.accordion-button {
  background: #fff;
  color: #000000;
  font-weight: 500;
  border: none;
  box-shadow: none;
  border-radius: 12px;
  padding: 16px 20px;
  transition: all 0.3s ease;
}

.accordion-button:hover {
  background: #f9f9f9;
}

.accordion-button:not(.collapsed) {
background: linear-gradient(135deg, #b950c682 0%, #db3a7e52 100%);
color: #000000;
}

/* Accordion Icon (Caret) */
.accordion-button::after {
  filter: invert(36%) sepia(98%) saturate(3076%) hue-rotate(322deg) brightness(95%) contrast(92%);
  transform: scale(1.2);
}

/* Accordion Body */
.accordion-body {
  background: #fff;
  padding: 16px 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  text-align: start;
}
.accordion-body strong {
  color: #000000;
}

.accordion-button:focus{
  /* background-color: red; */
  box-shadow: none;
}
.accordion-body ul li.fontbold{
  font-weight: 700;
  text-decoration: none;
  color: #000;
  color: red;
  
}
/* footer */
.tulip-footer {
  background: #F4E1E8;
  padding: 40px 60px 20px;
  color: #333;
  width: 100%;
}



.tulip-footer-top {
  display: grid;
  /* grid-template-columns: 2fr 1fr 1fr 2fr; */
  grid-template-columns: 2fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 30px;
}

.tulip-footer-brand .tulip-logo {
  width: 120px;
  margin-bottom: 15px;
}
.tulip-tagline{
  font-size: 14px;
}
.tulip-footer h4 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: bold;
  color: #d91b5c;
}
.tulip-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.tulip-footer ul li {
  margin-bottom: 8px;
}

.tulip-footer ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: color 0.3s;
}

.tulip-footer ul li a:hover {
  color: #d91b5c;
}

.tulip-footer-contact p {
  font-size: 14px;
  margin: 8px 0;
  
}

.tulip-icon {
  width: 25px;
  height: auto;
  margin-right: 8px;
  color: #d91b5c;
}
.tulipfootbr{
   border-top: 1px solid #D5B6C1;
    background: #F4E1E8;
 padding: 20px 60px 20px;
}
.tulip-footer-bottom {
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
   background: #F4E1E8;
 
}

.tulip-footer-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.tulip-footer-links a:hover {
  color: #d91b5c;
}

.habit-health-title {
    color: #c2185b; /* Deep pink-purple for title */
    font-size: 1.1em;
    font-weight: 600;
    margin: 0 0 18px 0;
}

.qr-placeholder {
    margin: 0 auto 18px;

    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.qr-grid {
    /* Simple CSS grid approximation of a QR code pattern for placeholder */
   
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
    gap: 2px;
}

.qr-grid::before,
.qr-grid::after {
    content: '';
    position: absolute;
    background: #000;
}


/* Add more pseudo-elements or child divs for more detailed QR if needed, but keeping simple */

.habit-health-text {
    color: #333;
    font-size: 0.9em;
    
    margin: 0;
  }
  .qr-placeholder{
    width: 50%;
    height: auto;
    text-align: center;
  }

  .qr-placeholder img{
    width: 70%;
}

.get-started-link {
    color: #ad1457;
    text-decoration: none;
    font-weight: 500;
}

.get-started-link:hover {
    text-decoration: underline;
}

.viewmore{
  padding: 10px 16px;
    background: linear-gradient(135deg, #B950C6 0%, #DB3A7E 100%);
    color: white;
    text-decoration: none;
    border: 0 none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: auto;
    min-width: 170px;
}
.viewmore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.3s ease;
}

.viewmore:hover::before {
    left: 100%;
}
.view-less {
    position: relative;
    padding: 10px 16px;
    background: #fff;
    color: #000;
    border-radius: 30px;
    border: none;
    overflow: hidden;
    z-index: 1;
}

/* Gradient border */
.view-less::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; /* border thickness */
    border-radius: 30px;
    background: linear-gradient(135deg, #B950C6 0%, #DB3A7E 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* Hover shine effect */
.view-less::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transition: left 0.4s ease;
    z-index: 0;
}
.view-less:hover {
background-color: white !important;
color: #000000;
} 



/* Responsive *
