html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    padding: 0;
    margin: 0;
}

/* -------------------------------------- */
/* NAV SECTION */
/* -------------------------------------- */
/* Navbar container */
/* .navbar {
  display: flex;
  align-items: center;
  position: fixed;
  justify-content: space-between;
  background-color: #fdecec;
  padding: 10px 30px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
} */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #FAE8E6 ;
  padding: 10px 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* When scrolled */
.navbar.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Logo */
.navbar .logo img {
  height: 60px;
}

/* Menu links */
.navbar ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 35px;
}

.navbar ul li a {
  text-decoration: none;
  color: #4b2b1d;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
  font-family: 'Roboto', sans-serif;
    
}

.navbar ul li a:hover {
  color: #CBA45B;
}

.navbar ul li a.active {
  color: #CBA45B;
}

/* Connect Now button */
.connect-btn {
  padding: 8px 22px;
  border: 2px solid #4b2b1d;
  border-radius: 6px;
  background: transparent;
  color: #4b2b1d;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.connect-btn:hover {
  background-color: #4b2b1d;
  color: #fff;
}

/* Mobile menu toggle button (hidden on desktop) */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle .hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: #4b2b1d;
  position: relative;
}
.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #4b2b1d;
}
.menu-toggle .hamburger::before { top: -7px; }
.menu-toggle .hamburger::after { top: 7px; }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  top: 64px; /* below header */
  right: 16px;
  width: 300px;
  max-width: calc(100% - 40px);
  background: #5A3132;
  color: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transform-origin: top right;
  transform: scaleY(0);
  transition: transform 220ms ease-out, opacity 200ms ease;
  opacity: 0;
  z-index: 2000;
  overflow: hidden;
  pointer-events: none;
}
.mobile-menu.open { transform: scaleY(1); opacity: 1; pointer-events: auto; }
.mobile-menu .mobile-close { position: absolute; top: 8px; right: 10px; background: transparent; border: none; color: #fff; font-size: 22px; cursor: pointer; }
.mobile-menu .mobile-nav { padding: 46px 18px 18px; }
.mobile-menu .mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu .mobile-nav li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu .mobile-nav a { color: #fff; text-decoration: none; font-weight: 500; display: block; }

/* Prevent body scroll when menu open */
.no-scroll { overflow: hidden; }

/* Responsive: show toggle and hide desktop links on small screens */
@media (max-width: 992px) {
  .menu-toggle { display: inline-flex; align-items:center; justify-content:center; }
  .navbar ul { display: none; }
  .connect-btn { display: none; }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .navbar {
    flex-direction: column;
    padding: 15px 20px;
  }

  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
  }
}

/* -------------------------------------- */
/* SWIPE BANNER SECTION */
/* -------------------------------------- */  
    .swiper-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
      z-index: 1;
      padding-top: 83px;
      display: flex;
      transition-property: transform;
    }
 
    .swiper {
      width: 100%;
      /* height: 100vh; */
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
      background: #000;
    }

    .swiper-slide img {
      width: 100%;
      height: 100vh;
      object-fit: cover;
    }

    /* TABLET */
@media (max-width: 992px) {
  .swiper {
    height: 80vh;
  }
  .swiper-slide img {
    height: 80vh;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .swiper {
    height: 65vh;
  }
  .swiper-wrapper {
    padding-top: 60px;
  }
  .swiper-slide img {
    height: 65vh;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .swiper {
    height: 55vh;
  }
  .swiper-wrapper {
    padding-top: 50px;
  }
  .swiper-slide img {
    height: 55vh;
  }
}

/* Mobile header/banner overrides — keep desktop unchanged, only affect widths <= 992px */
@media (max-width: 992px) {
  /* make header a fixed bar with centered logo and right hamburger */
  .navbar { padding: 8px 12px; height: 64px; align-items: center; }

  .navbar .logo { position: absolute; left: 50%; transform: translateX(-50%); top: 8px; z-index: 1100; }
  .navbar .logo img { height: 42px; width: auto; }

  .menu-toggle { display: inline-flex !important; position: absolute; right: 12px; top: 16px; z-index: 1101; }

  /* hide desktop nav and connect button on mobile */
  .navbar ul, .connect-btn { display: none !important; }

  /* ensure banner sits below header and is visible */
  body { padding-top: 72px; }
  .swiper-wrapper { padding-top: 0 !important; }

  /* make banner image full-width inside its container */
  .swiper-slide img { object-position: center top; }
}

    
/* -------------------------------------- */
/* FOOTER SECTION */
/* -------------------------------------- */
.footer {
  position: relative;
  color: #fff;
  padding: 70px 8% 0;
  overflow: hidden;
}

/* Dark overlay */
.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

/* Footer content */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footer-column {
  flex: 1 1 300px;
  min-width: 250px;
  height: 385px;
}
.footer-logo {
  text-align: center;
}

.footer-logo-img {
  width: 180px;
  position: relative;   
  z-index: 10;          
  animation: zoomIn 5s ease-in-out infinite;
  padding-top: 50px;
}

/* Define the zoom animation */
@keyframes zoomIn {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

/* If your theme has an overlay (like Elementor), push it back */
.elementor-background-overlay {
  z-index: 0 !important;
}



.footer-column h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
}



.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #ddd;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ddd;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #fff;
}

.footer-column .tagline {
  color: #ddd;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}

/* Contact icons */
.footer-column .contact li i {
  margin-right: 10px;
  color: white;
}

/* Footer bottom full width */
.footer-bottom {
  background: #362323;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
  position: relative;
  z-index: 2;
  color: #fff;
  /* width: 100%; */
  margin-left: 0;
  margin-right: 0;
}

.footer-bottom a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.footer-bottom a:hover {
  text-decoration: none;
}


.quick-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.quick-links li {
  margin-bottom: 8px;
}

.quick-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-left: 20px;
  font-family: "Fira Sans", Sans-serif;
  font-size: 17px;
  margin-bottom: 20px;
  letter-spacing: 0.6px;
}

/* Add the > before text */
.quick-links li a::before {
  position: absolute;
  left: 0;
  color: white; /* arrow color */
  font-weight: bold;
  transition: transform 0.3s ease;
}

/* Hover effects */
.quick-links li a:hover {
  color: white;
}

/* -------------------------------------- */
/* RESPONSIVE FOOTER */
/* -------------------------------------- */

/* TABLETS */
@media (max-width: 992px) {

  .footer {
    padding: 50px 6% 0;
  }

  .footer-container {
    gap: 30px;
  }

  .footer-column {
    height: auto;
  }

  .footer-logo-img {
    width: 150px;
    padding-top: 30px;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .footer {
    padding: 40px 5% 0;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: left;
   
  }


  .footer-column {
   flex: 1 1 100px;
   width: 20px;
   padding-bottom: 10px;
  }

  .footer-column h4 {
    font-size: 18px;
  }

  .footer-column ul li,
  .quick-links li a {
    font-size: 15px;
  }

  .footer-logo-img {
    width: 140px;
    padding-top: 20px;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 18px 5px;
  }
}

/* EXTRA SMALL MOBILE */
@media (max-width: 480px) {

  .footer {
    padding: 30px 4% 0;
  }

  .footer-logo-img {
    width: 120px;
  }

  .footer-column h4 {
    font-size: 16px;
  }

  .footer-column ul li {
    font-size: 14px;
  }

  .quick-links li a {
    font-size: 15px;
    padding-left: 18px;
  }

  .footer-bottom {
    font-size: 11px;
    padding: 15px 5px;
  }
}


/* -------------------------------------- */
/* ABOUT SECTION IN HOME PAGE */
/* -------------------------------------- */
.about-section{
  padding: 34px 79px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.about-section P{
  line-height: 2;
  /* font-family: 'Montserrat', Arial, sans-serif; */
  font-family: "Fira Sans", Sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #272727;
  text-align: center;
}
.about-section h2{
  color: #4b2b1d;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: bold;    
  font-size: 32px;
}
.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    top: 606px;
    height: 3px;
    background-color: #d39e3f;
}
.about-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; 
   
}
.about-btn a{
  text-decoration: none;
  color: inherit;
}
.circle-touch-btn {
  position: relative;
  overflow: hidden;
  background-color: #5a3132;
  color: white;
  border: none;
  padding: 20px 87px;
  font-size: 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  z-index: 1;
  left: -134px;
}

/* Two transparent circles - hidden by default */
.circle-touch-btn::before,
.circle-touch-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 26px;
  height: 26px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0;
  z-index: 0;
}

/* Start positions (inside the button, near sides) */
.circle-touch-btn::before {
  left: 10%;
}

.circle-touch-btn::after {
  right: 10%;
}

/* Appear + move toward center on hover */
.circle-touch-btn:hover::before {
  animation: circleLeft 0.5s forwards;
}

.circle-touch-btn:hover::after {
  animation: circleRight 0.5s forwards;
}

/* Button color change after circles meet */
.circle-touch-btn:hover {
  animation: btnColorChange 0.2s forwards 0.4s;
}

/* Circle animations */
@keyframes circleLeft {
  0% {
    left: 10%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  60% {
    left: 46%;
    opacity: 1;
  }
  100% {
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

@keyframes circleRight {
  0% {
    right: 10%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  60% {
    right: 46%;
    opacity: 1;
  }
  100% {
    right: 50%;
    opacity: 0;
    transform: translate(50%, -50%) scale(0.8);
  }
}

/* Button color transition */
@keyframes btnColorChange {
  0% {
    background-color: #5a3132;
  }
  100% {
    background-color:  #ac7961;
  }
}

/* -------------------------------------- */
/* RESPONSIVE QUERIES */
/* -------------------------------------- */

/* TABLET */
@media (max-width: 992px) {
  .about-section{
    padding: 30px 40px;
  }
  .about-section h2{
    font-size: 28px;
  }
  .about-section p{
    font-size: 1rem;
  }
  .circle-touch-btn{
    padding: 18px 60px;
    font-size: 16px;
    left: 0;
  }
    .about-btn{
    justify-content: center;
    margin-top: 20px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .about-section{
    padding: 25px 20px;
  }
  .about-section h2{
    font-size: 24px;
  }
  .about-section p{
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .circle-touch-btn{
    padding: 16px 50px;
    font-size: 16px;
    left: 0;
  }
   .about-btn{
    justify-content: center;
    margin-top: 18px;
  }
}

/* EXTRA SMALL MOBILE */
@media (max-width: 480px) {
  .circle-touch-btn{
    padding: 14px 40px;
    font-size: 15px;
    left: 0;
  }
  .about-btn{
    margin-top: 15px;
  }
}

/* -------------------------------------- */
/* PRODUCT SECTION */
/* -------------------------------------- */
/* Parent grid layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    padding-top: 80px;
}

/* Each product block */
.product-box {
    width: 100%;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* SOFT BLURRED BACK GLOW */
.background-image::after,
.product-box::after { 
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgb(247, 245, 245);  /* light glow */
    filter:blur(120px);                  
    border-radius: 100%;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

/* Product stays above glow */
.product-box img {
    position: relative;
    z-index: 2;
     max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-box:hover img {
    transform: scale(1.05);
    
}

/* Responsive */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-box {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .product-box {
        height: 280px;
    }
}  

/* -------- PRODUCT SECTION -------- */

.title {
    text-align: center;
    font-size: 34px;
    color: #5C2A2A;
    font-weight: 600;
}

.title-line {
    width: 80px;
    height: 4px;
    background: #5C2A2A;
    margin: 10px auto 25px;
    border-radius: 10px;
}

/* ---------- SLIDER ---------- */
.products-section {
    position: relative;
    width: 100%;
    padding: 40px 0;
    background: #EBD3A3;
    height: 630px;
    font-family: "Poppins", sans-serif;
}
 .slider-wrapper {
    width: 78%;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.product-slider {
    display: flex;
    gap: 25px;
    will-change: transform;
}

.product-card {
    min-width: 330px;
    height: 410px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.18);
    position: relative;

    /* Animation */
   opacity: 0;
    transform: translateY(40px);
}

/* === Clockwise border draw animation === */
.bd-top, .bd-right, .bd-bottom, .bd-left {
    position: absolute;
    background: #d39e3f;
    pointer-events: none;
    z-index: 3;
}

/* Top: starts at left-0, grows right */
.bd-top    { top: 0;    left: 0;   height: 3px; width: 0;  transition: width  0.25s ease 0s;     }
/* Right: starts at top-0, grows down */
.bd-right  { top: 0;    right: 0;  width: 3px;  height: 0; transition: height 0.25s ease 0.25s; }
/* Bottom: anchored at right-0, grows left */
.bd-bottom { bottom: 0; right: 0;  height: 3px; width: 0;  transition: width  0.25s ease 0.5s;  }
/* Left: anchored at bottom-0, grows up */
.bd-left   { bottom: 0; left: 0;   width: 3px;  height: 0; transition: height 0.25s ease 0.75s; }

.product-card:hover .bd-top,
.product-card:hover .bd-bottom { width: 100%; }

.product-card:hover .bd-right,
.product-card:hover .bd-left   { height: 100%; }

.product-card.animate {
    animation: slideUp 0.7s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card img { 
    display: block;
    width: 100%;
    height: 350px;
    object-fit: contain;
    background-color: #EBD3A3;
    transition: background-color 0.35s ease;
}

.product-card:hover img {
    background-color: #5a3132;
}

.product-name {
  background-color: #5A3132;
  color: #fff;
  font-weight: 600;
  margin: 0;
  padding: 14px 10px;
  font-size: 15px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  box-sizing: border-box;
}


/* -------- ARROWS -------- */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #4A1F1F;
    color: #fff;
    border: none;
    font-size: 26px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.arrow:hover {
    background: #703030;
}

/* PERFECT POSITION */
.prev {
    left: 60px;   /* INSIDE the slider */
    top: 370px;
  }

.next {
    right: 60px;  /* INSIDE the slider */
    top: 370px;
  }



/*======= information section =======*/
.trial-section {
  background: linear-gradient(135deg, #f3fbf7 0%, #ffffff 100%);
  /* padding: 20px 80px; */
  /* padding: 90px; */
  padding: 39px;
  padding-top: 80px;
    max-width: 1200px;
}

.trial-content {
  display: flex;
  align-items: flex-start;
  /* justify-content: space-between; */
  gap: 1  15px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding-left: 55px;
  padding-bottom: 94px;
}

.text-content {
  flex: 1 1 500px;
  padding-top: 40px;
  padding-left: 50px;

  opacity: 0;
  transform: translateX(80px); /* start from right */
}

/* Animation plays only when .animate is added */
.text-content.animate {
  animation: slideRight 1s ease-out forwards;
}

@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}



.text-content h2 {
  line-height: 1.1;
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 46px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5A3132;
  margin-bottom: 20px;
  
}

.text-content h2 span {
  color: #5A3132;
}

.description {
  /* text-align: left; */
  color: #000000;
  font-family: "Fira Sans", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.88em;
}


.image-box {

  width: 380px;
  height: 380px;
  border-radius: 8px;
  /* min-width: 100px; */
}
.image-box img {
 
  width: 450px;
  height: 450px;
  border-radius: 8px;

}
/* Responsive Styles */
@media (max-width: 992px) {
  .trial-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 10px;
    gap: 10px;
   
  }

  .image-box {
    width: 100%;
    height: 250px;
    margin-top: 30px;
  }
  .image-box img{
    width: 100%;
    height: 250px;
    margin-top: 30px;
  }
  

  .text-content h2 {
    font-size: 2rem;
  }
  
}

@media (max-width: 600px) {
  .text-content h2 {
    font-size: 1.7rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .benefits li {
    font-size: 0.95rem;
  }
}
/*===== REVIWE SECTION =====*/
.review-section {
    width: 100%;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    background: #fff;
    
}

.review-box {
    width: 90%;
    max-width: 1100px;
    padding: 60px 40px;
    text-align: center;
    background:
        linear-gradient(to bottom, #f5e7c8 0%, #f9f2e3 100%),
        url('/assets/inlancer_portal/img/images.jfif');
    border-radius: 12px;
    position: relative;
    background-size: cover;         /* make the image fully cover */
    background-position: center;    /* center the image */
    background-repeat: no-repeat;
    
}

/* Slides */
.review-slide {
    display: none;
    animation: fadeEffect 1s ease-in-out;
}

.review-slide.active {
    display: block;
}

@keyframes fadeEffect {
    from { opacity: 0; }
    to { opacity: 1; }
}

.review-text {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    line-height: 1.4;
}

.review-author {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #444;
}

.stars {
    font-size: 28px;
    color: #ffcc00;
    margin-top: 10px;
    letter-spacing: 4px;
}

/* Dots */
.slider-dots {
    margin-top: 25px;
}

.slider-dots .dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background: #ddd;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
}

.slider-dots .dot.active {
    background: #6a4c3b;
}

/* ===== Main CTA section ===== */
.cta-section {
    width: 100%;
    padding: 80px 8%;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    position: relative;
    background-color: #f7f4f2;
    overflow: hidden;
    /* gap:89px; */
}

/* Background orange slice RIGHT only */
.cta-section::after {
    content: "";
    position: absolute;
    background-image: url('/assets/inlancer_portal/img/orange-2.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1402px;
    opacity: 0.25;
    width: 1582px;
    height: 411px;
    /* z-index: 1; */
    right: -80px;
    top: 0;
}

/* Button */
.cta-btn {
    background: #562b2b;
    border: none;
    color: #fff;
    padding: 15px 45px;
    border-radius: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.cta-btn:hover { background: #3b1b1b; }

.cta-title{
  font-family: "Poppins", Sans-serif;
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.4em;
    letter-spacing: 0.6px;
    color: #5A3132;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.8s ease-out;
}

.cta-title.active {
    opacity: 1;
    transform: scale(1);
}

.cta-content{ width: 507px; }

/* Social icons */
.social-icons { margin-top: 35px; display: flex; gap: 25px; }

.social-icons a { width: 55px; height: 55px; border: 3px solid #562b2b; display: flex; justify-content: center; align-items: center; text-decoration: none; border-radius: 50%; color: #562b2b; font-size: 20px; transition: 0.3s; }

.social-icons a:hover { background: #562b2b; color: #fff; }

/* Product image */
.cta-image img { width: 700px; max-width: 100%; display: block; }

/* Mobile-only overrides: do not change desktop layout — only apply on small screens */
@media (max-width: 992px) {
  .cta-section { padding: 48px 6%; }
  .cta-image img { max-width: 420px; }
}

@media (max-width: 768px) {
  .cta-section { flex-direction: column-reverse; padding: 24px 5%; }
  .cta-content { width: 100%; max-width: 100%; }
  .cta-title { font-size: 26px; text-align: center; opacity: 1; transform: none; }
  .about-btn { display: flex; justify-content: center; align-items: center; text-align: center; margin-top: 12px; }
  .circle-touch-btn { padding: 10px 20px; left: 0; }
  .cta-image { width: 100%; margin-bottom: 12px; }
  .cta-image img { max-width: 320px; }
  .social-icons { justify-content: center; gap: 12px; }
}

@media (max-width: 480px) {
  .cta-section { padding: 16px 4%; }
  .cta-title { font-size: 20px; letter-spacing: 0.2px; }
  .circle-touch-btn { padding: 8px 16px; }
  .about-btn { display: flex; justify-content: center; align-items: center; }
  .circle-touch-btn { left: 0; }
  .cta-image img { max-width: 220px; }
  .social-icons a { width: 40px; height: 40px; }
}
/* Banner Section */
.about-banner {
    position: relative;
    width: 100%;
    height: 476px;
    /* background: url("/assets/inlancer_portal/img/first-section/about-cover-sweetania.jpg"); */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;       /* Fix the size properly */
    background-position: center;  /* Center the image */
    background-repeat: no-repeat;
}

/* Semi-transparent overlay (like the screenshot) */
.about-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: rgba(0, 0, 0, 0.30); /* Light fade */
    /* backdrop-filter: blur(3px); */
}

/* Content */
.about-content {
    position: relative;
    z-index: 2;
}
.about-content h1 {
    background: #5A3132;
    color: #fff;
    padding: 12px 35px;
    border-radius: 35px;
    font-size: 36px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;

    /* Simple small zoom */
    animation: smallZoom 0.5s ease-out forwards;
}

/* Simple zoom animation */
@keyframes smallZoom {
    0% {
        transform: scale(0.9);   /* Slightly smaller */
        opacity: 0;
    }
    100% {
        transform: scale(1);     /* Normal size */
        opacity: 1;
    }
}


.about-content .breadcrumb {
    font-family: "Fira Sans", Sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
  }

.about-content .breadcrumb span {
    font-weight: 700;
}
.about-text P{
  line-height: 2;
  /* font-family: 'Montserrat', Arial, sans-serif; */
  font-family: "Fira Sans", Sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #272727;
  text-align: left;
  padding:45px ;
}


/* Background Section */
.business-plan-section {
    background-image: linear-gradient(90deg, #ac7961 0%, #5A3132 100%);
    padding: 60px 0;
}


/* Flex Container */
.business-container {
    width: 90%;
    max-width: 1300px;
    margin: 20px 125px 20px 125px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT SIDE */
.business-left {
    flex: 1;
    color: white;
}

/* Heading */
.business-left h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}

/* Underline bar */
.underline {
    width: 80px;
    height: 4px;
    background: white;
    margin-bottom: 25px;
}

/* Paragraph + bullets */
.business-left p {
    text-align: justify;
    color: #FFFFFF;
    font-family: "Fira Sans", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.88em;
}

.business-left ul {
    padding-left: 20px;
}

.business-left ul li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 26px;
    font-family: "Fira Sans", Sans-serif;
}

/* RIGHT SIDE IMAGE */
.business-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.business-right img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

/* Responsive */
@media (max-width: 900px) {
    .business-container {
        flex-direction: column;
        text-align: center;
    }

    .underline {
        margin: 10px auto 25px;
    }

    .business-right img {
        max-width: 350px;
    }
}


.hygiene-section {
    padding: 60px 0;
    background: #fff;
    font-family: "Poppins", sans-serif;
}

.hygiene-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    gap: 70px;
}

.hygiene-image img {
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    display: block;
    padding-left: 30px;

    opacity: 0;
    transform: scale(0.7);
    transition: all 0.8s ease;
}

.hygiene-image img.active {
    opacity: 1;
    transform: scale(1);
}

.hygiene-content{
  padding-right: 52px;
  width: 600px;

}

.hygiene-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #562727;
}

.underline {
    width: 100px;
    height: 4px;
    background: #c27b5b;
    margin: -25px 0 25px;
}

.hygiene-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #444;
}

.styled-paragraph {
    max-width: 600px;     
    margin: 0 auto;       
    font-family: "Poppins", sans-serif;
}

.styled-paragraph p {
    font-size: 16px;
    line-height: 1.8;     
    color: #333;
    font-family: "Fira Sans", Sans-serif;
    text-align: justify;
}

.styled-paragraph strong {
    font-weight: 600;     
}


@media (max-width: 900px) {
    .hygiene-container {
        flex-direction: column;
        text-align: center;
    }

    .underline {
        margin: 10px auto 25px;
    }

    .hygiene-image img {
        max-width: 80%;
    }
}

/*===== PRODUCT PAGE GRID =====*/


.sweet-products {
    padding: 60px 0;
    
}

.sweet-grid {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    
}

.sweet-card {
    text-decoration: none;
    display: block;
    border: 2px solid #ac7961;
    border-radius: 14px 14px 0px 0px;
    width: 100%;
    overflow: hidden;
    /* border-radius: 12px; */
    display: block;
    position: relative;
}

.sweet-inner {
    background: radial-gradient(at center center, #ac7961 0%, #533B21 100%);
    padding: 50px 20px;
    /* border-radius: 14px 14px 0px 0px; */
    /* border: 2px solid  #ac7961; */
    border-bottom: none;
    transition: 0.3s ease;
}

.sweet-inner img {
    width: 100%;
    display: block;
    margin: auto;
    /* transform: rotate(-10deg); */
    transition: 0.3s ease;
}


/* .sweet-card:hover .sweet-inner img {
    transform: rotate(-5deg) scale(1.05);
} */


/* Slider container */
.sweet-slider {
    display: flex;
    width: 100%;
}

/* Each image */
.slide-img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
}


.sweet-title {
    background: #fff;
    padding: 15px 0;
    /* border: 2px solid #ac7961; */
    border-top: none;
    /* border-radius: 0 0 14px 14px; */
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: #5d3a20;
    font-family: "Sarabun", Sans-serif;
    text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .sweet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sweet-grid {
        grid-template-columns: 1fr;
    }
}

.event {
    display: flex;
    justify-content: center;
    margin: 50px;
}

.image-border img {
    display: block;
    width: 100%;
}

.image-border{
    border-style: solid;
    border-width: 4px 4px 4px 4px;
    border-color: #E19302;
    border-radius: 15px 15px 15px 15px;
    padding: 15px 25px 0px 25px;
}
/* .image-border img{
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 14px;
    box-shadow: none;
    padding-bottom: 20px;
} */
.image-border p{
    font-family: "Roboto", Sans-serif;
    font-size: 20  px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

/* ============================================================ */
/* COMPREHENSIVE MOBILE RESPONSIVE FIXES — ALL PAGES           */
/* ============================================================ */

/* ---- NAVBAR: fix flex-direction conflict & mobile layout ---- */
@media (max-width: 992px) {
  .navbar {
    flex-direction: row !important;
    height: 64px !important;
    padding: 8px 16px !important;
    box-sizing: border-box !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: fixed !important;
    width: 100% !important;
  }
  /* Logo: left aligned */
  .navbar .logo {
    position: static !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    z-index: auto !important;
    flex: 0 0 auto;
  }
  .navbar .logo img { height: 42px !important; width: auto; }
  /* Hide desktop nav and connect button */
  .navbar ul { display: none !important; }
  .connect-btn { display: none !important; }
  /* Show hamburger on the right — fully inside the navbar */
  .menu-toggle {
    display: inline-flex !important;
    position: static !important;
    right: auto !important;
    top: auto !important;
    flex-shrink: 0;
    padding: 6px !important;
    margin-right: 0 !important;
  }
  body { padding-top: 64px; }
  .swiper-wrapper { padding-top: 0 !important; }
}

/* ---- ABOUT BANNER: remove fixed height ---- */
@media (max-width: 992px) {
  .about-banner { height: 300px; }
}
@media (max-width: 768px) {
  .about-banner { height: 220px; }
  .about-content h1 { font-size: 22px; padding: 8px 20px; }
  .about-content .breadcrumb { font-size: 13px; }
}
@media (max-width: 480px) {
  .about-banner { height: 180px; }
  .about-content h1 { font-size: 18px; padding: 7px 14px; }
}

/* ---- ABOUT TEXT: fix padding overflow ---- */
@media (max-width: 768px) {
  .about-text p { padding: 20px 15px !important; font-size: 0.95rem; }
}

/* ---- FOOTER COLUMN: fix broken width:20px ---- */
@media (max-width: 768px) {
  .footer-column {
    flex: 1 1 100% !important;
    width: 100% !important;
    min-width: unset !important;
  }
  .footer-container {
    align-items: flex-start !important;
  }
}

/* ---- BUSINESS CONTAINER: fix large fixed margins ---- */
@media (max-width: 1280px) {
  .business-container { margin: 20px auto; width: 92%; }
}
@media (max-width: 900px) {
  .business-container {
    flex-direction: column;
    margin: 0 auto !important;
    width: 90% !important;
    text-align: center;
    padding: 0 15px;
  }
  .business-left ul { text-align: left; display: inline-block; }
  .business-right img { max-width: 320px; width: 100%; }
}
@media (max-width: 480px) {
  .business-plan-section { padding: 40px 0; }
  .business-left h2 { font-size: 24px; }
  .business-left p, .business-left ul li { font-size: 14px; }
}

/* ---- HYGIENE: fix fixed widths ---- */
@media (max-width: 900px) {
  .hygiene-container { flex-direction: column; gap: 30px; }
  .hygiene-content {
    width: 100% !important;
    padding-right: 0 !important;
  }
  .hygiene-image { width: 100%; text-align: center; }
  .hygiene-image img {
    padding-left: 0 !important;
    max-width: 90% !important;
    margin: auto;
  }
  .hygiene-content h2 { font-size: 26px; }
}
@media (max-width: 480px) {
  .hygiene-section { padding: 40px 0; }
  .hygiene-content h2 { font-size: 20px; }
  .hygiene-content p, .styled-paragraph p { font-size: 14px; }
}

/* ---- TRIAL / INFO SECTION: fix huge gap & paddings ---- */
@media (max-width: 1024px) {
  .trial-content { gap: 40px; padding-left: 20px; padding-bottom: 40px; }
  .text-content { padding-left: 10px; }
}
@media (max-width: 768px) {
  .trial-section { padding: 20px 15px; max-width: 100%; }
  .trial-content {
    flex-direction: column;
    gap: 20px !important;
    padding-left: 0 !important;
    padding-bottom: 0 !important;
  }
  .text-content { padding-left: 0 !important; padding-top: 15px; flex: 1 1 100%; }
  .image-box { width: 100% !important; height: auto !important; }
  .image-box img { width: 100% !important; height: auto !important; margin-top: 0 !important; }
}
@media (max-width: 480px) {
  .text-content h2 { font-size: 1.4rem; }
}


/* ---- REVIEW SECTION ---- */
@media (max-width: 768px) {
  .review-section {
    padding: 20px; /* ensure equal left/right padding */
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .review-box {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 36px 24px 28px; /* keep internal spacing */
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
  }
  .review-text { font-size: 18px; line-height: 1.5; }
  .review-author { font-size: 14px; margin-top: 14px; }
  .stars { font-size: 20px; letter-spacing: 2px; margin-top: 8px; }
  .slider-dots { margin-top: 18px; }
}
@media (max-width: 480px) {
  .review-section { padding: 16px; box-sizing: border-box; overflow-x: hidden; }
  .review-box { padding: 28px 18px 22px; box-sizing: border-box; padding-left: 18px; padding-right: 18px; }
  .review-text { font-size: 16px; }
  .review-author { font-size: 13px; }
  .stars { font-size: 18px; }
}

/* ---- CAREER SECTION ---- */
@media (max-width: 768px) {
  .career-section { padding: 40px 20px !important; }
  .career-grid { gap: 30px; }
  .career-text h2 { font-size: 22px; }
}
@media (max-width: 480px) {
  .career-section { padding: 25px 12px !important; }
  .career-text h2 { font-size: 18px; }
}

/* ---- CONTACT SECTION ---- */
@media (max-width: 768px) {
  .contact-section { margin: 40px auto; padding: 15px; }
  .contact-wrapper { gap: 30px; }
  .circle-bg { width: 180px !important; height: 180px !important; }
}
@media (max-width: 480px) {
  .contact-section { margin: 20px auto; }
  .circle-bg { width: 120px !important; height: 120px !important; }
}

/* ---- EVENT SECTION ---- */
@media (max-width: 768px) {
  .event { margin: 20px 10px; }
  .event-gallery-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .event-gallery-grid { grid-template-columns: 1fr !important; }
  .event-gallery-grid .gallery-item img { height: 200px !important; }
}

/* ---- PRODUCT GRID (products_all page) ---- */
@media (max-width: 768px) {
  .sweet-grid { gap: 20px; }
  .sweet-title { font-size: 14px; padding: 10px 0; }
}
@media (max-width: 480px) {
  .sweet-grid { gap: 14px; }
  .sweet-inner { padding: 30px 12px; }
}

/* ---- PRODUCT BOX (home product grid) ---- */
@media (max-width: 480px) {
  .product-grid { padding-top: 40px; }
  .product-box { height: 220px; }
}

/* ---- GLOBAL: images should never overflow ---- */
img { max-width: 100%; height: auto; }
@media (max-width: 992px) {
  .cta-image img { max-width: 100% !important; }
}
@media (max-width: 768px) {
  /* Prevent any fixed-width element from causing h-scroll */
  .products-section, .trial-section, .review-section,
  .cta-section, .about-section, .footer {
    overflow-x: hidden;
  }
}
