
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

html{
  scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
          
}

/* Container */
header{
    width: 90%;
    margin: auto;
    text-align: center;   
    color: #333; /* Dark gray text */

    
}
/* Header */
header { 
    padding: 30px 0;
    margin-top: 10px;
  
}
.header_container{
    display: flex;
    justify-content: space-between;
 
}

.header_container h1 {
    margin-bottom: 10px;
}

.header_container nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}

.header_container nav ul li {
    display: inline;
    margin: 0 15px;
}

.header_container nav ul li a {
    /* color: #e96989; */
    color: #666;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
    font-weight: 500;  
    font-family: "DM Sans", sans-serif; 
    line-height: 1.6;
    text-transform: uppercase;

}
.header_container nav ul li a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    top: 100%;
    left: 0;
    background: #666;
    transition: transform 0.5s;
    transform: scaleX(0);
    transform-origin: left;
  }
.header_container nav ul li a:hover::after {
    transform: scaleX(1);
  }
.orange{
  color: #e96989;
}

.header_right{
    display: flex;
    justify-content: space-between;
}
.search_input::-moz-placeholder {
  font-family: "DM Sans", sans-serif;
  font-size: 300;
    
}

.header_container .logo {
  font-size: 40px;
  height: 30px;
  padding-bottom: 40px;
  margin-bottom: 20px;
}
.logo img {
  width: 90px;
  height: auto;

}
.header_container{
  margin-top: 0;

}

/* Default hamburger button styles (hidden on desktop) */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #e96989;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.nav_links {
  display: flex;
  align-items: center;
}


.transparent-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 100;
  padding: 20px 0;
}

.transparent-header .header_container nav ul li a {
  color: white;
}

.transparent-header .header_container nav ul li a::after {
  background: white;
}

.transparent-header .orange {
  color: white;
}

.transparent-header .hamburger-line {
  background-color: white;
}


/* dropdown menu */
.dropdown {
  position: relative;
}

.dropdown-menu{
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 0.5rem 0;
  width: 200px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  border-radius: 4px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  display: none;
}

.dropdown-menu li {
  padding: 0.5rem 1rem;
 
}

.dropdown-menu a {
  color: #333;
  display: block;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}


.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown arrow icon */
.dropdown-toggle i {
  margin-left: 5px;
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}


/* Mobile Styles  for hambergar menu*/
@media (max-width: 768px) {
  html{
    overflow-x: hidden;
  }
  .hamburger-btn {
    display: block;
    position: absolute;
    right: 20px;
    top: 30px;
    z-index: 1001;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
  }
  
  .hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #e96989;
    margin: 5px 0;
    transition: all 0.3s ease;
  }
  
  /* Hide desktop navigation by default */
  .nav_links{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(194, 165, 183, 0.95); 
    backdrop-filter: blur(-2px); 
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }
  
  .nav_links.mobile-active {
    transform: translateX(0);
    display: flex;
    
  }
 
  .nav-list {
    flex-direction: column;
    width: 100%;
    padding: 20px;
    text-align: center;

  }
  
  .nav-list li {
    margin: 15px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }
  
  .nav_links.mobile-active .nav-list li {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Staggered animation */
  .nav_links.mobile-active .nav-list li:nth-child(1) { transition-delay: 0.1s; }
  .nav_links.mobile-active .nav-list li:nth-child(2) { transition-delay: 0.2s; }
  .nav_links.mobile-active .nav-list li:nth-child(3) { transition-delay: 0.3s; }
  .nav_links.mobile-active .nav-list li:nth-child(4) { transition-delay: 0.4s; }
  .nav_links.mobile-active .nav-list li:nth-child(5) { transition-delay: 0.5s; }
  

  .nav-list li a {
    font-size: 1.5rem;
    padding: 10px 20px;
    display: inline-block;
  }

  /* dropdown menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%; 
  background: transparent;
  display: none;
  padding: 25px 0; 
  margin-top: 10px;
  margin-bottom: 15px;
  z-index: 1001;
  border-radius: 4px;
}

.dropdown-menu li {
  padding: 8px 0;
}

.dropdown-menu a {
  color: white;
  padding: 10px 20px;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.dropdown-toggle i {
  transition: transform 0.3s;
}
.dropdown-toggle {
  pointer-events: auto; /* Ensure clicks are registered */
}

.dropdown.open .dropdown-toggle i {
  transform: rotate(180deg);
}
.dropdown.open .dropdown-menu {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
 
}
.dropdown.open {
  margin-bottom: 40px; 
  position: relative;
}
.dropdown.open + li {
  margin-top: 20px; 
}

  /* Hide desktop elements */
  .header_right {
    display: none;
  }
   
  .mobile-call-btn {
    display: block;
    margin: 30px auto 0;
    padding: 16px 26px;
    background: #e96989;
    color: white;
    border: none;
    border-radius: 4px;
    width: 80%;
    max-width: 300px;
    font-size: 18px;
  }
  
  /* Hamburger to X animation */
  .hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* hero section */
#hero_page {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #f8f4f0; 
  align-items: flex-start;
}

.hero-container {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

/* Left Side - Video */
.hero_video-container {
  flex: 1;
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 80px 0; 
}

.hero_video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

/* Right Side - Content */
.hero_content-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
  position: relative;
}

.hero_tagline {
  margin-bottom: 30px;
  text-align: center;
}

.hero_tagline h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #666;
  margin-bottom: 10px;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
}

.hero_tagline p {
  font-size: 1.2rem;
  color: #666;
  font-family: "DM Sans", sans-serif;
}

/* Contact Form */
.glassmorphism {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.glassmorphism h3 {
  color: #666;
  font-family: "DM Sans", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

/* Form Elements */
.glassmorphism .form-group {
  margin-bottom: 15px;
}

.glassmorphism .form-group label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-size: 16px;
}

.glassmorphism .form-group input {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: #333;
  transition: all 0.3s ease;
  outline: none;
}

.glassmorphism .submit-btn {
  width: 100%;
  padding: 14px;
  background: #e96989;
  color: white;
  border: none;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
  }
  
  .hero_video-container {
    height: 50vh;
    border-radius: 0;
  }
  
  .hero_content-container {
    padding: 40px 20px;
    align-items: center;
  }
  
  .hero_tagline {
    margin-bottom: 20px;
  }
  
  .hero_tagline h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .glassmorphism {
    padding: 20px;
  }
  
  .hero_tagline h2 {
    font-size: 1.5rem;
  }
  
  .hero_tagline p {
    font-size: 1rem;
  }
}


/* gift box animation */
.giftbox_thread {
  position: absolute;
  width: 180px;
  height: auto; 
  right: 370px;
  top: 29%; 
  transform-origin: top center;
  animation: bottomShake 3s infinite ease-in-out;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
  cursor: pointer;
  transition: transform 0.3s ease; 
}


.giftbox_thread:active {
  transform: scale(0.95);
}

@keyframes bottomShake {
  0%, 100% {
    transform: rotate(-3deg);
  }
  25% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(2deg);
  }
}

#home_page{
    width: 100%;
    height: 70%;
}
.header_btn{
    height: 42px;
    text-align: center;
    width: 140px;
    padding: 0 15px;
    /* color: #e96989; */
    color: #666;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    text-transform: uppercase;

}
.header_btn:hover{
    color: #fff;
    background-color: #888;
    transition: ease-in 0.3s;
}
#search_input{
    float: right;
    padding: 8px;
    border: 1px solid #666;
    margin-right: 16px;
    font-size: 18px;
    border-radius: 5px;
    color: #666;
    font-family: "DM Sans", sans-serif;
    text-transform: uppercase;
}
#search_input:focus{
  /* color: #e96989; */
  color: #666;
  outline: none;

}

@keyframes smoothBounce {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-8px) scale(1.1);
    opacity: 0.8;
  }
}

/* about */
.gap{
    margin-left: 40px;
    margin-right: 40px;
    font-family: "DM Sans", sans-serif;
    
}
#about_page{
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    
}
.left_content{  
    text-align: start;
    margin-top: 30px;
    padding-right: 10px;
         
}

/* About Page Carousel */

.about-carousel {
  width: 100%;
  max-width: 600px;
  margin-left: 30px;
}

.split-frame {
  display: flex;
  height: 400px;
  gap: 5px;
 
}

.main-image {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.main-image:hover img {
  transform: scale(1.03);
}

.side-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.top-right, .bottom-right {
  flex: 1;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.top-right img, .bottom-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.top-right:hover img, .bottom-right:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Navigation Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}

.prev-btn, .next-btn {
  background: #e96989;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.prev-btn:hover, .next-btn:hover {
  background: #d85a7a;
}

.pagination-dots {
  display: flex;
  gap: 10px;
}

.pagination-dots span {
  display: block;
  width: 10px;
  height: 10px;
  background: #e96989;
  opacity: 0.3;
  border-radius: 50%;
  cursor: pointer;
}

.pagination-dots span.active {
  opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-carousel {
    margin: 30px 0;
    max-width: 100%;
  }
  
  .split-frame {
    height: 300px;
  }
}

.left_content h2{
    color: #e96989;
    line-height: 39px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    line-height: 39px;
    margin-bottom: 30px;
    position: relative;
}

.left_content p{
    color: #666;
    font-size: 18px;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
    
}
.left_content .about_quote{
  color: #e96989;
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
}
.social_media_about{
  margin-top: 2rem;
  white-space: nowrap;
  font-family: "DM Sans", sans-serif;
  padding: 10px 10px ;
  
  

}
.social_media_about a{
  color: #e96989;
  margin-left: 30px;
  font-size: 1.3rem;
  
}
.social_media_about a:hover,
.footer_social a:hover {
  color: #fff;
  background-color: #e96989;
  border-radius: 50%;
  padding: 6px;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 12px rgba(233, 105, 137, 0.4); /* Slightly more pronounced shadow */
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* how it works */


.slide-wrapper {
  text-align: center;
  margin-top: 5rem;
  padding: 0 20px;
}

.how-it-works {
  padding: 20px;
  color: #e96989;
  font-family: "DM Sans", sans-serif;
  line-height: 30px;
  font-weight: 300;
  position: relative;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.how-it-works h2::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #e96989;
}

.card-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.card-item {
  color: #666;
  width: 350px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(194, 112, 169, 0.3);
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.card-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #e96989;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(194, 112, 169, 0.3);
  border-color: rgba(194, 112, 169, 0.3);
}

.card-item:hover::before {
  transform: scaleX(1);
}

.user-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin-bottom: 30px;
  padding: 4px;
  border: 2px solid rgba(231, 60, 44, 0.2);
  transition: all 0.3s ease;
  object-fit: contain;
}

.card-item:hover .user-image {
  transform: scale(1.1);
  border-color: rgba(231, 60, 44, 0.4);
}

.username {
  font-size: 1.3rem;
  color: #e96989;
  font-weight: 500;
  margin: 10px 0 20px;
  transition: all 0.3s ease;
  font-family: "DM Sans", sans-serif;
}

.card-item:hover .username {
  color: #e96989;
}

.card-item p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 18px;
}

.card-item:hover p {
  color: #444;
}

.work_arrow{
  margin-top: 20px;
  font-size: 24px;
  color: #E966B3;
  transition: all 0.3s ease;
}

.card-item:hover .work_arrow {
  transform: translateX(5px);
  color: #e96989;
}
/* For the down arrow in the last card */
.card-item:last-child:hover .work_arrow {
  transform: translateY(5px);
}

/* Mobile hover/tap effects */
@media (max-width: 768px) {
  .card-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 15px;
  }
  .card-item {
    width: 100%;
    max-width: 350px;
    padding: 25px 20px;
    border-radius: 10px;
    border: 1px solid rgba(209, 109, 15, 0.2);
    background: white;
    box-shadow: 0 4px 12px rgba(231, 60, 44, 0.1);
    transition: all 0.3s ease;
  }

  .card-item:active {
    transform: scale(0.98);
    box-shadow: 
      0 6px 16px rgba(231, 60, 44, 0.15),
      0 0 0 2px rgba(231, 60, 44, 0.1);
  }

  /* Animation for the arrow icons */
  .card-item:active .work_arrow {
    transform: translateX(5px);
    color: #e96989;
  }

  .card-item:last-child:active .work_arrow {
    transform: translateY(5px);
  }

  .card-item:active::before {
    transform: scaleX(1);
  }

  .card-item:active .user-image {
    transform: scale(1.05);
    border-color: rgba(231, 60, 44, 0.3);
  }

  .user-image {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }
  .username {
    font-size: 1.3rem;
    margin: 10px 0 15px;
  }

  .card-item p {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
}

@media (min-width: 480px) and (max-width: 768px) {
  .card-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .card-item {
    width: calc(50% - 15px);
    max-width: none;
  }
}


/* Testimonial Section */

.testimonials-section {
  background: #fff9fa;
  padding-top: 70px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-family: "DM Sans", sans-serif;
  color: #e96989;
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
  font-size: 1.1rem;
  font-family: "DM Sans", sans-serif;

}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.highlight-card {
  border: 2px solid #A08963;
}

.testimonial-rating {
  color: #FFD700;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
  font-size: 18px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e96989;
}

.author-name {
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.author-location {
  color: #666;
  font-size: 0.9rem;
}

.testimonial-cta {
  text-align: center;
  margin-top: 50px;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: #e96989;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-family: "DM Sans", sans-serif;
  transition: all 0.3s;
}

.cta-button:hover {
  background: #d85a7a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233,105,137,0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  .testimonials_1 h2 {
    font-size: 1.8rem;
}

.testimonial-card {
    width: 260px;
}

.testimonial-card img {
    width: 50px;
    height: 50px;
}

.customer-name {
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
}
}
  /* rigid_boxes */

.product_head {
    margin-top: 5rem;
    color: #e96989;
    text-align: center;
    font-weight: 200;
    position: relative;
    padding: 20px;
    margin-bottom: 40px;
}
.product_head h2{
  font-family: "DM Sans", sans-serif;
  font-size: 1.5rem;
  line-height: 1.3rem;
  text-transform: uppercase;

}

.product_head h2::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e96989;
}

.product_list {
  position: relative;
  z-index: 1;
  transition-property: z-index;
  transition-duration: .3s;
  list-style: none;
  aspect-ratio: 1/1; 
  animation: rotate 4s linear infinite;
}

/* @keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotateY(360deg);
  }
} */


.details {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 2vw;
  filter: drop-shadow(2px 6px 3px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
  transform-origin: center;

}

/* Make the product image container square */

.product {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1.2vw;
  /* background: #001a23; */
  background: #393a3a;
  overflow: hidden;
}
.product_ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  padding: 0 5%;
  margin: 5rem 0;
}

.product_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

/* Update the overlay to be square */
.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(197, 140, 183, 0.9);
  color: #001a23;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 2vw;
  padding: 20px;
  padding-bottom: 15px;
  box-sizing: border-box;
  z-index: 5;
  transform: translateY(20px);
}
.product-title {
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease .2s;
}

.product-description {
  font-family: "DM Sans", sans-serif;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #555;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.2s;
  opacity: 0;
}

.product-size {
  display: flex;
  align-items: center;
  gap: 8px; /* Space between icon and text */
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 26, 35, 0.8);
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 12px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.3s;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.product-size img {
  width: 25px;
  height: 25px;
  filter: invert(1) brightness(1.5);
  transition: transform 0.3s ease;
}

.product_list:hover .product-size {
  transform: translateY(0);
  opacity: 1;
}
/* Update hover effects */
.product_list:hover .details {
  transform: scale(1.1); 
  
}

.product_list:hover .product_img {
  transform: scale(1.05);
  filter: brightness(0.7);
}
.product_list:hover .product-overlay {
  opacity: 1;
  transform: translateY(0);
}

.product_list:hover .product-title,
.product_list:hover .product-description {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive grid adjustments */
@media (min-width: 300px) {
  .product_ul {
      grid-template-columns: repeat(2, 1fr);
      padding: 0 10%;
  }
}

@media (min-width: 768px) {
  .product_ul {
      grid-template-columns: repeat(3, 1fr);
      padding: 0 5%;
  }
}

@media (min-width: 900px) {
  .product_ul {
      grid-template-columns: repeat(4, 1fr);
      padding: 0 3%;
  }
}

@media (min-width: 1200px) {
  .product_ul {
      grid-template-columns: repeat(4, 1fr);
      padding: 0 2%;
  }
}

@media (min-width: 1500px) {
  .product_ul {
      grid-template-columns: repeat(5, 1fr);
      padding: 0 1.5%;
  }
}
  
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {

    .product-overlay {
      padding: 10px; 
    }
    
    .product-title {
      font-size: 0.8rem; 
      white-space: normal; 
      -webkit-line-clamp: 2; 
      display: -webkit-box;
      -webkit-box-orient: vertical;
    }
    
    .product-description {
      font-size: 0.8rem; 
      margin-bottom: 8px;
      -webkit-line-clamp: 2; 
    }
    
    .product-size {
      font-size: 0.8rem; 
      padding: 4px 5px; 
      margin-top: 4px;
    }
    
    .product-size img {
      width: 20px;
      height: 20px;
    }
    .product_list:hover .details {
      transform: none; 
    }
  
    .product_list:hover .product_img {
      transform: none;
      filter: brightness(0.85); 
    }
  
    /* always visible on mobile */
    .product_list:hover .product-overlay {
      opacity: 1;
      transform: none;
    }


  }


/* contact submit succes message */

  #popup-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    color: white;
    z-index: 9999;
    display: none;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }
  
  #popup-message.success {
    background-color: #4CAF50; 
  }
  
  #popup-message.error {
    background-color: #f44336;
  }



/* Numbers Section Styling */
.numbers-section {
  background: linear-gradient(135deg, #fff5f7 0%, #ffffff 100%);
  padding: 5rem 0;
  text-align: center;
}

.section-heading h2 {
  font-family: "DM Sans", sans-serif;
  color: #e96989;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-heading p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(233, 105, 137, 0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-family: "DM Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #e96989;
  margin: 1rem 0;
  position: relative;
}

.stat-number:after {
  content: '+';
  display: inline;
}

.stat-card:nth-child(3) .stat-number:after {
  content: '%';
}

.stat-label {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.stat-icon {
  font-size: 2.5rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
  }

}

  /* clients marqee */

.client_heading{
    margin-top: 5rem;
    color: #e96989;
    text-align: center;
    margin-bottom: 20px;
      
  }
  .client_heading h2{
    font-family: "DM Sans", sans-serif;
    font-weight: bold;
    font-weight: 500;
    font-size: 1.5rem;
    text-transform: uppercase;

  }
  
  :root {
    --marquee-width: 90vw;
    --marquee-height: 16vh; 
    --marquee-elements-displayed: 4;
    --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
    --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
  }
  
  .marquee-content li img {
    width: 30%; 
    height: auto;
    max-height: 100px; 
    object-fit: contain;
    border: 1px solid #eee; 
    filter: grayscale(100%); 
    transition: all 0.3s ease;
  }

  .marquee {
    width: var(--marquee-width);
    height: var(--marquee-height);
    color: #e96989;
    overflow: hidden;
    position: relative;
  }
  .marquee:before, .marquee:after {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 1;
  }

  .marquee-content {
    list-style: none;
    height: 100%;
    display: flex;
    animation: scrolling var(--marquee-animation-duration) linear infinite;
  }
  @keyframes scrolling {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
  }
  .marquee-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: var(--marquee-element-width);
    max-height: 100%;
    font-size: calc(var(--marquee-height)*3/4);
    white-space: nowrap;
    max-height: 100%;
    padding: 0 20px;
    
  }
  
  .marquee-content li img {
    width: 80%;
    height: auto;
    max-height: 100px;
    object-fit: contain; 
    padding: 8px; 
  }
  
  @media (max-width: 600px) {
    html { font-size: 12px; }
    :root {
      --marquee-width: 100vw;
      --marquee-height: 18vh;
      --marquee-elements-displayed: 3;
    }
    .marquee:before, .marquee:after { width: 5rem; }
  }



  /* instagram page */

.instagram_page {
  margin-top: 5rem;
  padding: 0 20px;
  position: relative;
}

.insta_text {
  text-align: center;
  margin-bottom: 30px;
}

.insta_text h4 {
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 20px;
  color: #555;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
}

.insta_text span h2 {
  color: #e96989;
  font-family: "DM Sans", sans-serif;
  margin: 0;
  text-transform: uppercase;
}

.insta_container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.swiper-container {
  width: 100%;
  height: 100%;
  padding: 20px 0 40px;
}

.swiper-wrapper {
  padding-bottom: 10px;
}

.swiper-slide {
  position: relative;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
  transition: transform 0.3s ease;
}

.swiper-slide:hover {
  transform: translateY(-5px);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Hover Overlay Effect */
.slide-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(233, 105, 137, 0.8) 0%, transparent 100%);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 20px;
  transition: all 0.4s ease;
  color: white;
  border-radius: 8px;
}

.swiper-slide:hover .slide-overlay {
  bottom: 0;
}

.instagram-icon {
  font-size: 24px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease 0.1s;
}

.slide-overlay p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease 0.2s;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  margin: 0;
}

.swiper-slide:hover .instagram-icon,
.swiper-slide:hover .slide-overlay p {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation & Pagination */
.swiper-button-next,
.swiper-button-prev {
  color: #e96989;
  width: 20px !important;
  height: 20px !important;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.swiper-nav-buttons {
  display: flex;
  gap: 8px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}
.swiper-button-prev img,
.swiper-button-next img {
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  background: #e96989;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .swiper-container {
      padding: 20px 40px 40px;
  }
  
  .swiper-slide {
      height: 300px;
  }
  
  .swiper-slide {
      width: calc(25% - 20px) !important;
      margin-right: 20px !important;
  }
}

@media (max-width: 767px) {
  .swiper-container {
      padding-bottom: 30px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
      display: none;
  }
  
  .insta_text h2 {
      font-size: 1.5rem;
  }
  
  /* Show 2 slides on mobile */
  .swiper-slide {
      width: calc(50% - 10px) !important;
      margin-right: 10px !important;
      height: 200px;
  }
}

@media (min-width: 992px) {
  .swiper-slide {
      width: calc(20% - 16px) !important;
      margin-right: 16px !important;
  }
}



/* Contact Section */
.contact {
  padding: 4rem 2rem;
  background-color: #fafafa;
}

.contact_container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Left Side Styles */
.contact_leftside {
  position: relative;
  height: 100%;
  margin-top: 4rem;
}

.leftside_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.leftside_text h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.leftside_text p {
  font-family: "DM Sans", sans-serif;
  color: #666;
  font-size: 1.2rem;
  
  
}

.contact_animation {
  position: relative;
  margin-top: 2rem;
  min-height: 300px;
}

.animation_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hand_img {
  position: absolute;
  max-width: 80%;
  height: auto;
  object-fit: contain;
  left: 10%;
  bottom: 0;
  z-index: 1;
}

.box_img {
  position: absolute;
  max-width: 50%;
  width: 200px;
  height: auto;
  object-fit: contain;
  right: 36%;
  top: -6%;
  z-index: 2;
  transform: translateY(-20px);
  background: transparent;
  
}
.box_img2{
  position: absolute;
  max-width: 30%;
  width: 150px;
  height: auto;
  object-fit: contain;
  right: 60%;
  top: -40%;
  z-index: 2;
  transform: translateY(-20px);
  background: transparent;
  animation: smoothBounce 2s infinite ease-in-out;

}
.box_img3{
  position: absolute;
  max-width: 30%;
  width: 150px;
  height: auto;
  object-fit: contain;
  right: 20%;
  top: -40%;
  z-index: 2;
  transform: translateY(-20px);
  background: transparent;
  animation: smoothBounce 2s infinite ease-in-out;

}

/* Right Side Styles */
.contact_rightside {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form_header h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.form_header h1:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #e96989;
}

.form_header p {
  font-family: "DM Sans", sans-serif;
  color: #666;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

#contact_form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

#contact_form input,
#contact_form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #A08963;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  color: #555;
  background-color: transparent;
  transition: all 0.3s ease;
}

.form_grid input[type="tel"],
.form_grid #otp_input {
  grid-column: span 1;
}

#contact_form input:focus,
#contact_form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(233, 105, 137, 0.2);
}

#contact_form textarea {
  resize: vertical;
  min-height: 120px;
  grid-column: span 2;
}

.form_button {
  background: none;
  border: 1px solid #A08963;
  color: #555;
  padding: 12px 25px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  width: 100%;
}

.form_button:hover {
  background-color: #A08963;
  color: white;
}


/* OTP Specific Styles */
.otp_container {
  grid-column: span 2;
  
}

.otp_input_group {
  display: flex;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;

}

.otp_button {
  background: #A08963;
  color: white;
  border: 1px solid #A08963;
  padding: 12px 15px;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.otp_button:hover {
  background: #8a6d3b;
  border-color: #8a6d3b;
}

.otp_message {
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: #e96989;
}

/* Form Actions */
.form_actions {
  display: flex;
  gap: 1rem;
}

.primary_button {
  background-color: #A08963;
  color: white;
}

.primary_button:hover {
  background-color: #8a6d3b;
}

.secondary_button {
  background: none;
  color: #555;
}

.secondary_button:hover {
  background-color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact_container {
    grid-template-columns: 1fr;
  }
  
  .form_grid {
    grid-template-columns: 1fr;
  }
  
  #contact_form textarea {
    grid-column: span 1;
  }
  
  
  .animation_wrapper {
    position: relative;
    width: 100%;
    height: 75%;
    padding-bottom: 0;
    margin-bottom: 0;
}
.contact_animation {
  position: relative;
  min-height: 300px;
}

.contact_leftside {
  margin-top: 0.5rem; 
  padding-bottom: 0.5rem; 
}
.contact_rightside{
  padding-top: 0;
}

.contact_animation {
  min-height: 220px; 
  margin-top: 0.5rem; 
}

.animation_wrapper {
  height: 65%; 
}

.hand_img {
  left: 20%;
  max-width: 65%; 
  bottom: 10%;
  top: 45%; 
  height: 80%; 
}

.box_img {
  right: 10%;
  max-width: 25%; 
  top: 45%;
  right: 45%;
}

.box_img2 {
  top: 25%; 
  left: 5%;
  max-width: 25%;
}

.box_img3 {
  top: 25%; 
  max-width: 25%; 
  right: 15%;
}

.leftside_text {
  padding: 0 0.5rem; 
}

}

/* adjustments for tablet view */
@media (min-width: 768px) and (max-width: 1024px) {
  .contact_container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .contact_animation {
    min-height: 250px;
  }
  .contact_animation{
    margin-bottom: 10rem;
  }

  .hand_img {
    max-width: 70%;
    left: 15%;
    top: -5%;
    width: 50rem;
    
  }

  .box_img {
    width: 200px;
    right: 40%;
    top: -5%;
  }

  .box_img2 {
    width: 150px;
    right: 55%;
    top: -30%;
    animation: smoothBounce 2.2s infinite ease-in-out;
  }

  .box_img3 {
    width: 200px;
    right: 15%;
    top: -30%;
    animation: smoothBounce 2.5s infinite ease-in-out;
  }

  /* Form adjustments for tablet */
  .contact_rightside {
    padding: 1.8rem;
  }

  .form_grid {
    gap: 1rem;
  }
}

@keyframes smoothBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}


/* FAQ Section */

#faq-section {
  background: #fff;
  padding: 40px 20px;
  position: relative; 
  display: flex;
  justify-content: space-between;
  
}

.faq-heading {
  text-align: start;
  margin-bottom: 40px;
  margin-top: 4rem;
  width: 50%;
}

.faq-heading h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #e96989;
  text-transform: uppercase; 
  padding-left: 20px;
}
.faq-image {
  max-width: 140px;
  text-align: start;
  height: auto;
  padding-left: 20px;
  display: block;
  filter: drop-shadow(0 4px 6px rgba(233,105,137,0.2));
}
.animation_image{
  max-width: 50px;
  height: auto;
  padding-left: 10px;
  background: transparent;
  animation: smoothBounce 1.5s infinite ease-in-out;

}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  width: 50%;
}
.faq_text{
  font-size: 18px;
  font-weight: 400;
  padding: 18px;
  padding-left: 20px;
  background-color: #df6b86;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  border-radius: 5px;
  line-height: 1.4;
  letter-spacing: .5px;
  margin-top: 10px;
}

/* Rest of your existing FAQ styles */

.faq-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
  
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #A08963;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 25px;
  text-align: left;
  background: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #555;
  transition: all 0.3s;
  font-family: "DM Sans", sans-serif;
}

.faq-question:hover {
  background: #fff5f7;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  background: #e96989;
  font-family: "DM Sans", sans-serif;
  
}
.faq-answer p {
  padding: 15px 0; 
  line-height: 1.3;
  margin: 0;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 25px;
  background: #e96989;
}

/* faq mobile responsive */

@media (max-width: 992px) {
  #faq-section {
    flex-direction: column;
    padding: 20px 15px;
  }

  .faq-heading {
    width: 100%;
    margin-bottom: 30px;
    margin-top: 2rem;
    text-align: center;
    padding: 0 10px;
  }

  .faq-heading h2 {
    font-size: 1.8rem;
    padding-left: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .faq-image {
    margin: 0 auto;
    padding-left: 0;
    max-width: 120px;
  }

  .animation_image {
    margin-top: 10px;
  }

  .faq_text {
    padding: 15px;
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
  }

  .faq-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
  }

  .faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .faq-heading h2 {
    font-size: 1.5rem;
  }

  .faq_text {
    font-size: 18px;
    padding: 12px;
  }

  .faq-question {
    padding: 12px 15px;
    font-size: 15px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .faq-item {
    margin-bottom: 10px;
  }
}


/* footer */

.footer {
  position: relative;
  background: #161616bb;
  color: #fff;
  width: 100%;
  padding-top: 4rem;
  
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1; 
   
}

.wave-image {
  width: 100%;
  height: auto;
  display: block;
  
}

.footer_container {
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 5px;
  padding: 0 1rem; /* Reduced from 2rem */
  gap: 1rem;
}

.footer-col {
  flex: 1;
  min-width: 200px; /* Prevent columns from getting too narrow */
  padding: 0 10px;
  
}

.footer_logo {
  display: flex;
  align-items: center;
  gap: 8px; /* Reduced from 10px */
  margin-bottom: 15px;
  
}
.footer-content {
  position: relative;
  justify-items: center;
  z-index: 2; /* Content above wave */
  
}
.footer_logo img {
  width: 90px;
  height: auto;
}

.footer_logo h2 {
  font-family: "DM Sans", sans-serif;
  color: #fff;
}

.footer_about {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 20px;
  font-family: "DM Sans", sans-serif;
  text-align: start;
  
}

.footer-col h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 1px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #e96989;
}

.footer_navlinks,
.footer_teamlinks,
.footer_privacy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  
}
.footer_navlinks a,
.footer_teamlinks a,
.footer_privacy a{
  text-decoration: none;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;

}
.footer_socialmedia a{
  text-decoration: none;
}

.footer_col a {
  text-decoration: none;
  color: #fff;
  opacity: 0.8;
  font-size: 1.1rem;
  transition: all 0.3s ease;
   
}
/* hover link */
.footer_navlinks a:hover {
  opacity: 1;
  color: #e96989;
  padding-left: 5px;
}
.footer_teamlinks a:hover{
  opacity: 1;
  color: #e96989;
  padding-left: 5px;

}
.footer_privacy a:hover{
  opacity: 1;
  color: #e96989;
  padding-left: 5px;

}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 35px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #e96989;
  transform: translateY(-3px);
}

.footer_btn {
  background: #e96989;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;

}

.footer_btn:hover {
  background: #d45a7a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233, 105, 137, 0.3);
}

.footer_underline {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.copy_writes {
  padding: 1rem 0;
  text-align: center;
}

.copy_writes p {
  margin: 0;
  font-size: 1.2rem;
  opacity: 0.7;
  font-family: "DM Sans", sans-serif;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #e96989; /* Your brand color */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top i {
  font-size: 20px;
}

.back-to-top:hover {
  background-color: #d85a7a; /* Darker shade on hover */
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 90px; 
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #25D366; 
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.whatsapp-float i {
  font-size: 24px;
}

.whatsapp-float {
  
  animation: whatsappGlowFast 0.5s infinite;
}

.whatsapp-float:hover {
  animation: whatsappGlow 2s infinite;
  transform: scale(1.1);
}

@keyframes whatsappGlow {
  0% {
    box-shadow: 0 0 5px #25D366;
  }
  50% {
    box-shadow: 0 0 20px #25D366;
  }
  100% {
    box-shadow: 0 0 5px #25D366;
  }
}
@keyframes whatsappGlowFast {
  0% {
    box-shadow: 0 0 5px #25D366;
  }
  50% {
    box-shadow: 0 0 25px #25D366;
  }
  100% {
    box-shadow: 0 0 5px #25D366;
  }
}

.whatsapp-float.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}


/* footer Responsive Design */
@media (max-width: 768px) {
  .footer_container {
    flex-direction: column;
    
  }
  
  .footer-col {
    min-width: 100%;
    text-align: center;
  }
  
  .footer_logo {
    justify-content: center;
  }
  
  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-col h3{
    font-size: 17px;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer_btn {
    /* width: 50%; */
    font-size: 16px;
    padding: 5px 7px;
    
  }
.footer_navlinks a,
.footer_teamlinks a,
.footer_privacy a{
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;

}
.footer_about {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 20px;
  font-family: "DM Sans", sans-serif;
  text-align: center;
  
}
}

/* mobile responsive using media query */

@media (max-width: 768px) {
  .gap {
    margin-left: 20px;
    margin-right: 20px;
  }
  .faq-image {
    max-width: 120px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(233,105,137,0.2));
  }
}

/* Header */
@media (max-width: 768px) {
  .header_container {
    flex-wrap: wrap;
    padding-bottom: 15px;
  }
  body {
    overflow-x: hidden;
    width: 100vw;
    
  }

}

@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }
}

@media (max-width: 576px) {
  .header_container nav ul li {
    margin: 0 5px;
    font-size: 14px;
  }
  
  .header_btn {
    width: auto;
    padding: 0 15px;
  }
}

/* mobile responsive for hero section */

@media (max-width: 768px) {
  header {
    padding: 10px 0;
    margin-top: 0;
}
  #hero_page {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0 20px;
    justify-content: center;
    gap: 2rem;
    
  }

  /* Logo adjustment */
  .logo img {
    width: 70px;
    height: auto;
  }

  /* Text section - top aligned */
  .hero_leftside {
    padding-top: 5vh;
    text-align: center;
    color: #e96989;
    margin-left: 20px;
    flex: 0 0 auto;
    align-items: center;
  }

  .hero_leftside h1 { 
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.3;
    margin: 0 auto 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
  }

  /* Contact form - bottom centered */
  .hero_rightside {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    max-height: fit-content;
 
  }
  .contact-form {
    max-height: none;
    
  }
  
.glassmorphism .form-group {
  margin-bottom: 0;
}

.glassmorphism .form-group label {
  color: #666;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  padding-top: 5px;
}

.glassmorphism .form-group input {
  width: 100%;
  padding: 10px 10px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #666;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: white;
  transition: all 0.3s ease;
}

.glassmorphism .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.glassmorphism .form-group input:focus {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

  /* Gift box positioning */
  .giftbox_thread {
    position: absolute;
    width: 100px;
    left: 35%;
    top: 45%;
    transform: translateX(-50%);
    animation: bottomShake 3s infinite ease-in-out;
    z-index: 10;
  }
  .video-background {
    height: 100%;
  }
}


/* tablet view */
@media only screen and (min-width: 768px) and (max-width: 992px){
  .giftbox_thread {
    position: absolute;
    width: 100px;
    left: 45%;
    top: 58%;
    transform: translateX(-50%);
    animation: bottomShake 3s infinite ease-in-out;
    z-index: 10;
  }
  

}

/* About Section */
@media (max-width: 992px) {
  #about_page {
    flex-direction: column;
  }
  
  .left_content {
    margin-bottom: 30px;
  }
  
  .right_image img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
  }
  
  .social_media_about {
    text-align: center;
  }
  
  .social_media_about a {
    margin: 0 15px;
    font-size: 1.6rem;
  }
}

/* How It Works Section */
@media (max-width: 768px) {
  .card-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    min-height: 250px;
    padding: 20px;
  }
  
  .card-item {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .card-item {
    width: 100%;
  }
  .user-image {
    width: 70px;
    height: 70px;
  }
  
}

/* Testimonials */
@media (max-width: 992px) {
  .testi1_container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .container_testimonial {
    width: 80%;
  }
}

@media (max-width: 576px) {
  .container_testimonial {
    width: 100%;
  }
  
  .container_testimonial img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }
}


/* Clients Section */
@media (max-width: 768px) {
  :root {
    --marquee-elements-displayed: 3;
  }
  
  .marquee-content li {
    font-size: calc(var(--marquee-height)*2/4);
  }
}

/* Contact Section */
@media (max-width: 768px) {
  .contact-right {
    width: 90%;
  }
  
  .contact_heading h1 {
    font-size: 1.8rem;
  }
  
  .contact_heading p {
    font-size: 1rem;
  }
}

/* Footer */
@media (max-width: 768px) {
  .footer {
    padding: 4rem 2rem 0 2rem;
  }
  
  .footer_container {
    display: flex;
    flex-direction: column;
  }
  .cursor-dot,.cursor-outline{
    display: none;
  }
  
}
@media (min-width: 768px) and (max-width: 992px) {
  .footer {
    padding: 4rem 3rem 0 3rem;
  }
  
  .footer_container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  } 
  .cursor-dot,.cursor-outline{
    display: none;
  }
}
  

/* Adjust font sizes for better mobile readability */
@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  p {
    font-size: 0.9rem;
  }
}

/* mouse follow effect */
.cursor-dot,.cursor-outline{
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

/* chatbot style */

.chatbot-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 999;
}

.chatbot-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #5433FF, #20BDFF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .chatbot-icon {
    width: 45px;
    height: 45px;
    
  }
  .chatbot-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 999;
  }
  
}

#otp_input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #A08963;
  border-radius: 4px;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-family: "DM Sans", sans-serif;
}
.chatbot-icon i {
  font-size: 28px;
  color: white;
}

.chatbot-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

/* Chatbot Window */
.chatbot-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-header {
  background: linear-gradient(135deg, #5433FF, #20BDFF);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h3 {
  margin: 0;
  font-size: 18px;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.chatbot-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background: #f9f9f9;
}

.chatbot-input {
  display: flex;
  padding: 10px;
  background: white;
  border-top: 1px solid #eee;
}

.chatbot-input input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 30px;
  outline: none;
}

.chatbot-input button {
  width: 45px;
  height: 45px;
  border: none;
  background: #5433FF;
  color: white;
  border-radius: 50%;
  margin-left: 10px;
  cursor: pointer;
}

/* Message styling */
.message {
  margin-bottom: 15px;
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 18px;
  line-height: 1.4;
}

.user-message {
  background: #5433FF;
  color: white;
  margin-left: auto;
  border-bottom-right-radius: 5px;
}

.bot-message {
  background: #e5e5ea;
  color: black;
  margin-right: auto;
  border-bottom-left-radius: 5px;
}
