/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  margin: 0;          /* remove all outer space */
  padding: 0;         /* remove inner space */
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f5f5;
  color: #333;
}

/* Top Purple Bar */
.top-bar {
  background: #6a0dad;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 6px 10%;
  font-size: 14px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
}

/* Main Header */
/* Main Header */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10%;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 10;
}

/* Logo on left */
.logo-left {
  display: flex;
  align-items: center;
  
}
.logo-left img{

  width: 100px;
}

.logo-text {
  font-size: 22px;
  font-weight: bold;
  color: #6a0dad;
}

/* Navigation (menu on right) */
.nav-right ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-right a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-right a:hover {
  color: #6a0dad;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}


/* Slider Section */
.slider {
  position: relative;
  max-width: 100%;
  height: 420px;
  margin: 0px auto 0;
  overflow: hidden;
  background: linear-gradient(120deg, #6a0dad, #9b59b6);
  color: #fff;
}

/* Container for slides */
.slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Single Slide */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10%;
  text-align: center;

}

.slide.active {
  opacity: 1;
}

/* Slide Content */
.slide-content {
  max-width: 600px;
}

.slide-content h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.slide-content p {
  font-size: 16px;
  line-height: 1.6;
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  opacity: 0.7;
  background: transparent;
}

.dot.active {
  background: #fff;
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-bar {
    padding: 6px 5%;
    font-size: 12px;
  }

  .main-header {
    padding: 10px 5%;
  }

  .nav-left {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    width: 100%;
    display: none;
    border-top: 1px solid #eee;
  }

  .nav-left.open {
    display: block;
  }

  .nav-left ul {
    flex-direction: column;
    gap: 0;
  }

  .nav-left li {
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-left a {
    display: block;
    padding: 10px 5%;
  }

  .menu-toggle {
    display: block;
  }

  .logo-right {
    margin-left: auto;
  }

  .slider {
    height: 320px;
  }

  .slide-content h2 {
    font-size: 26px;
  }

  .slide-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .slider {
    height: 280px;
  }

  .slide-content h2 {
    font-size: 22px;
  }

  .slide-content p {
    font-size: 13px;
  }
}


.slide-btn-cta {
  margin-top: 18px;
  padding: 10px 26px;
  border-radius: 30px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  background: #ffffff;
  color: #6a0dad;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.slide-btn-cta:hover {
  background: #f2e9ff;
  color: #4b078a;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.slide-btn-cta:active {
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}
/* Info Section (Two Columns) */
.info-section {
  padding: 60px 10%;
  background: #ffffff;
}

.info-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Column: Image */
.info-image {
  flex: 1 1 45%;
}

.info-image img {
  width: 100%;
  max-width: 480px;
  display: block;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Right Column: Text */
.info-content {
  flex: 1 1 45%;
}

.info-content h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #333;
}

.info-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555;
}

/* Purple Button with Gradient Hover */
.info-btn {
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-transform: uppercase;
  background: #6a0dad; /* normal state */
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
  transition:
    background 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.info-btn:hover {
  background: linear-gradient(135deg, #6a0dad, #9b59b6);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.info-btn:active {
  transform: translateY(1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

/* Responsive: Stack columns on small screens */
@media (max-width: 768px) {
  .info-section {
    padding: 40px 5%;
  }

  .info-container {
    flex-direction: column;
    text-align: center;
  }

  .info-content {
    order: 2;
  }

  .info-image {
    order: 1;
    display: flex;
    justify-content: center;
  }

  .info-image img {
    max-width: 360px;
  }
}
.dual-heading {
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 700;
}

.dual-heading .purple-text {
  color: #6a0dad;   /* purple half */
}

.dual-heading .black-text {
  color: #000000;   /* black half */
}

/* Optional: put a small space between words if needed */
.dual-heading .purple-text::after {
  content: " ";
}
/* Light Grey Science Section */
.science-section {
  background: #f2f2f2;          /* light grey */
  padding: 60px 10%;
}

.science-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.science-title {
  font-size: 48px;
  font-weight: 400;
  color: #6a0dad;
  line-height: 1.3;
  margin-bottom: 25px;
}

/* Logo under title */
.science-logo img {
  max-width: 180px;
  width: 100%;
  display: inline-block;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .science-section {
    padding: 40px 5%;
  }

  .science-title {
    font-size: 22px;
    font-weight: 200;
  }

  .science-logo img {
    max-width: 140px;
  }
}
/* 3 Column Section */
.three-column-section {
  position: relative;
  padding: 60px 10%;
  background: #ffffff;
  overflow: hidden; /* so moving image doesn't scroll outside */
}

/* Floating / moving background image (left side) */
.floating-bg {
  position: absolute;
  left: -80px;              /* stay on left side */
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 600px;
  background-image: url("bg.png"); /* your moving/abstract image */
  background-size: cover;
  background-position: center;
  opacity: 1;            /* light so it doesn't mix with text */
  pointer-events: none;     /* can't be clicked */
  animation: floatUpDown 6s ease-in-out infinite alternate;
  z-index: 0;               /* behind all text */
}

/* Floating animation */
@keyframes floatUpDown {
  from {
    transform: translateY(-50%) translateX(0);
  }
  to {
    transform: translateY(-55%) translateX(10px);
  }
}

/* Inner wrapper to keep content above bg */
.three-column-inner {
  position: relative;
  z-index: 1;               /* above the floating image */
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

/* Generic column styles */
.col {
  font-size: 14px;
  color: #555;
}

/* Column 1 – titles and description */
.col-title-purple {
  font-size: 40px;
  font-weight: 700;
  color: #6a0dad;
  margin-bottom: 8px;
}

.col-subtitle-purple {
  font-size: 25px;
  font-weight: 400;
  color: black;
  margin-bottom: 12px;
}

.col-description {
  font-size: 16px;
  line-height: 1.7;
}

/* Columns 2 & 3 – logo, description, image, image name */
.col-logo {
  margin-bottom: 10px;
}

.col-logo img {
  max-width: 200px;
  width: 100%;
  display: block;
}

.col-image-wrap {
  margin-top: 14px;
  width: 100%;
}

.col-main-image {
  width: 100%;
  max-width: 100%;   /* limit width */
  height: 50%;      /* fixed height */
  object-fit: cover;  /* crop nicely inside 400x400 */
  display: block;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.col-image-name {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #6a0dad;     /* purple name */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive: stack columns on small screens */
@media (max-width: 992px) {
  .three-column-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .col-1 {
    grid-column: 1 / -1; /* col-1 full width on tablet */
  }

  .floating-bg {
    left: -60px;
    width: 200px;
    height: 200px;
    opacity: 0.1;
  }
}

@media (max-width: 768px) {
  .three-column-section {
    padding: 40px 5%;
  }

  .three-column-inner {
    grid-template-columns: 1fr;
  }

  .floating-bg {
    left: -80px;
    top: 20%;
    width: 180px;
    height: 180px;
    opacity: 0.08;
  }

  .col-main-image {
    max-width: 100%;
    height: 320px;
  }
}
/* Simple Heading + Subheading Section */
.heading-block-section {
  padding:  30px 10px;
  background: #ffffff;
}

.heading-block-inner {
  max-width: 900px;
  margin: 0 auto;
}

.main-heading-purple {
  font-size: 50px;      /* 50px heading */
  font-weight: 700;
  color: #6a0dad;       /* purple */
  line-height: 1.2;
  margin-bottom: 12px;
  margin-top: 25px;
  text-align: center;
}

.subheading-black {
  font-size: 18px;
  color: #000000;       /* black */
  line-height: 1.6;
  text-align: center;
  margin:0;
}

/* Responsive */
@media (max-width: 768px) {
  .heading-block-section {
    padding: 10px;
  }

  .main-heading-purple {
    font-size: 34px;
  }

  .subheading-black {
    font-size: 16px;
  }
}
/* Two Column Section: Left Image, Right Text */
.image-text-section {
  background: #ffffff;
  padding: 0;  /* no extra padding so image can sit flush on left */
}

.image-text-inner {
  display: grid;
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  align-items: stretch;
}

/* Left Column: Image touching left edge */
.image-col {
  position: relative;
}

/* Make image fill its column and touch page left side */
.image-col img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Right Column: Text list */
.text-col {
  padding: 50px 10% 50px 40px;  /* left padding creates space from image */
  background: #fdfdfd;
}

.text-item + text-item {
  margin-top: 20px;
}

/* Each item */
.text-item {
  margin-bottom: 18px;
}

/* Purple headings */
.text-title {
  font-size: 18px;
  font-weight: 700;
  color: #6a0dad;     /* purple */
  margin-bottom: 6px;
}

/* Descriptions */
.text-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* Responsive */
@media (max-width: 992px) {
  .image-text-inner {
    grid-template-columns: 1fr;
  }

  .image-col img {
    height: 260px;           /* limit height on mobile */
  }

  .text-col {
    padding: 30px 7% 40px 7%;
  }
}
/* Image + Text Gradient Section */
.image-text-gradient-section {
  background: #ffffff;
  padding: 0;
  margin: 0;
}

.image-text-gradient-inner {
  display: grid;
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  align-items: stretch;
}

/* Left Column: image touching left edge */
.itg-image-col {
  position: relative;
}

.itg-image-col img {
  width: 100%;
  height: 100%;
  object-fit: contain;    /* big, nice fill */
  display: block;
}

/* Right Column: gradient cards */
.itg-text-col {
  padding: 10px 10% 60px 10px; /* left pad = gap from image */
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Each title + description box */
.itg-item {
  background: linear-gradient(135deg, #7a2fd6, #c58cff);
  border-radius: 14px;
  padding: 16px 18px;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

/* Title inside box */
.itg-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

/* Description inside box */
.itg-desc {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .image-text-gradient-inner {
    grid-template-columns: 1fr;
  }

  .itg-image-col img {
    height: 260px;        /* limit height for tablet/mobile */
  }

  .itg-text-col {
    padding: 30px 7% 40px 7%;
  }
}

@media (max-width: 768px) {
  .itg-image-col img {
    height: 230px;
  }

  .itg-item {
    padding: 14px 16px;
  }

  .itg-title {
    font-size: 15px;
  }

  .itg-desc {
    font-size: 13px;
  }
}
/* ---------- TWO COLUMN WAVE STEPS SECTION WITH STRONG ANIMATION ---------- */

.panel-wave-steps {
  position: relative;
  overflow: hidden;
  padding: 60px 40px;
  color: #ffffff;

  /* more contrasty gradient + bigger size for visible movement */
  background: radial-gradient(circle at 20% 0%, #f5e1ff 0%, #c27dff 25%, #8c3df0 50%, #5a167f 80%, #2b0b44 100%);
  background-size: 300% 300%;
  animation: waveGradientMove 6s ease-in-out infinite alternate;
}

/* the rest of the layout can stay as before */
.wave-steps-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: stretch;
}

/* LEFT SIDE */
.wave-steps-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wave-steps-left h2 {
  margin: 0 0 24px;
  font-size: 50px;
  line-height: 1.1;
  color: #ffffff;
}

.wave-steps-left p {
  margin: 0 0 12px;
  font-size: 16px;
  color: #ffffff;
}

/* RIGHT SIDE */
.wave-steps-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000000;
}

.wave-steps-right h3 {
  margin: 0 0 24px;
  font-size: 30px;
  color: #000000;
}

/* Circle image */
.wave-steps-circle {
  height: 100%;
  max-height: 320px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 20px solid #e7c9ff;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.wave-steps-circle img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  border-radius: 50%;
}

/* MUCH MORE OBVIOUS MOVEMENT */
@keyframes waveGradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* ---------- TESTIMONIAL SECTION ---------- */

.panel-testimonials {
  padding: 70px 20px 80px;
  text-align: center;
}

.testimonials-title {
  font-size: 50px;
  margin: 0 0 40px;
  color: #7b2ab0; /* purple title */
}

/* Slider wrapper */
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* Each slide box */
.testimonial-slide {
  display: none;
  border: 2px solid #7b2ab0;           /* purple border */
  border-radius: 18px;
  padding: 30px 28px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(154, 116, 255, 0.35); /* light purple-blue shadow */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* text */
.testimonial-text {
  font-size: 16px;
  color: #222222; /* black-ish */
  margin: 0 0 18px;
  line-height: 1.6;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #7b2ab0; /* purple name */
}

/* Navigation arrows */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(154, 116, 255, 0.35);
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7b2ab0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-nav:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 16px 30px rgba(154, 116, 255, 0.45);
}

.testimonial-nav.prev {
  left: -20px;
}

.testimonial-nav.next {
  right: -20px;
}

/* Dots */
.testimonial-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #7b2ab0;
  background: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.testimonial-dots .dot.active {
  background: #7b2ab0;
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .testimonials-title {
    font-size: 34px;
    margin-bottom: 28px;
  }

  .testimonial-slide {
    padding: 24px 20px;
  }

  .testimonial-nav.prev {
    left: -10px;
  }

  .testimonial-nav.next {
    right: -10px;
  }
}
/* ---------- SIMPLE TWO COLUMN SECTION ---------- */

.panel-two-col {
  padding: 60px 20px;
  background: white; /* purple background so white text is visible */
}

.two-col-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
}

/* LEFT: title + paragraph */
.two-col-left h2 {
  margin: 0 0 20px;
  font-size: 50px;
  line-height: 1.1;
  color: black;
}

.two-col-left p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: black;
}

/* RIGHT: image */
.two-col-right img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 900px) {
  .two-col-inner {
    grid-template-columns: 1fr;
  }

  .two-col-right {
    margin-top: 20px;
  }

  .two-col-left h2 {
    font-size: 36px;
  }
}
.heading-block-section{
  background-color: #f2f2f2;
}
.image-text-gradient-section{
   background-color: #f2f2f2;
}

.btn-shop {
  display: inline-block;
  padding: 12px 32px;
  background: #7b2ab0;             /* purple */
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Segoe UI", system-ui, sans-serif;
  box-shadow: 0 8px 18px rgba(123, 42, 176, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  margin-top:30px;
}

.btn-shop:hover {
  background: #8b3fd0;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(123, 42, 176, 0.5);
}
/* ---------- FOOTER ---------- */

.site-footer {
  background: linear-gradient(135deg, #5a167f 0%, #7b2ab0 45%, #b27cff 100%);
  color: #ffffff;
  padding: 50px 20px 20px;
  font-size: 14px;
}

.footer-inner {
  max-width: 1200px; /* or var(--max-width) if you use it */
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 40px;
}

/* Brand column */
.footer-logo {
  margin: 0 0 10px;
  font-size: 32px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-tagline {
  margin: 0;
  color: #f2e6ff;
  line-height: 1.6;
}

/* Headings in other columns */
.footer-col h4 {
  margin: 0 0 12px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Links */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #f2e6ff;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Contact + social */
.footer-contact {
  margin: 0 0 10px;
  color: #f2e6ff;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-social {
  margin: 0;
  color: #f9f2ff;
}

.footer-social span {
  font-weight: 600;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding-top: 12px;
  color: #f6e9ff;
  font-size: 13px;
}
