*,
*::before,
*::after {
  box-sizing: border-box;
}
/* =========================
   Hero Section
========================= */
.product-container {
  position: relative;
  display: flex;
  align-items: center;     /* vertical centering */
  justify-content: center; /* horizontal centering */
  text-align: center;
  width: 100%;
  padding: 80px 20px;      /* space around content */
  background: url("/images/p-back1.png") center/cover no-repeat;
  color: #000;
  font-family: "Noto Sans", sans-serif;
  box-sizing: border-box;
}

/* Content wrapper */
.center-content {
  margin: 0 auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* keeps content vertically centered */
  text-align: center;
}

/* Logo */
.floating-logo {
  width: 180px;
  max-width: 40%;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Text */
.product-name {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
}

.product-description {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
  max-width: 1000px;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
  .product-container {
    padding: 40px 15px;
  }

  .floating-logo {
    width: 140px;
  }

  .product-name {
    font-size: 1.3rem;
  }

  .product-description {
    font-size: 2rem;
  }
}

@media (max-width: 486px) {
  .product-container {
    padding: 50px 15px;
  }

  .floating-logo {
    width: 110px;
  }

  .product-name {
    font-size: 1.1rem;
  }

  .product-description {
    font-size: 1.5rem;
  }
}

/* BENEFITS SECTION ======================= */
.benes-section {
  padding: 4rem;
  text-align: center;
  color: black;
}

.benes-content {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

.benes-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.bene-item {
  flex: 1 1 300px;
  max-width: 600px;
  text-align: left;
}

.bene-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1.3rem;
}

.bene-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bene-description {
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    padding: 1.5rem 1rem;
  }

  .benes-grid {
    gap: 2rem;
    justify-content: center;
  }

  .bene-item {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
  }

  .bene-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .bene-title {
    font-size: 1rem;
  }

  .bene-description {
    font-size: 12px;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  


  .benes-section {
    padding: 1rem;
  }
  
.section-title {
  font-size: 2rem;
  margin: 0rem;
}

  .benes-grid {
    gap: 1rem;
    justify-content: center;
  }

  .bene-item {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
  }

  .bene-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .bene-title {
    font-size: 1rem;
  }

  .bene-description {
    font-size: 12px;
    padding: 0 1rem;
  }
}

/* Fullscreen Section */
.feature-full-section {
  max-width: 1300px;
  width: 100%;
  overflow: visible; /* changed from hidden */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 2rem 1rem; /* Add padding for spacing on small screens */
  box-sizing: border-box;
}

/* Inner Container (Grid Layout) */
.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  position: relative;
}
.feature-header {
  text-align: center;;
}

.feature-header h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 4rem;
}


/* Left – Centered Image */
.feature-image-side {
  display: flex;
  justify-content: right;
  align-items: center;
}

.feature-image-side picture {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.feature-image-side img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Right Side – Content */
.feature-content-side {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 800px;
  color: black;
}

.feature-title {
  font-size:1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .feature-full-section {
    padding: 10px;
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
  }

  .feature-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    height: auto;
  }
  /* force image always on top */
  .feature-image-side {
    order: 1;
  }

  .feature-content-side {
    order: 2;
  }
  .feature-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    margin-top: 0;
  }
  .feature-image-side {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
  }

  .feature-image-side picture {
    width: 100%;
    justify-content: center;
  }

.feature-header h2{
  font-size: 1.5rem;
  margin-top: 3rem;
}
  .feature-image-side img {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .feature-content-side {
    padding: 0;
  }
  .feature-title {
    font-size: 1rem;
  }

  .feature-image-side img {
    max-width: 100%;
  }
}

/* === whys Section === */

.whys-main{
  background-color: rgb(205, 205, 205);
}
.whys-section {
  position: relative;
  padding: 5rem 2rem ;
  text-align: center;
  overflow: hidden;
  max-width: 1300px;
  margin: 0 auto;
  color: black;
}

.whys-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 1;
}

.whys-graphic {
  flex: 1;
}

.whys-graphic img {
  width: 100%;
  max-width: 500px;
}

.whys-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.6;
}

.whys-list h2 {
  font-size: 2.5rem;
  margin: 0 0 5px 0;
  text-align: left;
}

.whys-list p{
  font-size: 1rem;
  text-align: justify;
}

/* Your existing styles remain unchanged */

@media (max-width: 768px) {
  .whys-wrapper {
    flex-direction: column;
    gap: 1rem;
    padding: 0;
  }

  .whys-graphic {
    order: 0;
    width: 100%;
    padding: 0;
  }

  .whys-list {
    order: 1;
    width: 100%;
    padding: 1rem;
  }
}

@media (max-width: 486px) {

  .whys-section{
    padding: 1rem;
  }
  .whys-wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  .whys-graphic {
    order: 0;
    padding: 1rem;
  }

  .whys-graphic img {
    max-width: 400px;
    margin: 0 auto;
     display: flex;
  }

  .whys-list {
    order: 1;
    font-size: 12px;
    width: 100%;
  }
  .whys-list h2{
    font-size: 1.5rem;
    text-align: center;
  }
  .whys-list p{
    font-size: 15px;
  }
}
/* ===== Product Section ===== */
.pp-section {
  background-color: #ffefef;
  padding: 60px 20px;
}

.pp-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
}

.pp-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pp-icon {
  width: 80px;
  height: auto;
  margin-bottom: 16px;
}

.pp-card h3 {
  font-size: 20px;
  margin: 10px 0;
}

.pp-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.pp-link {
  color: #bb1a1a;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  border: 1px solid #bb1a1a;
  padding: 6px 14px;
  transition: all 0.3s ease;
}

.pp-link:hover {
  background-color: #bb1a1a;
  color: #fff;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .pp-section{
    padding: 20px;
  }
  .pp-wrapper{
    grid-template-columns: 1fr; 
  }
  .pp-card {
    padding: 22px 16px;
  }
  .pp-card h3 {
    font-size: 18px;
  }
  .pp-card p {
    font-size: 14px;
  }
}


/* Section 1 */
.psg-section {
  background: url("/images/sl-psg.jpg") center/cover no-repeat;
  padding: 150px 20px;
  color: #fff;
}

.psg-container {
  max-width: 1300px;
  padding: 10px;
  margin: 0 auto;
}

.psg-text {
  max-width: 500px;
}

.psg-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.psg-text p {
  font-size: 1.1rem;
  font-weight: 100;
  text-align: justify;
  line-height: 1.6;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .psg-section {
  padding:50px;
  color: #fff;
}

.psg-container {
  max-width: 1200px;
  padding: 10px;
  margin: 0 auto;
}

.psg-text {
  max-width: 300px;
}

.psg-text h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.psg-text p {
  font-size: 12px;
  line-height: 1.5;
}
}

@media (max-width: 600px) {
  .psg-section {
  padding:30px;
}

  
}

@media (max-width: 500px) {
  .psg-section {
    background: url(/images/mobile-psg.png) center/cover no-repeat;
    padding: 220px 20px 20px; /* pushes text lower */
    text-align: center;
  }

  .psg-text {
    max-width: 100%;
    margin: 0 auto;
  }

  .psg-text h2 {
    font-size: 1.5rem;
  }

  .psg-text p {
    font-size: 15px;
    text-align: center;
  }
}


@media (max-width: 400px) {
  .psg-section {
    background: url(/images/mobile-psg.png) center/cover no-repeat;
    padding: 180px 10px 10px ;/* pushes text lower */
    text-align: center;
  }

  .psg-text {
    max-width: 100%;
    margin: 0 auto;
  }

  .psg-text h2 {
    font-size: 1.3rem;
  }

  .psg-text p {
    font-size: 13px;
    text-align: center;
  }
}


@media (max-width: 300px) {
  .psg-section {
    background: url(/images/mobile-psg.png) center/cover no-repeat;
    padding: 150px 5px 5px ;/* pushes text lower */
    text-align: center;
  }

  .psg-text {
    max-width: 100%;
    margin: 0 auto;
  }

}

/* Section 2 */
.partner-section {
  padding: 60px 20px;
  background-color: #192032;
  color: white;
  font-family: 'Noto Sans', sans-serif;
}

.partner-container {
  max-width: 1300px;
  margin: 0 auto;
}

.partner-container h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: left;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.partner-item img {
  width: 100%;
  height: auto;
  display: block;
}

.partner-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 15px 0 10px;
}

.partner-item p {
  font-weight: 100;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Dots */
.partner-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  padding: 10px;
}

.partner-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #999999;
  display: inline-block;
  transition: background 0.3s ease;
}

.partner-dots span.active {
  background: #ffffff;
}

/* Mobile scroll styles */
@media (max-width: 768px) {
  .partner-section{
    padding: 10px;
  }
  .partner-container {
    padding: 0 20px;
  }
  .partner-container h2 {
    font-size: 1.3rem;
  }

  .partner-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 10px;
  }

  .partner-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    border-radius: 6px;
  }


  .partner-grid::-webkit-scrollbar {
    display: none;
  }
  .partner-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .partner-dots {
    display: flex;
  }
}

/* Mobile scroll styles */
@media (max-width: 480px) {
  
  .partner-container h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .partner-item h3 {
    font-size: 1.3rem;
    margin: 15px 0 10px;
  }

  .partner-item p {
    font-size: 14px;
    line-height: 1.5;
  }
  .partner-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 10px;
  }

  .partner-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  .partner-grid::-webkit-scrollbar {
    display: none;
  }
  .partner-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .partner-dots {
    display: flex;
  }
}

@media (max-width: 480px) {
  .partner-item {
    flex: 0 0 100%;
  }
}

.learn-section {
  background-color: #f1f1f1; /* Purple background */
  padding: 60px 20px;
  color: black;
  font-family: "Noto Sans";
}

.learn-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.learn-text {
  flex: 1;
}

.learn-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.learn-text p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 30px;
}
.learn-btn {
  display: inline-block;
  background:#bb1a1a;
  color: white;
  padding: 12px 40px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.104); /* shadow */
}

.learn-btn:hover {
  background: white;
  color: #bb1a1a;
}


.learn-image {
  flex: 1;
  text-align: center;
}
.learn-image img {
  width: 80%; /* smaller than full width */
  max-width: 300px; /* limit on large screens */
  height: auto; /* keep aspect ratio */
  object-fit: contain;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .learn-container {
    flex-direction: column;
    text-align: center;
  }

  .learn-text h2 {
    font-size: 1.4rem;
  }

  .learn-text p {
    font-size: 1rem;
  }

  .learn-btn {
    padding: 8px 24px;
    font-size: 1rem;
  }
  .learn-image {
    order: 2; /* Move image after heading on mobile */
    width: 70%;
    max-width: 400px;
  }

  .learn-text {
    order: 1;
  }
}

@media (max-width: 480px) {

  .learn-section{
    padding: 20px;
  }
  .learn-text h2 {
    font-size: 2rem;
  }

  .learn-btn {
    padding: 10px 24px;
    font-size: 1rem;
  }
    .learn-image img {
    width: 100%;
    max-width: 250px;
  }
  
  .learn-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

.feat-body {
  background-color: rgb(241, 240, 240);
  font-family: 'Noto Sans';
  padding: 20px 0 50px;
}
.feat-section {
  max-width: 1200px;
  margin: auto;
  padding: 20px 0px;
}

.feat-header {
  text-align: center;
  margin-bottom: 20px;
}

.feat-header h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.feat-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.feat-nav button {
  color: black;
   font-family: 'Noto Sans';
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.feat-nav button.active {
  border-bottom: 2px solid #bb1a1a;
}

.feat-content {
  display: none;
  position: relative;
  text-align: center;
}

.feat-content.active {
  display: block;
}

.feat-content img {
  padding: 20px 0;
  width: 70%;
  max-height: 500px;
  object-fit: cover;
}

/* Text Boxes */
.feat-box {
  font-size: 16px;
  position: absolute;
  background: #ffffffef;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.299);
  max-width: 350px;
  text-align: left;
  opacity: 0;
  transform: translateX(0);
  transition: all 0.8s ease;
}

.feat-box.show {
  opacity: 1;
}

/* Positions */
.feat-left {
  top: 50%;
  transform: translateX(-80px);
}

.feat-right-top {
  top: 15%;
  right: 0;
  transform: translateX(80px);
}

.feat-right-bottom {
  bottom: 0%;
  right: 0;
  transform: translateX(80px);
}

/* Active animation */
.feat-box.show.feat-left,
.feat-box.show.feat-right-top,
.feat-box.show.feat-right-bottom {
  transform: translateX(0);
}


  .feat-nav-mobile {
    display: none;
  }
  
/* Hide original nav on small screens */
@media (max-width: 768px) {
  .feat-nav {
    display: none;
  }

  .feat-body{
    padding: 15px 0;
  }

.feat-section {
  padding:20px;
}
  
.feat-header h2 {
  font-size: 2rem;
}

.feat-box{
  padding: 10px;
}
.feat-nav-mobile {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
.feat-nav-mobile select {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  padding: 12px 16px;
  font-size: 14px;
  color: black;
  border: 2px solid #ccc;
  border-radius: 8px;
  width: 100%;
  max-width: 700px;
  appearance: none;       /* remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;

  /* Custom arrow */
  background-image: url("/images/dropdown.png");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;

  cursor: pointer;
}

/* Hover / focus effect */
.feat-nav-mobile select:hover,
.feat-nav-mobile select:focus {
  border-color: #bb1a1a;  /* example primary color */
  outline: none;
  box-shadow: 0 0 0 2px rgba(170, 18, 140, 0.042);
}

  /* Feature content stacked for mobile */
  .feat-content img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
  }

  .feat-box {
    font-size: 13px;
    position: relative; /* stack vertically */
    transform: none !important;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 0.5rem auto;
    max-width: 100%;
    height: 100%;
    opacity: 1 !important;
    box-shadow: 3px 4px 2px  rgba(0, 0, 0, 0.186);
    transition: none;
  }
}


/* Media Query */
@media (max-width: 480px) {
  .feat-nav {
    display: none;
  }

  .feat-body {
    padding: 10px 0;
  }

  .feat-section {
    padding: 20px;
  }

  .feat-header h2 {
    margin: 0;
    font-size: 2rem;
  }

  .feat-box {
    padding: 16px;
    font-size: 14px;
  }

  /* Ensure mobile select uses custom style */
  .feat-nav-mobile select {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 8px;
    background-color: #fff;
    color: black;
    border: 1px solid #ccc;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("/images/dropdown.png");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
  }
}


/*--------------Vasi section --------------------------*/

.vasi-section {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.vasi-heading {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: left;
}

.vasi-carousel {
  display: flex;
  gap: 3rem;
  overflow-x: auto;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  scroll-snap-type: x mandatory;
}

.vasi-card {
  flex: 0 0 auto;
  width: 450px;
  scroll-snap-align: start;
}

.vasi-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.vasi-info {
  text-align: left;
}

.vasi-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.vasi-info p {
  font-size:1.1rem;
}

.vasi-button {
  background: #000;
  color: #fff;
  border: 2px solid black;
  text-decoration: none;
  padding: 10px 1.5rem;
  font-size:15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  font-family: "Noto Sans", sans-serif;
}

.vasi-button:hover {
  background: transparent;
  color: black;
}


/* Responsive for tablets (max-width: 768px) */
@media (max-width: 768px) {
  .vasi-section {
    padding: 0 2rem;
  }

  .vasi-heading {
    font-size: 1.5rem;
    padding: 20px;
    text-align: center; /* Center heading on smaller screens */
  }

  .vasi-carousel {
    gap: 2rem;
    padding-bottom: 0.75rem;
  }

  .vasi-card {
    width: 70vw; /* Make card width relative to viewport */
    max-width:450px; /* Limit max width */
  }

  .vasi-image {
    height: 200px;
  }

  .vasi-info h3 {
    font-size: 1rem;
  }

  .vasi-info p {
    font-size: 12px;
    margin-bottom: 2rem;
  }

  .vasi-button {
    font-size: 12px;
    padding: 8px 1rem;
  }
}

/* Responsive for phones (max-width: 480px) */
@media (max-width: 480px) {
  .vasi-section {
    padding: 0 1rem;
  }

  .vasi-heading {
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
  }

  .vasi-carousel {
    gap: 1rem;
    padding-bottom: 0.5rem;
  }

  .vasi-card {
    width: 80vw; /* Almost full viewport width */
    max-width: 350px;
  }

  .vasi-image {
    height: 190px;
  }

  .vasi-info h3 {
    font-size: 16px;
  }

  .vasi-info p {
    font-size: 14px;
  }

  .vasi-button {
    font-size: 13px;
    padding: 5px 12px;
  }
}


html {
  scroll-behavior: smooth;
}

/* Sticky nav container ensures z-index works properly */
.sticky-nav-container {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.344);
}


.sticky-nav {
  max-width: 1150px;
  padding: 2rem;
  margin: 0 auto;
  display: flex;
  justify-content: right;
  gap: 3rem;
}

.sticky-nav a {
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: black;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.sticky-nav a:hover {
  color: #bb1a1a;
}


/* Small Tablets & Large Phones (<= 768px) */
@media (max-width: 768px) {
 .sticky-nav {
    display:none;
  }
}

/* Phones (<= 480px) */
@media (max-width: 480px) {
.sticky-nav {
    display:none;
  }

}

.product-benefits {
  color: black;
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.section-title  {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin: 0;
}

.benefit-container {
  display: flex;
  align-items: stretch;
  margin-bottom: 3rem;
  gap: 1rem;
  height: 500px; /* Fixed height for all containers */
}

.benefit-container.reverse {
  flex-direction: row-reverse;
}

.benefit-image {
  flex: 1;
  height: 100%;
}
.benefit-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.benefit-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain; 
}

@media (max-width: 768px) {

   .benefit-image {
    height: auto;
    order: 0;
  }

  .benefit-image img {
    height: auto;
    max-height: 100%; /* Control max size on mobile */
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .benefit-image img {
    max-height: 100%; /* Smaller image for very small devices */
  }
}


.benefit-content {
  max-width: 800px;
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
}

.benefit-content h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Accordion styling */
.accordion {
  display: flex;
  flex-direction: column;
  flex: 1;
  font-family: 'Noto Sans', sans-serif;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}

.accordion-header {
  font-family: 'Noto Sans', sans-serif;
  background: #fff;
  color: black;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion-header:hover{
  background-color: #f6f6f6;
}

.accordion-item.active .accordion-header {
  background-color: #f9f9f9;
  border-top: 1px solid black;
}

.accordion-header::after {
  content: '';
  display: inline-block;
  width: 14px;  /* Smallest possible size to fit nicely */
  height: 14px;
  background: url('/images/dropdown.png') no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
  background-image: url('/images/arrow-up.png');
  
}


.accordion-body {
  font-size: 15px;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  padding:0 1rem;
}

.accordion-item.active .accordion-body {
  background-color: #f9f9f9;
  max-height: 200px;
  opacity: 1;
}

@media (max-width: 768px) {
  .benefit-container {
    flex-direction: column;
    height: auto; /* Allow natural height */
  }
  /* Force image to be first for both normal and reverse */
  .benefit-container,
  .benefit-container.reverse {
    flex-direction: column;
  }

  .benefit-content {
    max-width: 100%;
    padding: 0 20px;
    order: 1;
  }


}

@media (max-width: 480px) {

  .section-title{
    font-size: 2rem;
    margin: 0;
    padding: 0;
  }
  .benefit-content {
    padding: 10px;
  }

  .benefit-content h3 {
    font-size: 1.3rem;
  }

  .accordion-header {
    font-size: 16px;
    padding: 0.75rem;
  }

  .accordion-body {
    font-size: 14px;
    line-height: 1.5;
    padding: 0 0.75rem;
  }

  .accordion-header::after {
    width: 12px;
    height: 12px;
  }

}

.faq-section {
  padding: 60px 20px;
}

.faq-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 5rem;
  padding: 4rem 2rem 4rem;
  flex-wrap: wrap;
}

.faq-left {
  flex: 1;
  min-width: 350px;
}

.faq-left h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  margin-top: 0;
}

.faq-left h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-left p {
  font-size: 14px;
  color: black;
}

.faq-right {
  flex: 2;
  max-width: 500px;
}

.faq-right p {
  font-size: 14px;
  margin-bottom: 50px;
  padding-left: 15px;
}

.faq-item {
  border-top: 1px solid #ddd;
}


.faq-item p {
  font-size: 14px;
  margin-bottom: 20px;
  margin-top: 0;
  padding: 0;
}

.faq-item:last-child {
  border-bottom: 1px solid #ddd;
}
.faq-question {
  color: black;
  font-family: 'Noto Sans', sans-serif;
  width: 100%;
  padding: 15px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "\25BC"; /* ▼ down arrow */
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg); /* ▲ arrow up */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 15px;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* adjust depending on answer length */
  padding: 15px;
}

/* ======================
   Tablet (≤ 768px)
   ====================== */
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }

  .faq-left {
    min-width: 100%;
  }

  .faq-left h2 {
    font-size: 2.2rem;
  }

  .faq-left h3 {
    font-size: 1rem;
  }

  .faq-left p {
    font-size: 13px;
  }

  .faq-right {
    max-width: 100%;
  }

  .faq-right p {
    font-size: 13px;
    padding-left: 0;
    margin-bottom: 30px;
  }
}

/* ======================
   Mobile 
   ====================== */
@media (max-width: 486px) {
  .faq-section {
    padding: 40px 15px;
  }

  .faq-container {
    padding: 2rem 1rem;
    gap: 0rem;
  }

  .faq-left h2 {
    font-size: 1.8rem;
  }

  .faq-left h3 {
    font-size: 0.95rem;
  }

  .faq-left p {
    font-size: 12px;
  }

  .faq-right p {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 12px;
  }

  .faq-answer {
    font-size: 13px;
    padding: 0 12px;
  }

  .faq-item.active .faq-answer {
    padding: 12px;
  }
}