@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-padding-top: 2rem;
    scroll-behavior: smooth;
}

:root {
    --pink-color: #f46fa1;
    --light-green-color: #c0eb7b;
    --orange-color: #ffa500;
    --light-orange-color: #ff7e00;
    --text-color: #1a2428;
    --bg-color: #fff;
}

section {
    padding: 4.5rem 0 1.5rem;
}

@media(max-width: 768px) {
  section {
    padding: 1rem
  }
}

img {
    width: 100%;
}

body {
    color: var(--text-color);
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-color);
    box-shadow: 0 8px 11px rgb(14 55 55 / 15%);
    padding: 20px 100px;
    transition: 0.5s;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 600;
    color: #222;
    column-gap: 0.5rem;
    letter-spacing: 0;
}

@media (max-width: 768px){
  .logo {
    font-size: 1.4rem;
    padding-bottom: 5px;
  }
  
}


.logo span {
  color: #f46fa1; /* Pink for "Lashes" */
  font-weight: 700;
}

.logo .bx {
    font-size: 24px;
    color: var(--orange-color);
}

.navbar {
    display: flex;
    column-gap: 0.5rem;
}

.navbar a {
    font-size: 1.2rem;
    font-weight: 540;
    color: var(--text-color);
    padding: 0.5rem 1rem;
}

.navbar a:hover, .navbar  a.active {
    background: var(--pink-color);
    border-radius: 5rem;
    color: var(--bg-color);
    transition: 0.65s;
}

#menu-icon  {
    font-size: 3rem;
    cursor: pointer;
    z-index: 2001;
    display: none;

    position: fixed;
}


/* When menu is open, show X */
#menu-icon.active::before {
  content: "\00d7"; /* Unicode for × (X) */
  font-size: 4.4rem;
  color: #000000; 
  top: -860px;
}

#menu-icon.active {
  color: #000000;
}

/* Hide the hamburger when active, since ::before will show the X */
#menu-icon.active {
  font-size: 0;
}



/* Show hamburger and hide navbar on small screens */
@media (max-width: 768px) {
  #menu-icon {
    display: block;
    right: 20px;
    margin-left: 20px;
  }

  .navbar {
    display: none; /* hide nav links by default on mobile */
    position: fixed;
    top: 0; /* below the header */
    right: 0;
    background: var(--bg-color);
    width: 250px;
    height: 100vh;
    padding: 2rem 1rem;
    flex-direction: column;
    box-shadow: -4px 0 8px rgb(0 0 0 / 0.1);
    transition: transform 1.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
   
  }

  /* When menu is active (you toggle this class with JS) */
  .navbar.active {
    display: flex;
    transform: translateX(0);
    padding-top: 75px;

  }
}

.idk {
  padding-left: 100px;
}

/* The Slide thingy */
.container {
    position: relative;
    width: 200%;
    min-height: 640px;
    display: flex;
    align-items: center;
    background: url();
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.container img {
    width: 900px;
    position: absolute;
    bottom: 0px;
    right: 200px;
}



.home-text {
    padding: 0 270px;
    padding-top: 250px;
    background-color: rgb(255, 255, 255);
}

.home-text span {
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: var(--pink-color);
}

.home-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.btn {
    padding: 0.6rem 1rem;
    background: rgb(250, 86, 155);
    color: var(--bg-color);
    font-weight: 7  00;
    border-radius: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 0.5rem;
    max-width: 160px;
}
 
@media (max-width: 900px) {
  .about-content .btn{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  
}


.btn .bx {
    padding: 4px;
    background-color: var(--bg-color);
    color: var(--text-color);
    border-radius: 1rem;
    font-size: 20px;
    margin: auto;
}

.button-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.span-container{
  justify-content: center;
  align-items: center;
  display: flex;
  
}




.btn:hover {
    background: rgb(251, 68, 144);
    transition: 0.35s ease;
}

.swiper-button-next, .swiper-button-prev {
    color: black !important;
}


/* Heading Section */
.heading {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.2rem 1rem;
  padding-top: 4.5rem;
  text-align: center;
}

.heading h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  position: relative;
  padding-top: 30px;
  margin-bottom: 0.4rem;
}

.heading h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f46fa1;
  margin: 1rem auto 0;
  border-radius: 2px;
}


/* Heading for policies */
.heading-policies{
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  padding-top: 4.5rem;
  text-align: center;
}

.heading-policies h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  position: relative;
  padding-top: 30px;
  margin-bottom: 0.4rem;
}

.heading-policies h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f46fa1;
  margin: 1rem auto 0;
  border-radius: 2px;
}

@media (max-width:768px){
  .heading-policies {
    padding-top: 1rem;
  }
  
}


/* THIS IS FOR THE PRICES SECTION */
/* Responsive */
@media (max-width: 768px) {
  .heading h1 {
    font-size: 2rem;
    padding-left: 0;
  }
}

.categories-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem;
  padding-bottom: 100px;
  
}

@media (min-width: 992px) {
  .categories-container {
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
  }
}

.box {
  background: #fff;
  padding: 1.2rem 0.7rem;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.09);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 270px;   /* Set a fixed height for all cards */
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  justify-content: space-between;
}

.box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(244, 111, 161, 0.3);
}

.column {
  background-color: #fff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  width: 100%;  
  flex: 1;       /* Take full width of .box */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  box-sizing: border-box;
  min-height: 200px;
}

@media (max-width: 900px) {
  .categories-container {
    padding: 0.1rem;
    gap: 1rem;
  
  }
  .box {
    max-width: 200px; /* Prevent overflow */
    padding: 0.1rem 0.222222222222rem;
    
  }
}


.box h2 {
  margin-top: 10px;
}

.column h3 {
  font-size: 1rem;
  color: #f46fa1;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.column p {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 0.8rem;
  line-height: 1.3;
  font-weight: 450;
}

.column .price {
  font-size: 1.5rem;
  color: #ff4081;
  font-weight: 700;
}

.column button {
  margin-top: auto;
  background-color: rgb(252, 118, 174);
  color: white;
  border: none;
  padding: 7px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-shadow: 1px 1px 1px black;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 140px;
}

.column button:hover {
  background-color: #fd3a7b;
} 

@media (max-width: 991px) {
  .categories-container {
    grid-template-columns: 1fr 1fr; /* 2 columns for mobile */
    gap: 1rem;
    padding: 1rem;
  }

  .box {
    max-width: 100%;
    width: 100%;
    padding: 1rem;
    min-height: 280px; /* Ensures boxes stay even */
    box-sizing: border-box;
  }

  .column {
    padding: 1rem;
    min-height: 180px;
  }

  .box h2 {
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }

  .column h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .column p {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
  }

  .column .price {
    font-size: 1.2rem;
  }

  .column button {
    padding: 6px 16px;
    font-size: 0.9rem;
  }
}














.about-me {
  padding: 3.5rem 10rem;
  background-color: #fef7fb;
  padding-bottom: 10rem;
}

.about-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0.5rem;
}


@media(max-width:768px) {
  .about-container {
    padding-top: 0.5rem;
  }
}

.about-image img {
  width: 400px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}




.about-content {
  max-width: 600px;
  padding-left: 100px;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.about-content h2 span {
  color: var(--pink-color);
}

.about-content p {
  font-size: 1.4rem;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Heading-Me Section */
.heading-me {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: center;
}

@media(max-width:768px) {
  .heading-me {
    padding: 0.5rem;
  }
}

.heading-me h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  position: relative;
  padding-top: 00px;
  margin-bottom: 1.5rem;
}

.heading-me h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f46fa1;
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .heading-me h1 {
    font-size: 2rem;
  }

    .about-container {
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 1rem;
    padding: 2rem;
    overflow-x: auto;
  }

  .about-content {
    padding-left: 1rem;
    max-width: none;
    flex: 1;
  }

  .about-image img {
    width: 200px;
    flex-shrink: 0;
  }
  
}


/* FOR THE COMMENTS */
/* Section Header */
.text-about-review {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.text-about-review h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.2;
}

.text-about-review span {
  color: #f46fa1;
}

/* Container Layout */
.container-text {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Top Text Section */
.container-left {
  text-align: center;
}


.container-left p {
  color: var(--text-color);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Cards Grid */
.container-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.5rem;
}

/* Card Styles */
.card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  width: 100%;
  max-width: 350px;
  transition: transform 0.3s ease;
}

.star-rating {
  margin-top: 0.5rem;
  font-size: 1.1rem;
}


.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(244, 111, 161, 0.3);
}

.card img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.7rem;
}

@media (max-width: 900px) {
  .container-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .card {
    max-width: 95vw;
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 1.2rem 1rem;
    gap: 0.7rem;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
  .card img {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    margin-right: 1rem;
  }
  .card-content {
    align-items: flex-start;
    text-align: left;
    gap: 0.3rem;
  }
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-content span i {
  font-size: 1.5rem;
  color: #f46fa1;
}

.card-details {
  font-style: italic;
  font-size: 1rem;
  color: var(--text-color);
}

.card-details h4 {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  text-align: right;
}


/* Text About Review Section */
.text-about-review {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.2rem 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 0px;
}

.text-about-review h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  position: relative;
  margin: 0 auto;

  text-align: center;
  position: relative;

}

.text-about-review h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f46fa1;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.text-about-review span {
  color: #f46fa1;
}

/* Responsive */
@media (max-width: 768px) {
  .text-about-review h1 {
    padding-left: 0;
    font-size: 2rem;
  }
}


.text-about-review > * {
  flex: 1;
  min-width: 260px;
}

@media (max-width: 768px) {
  .text-about-review {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .text-about-review h1 {
    padding-left: 0;
    font-size: 2rem;
    padding-bottom: 20px;
  }
}



@media (max-width: 1200px) {
  .container-text {
    gap: 3rem;
  }
  header {
    padding: 20px 40px;
  }
  .home-text {
    padding: 200px 100px 0;
  }
}

@media (max-width: 800px){
  .container-text {
    grid-template-columns: repeat(2, 1fr);
  }
  .container-right{
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    padding-left: 0;
  }
  .home-text {
    padding: 180px 50px 0;
  }
}



@media (max-width: 900px){
  header {
    padding: 15px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .home-text h1 {
    font-size: 2rem;
  }
  .home-text span {
    font-size: 1rem;
  }
  .heading h1, .heading-me h1 {
    padding-left: 20px;
    font-size: 1.8rem;
  }
  .about-me {
    padding: 2rem 1rem;
  }
  .about-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .about-image img {
    width: 90%;
  }
  .about-content p {
    font-size: 1.1rem;
  }
}

/* Footer  */
.footer {
  background-color: #fef7fb;
  color: #1a2428;
  padding: 3rem 2rem 1rem;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #eee;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-brand h2 {
  font-size: 2.5rem;
  font-weight: 700;

  color: #1a2428;
}

@media (max-width: 768px) {
  .footer-brand h2 {
    font-size: 2rem;   
  }
}


.footer-brand h2 span {
  color: #f46fa1;
}

.footer-brand p {
  font-size: 1.2rem;
  font-weight: 410;
  max-width: 300px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.4rem;
  color: #f46fa1;
  font-weight: 700;
}

.footer-links ul {
  padding: 0;
  font-size: 19px;
}

.footer-links ul li {
  margin-bottom: 0.3rem;
}

.footer-links ul li a {
  color: #1a2428;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #f46fa1;
}

.footer-contact p {
  font-size: 19px;
  margin: 0.5rem 0;
}

.footer-socials {
  margin-top: 1rem;
}

.footer-socials a {
  font-size: 1.5rem;
  color: #f46fa1;
  margin-right: 1rem;
  transition: transform 0.3s ease;
}

.footer-socials a:hover {
  transform: scale(1.2);
}


/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-links, .footer-contact {
    margin: 0 auto;
  }
}


/* MY WORK SECTION */
.work-section {
  background: #fff;
  padding: 5rem 2rem;
  text-align: center;
}
/* Section Title */
.section-title {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: center;
}

@media (max-width: 768px) {
  .section-title{
    padding-bottom: 0px;
    padding-top: 1rem;
  }
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  position: relative;
  padding-top: 27px;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f46fa1;
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }
}



.section-title p {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 7rem;
  max-width: 1200px;
  margin: 0 auto;
}

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.work-card:hover img {
  transform: scale(1.05);
}

.work-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  text-align: left;
}

.work-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.work-info p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.2rem;
  }

  .section-title p {
    font-size: 1rem;
  }

  .work-info h3 {
    font-size: 1.1rem;
  }

  .work-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Before Appointment Section */
.before-appointment {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem;
  padding-top: 4rem;
  text-align: center;
}

.before-appointment-grid {
  display: grid;
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto 6rem auto;
  width: 100%;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  box-sizing: border-box;

  /* Default: 1 column on mobile */
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  /* Medium screens: 2 columns */
  .before-appointment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  /* Large screens: 3 columns */
  .before-appointment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

#apt {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #333;
  position: relative;
  padding-top: 105px;
}

#apt::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f46fa1;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.before-appointment-card {
  background: #fff;
  padding: 1.2rem 0.7rem;
  border-radius: 15px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.09);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 210px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.before-appointment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.before-appointment-card h4 {
  font-size: 1.1rem;
  color: #f46fa1;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.before-appointment-card p {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 0.8rem;
  line-height: 1.6;
  margin-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  #apt {
    font-size: 2rem;
  }

  .before-appointment-card {
    padding: 1.5rem;
  }
}





/* ======================== */
/* Section Wrapper */
#hours {
  background-color: #fff;
  padding: 3rem 1.5rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title */
.section-title-line {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  position: relative;
  padding-top: 6rem;
}

@media (max-width: 768px) {
  .section-title-line{
    padding-top: 2.5rem;
  }
}

.section-title-line::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--pink-color);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Info Section Grid */
.info-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* Each Info Box */
.info-box {
  flex: 1 1 300px;
  background-color: #fafafa;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
}

/* Box Titles */
.info-box h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 200px;
}

/* List Items */
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.info-list li {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: #444;
  line-height: 1.5;
  font-weight: 900px;
}

.info-list a {
  color: var(--pink-color);
  text-decoration: none;
  font-weight: 900px;
}

.info-list a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .info-box {
    padding: 1.5rem;
  }

  .section-title-line {
    font-size: 2rem;
  }

  .info-box h3 {
    font-size: 1.4rem;
  }

  .info-list li {
    font-size: 0.95rem;
  }
}


/* CONTACT FORM */

/* Contact Section Styles */
/* Contact Section Styles */
.contact-section {
  background: #ffffff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  margin-top: 100px;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 1rem;
    padding-bottom: 2rem;
  }
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-container h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-container h2 span {
  color: #e45a84;
}

.subtitle {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #555;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

@media(max-width:768px) {
  .contact-form {
    padding-top: 0px;
  }
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 1rem;
  font-size: 1rem;
  resize: none;
  



}

.contact-form button {
  background-color: rgb(254, 83, 154);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.contact-form button:hover {
  background-color: #fa3070;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container h2 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 0.95rem;
  }
}








/* --- Ultra-Luxury Swiper Slider Styles (No Images) --- */
.swiper-slide.container {
  background: linear-gradient(120deg, #fff0f6 0%, #f46fa1 100%);
  min-height: 50vh;
  height: 59vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 0; /* Remove border-radius for full coverage */
  box-shadow: none; /* Remove shadow for edge-to-edge look */
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  transition: background 0.5s;
  z-index: 1;
  backdrop-filter: blur(8px);
  border: none;
}

@media (max-width: 768px){
  .swiper-slide.container{
    height: 45vh;
  }
}

.swiper-slide.container::before,
.swiper-slide.container::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.13;
  animation: float 6s ease-in-out infinite alternate;
}
.swiper-slide.container::before {
  width: 220px;
  height: 220px;
  top: -60px;
  right: -60px;
  background: #fff;
  animation-delay: 0s;
}
.swiper-slide.container::after {
  width: 140px;
  height: 140px;
  bottom: -40px;
  left: -40px;
  background: #f46fa1;
  animation-delay: 2s;
}

@keyframes float {
  0% { transform: translateY(0) scale(1);}
  100% { transform: translateY(20px) scale(1.08);}
}

.swiper-slide.container .home-text {
  position: relative;
  z-index: 1;
  padding: 0;
  background: none;
  text-align: center;
  width: 100%;
}

.swiper-slide.container .home-text span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  background: #f46fa1;
  border-radius: 10rem;
  padding: 0.3rem 1.2rem;
  box-shadow: 0 2px 8px rgba(244, 111, 161, 0.08);
  backdrop-filter: blur(2px);
  border: 1px solid #f46fa1;
}

.swiper-slide.container .home-text h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #1a2428;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  letter-spacing: 1px;
  background: linear-gradient(90deg, #000000 90%, #000000 20%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.swiper-slide.container .button-container {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 1.2rem;
}

.swiper-slide.container .btn {
  font-size: 1.18rem;
  padding: 0.7rem 0.8rem;
  column-gap: 0.3rem;
  max-width: fit-content;
  border-radius: 2.5rem;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 18px 0 rgba(244, 111, 161, 0.18), 0 1.5px 8px rgba(255, 165, 0, 0.09);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 8px #f46fa1aa);
}

.swiper-slide.container .btn:hover {
  transform: translateY(-3px) scale(1.06);
  color: #fff;
  box-shadow: 0 4px 24px 0 #8f44953a;
}

/* Hide images in slider */
.swiper-slide.container img {
  display: none !important;
}

/* Swiper navigation arrows */
.swiper-button-next, .swiper-button-prev {
  color: #000000 !important;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  top: 50%;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  opacity: 0.95;
}

/* Swiper pagination bullets */
.swiper-pagination-bullet {
  background: #f46fa1 !important;
  opacity: 0.5;
  width: 13px;
  height: 13px;
  margin: 0 7px !important;
  transition: opacity 0.2s, background 0.2s;
  border: 2px solid #fff0f6;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #ffa500 !important;
  box-shadow: 0 2px 8px rgba(244, 111, 161, 0.13);
}

/* Responsive for mobile */
@media (max-width: 900px) {
  .swiper-slide.container {
    min-height: 320px;
    padding: 2rem 0.7rem 1.5rem 0.7rem;
    
  }
  .swiper-slide.container .home-text h1 {
    font-size: 1.7rem;
  }
  .swiper-slide.container .home-text span {
    font-size: 1rem;
    padding: 0.2rem 0.7rem;
  }
  .swiper-slide.container .btn {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
  .swiper-button-next, .swiper-button-prev {
    width: 36px;
    height: 36px;
  }
}


/* --- Infinite Floating Stars Effect (Loop Around) --- */
.star {
  position: absolute;
  border-radius: 50%;
  opacity: 0.85;
  pointer-events: none;
  box-shadow:
    0 0 8px 2px #fff,
    0 0 16px 4px #f46fa1,
    0 0 2px 1px #fff8,
    0 0 24px 8px #fff2;
  animation: star-twinkle 1.1s infinite alternate;
}

/* Each star floats in a unique direction and loops around */
.star         { width: 7px; height: 7px; background: #fff;      left: 10vw; top: 90vh; animation: star-move-1 8s linear infinite, star-twinkle 1.1s infinite alternate; }
.star.star2   { width: 4px; height: 4px; background: #fffbe7;  left: 95vw; top: 10vh; animation: star-move-2 7s linear infinite, star-twinkle 0.9s infinite alternate; }
.star.star3   { width: 6px; height: 6px; background: #ffe0fa;  left: 50vw; top: 100vh; animation: star-move-3 9s linear infinite, star-twinkle 1.2s infinite alternate; }
.star.star4   { width: 5px; height: 5px; background: #fff;     left: 0vw; top: 50vh; animation: star-move-4 6.5s linear infinite, star-twinkle 0.8s infinite alternate; }
.star.star5   { width: 3px; height: 3px; background: #e0e7ff;  left: 80vw; top: 100vh; animation: star-move-5 8.5s linear infinite, star-twinkle 1.1s infinite alternate; }
.star.star6   { width: 8px; height: 8px; background: #fff;     left: 100vw; top: 80vh; animation: star-move-6 7.5s linear infinite, star-twinkle 1.3s infinite alternate; }
.star.star7   { width: 5px; height: 5px; background: #fffbe7;  left: 10vw; top: 0vh; animation: star-move-7 8s linear infinite, star-twinkle 0.7s infinite alternate; }
.star.star8   { width: 4px; height: 4px; background: #ffe0fa;  left: 100vw; top: 30vh; animation: star-move-8 9s linear infinite, star-twinkle 1.4s infinite alternate; }

@keyframes star-move-1 { 100% { left: 90vw; top: 10vh; } }
@keyframes star-move-2 { 100% { left: 5vw; top: 90vh; } }
@keyframes star-move-3 { 100% { left: 80vw; top: 0vh; } }
@keyframes star-move-4 { 100% { left: 100vw; top: 50vh; } }
@keyframes star-move-5 { 100% { left: 10vw; top: 0vh; } }
@keyframes star-move-6 { 100% { left: 0vw; top: 20vh; } }
@keyframes star-move-7 { 100% { left: 90vw; top: 100vh; } }
@keyframes star-move-8 { 100% { left: 0vw; top: 70vh; } }

@keyframes star-twinkle {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}


/* --- Floating Hearts Effect --- */
.heart {
  position: absolute;
  width: 22px;
  height: 22px;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 8px #f46fa1aa);
}
.heart.h1 { left: 40vw; top: 50vh; animation: heart-float-1 11s linear infinite, heart-rotate 2.5s ease-in-out infinite alternate; }
.heart.h2 { left: 20vw; top: 60vh; animation: heart-float-2 13s linear infinite, heart-rotate 3s ease-in-out infinite alternate; opacity: 0.6;}
.heart.h3 { left: 70vw; top: 30vh; animation: heart-float-3 12s linear infinite, heart-rotate 2.2s ease-in-out infinite alternate; opacity: 0.8;}
.heart.h4 { left: 50vw; top: 80vh; animation: heart-float-4 10s linear infinite, heart-rotate 2.8s ease-in-out infinite alternate; opacity: 0.5;}
.heart.h5 { left: 80vw; top: 10vh; animation: heart-float-5 14s linear infinite, heart-rotate 2.6s ease-in-out infinite alternate; opacity: 0.7;}
.heart.h6 { left: 10vw; top: 20vh; animation: heart-float-6 15s linear infinite, heart-rotate 2.9s ease-in-out infinite alternate; opacity: 0.9;}

@keyframes heart-float-1 { 100% { left: 80vw; top: 10vh; } }
@keyframes heart-float-2 { 100% { left: 10vw; top: 80vh; } }
@keyframes heart-float-3 { 100% { left: 60vw; top: 90vh; } }
@keyframes heart-float-4 { 100% { left: 90vw; top: 60vh; } }
@keyframes heart-float-5 { 100% { left: 30vw; top: 20vh; } }
@keyframes heart-float-6 { 100% { left: 70vw; top: 70vh; } }

@keyframes heart-rotate {
  0% { transform: scale(1) rotate(-10deg);}
  100% { transform: scale(1.2) rotate(18deg);}
}

/* --- Floating Butterflies Effect --- */
.butterfly {
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 8px #f46fa1aa);
}
.butterfly.b1 { left: 30vw; top: 40vh; animation: butterfly-float-1 16s linear infinite, butterfly-flap 1.2s ease-in-out infinite alternate; }
.butterfly.b2 { left: 15vw; top: 70vh; animation: butterfly-float-2 18s linear infinite, butterfly-flap 1.4s ease-in-out infinite alternate; opacity: 0.7;}
.butterfly.b3 { left: 80vw; top: 20vh; animation: butterfly-float-3 15s linear infinite, butterfly-flap 1.1s ease-in-out infinite alternate; opacity: 0.9;}
.butterfly.b4 { left: 60vw; top: 85vh; animation: butterfly-float-4 17s linear infinite, butterfly-flap 1.3s ease-in-out infinite alternate; opacity: 0.6;}
.butterfly.b5 { left: 25vw; top: 15vh; animation: butterfly-float-5 19s linear infinite, butterfly-flap 1.5s ease-in-out infinite alternate; opacity: 0.8;}

@keyframes butterfly-float-1 { 100% { left: 75vw; top: 15vh; } }
@keyframes butterfly-float-2 { 100% { left: 25vw; top: 80vh; } }
@keyframes butterfly-float-3 { 100% { left: 70vw; top: 85vh; } }
@keyframes butterfly-float-4 { 100% { left: 90vw; top: 40vh; } }
@keyframes butterfly-float-5 { 100% { left: 60vw; top: 60vh; } }

@keyframes butterfly-flap {
  0% { transform: scale(1) rotate(-8deg);}
  50% { transform: scale(1.1) rotate(8deg);}
  100% { transform: scale(1) rotate(-8deg);}
}


/* Dropdown styles */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;

}






.dropdown-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.arrow {
  font-size: 1rem;
  transition: transform 0.3s;
}



/* Hide dropdown by default */
.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  min-width: 160px;
  margin-top: 0.2rem;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  background: white;
  border-radius: 1rem;
  display: none;
  flex-direction: column;
  padding: 0.5rem 0;
}

.nav-dropdown.open .dropdown-menu {
  display: flex;
}

.nav-dropdown.open .arrow {
  transform: rotate(180deg);
}

/* Style dropdown links */
.dropdown-menu a {
  padding: 0.7rem 1.2rem;
  color: #1a2428;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 0.3rem;
  transition: background 0.2s;
}


@media (max-width: 900px) {
  .nav-dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    left: unset;
    top: unset;
    width: 100%;
    min-width: unset;
    margin-top: 0.2rem;
    box-shadow: none;
    z-index: auto;
    display: none;
    flex-direction: column;
    padding: 0.5rem 0;
    box-shadow: 0 10px 16px rgba(0, 0, 0, 0.2);

  }
  .nav-dropdown.open .dropdown-menu {
    display: flex;
  }
}

/* On desktop, show dropdown on hover (optional) */
@media (min-width: 769px) {
  .dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 180px;
    box-shadow: 0 4px 18px rgba(244, 111, 161, 0.08);
  }
  .nav-dropdown:hover .dropdown-menu {
    display: flex;
  }

  
}


@media (max-width: 992px) {
  .arrow {
  font-size: 2rem;
}
}