/* ================= BASE ================= */


@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');


body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  /* font-family: "Lora", Helvetica, Arial, Lucida, serif; */
}

/* ================= HEADER ================= */
/* ================= HEADER BASE ================= */


/* ================= HEADER ================= */
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 22px 0;
  transition: all 0.4s ease;
}

.header-transparent-bar {
  background: transparent;
}

/* LOGO */
.logo img {
  max-height: 70px;
}

.header-social a {
    text-decoration: none;
}

.white-logo { display: block; }
.black-logo { display: none; }

/* ================= STICKY ================= */
.header-transparent-bar.is-sticky {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 7px 0;
}

.header-transparent-bar.is-sticky .white-logo { display: none; }
.header-transparent-bar.is-sticky .black-logo { display: block; }

/* ================= DESKTOP MENU (UNCHANGED) ================= */
.main-menu ul {
  list-style: none;
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 0;
  padding: 0;
  margin-top:10px;
}

.main-menu ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.header-transparent-bar.is-sticky .main-menu ul li a {
  color: #7b003b;
}

/* ================= SOCIAL ICONS ================= */
.header-social {
  display: flex;
  justify-content: flex-end;
}

.header-social a {
  width: 38px;
  height: 38px;
  border: 2px solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-left: 8px;
  color: #ffffff;
}

.header-transparent-bar.is-sticky .header-social a {
  color: #7b003b;
  border-color: #7b003b;
}

/* ================= HAMBURGER ================= */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
    top: -12px;
   
}

.mobile-menu-toggle span {
  width: 26px;
  height: 2px;
  background: #7b003b;
  border-radius: 2px;
}

/* ================= MOBILE ONLY ================= */
@media (max-width: 991px) {

  .header-area {
    background: #ffffff;
    padding: 14px 0;
  }

  .logo img {
    max-height: 48px;
    margin-left:20px;
  }

  .header-social {
    display: none !important;
  }
  
    .header-area {
    position: relative;
  }

  .mobile-menu-toggle {
    position: absolute;
    right: 18px;      /* distance from right edge */
    top: 25px;        /* distance from top */
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 26px;
    height: 2px;
    background: #7b003b;
    border-radius: 2px;
  }

  .mobile-menu-toggle {
    display: flex;
    
  }

  /* MOBILE MENU USING SAME MAIN MENU */
  .main-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    padding: 20px 0;
  }

  .main-menu.active {
    display: block;
  }

  .main-menu ul {
    flex-direction: column;
    align-items: left;
    gap: 18px;
    background-color: #7b003b;
    
    
  }

  .main-menu ul li a {
    color: #fff;
    font-size: 18px;
    margin-left: 20px;
     

  }
  
   .main-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: transparent;
  }

  .main-menu.active {
    display: block;
  }

  .main-menu ul {
    flex-direction: column;
    gap: 14px;
    background-color: #7b003b;
    
    /* 🔹 Reduced side width */
    margin: 0 auto;
    width: 88%; 
    margin-top: -21px;/* adjust if needed (80–92%) */
    
    /* 🔹 Rounded box look */
    border-radius: 0px;

    /* 🔹 Reduced bottom spacing */
    padding: 18px 14px;
  }

  .main-menu ul li a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
  }
}




/* ================= HERO / SLIDER ================= */
.hero-area {
  position: relative;
  margin-top: 0 !important;
  overflow: hidden;
}

/* Slider Wrapper */
.hero-area {
  position: relative;
  overflow: hidden;
}

.simple-slider {
  position: relative;
  width: 100%;
  height: 100vh;
}

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.slide-content {
  position: absolute;
  left: 80px;
  bottom: 140px;
  color: #fff;
  z-index: 6;
}

.slide-content h1 {
  font-family: 'Inter', sans-serif;
  font-size: 60px;
  font-weight: 700;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 6;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.slider-dots .dot.active {
  background: #ffffff;
}

/* VERTICAL GRID LINES */
.vertical-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  background-image: repeating-linear-gradient(
    to right,
    rgba(255, 255, 255, 0.25) 0,
    rgba(255, 255, 255, 0.25) 1px,
    transparent 1px,
    transparent 25%
  );
}

/* Mobile */
@media (max-width: 768px) {
  .slide-content {
    left: 20px;
    bottom: 80px;
  }

  .slide-content h1 {
    font-size: 32px;
  }
}

/* ================= MOBILE SLIDER ONLY ================= */
@media (max-width: 768px) {

  .simple-slider {
    height: 100vh;
  }

  .slide {
    opacity: 0;
    transform: translateY(100%) scale(1.15);
    transition:
      opacity 0.8s ease,
      transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .slide.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    z-index: 2;
  }

  .slide img {
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 6s ease;
  }

  .slide.active img {
    transform: scale(1);
  }

  /* TEXT LIKE REVSLIDER MOBILE */
  .slide-content {
    left: 50%;
    bottom: 90px;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
  }

  .slide-content h1 {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
  }

  /* DOTS POSITION */
  .slider-dots {
    bottom: 25px;
  }

  /* SOFTER GRID LINES ON MOBILE */
  .vertical-lines {
    background-image: repeating-linear-gradient(
      to right,
      rgba(255,255,255,0.15) 0,
      rgba(255,255,255,0.15) 1px,
      transparent 1px,
      transparent 33%
    );
  }
}

/* ===== FIX MOBILE RIGHT WHITE SPACE ===== */
@media (max-width: 500px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden !important;
  }

  .hero-area,
  .simple-slider {
    width: 100%;
    overflow-x: hidden;
  }

  .slide,
  .slide img {
    max-width: 100%;
    overflow: hidden;
  }

  /* Prevent background grid overflow */
  .vertical-lines {
    width: 100%;
    left: 0;
    right: 0;
  }
}



/* ================= RESPONSIVE ================= *
/* ===== MOBILE SLIDER HEIGHT FIX ===== */
/* ===== FIX MOBILE BLANK SPACE UNDER SLIDER ===== */
@media (max-width: 768px) {

  .hero-area {
    height: auto !important;
    overflow: hidden;
  }

  .simple-slider {
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    overflow: hidden;
  }

  .slide {
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  /* REMOVE any accidental margins */
  .slider-dots {
    bottom: 20px;
  }
}





/* ===========================
   BSP SECTION STYLING
=========================== */

/* TEXT / DESCRIPTION / LIST */

.bsp-list {
  text-align: left;
}

.bsp-list li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.bsp-description,
.bsp-subtitle,
.bsp-list li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;  /* regular */
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* SUBTITLE specific adjustments */
.bsp-subtitle {
  font-size: 14px;
  color: #7a1e45;
  letter-spacing: 1px;
  margin-bottom: 10px;
}


.bsp-section {
  padding: 60px 0;          /* top & bottom space */
  background: #fff;
}

.bsp-container {
  display: flex;
  flex-wrap: wrap;           /* allows stacking on smaller screens */
  justify-content: center;    /* centers image + content group */
  align-items: flex-start;    /* align image & content to top */
  gap: 60px;                  /* space between image and content */
  max-width: 1200px;          /* container width */
  margin: 0 auto;             /* center container on page */
  padding: 0 15px;
}

.bsp-right {
  flex: 0 1 500px;          /* fixed width, does not grow too wide */
  max-width: 800px;          /* optional: further restrict content width */
  text-align: left;
  margin-right: 40px;        /* extra space on right */
}

/* LEFT IMAGE */
.bsp-left {
  flex: 0 1 500px;           /* keep image width fixed */
  margin-left: 40px;         /* extra space on left */
}

.bsp-left img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}



/* SUBTITLE */
.bsp-subtitle {
  
  color: #7a1e45;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 10px;
}

/* HEADING */
.bsp-heading {
 font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #9c834e;
  line-height: 1.2;
}

/* VIEWPORT */
/* VIEWPORT */
.bsp-animated {
  display: block;
  height: 1.3em;
  overflow: hidden;
  margin-top: 10px;
}

/* MOVING CONTAINER */
.bsp-animated-inner {
  display: block;
  animation: slideText 10s infinite;
}

/* TEXT LINES */
.bsp-animated-inner span {
  display: block;
  height: 1.3em;
}

/* RESPONSIVE-SAFE ANIMATION */
@keyframes slideText {
  0%, 20%   { transform: translateY(0); }
  25%, 45%  { transform: translateY(-1.3em); }
  50%, 70%  { transform: translateY(-2.6em); }
  75%, 95%  { transform: translateY(-3.9em); }
}

/* DESCRIPTION */
.bsp-description {
  margin-top: 25px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* LIST */
.bsp-list {
  margin-top: 30px;
  padding: 0;
}


.bsp-list li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
   font-family: 'Inter', sans-serif;
}

.bsp-list li::before {
  content: "■";
  color: #7a1e45;
  font-size: 10px;
  margin-right: 12px;
  margin-top: 6px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .bsp-heading {
    font-size: 36px;
  }
  .bsp-animated {
    height: 40px;
  }
}

@media (max-width: 768px) {
  .bsp-container {
    flex-direction: column;
    gap: 30px;
    align-items: center; /* center image & content on mobile */
  }
  .bsp-left,
  .bsp-right {
    margin-left: 0;
    margin-right: 0; /* remove extra spacing on mobile */
  }
  .bsp-right {
    text-align: center;
  }
  .bsp-heading {
    font-size: 26px;
  }
  .bsp-animated {
    height: 34px;
  }
}

/* 💡 DEFAULT (Desktop – unchanged) stays same */

/* ========== TABLET (≤1024px) ========== */
@media (max-width: 1024px) {
  .bsp-heading {
    font-size: 36px;
  }

  .bsp-animated {
    height: 40px;
  }

  .bsp-left,
  .bsp-right {
    flex: 0 1 100%;
    max-width: 100%;
  }
}

/* ========== MOBILE (≤768px) ========== */
@media (max-width: 768px) {
  .bsp-section {
    padding: 40px 0;
  }

  .bsp-container {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .bsp-left,
  .bsp-right {
    margin: 0;
    flex: 0 1 100%;
    max-width: 600px;
  }

  .bsp-left img {
    width: 100%;
    border-radius: 6px;
  }

  .bsp-right {
    text-align: center;
  }

  .bsp-heading {
    font-size: 26px;
    line-height: 1.3;
  }

  .bsp-animated {
    height: 32px;
  }

  .bsp-description {
    font-size: 14px;
  }

  .bsp-list {
    margin-top: 20px;
  }

  .bsp-list li {
    justify-content: center;
    font-size: 14px;
  }
}

/* ========== SMALL MOBILE (≤480px) ========== */
@media (max-width: 480px) {
  .bsp-heading {
    font-size: 22px;
  }

  .bsp-animated {
    height: 30px;
  }

  .bsp-description {
    font-size: 13.5px;
    line-height: 1.7;
  }

  .bsp-list li {
    line-height: 1.6;
  }
  
   .bsp-right {
    text-align: center; /* center headings & text */
  }

  .bsp-list {
    text-align: left;   /* but keep bullets aligned */
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;   /* keeps nice readable width */
  }

  .bsp-list li {
    justify-content: flex-start;
  }
}

/* ===========================
   BSP SLIDER SECTION
=========================== */

.bsp-slider-section {
  padding: 60px 0;
  background: #fff;
}

.bsp-slider-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* LEFT CONTENT */
.bsp-slider-content {
  flex: 0 1 500px;
  margin-left: 40px;
  text-align: left;
}

.bsp-slider-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #9c834e;
  line-height: 1.2;
  margin-bottom: 20px;
}

.bsp-slider-description {
 font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* CTA Button */
.bsp-slider-cta {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
   font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #333;
  gap: 8px;
  margin-top: 15px;
  position: relative;
}

.bsp-slider-cta span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease-out;
}

.bsp-slider-cta:hover span::after {
  transform: scaleX(1);
  transform-origin: left;
}

.bsp-slider-cta svg {
  transition: transform 0.3s ease;
}

.bsp-slider-cta:hover svg {
  transform: translateX(4px);
}

/* RIGHT IMAGE SLIDER */
.bsp-slider-right {
  flex: 0 1 500px;
  margin-right: 40px;
}

/* Placeholder for slider images */
.bsp-slider-placeholder {
  position: relative;
  overflow: hidden;
}

.bsp-slider-placeholder img {
  width: 100%;
  display: block;
  object-fit: cover;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .bsp-slider-heading {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .bsp-slider-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .bsp-slider-content,
  .bsp-slider-right {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
  .bsp-slider-heading {
    font-size: 26px;
  }
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

  .bsp-container {
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }

  /* IMAGE ON TOP */
  .bsp-left {
    order: 1;
    margin: 0;
  }

  .bsp-left img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
  }

  /* CONTENT BELOW IMAGE */
  .bsp-right {
    order: 2;
    margin: 0;
    padding: 0 10px;
    text-align: left; /* keep content readable */
  }

  .bsp-subtitle {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .bsp-heading {
    font-size: 26px;
    line-height: 1.3;
  }

  .bsp-animated {
    height: 32px;
  }

  .bsp-description {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 18px;
  }

  /* LIST FIX */
  .bsp-list {
    margin-top: 22px;
  }

  .bsp-list li {
    font-size: 14px;
    line-height: 1.6;
    align-items: flex-start;
  }

  .bsp-list li::before {
    margin-top: 6px;
  }
}


/* Force sharp edges */
.slider-right,
.slider-right-slides,
.slider-right-slide {
  border-radius: 0 !important;
}

/* Slider Styles */
.slider-right {
  position: relative;
}

.slider-right-slides {
  position: relative;
  width: 100%;
  height: 380px; 
}

.slider-right-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width:1000px;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity 1.2s ease,
    transform 6s ease;
}

.slider-right-slide.active {
  opacity: 1;
  transform: scale(1.15);
}

.slider-right-slide.from-left {
  transform: translateX(-40px) scale(1.05);
}

.slider-right-slide.from-right {
  transform: translateX(40px) scale(1.05);
}

.slider-right-slide.active.from-left,
.slider-right-slide.active.from-right {
  transform: translateX(0) scale(1.15);
}

/* Dots */
.slider-right-dots .slider-right-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-right-dots .slider-right-dot.active {
  background: #333;
}

/* ================= MOBILE FIX: CONTENT TOP, SLIDER BOTTOM ================= */
/* ================= MOBILE: CONTENT FIRST, SLIDER AFTER ================= */
@media (max-width: 768px) {

  /* Container stacks but keeps content padded */
  .section-content-slider .container {
    flex-direction: column;
    gap: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* CONTENT */
  .section-content-slider .content-left {
    order: 1;
    max-width: 100%;
    padding-left: 0 !important;
  }

  /* SLIDER: BREAK OUT OF CONTAINER */
   .section-content-slider .slider-right {
    order: 2;
    width: calc(100vw - 30px);   /* 15px margin each side */
    max-width: calc(100vw - 30px);
    margin-left: calc(-50vw + 50% + 15px);
    margin-right: calc(-50vw + 50% + 15px);
    padding: 0 !important;
  }

  .slider-right-slides {
    width: 100%;
    height: 420px;
  }

  .slider-right-slide {
    width: 100% !important;
    height: 100%;
    max-width: none !important;
    object-fit: cover;
  }

  .slider-right-dots {
    margin-top: 12px;
  }
}
