/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffffff;
    min-height: 100vh;
}
.hide-scrollbar {
  overflow: auto; /* or scroll, depending on your layout */
  
  /* Hide scrollbar for Chrome, Safari, and Edge */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* Internet Explorer / Edge (legacy) */
}

.hide-scrollbar::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}
/* Sticky Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    z-index: 1000;
    height: 72px;
}
.header2 {
    background-color: #E4406E;
}

.header-content {
    max-width: 430px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo */
.logo {
    margin-left: 16px;
    display: flex;
    align-items: center;
    height: 40px;
}

.logo img {
    width: 96.4px;
    height: 40px;
    object-fit: contain;
}

/* Header Buttons Container */
.header-buttons {
    display: flex;
    align-items: center;
    margin-right: 16px;
    gap: 12px;
}

/* Book Button */
.btn-book {
    width: 100px;
    height: 40px;
    background-color: #E43E6C;
    border: 1px solid #F6ABBC;
    border-radius: 20px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn-book2 {
    background-color: #ffffff;
    border: 1px solid #F6ABBC;
    color: #E4406E;
}

.btn-book:hover {
    background-color: #d02555;
    transform: translateY(-1px);
}

.btn-book:active {
    transform: translateY(0);
}

/* Navigation Menu Button */
.btn-nav {
    width: 42px;
    height: 38px;
    background-color: #FAD1DA;
    border: 1px solid #F6ABBC;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.3s ease;
    outline: none;
    position: relative;
}
.btn-nav2 {
    background-color: #ffffff;
}
.btn-nav:hover {
    background-color: #f8bfcf;
    transform: scale(1.05);
}

.btn-nav:active {
    transform: scale(0.98);
}

/* Navigation Button Lines */
.nav-line {
    width: 18px;
    height: 2px;
    background-color: #E43E6C;
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* Navigation Open State */
.btn-nav.active .nav-line:first-child {
    transform: rotate(45deg) translate(2px, 2px);
}

.btn-nav.active .nav-line:last-child {
    transform: rotate(-45deg) translate(2px, -2px);
}

/* Main Container */
.main-container {
    padding-top: 72px; /* Account for sticky header */
    min-height: calc(100vh - 72px);
}

/* Segments - Full Width Background */
.segment {
    width: 100%;
    padding: 0;
}

/* Segment Content - Centered with Max Width */
.segment-content {
    max-width: 430px;
    margin: 0 auto;
    padding: 0;
}

/* Different Background Colors for Each Segment */
.segment-1-bg {
  background-image: url("image/section1-bg.png");
  background-repeat: no-repeat;
  background-size: cover;     /* or contain, depending on look */
  background-position: center bottom; /* show behind the button a bit */
}

#segment-4 {
    background: linear-gradient(to bottom, #E43E6C00 0%, #E43E6C 100%); /* Light Green */
}
.gradient {
    background: linear-gradient(to bottom, #E43E6C00 0%, #E43E6C 100%); /* Light Green */
}
#segment-5 {
    background-color: #E43E6C; /* Light Orange */
}

#segment-6 {
    background: linear-gradient(to top, #E43E6C00 54%, #E43E6C 100%); /* Light Green */
}

.segment-12-bg {
  background-image: url("image/section12-bg.png");
  background-repeat: no-repeat;
  background-size: contain;     /* or contain, depending on look */
  background-position: center bottom; /* show behind the button a bit */
}
#segment-13 {
    background-color: #E43E6C; /* Light Rose */
}

/* Responsive adjustments for smaller screens */

/* Text alignment utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Display utilities */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }

/* Flexbox utilities */
.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }

/* Loading and animation classes */
.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Navigation Menu (hidden by default) */
.mobile-nav {
    position: fixed;
    top: 72px;
    right: -100%;
    width: 100%;
    max-width: 430px;
    height: calc(100vh - 72px);
    background-color: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-content {
    padding: 20px;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 10px;
}

.mobile-nav a {
    display: block;
    padding: 12px 16px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background-color: #FAD1DA;
    color: #E43E6C;
    transform: translateX(5px);
}

/* Custom CSS */
.bg-primary { background-color: #E43E6C}
.bg-primary2 { background-color: #FDE6EA}
.bg-secondary { background-color: #F6ABBC}
.bg-F07C99 {background-color: #F07C99}
.bg-B393D2 {background-color: #B393D2}
.bg-FCFBF7 {background-color: #FCFBF7}
.bg-white { background-color: #ffffff}
.bg-FEF2F4 { background-color: #FEF2F4}
.bg-FDE6EA { background-color: #FDE6EA}

.border-primary {border: solid 1px #E43E6C }
.border-E43E6C {border: solid 1px #E43E6C }
.border-secondary {border: solid 1px #F6ABBC }
.border-D9C8EA {border: solid 1px #D9C8EA }
.border-FDE6EA {border: solid 1px #FDE6EA }
.border-FAD1DA {border: solid 1px #FAD1DA }
.float-left {float: left;}

.w-20 {width: 20%}
.w-100 {width: 100%}

.h-10px {height: 10px}
.h-20px {height: 20px}
.h-40px {height: 40px}
.h-44px {height: 44px}
.h-52px {height: 52px}

/* Margins */
.mt-8 {margin-top: 8px}
.mt-10 {margin-top: 10px}
.mt-12 {margin-top: 12px}
.mt-18 {margin-top: 18px}
.mt-16 {margin-top: 16px}
.mt-20 {margin-top: 20px}
.mt-24 {margin-top: 24px}
.mt-28 {margin-top: 28px}
.mt-40 {margin-top: 40px}
.mt-55 {margin-top: 55px}

.mb-40 {margin-bottom: 40px}
.mb-20 {margin-bottom: 20px}
.mb-64 {margin-bottom: 64px}
.mb-80 {margin-bottom: 80px}

.ml-6 {margin-left: 6px}
.ml-12 {margin-left: 12px}
.ml-20 {margin-left: 20px}
.ml-40 {margin-left: 40px}

.mr-20 {margin-right: 20px}

/* Paddings */
.pt-8 {padding-top: 8px}
.pt-12 {padding-top: 12px}
.pt-14 {padding-top: 14px}
.pt-20 {padding-top: 20px}
.pt-28 {padding-top: 28px}
.pt-24 {padding-top: 24px}
.pt-40 {padding-top: 40px}
.pt-60 {padding-top: 60px}
.pt-80 {padding-top: 80px}

.pb-12 {padding-bottom: 12px}
.pb-13 {padding-bottom: 13px}
.pb-14 {padding-bottom: 14px}
.pb-20 {padding-bottom: 20px}
.pb-40 {padding-bottom: 40px}
.pb-60 {padding-bottom: 60px}
.pb-80 {padding-bottom: 80px}

.pl-8 {padding-left: 8px}
.pl-12 {padding-left: 12px}
.pl-14 {padding-left: 14px}
.pl-20 {padding-left: 20px}
.pl-40 {padding-left: 40px}

.pr-8 {padding-right: 8px}
.pr-12 {padding-right: 12px}
.pr-14 {padding-right: 14px}
.pr-20 {padding-right: 20px}
.pr-40 {padding-right: 40px}

.rounded-8 {border-radius: 8px}
.rounded-12 {border-radius: 12px}
.rounded-22 {border-radius: 22px}
.rounded-24 {border-radius: 24px}
.rounded-28 {border-radius: 28px}
.rounded-44 {border-radius: 44px}
.rounded-50 {border-radius: 50px}

/* stack Every child will occupy the same grid cell */
.stack { display: grid;}
.stack > * {grid-area: 1 / 1;}
.stack-align-end {align-items: end}

/* Text */
.poppins { font-family: 'Poppins', sans-serif;}
.tnr { font-family: 'Times New Roman', Times, serif;}
.font-weight-400 {font-weight: 400;}
.font-weight-600 {font-weight: 600;}
.font-weight-700 {font-weight: 700;}
.font-white { color: #ffffff}
.font-primary { color: #E43E6C}
.font-D22C62 { color: #D22C62}
.font-9165B8 { color: #9165B8}
.font-1E1E1E { color: #1E1E1E}
.font-text { color: #444444}
.font-secondary { color: #F6ABBC}
.semi-bold {font-weight: semi-bold;}
.bold {font-weight: bold;}
.italic {font-style: italic;}
.font-size-12 {font-size: 12px;}
.font-size-14 {font-size: 14px;}
.font-size-20 {font-size: 20px;}
.font-size-28 {font-size: 28px;}
.font-size-40 {font-size: 40px;}
.line-height-100 {line-height: 100%;}
.line-height-130 {line-height: 130%;}
.line-height-140 {line-height: 140%;}
.line-height-150 {line-height: 150%;}
.letter-spacing-0 {letter-spacing: 0%;}
.letter-spacing-5 {letter-spacing: 5%;}
.letter-spacing-min3 {letter-spacing: -3%;}
.letter-spacing-min4 {letter-spacing: -4%;}
.letter-spacing-min2 {letter-spacing: -2%;}
.h-align-center {display: flex;justify-content: center;}
.v-align-middle {display: flex;align-items: center;}
.v-align-bottom {display: flex;align-items: flex-end;}
.vertical-trim-cap-height {font-size-adjust: cap-height;}


/* Testimonies secstion*/
/* Horizontal scroll container */
.testimonial-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;  /* hide scrollbar IE/Edge */
  scrollbar-width: none;     /* hide scrollbar Firefox */
}
.testimonial-scroll::-webkit-scrollbar {
  display: none;             /* hide scrollbar Chrome/Safari */
}

.testimonial-card {
  flex: 0 0 100%; /* each card takes 80% width */
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
}

/* Make all cards have the same height (based on tallest) */
.testimonial-scroll.equalized {
  align-items: stretch;
}

/* Active dot */
.dot.active {
  background-color: rgba(255, 255, 255, 1) !important;
}

/*LOGO GRID*/
.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px; /* applies both column and row gap */
}


.logo-grid img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/*FAQ*/
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
}
.cursor {
    cursor: pointer;
    transform: translateY(-1px);
}
.accordion-title {
  flex: 1;
  padding-right: 10px; /* space between text and icon */
}

.accordion-icon {
  width: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding-top 0.3s ease;
  opacity: 0;
  padding-top: 0; /* no space when closed */
}

.accordion-item.active .accordion-content {
  max-height: 200px; /* adjust if needed */
  opacity: 1;
  padding-top: 12px; /* smooth space animation when open */
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}
.nav-panel {
    position: fixed;
    top: 72px;
    width: 100vw;
    height: 100vh;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 999;
}

.nav-panel.active {
    transform: translateY(0);
}
/* Scroll Animation */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.scroll-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for child elements */
.segment-content .scroll-animate:nth-child(1) { transition-delay: 0s; }
.segment-content .scroll-animate:nth-child(2) { transition-delay: 0.1s; }
.segment-content .scroll-animate:nth-child(3) { transition-delay: 0.15s; }
.segment-content .scroll-animate:nth-child(4) { transition-delay: 0.2s; }
.segment-content .scroll-animate:nth-child(5) { transition-delay: 0.25s; }
.segment-content .scroll-animate:nth-child(6) { transition-delay: 0.3s; }
.segment-content .scroll-animate:nth-child(7) { transition-delay: 0.35s; }
.segment-content .scroll-animate:nth-child(8) { transition-delay: 0.4s; }