html, body
{
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}


.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #FFFFFF;
}

/* ✅ Navigation Bar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 24px; /* reduced from 15px 40px */
  background-color: white;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: top 0.3s ease-in-out;
  z-index: 9999;
}

.logo img {
  height: 70px; /* reduced from 95px */
}


.nav-links a {
  font-weight: bold;
  text-decoration: none;
  color: black;
  margin: 0 20px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #28a745; /* or any color you want on hover */
}

.nav-links a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #28a745;
  transition: width 0.3s;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.nav-links a:hover::after {
  width: 100%;
}


.cta-button {
  padding: 6px 16px;       /* Reduced for smaller height */
  font-size: 14px;         /* Slightly smaller text */
  border-radius: 8px;
  background-color: #3e961f;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #256427;
}

/* ✅ Hero Section */
.hero-section {
 background-image: url(../images/fashion-set.jpg);
  background-size: cover;
  background-position: center;
  padding: 100px 20px; 
  color: white; 
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px; /* KECILKAN */
  text-align: center;
}

.hero-text h1 {
  padding-top: 30px;
  padding-right: 35px;
  font-size: 75px;
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
  color: white;
  margin-bottom: 100px; /* TAMBAH JARAK BAWAH */
  letter-spacing: 5px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.text-box {
  padding: 16px 50px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  color: white;
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 10px; /* KECILKAN JARAK ATAS */
  display: inline-block;
}

.hero-text h2 {
  font-size: 25px;
  line-height: 1.5;
  font-weight: bolder;
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
  margin: 0;
}

/* Section Layout */
.order-section {
  background-color: #F1F7CC;
  padding: 60px 20px;
}

.order-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1290px;
  margin: auto;
  gap: 150px;
}

/* Left Content */
.order-left {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.order-text {
  font-size: 50px;
  font-weight: 4500px;
  max-width: 350px;
  margin: 0 auto 4px;
  margin-left: 140px;
  margin-top: -19px;
  line-height: 1.4;
  color: #333;
}

.order-person {
  width: 400px;
  max-width: 100%;
  margin-bottom: 20px;
  margin-right: 230px;
  margin-top: -22px;
}

/* Button */
.order-btn {
  display: inline-block;
  background-color: #43a047;
  color: white;
  font-weight: 700;
  padding: 15px 50px;
  margin-left: -545px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 25px;
  transition: background 0.3s ease;
}

.order-btn:hover {
  background-color: #2e7d32;
}

/* Right Content */
.order-right {
  position: relative;
  width: 320px;
  height: 450px;
  overflow: hidden;
  border-radius: 15px;
  border: 2px solid #ddd;
}

.slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose {
  position: relative;
  background: #f9f9f9;
  padding: 20px 10px;
  text-align: center;
  overflow: hidden;
}

.why-choose h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.feature {
  max-width: 280px;
  padding: 25px;


  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature img {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  color: #555;
}

/* Background image frames */
.background-left,
.background-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.40;
  z-index: 1;
}

.background-left {
  left: 0;
  background-image: url("../img/download.jpeg"); /* Example: Left frame image */

  background-position: left center;
}

.background-right {
  right: 0;
  background-image: url("../img/Want to create stylish and eco-friendly shoes, hats, and bags_.jpeg"); /* Example: Right frame image */
  background-position: right center;
}

.collections-section {
  text-align: center;
  padding: 30px 20px;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
  margin: auto;
  
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 20px;
}

.carousel-track img {
  width: 200px;     /* ubah ikut saiz yang kau nak */
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.card {
  flex: 0 0 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  border: medium;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.how-to-order {
  position: relative;
  padding: 10px 0px;
  text-align: center;
  background: #fff;
}

.how-to-order h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.step {
  max-width: 280px;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.icon {
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
}

.step p {
  font-size: 20px;
  color: #333;
}

.cta-button {
  background-color: #3e961f;
  color: white;
  font-weight: 700;
  padding: 12px 28px;
  font-size: 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
  max-width: 300px;
  width: auto;
  

}

.cta-button:hover {
  background-color: #2f751a;
}

/* Decorative leaves */
.leaf {
  position: absolute;
  width: 90px;
  animation: bounce 2s ease-in-out infinite;
}

/* Decorative leaves */
.leaf {
  position: absolute;
  width: 90px;
  animation: bounceSway 3s ease-in-out infinite;
}

/* Leaf positions */
.top-left {
  top: 0;
  left: 0;
}

.bottom-right {
  bottom: 0;
  right: 0;
 
}

/* Combined Bounce + Sway animation */
@keyframes bounceSway {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(-5deg);
  }
  50% {
    transform: translateY(-25px) rotate(5deg);
  }
  75% {
    transform: translateY(-15px) rotate(-3deg);
  }
}

.testimonials {
  text-align: center;
  padding: 5px 0px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.testimonials h2 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  background: #fefdd7;
  padding: 25px;
  border-radius: 30px;
  width: 280px;
  box-shadow: 8px 8px 0 #444;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.stars {
  font-size: 24px;
  color: orange;
  margin-bottom: 10px;
}

.testimonial-card p {
  margin: 10px 0;
  font-size: 15px;
  color: #222;
}

.testimonial-card .name {
  margin-top: 20px;
  font-weight: bold;
  font-size: 14px;
  text-align: left;
}


@keyframes slideUpFade {
  0% {
    opacity: 0;


    transform: translateY(30px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.contact-footer {
  background: #fffced;
  border-top: 2px solid #000;
  padding: 30px 20px 10px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-left,
.footer-right {
  flex: 1 1 420px;
}

.footer-left h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.tagline {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.desc {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.clients-logos span {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.logos img {
  height: 40px;
  object-fit: contain;
}

.footer-right h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px;
  margin-left: 150px;
}

.footer-right p {
  font-size: 13px;
  margin: 5px 0;
  margin-left: 15px;
}

.footer-right span {
  font-weight: bold;
  margin-right: 130px;

}

.social-icons img {
  height: 45px;
  margin-right: -10px;
  margin-left: 175px;

}

address {
  margin-top: 20px;
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
	margin-left: 150px
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: #111;
  margin-top: 40px;
  border-top: 1px solid #aaa;
  padding-top: 10px;
}


/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Section style to make it full screen height */
section {
  height: 100vh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  min-height: 100vh;
  padding: 60px 20px;
}

/* Ensure image inside hero scales responsively */
.hero-left img {
  max-width: 100%;
  height: auto;
}

.cta-wrapper {
	text-align: center;
	margin-top: 30px;
  scroll-behavior: smooth;
  overflow: hidden;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}

/* ✅ Navigation Bar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 24px; /* reduced from 15px 40px */
  background-color: white;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: top 0.3s ease-in-out;
  z-index: 9999;
}

.logo img {
  height: 65px; /* reduced from 95px */
}


.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
  color: #000;
}

.cta-button {
  padding: 6px 16px;       /* Reduced for smaller height */
  font-size: 14px;         /* Slightly smaller text */
  border-radius: 8px;
  background-color: #3e961f;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #256427;
}

/* ✅ Hero Section */
.hero-section {
  padding: 80px 20px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-image img {
  max-width: 100%;
  width: 560px;
  height: 400px;
}

.hero-text {
  max-width: 600px;
  padding: 20px;
  text-align: left;
}

.hero-text h1 {
  font-size: 70px;
  margin: 0;
  font-weight: bold;
}

.hero-text h2 {
  font-size: 28px;
  margin-top: 20px;
  line-height: 1.5;
  font-weight: 900;
}

.red {
  color: #e60000;
}

.bold-red {
  color: #e60000;
  font-weight: 1000;
}
/* Section Layout */
.order-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.order-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1290px;
  margin: auto;
  gap: 150px;
}

/* Left Content */
.order-left {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.order-text {
  font-size: 20px;
  font-weight: 490px;
  max-width: 350px;
  margin: 0 auto 4px;
  margin-left: 140px;
  margin-top: -19px;
  line-height: 1.4;
  color: #333;
}

.order-person {
  width: 400px;
  max-width: 100%;
  margin-bottom: 20px;
  margin-right: 230px;
  margin-top: -22px;
}

/* Button */
.order-btn {
  display: inline-block;
  background-color: #43a047;
  color: white;
  font-weight: 700;
  padding: 15px 50px;
  margin-left: -545px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 25px;
  transition: background 0.3s ease;
}

.order-btn:hover {
  background-color: #2e7d32;
}

/* Right Content */
.order-right {
  position: relative;
  width: 320px;
  height: 450px;
  overflow: hidden;
  border-radius: 15px;
  border: 2px solid #ddd;
}

.slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-choose {
  position: relative;
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.why-choose h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.feature {
  max-width: 280px;
  padding: 25px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature img {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  color: #555;
}

/* Background image frames */
.background-left,
.background-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.40;
  z-index: 1;
}

.background-left {
  left: 0;
  background-image: url("../img/Woven Logic Collection.jpeg"); /* Example: Left frame image */
  background-position: left center;
}

.background-right {
  right: 0;
  background-image: url("../img/Gallante by Panaz - A Luxurious Chenille FR Upholstery Fabric.jpeg"); /* Example: Right frame image */
  background-position: right center;
}

.collections-section {
  text-align: center;
  padding: 50px 20px;
  margin-left: 150px;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
  margin: auto;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}
.carousel-track img {
  width: 100%;     /* ubah ikut saiz yang kau nak */
  flex-shrink: 0;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  margin: 0 10px;
}

.card {
  flex: 0 0 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.arrow {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  margin: 0 10px;
  color: #000;
  transition: transform 0.2s;
}

.arrow:hover {
  transform: scale(1.2);
}


.how-to-order {
  position: relative;
  padding: 10px 5px;
  text-align: center;
  background: #fff;
}

.how-to-order h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.step {
  max-width: 280px;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.icon {
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
}

.step p {
  font-size: 20px;
  color: #333;
}

.cta-button {
  background-color: #3e961f;
  color: white;
  font-weight: 700;
  padding: 12px 28px;
  font-size: 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
  max-width: 300px;
  width: auto;
  

}

.cta-button:hover {
  background-color: #2f751a;
}

/* Decorative leaves */
.leaf {
  position: absolute;
  width: 90px;
  animation: bounce 2s ease-in-out infinite;
}

/* Decorative leaves */
.leaf {
  position: absolute;
  width: 130px;
  animation: bounceSway 3s ease-in-out infinite;
}

/* Leaf positions */
.top-left {
  top: 0;
  left: 0;
}

.bottom-right {
  bottom: 0;
  right: 0;
}

/* Combined Bounce + Sway animation */
@keyframes bounceSway {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(-5deg);
  }
  50% {
    transform: translateY(-25px) rotate(5deg);
  }
  75% {
    transform: translateY(-15px) rotate(-3deg);
  }
}

.testimonials {
  text-align: center;
  padding: 10px 5px;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.testimonials h2 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}
.testimonial-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  background: #fefdd7;
  padding: 25px;
  border-radius: 30px;
  width: 280px;
  box-shadow: 8px 8px 0 #444;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.stars {
  font-size: 24px;
  color: orange;
  margin-bottom: 10px;
}

.testimonial-card p {
  margin: 10px 0;
  font-size: 15px;
  color: #222;
}

.testimonial-card .name {
  margin-top: 20px;
  font-weight: bold;
  font-size: 14px;
  text-align: left;
}

.testimonial-image-below {
  margin-top: 40px;
  text-align: center;
}

.testimonial-image-below img {
  width: 90%;
  max-width: 200px;
  height: auto;
}

.contact-footer {
  background: #fffced;
  border-top: 2px solid #000;
  padding: 50px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-left,
.footer-right {
  flex: 1 1 420px;
}

.footer-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

.tagline {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.clients-logos span {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.logos img {
  height: 40px;
  object-fit: contain;
}

.footer-right h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px;
  margin-left: 150px;
}

.footer-right p {
  font-size: 15px;
  margin: 5px 0;
  margin-left: 15px;
}

.footer-right span {
  font-weight: bold;
  margin-right: 130px;

}

.social-icons img {
  height: 45px;
  margin-right: -10px;
  margin-left: 175px;

}

address {
  margin-top: 20px;
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
	margin-left: 150px
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: #111;
  margin-top: 40px;
  border-top: 1px solid #aaa;
  padding-top: 10px;
}


/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Section style to make it full screen height */
section {
  height: 100vh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  min-height: 100vh;
  padding: 60px 20px;
}

/* Ensure image inside hero scales responsively */
.hero-left img {
  max-width: 100%;
  height: auto;
}

.cta-wrapper {
	text-align: center;
	margin-top: 30px;
}
/* Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}

/* Floating WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  width: 55px;
  height: 50px;
  animation: pulse 1.8s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.moving-image {
  position: absolute;
  top: 300px;
  left: 100px;
  width: 200px;
  transition: transform 1.5s ease-in-out;
  z-index: 5;
}

.moving-image.active {
  transform: translate(490px, 885px); /* adjust ikut position target */
}




html, body
{
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}


.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #FFFFFF;
}

/* ✅ Navigation Bar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 24px; /* reduced from 15px 40px */
  background-color: white;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: top 0.3s ease-in-out;
  z-index: 9999;
}

.logo img {
  height: 70px; /* reduced from 95px */
}


.nav-links a {
  font-weight: bold;
  text-decoration: none;
  color: black;
  margin: 0 20px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #28a745; /* or any color you want on hover */
}

.nav-links a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #28a745;
  transition: width 0.3s;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.nav-links a:hover::after {
  width: 100%;
}


.cta-button {
  padding: 6px 16px;       /* Reduced for smaller height */
  font-size: 14px;         /* Slightly smaller text */
  border-radius: 8px;
  background-color: #3e961f;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #256427;
}

/* ✅ Hero Section */
.hero-section {
  padding: 30px 10px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-image img {
  max-width: 100%;
  width: 560px;
  height: 400px;
}

.hero-text {
  max-width: 300px;
  padding: 16px;
  text-align: left;
}

.hero-text h1 {
  font-size: 5px;
  margin: 0;
  text-align: left;
  font-weight: bold;
}

.hero-text h2 {
  font-size: 25px;
  margin-top: 20px;
  line-height: 1.5;
  font-weight: 700;
}

.red {
  color: #e60000;
}

.bold-red {
  color: #e60000;
  font-weight: 1000;
}
/* Section Layout */
.order-section {
  background-color: #F1F7CC;
  padding: 60px 20px;
}

.order-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1290px;
  margin: auto;
  gap: 150px;
}

/* Left Content */
.order-left {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.order-text {
  font-size: 50px;
  font-weight: 4500px;
  max-width: 350px;
  margin: 0 auto 4px;
  margin-left: 140px;
  margin-top: -19px;
  line-height: 1.4;
  color: #333;
}

.order-person {
  width: 400px;
  max-width: 100%;
  margin-bottom: 20px;
  margin-right: 230px;
  margin-top: -22px;
}

/* Button */
.order-btn {
  display: inline-block;
  background-color: #43a047;
  color: white;
  font-weight: 700;
  padding: 15px 50px;
  margin-left: -545px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 25px;
  transition: background 0.3s ease;
}

.order-btn:hover {
  background-color: #2e7d32;
}

/* Right Content */
.order-right {
  position: relative;
  width: 320px;
  height: 450px;
  overflow: hidden;
  border-radius: 15px;
  border: 2px solid #ddd;
}

.slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose {
  position: relative;
  background: #f9f9f9;
  padding: 20px 10px;
  text-align: center;
  overflow: hidden;
}

.why-choose h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.feature {
  max-width: 280px;
  padding: 25px;


  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature img {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  color: #555;
}

/* Background image frames */
.background-left,
.background-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.40;
  z-index: 1;
}

.background-left {
  left: 0;
  background-image: url("../img/download.jpeg"); /* Example: Left frame image */

  background-position: left center;
}

.background-right {
  right: 0;
  background-image: url("../img/Want to create stylish and eco-friendly shoes, hats, and bags_.jpeg"); /* Example: Right frame image */
  background-position: right center;
}

.collections-section {
  text-align: center;
  padding: 30px 20px;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
  margin: auto;
  
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 20px;
}

.carousel-track img {
  width: 200px;     /* ubah ikut saiz yang kau nak */
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.card {
  flex: 0 0 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  border: medium;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.how-to-order {
  position: relative;
  padding: 10px 0px;
  text-align: center;
  background: #fff;
}

.how-to-order h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.step {
  max-width: 280px;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.icon {
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
}

.step p {
  font-size: 20px;
  color: #333;
}

.cta-button {
  background-color: #3e961f;
  color: white;
  font-weight: 700;
  padding: 12px 28px;
  font-size: 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
  max-width: 300px;
  width: auto;
  

}

.cta-button:hover {
  background-color: #2f751a;
}

/* Decorative leaves */
.leaf {
  position: absolute;
  width: 90px;
  animation: bounce 2s ease-in-out infinite;
}

/* Decorative leaves */
.leaf {
  position: absolute;
  width: 90px;
  animation: bounceSway 3s ease-in-out infinite;
}

/* Leaf positions */
.top-left {
  top: 0;
  left: 0;
}

.bottom-right {
  bottom: 0;
  right: 0;
 
}

/* Combined Bounce + Sway animation */
@keyframes bounceSway {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(-5deg);
  }
  50% {
    transform: translateY(-25px) rotate(5deg);
  }
  75% {
    transform: translateY(-15px) rotate(-3deg);
  }
}

.testimonials {
  text-align: center;
  padding: 5px 0px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.testimonials h2 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  background: #fefdd7;
  padding: 25px;
  border-radius: 30px;
  width: 280px;
  box-shadow: 8px 8px 0 #444;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.stars {
  font-size: 24px;
  color: orange;
  margin-bottom: 10px;
}

.testimonial-card p {
  margin: 10px 0;
  font-size: 15px;
  color: #222;
}

.testimonial-card .name {
  margin-top: 20px;
  font-weight: bold;
  font-size: 14px;
  text-align: left;
}


@keyframes slideUpFade {
  0% {
    opacity: 0;


    transform: translateY(30px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.contact-footer {
  background: #fffced;
  border-top: 2px solid #000;
  padding: 30px 20px 10px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-left,
.footer-right {
  flex: 1 1 420px;
}

.footer-left h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.tagline {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.desc {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.clients-logos span {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.logos img {
  height: 40px;
  object-fit: contain;
}

.footer-right h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px;
  margin-left: 150px;
}

.footer-right p {
  font-size: 13px;
  margin: 5px 0;
  margin-left: 15px;
}

.footer-right span {
  font-weight: bold;
  margin-right: 130px;

}

.social-icons img {
  height: 45px;
  margin-right: -10px;
  margin-left: 175px;

}

address {
  margin-top: 20px;
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
	margin-left: 150px
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: #111;
  margin-top: 40px;
  border-top: 1px solid #aaa;
  padding-top: 10px;
}


/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Section style to make it full screen height */
section {
  height: 100vh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  min-height: 100vh;
  padding: 60px 20px;
}

/* Ensure image inside hero scales responsively */
.hero-left img {
  max-width: 100%;
  height: auto;
}

.cta-wrapper {
	text-align: center;
	margin-top: 30px;
  scroll-behavior: smooth;
  overflow: hidden;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}

/* ✅ Navigation Bar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 24px; /* reduced from 15px 40px */
  background-color: white;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: top 0.3s ease-in-out;
  z-index: 9999;
}

.logo img {
  height: 65px; /* reduced from 95px */
}


.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
  color: #000;
}

.cta-button {
  padding: 6px 16px;       /* Reduced for smaller height */
  font-size: 14px;         /* Slightly smaller text */
  border-radius: 8px;
  background-color: #3e961f;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #256427;
}

/* ✅ Hero Section */
.hero-section {
  padding: 80px 20px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-image img {
  max-width: 100%;
  width: 560px;
  height: 400px;
}

.hero-text {
  max-width: 600px;
  padding: 20px;
  text-align: left;
}

.hero-text h1 {
  font-size: 70px;
  margin: 0;
  font-weight: bold;
}

.hero-text h2 {
  font-size: 28px;
  margin-top: 20px;
  line-height: 1.5;
  font-weight: 900;
}

.red {
  color: #e60000;
}

.bold-red {
  color: #e60000;
  font-weight: 1000;
}
/* Section Layout */
.order-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.order-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1290px;
  margin: auto;
  gap: 150px;
}

/* Left Content */
.order-left {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.order-text {
  font-size: 20px;
  font-weight: 490px;
  max-width: 350px;
  margin: 0 auto 4px;
  margin-left: 140px;
  margin-top: -19px;
  line-height: 1.4;
  color: #333;
}

.order-person {
  width: 400px;
  max-width: 100%;
  margin-bottom: 20px;
  margin-right: 230px;
  margin-top: -22px;
}

/* Button */
.order-btn {
  display: inline-block;
  background-color: #43a047;
  color: white;
  font-weight: 700;
  padding: 15px 50px;
  margin-left: -545px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 25px;
  transition: background 0.3s ease;
}

.order-btn:hover {
  background-color: #2e7d32;
}

/* Right Content */
.order-right {
  position: relative;
  width: 320px;
  height: 450px;
  overflow: hidden;
  border-radius: 15px;
  border: 2px solid #ddd;
}

.slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-choose {
  position: relative;
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.why-choose h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.feature {
  max-width: 280px;
  padding: 25px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature img {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  color: #555;
}

/* Background image frames */
.background-left,
.background-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.40;
  z-index: 1;
}

.background-left {
  left: 0;
  background-image: url("../img/Woven Logic Collection.jpeg"); /* Example: Left frame image */
  background-position: left center;
}

.background-right {
  right: 0;
  background-image: url("../img/Gallante by Panaz - A Luxurious Chenille FR Upholstery Fabric.jpeg"); /* Example: Right frame image */
  background-position: right center;
}

.collections-section {
  text-align: center;
  padding: 50px 20px;
  margin-left: 150px;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
  margin: auto;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}
.carousel-track img {
  width: 100%;     /* ubah ikut saiz yang kau nak */
  flex-shrink: 0;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  margin: 0 10px;
}

.card {
  flex: 0 0 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.arrow {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  margin: 0 10px;
  color: #000;
  transition: transform 0.2s;
}

.arrow:hover {
  transform: scale(1.2);
}


.how-to-order {
  position: relative;
  padding: 10px 5px;
  text-align: center;
  background: #fff;
}

.how-to-order h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.step {
  max-width: 280px;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.icon {
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
}

.step p {
  font-size: 20px;
  color: #333;
}

.cta-button {
  background-color: #3e961f;
  color: white;
  font-weight: 700;
  padding: 12px 28px;
  font-size: 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
  max-width: 300px;
  width: auto;
  

}

.cta-button:hover {
  background-color: #2f751a;
}

/* Decorative leaves */
.leaf {
  position: absolute;
  width: 90px;
  animation: bounce 2s ease-in-out infinite;
}

/* Decorative leaves */
.leaf {
  position: absolute;
  width: 130px;
  animation: bounceSway 3s ease-in-out infinite;
}

/* Leaf positions */
.top-left {
  top: 0;
  left: 0;
}

.bottom-right {
  bottom: 0;
  right: 0;
}

/* Combined Bounce + Sway animation */
@keyframes bounceSway {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(-5deg);
  }
  50% {
    transform: translateY(-25px) rotate(5deg);
  }
  75% {
    transform: translateY(-15px) rotate(-3deg);
  }
}

.testimonials {
  text-align: center;
  padding: 10px 5px;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.testimonials h2 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}
.testimonial-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  background: #fefdd7;
  padding: 25px;
  border-radius: 30px;
  width: 280px;
  box-shadow: 8px 8px 0 #444;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.stars {
  font-size: 24px;
  color: orange;
  margin-bottom: 10px;
}

.testimonial-card p {
  margin: 10px 0;
  font-size: 15px;
  color: #222;
}

.testimonial-card .name {
  margin-top: 20px;
  font-weight: bold;
  font-size: 14px;
  text-align: left;
}

.testimonial-image-below {
  margin-top: 40px;
  text-align: center;
}

.testimonial-image-below img {
  width: 90%;
  max-width: 200px;
  height: auto;
}

.contact-footer {
  background: #fffced;
  border-top: 2px solid #000;
  padding: 50px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-left,
.footer-right {
  flex: 1 1 420px;
}

.footer-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

.tagline {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.clients-logos span {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.logos img {
  height: 40px;
  object-fit: contain;
}

.footer-right h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px;
  margin-left: 150px;
}

.footer-right p {
  font-size: 15px;
  margin: 5px 0;
  margin-left: 15px;
}

.footer-right span {
  font-weight: bold;
  margin-right: 130px;

}

.social-icons img {
  height: 45px;
  margin-right: -10px;
  margin-left: 175px;

}

address {
  margin-top: 20px;
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
	margin-left: 150px
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: #111;
  margin-top: 40px;
  border-top: 1px solid #aaa;
  padding-top: 10px;
}


/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Section style to make it full screen height */
section {
  height: 100vh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  min-height: 100vh;
  padding: 60px 20px;
}

/* Ensure image inside hero scales responsively */
.hero-left img {
  max-width: 100%;
  height: auto;
}

.cta-wrapper {
	text-align: center;
	margin-top: 30px;
}
/* Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}

/* Floating WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  width: 55px;
  height: 50px;
  animation: pulse 1.8s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.moving-image {
  position: absolute;
  top: 300px;
  left: 100px;
  width: 200px;
  transition: transform 1.5s ease-in-out;
  z-index: 5;
}

.moving-image.active {
  transform: translate(490px, 885px); /* adjust ikut position target */
}




html, body
{
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}


.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #FFFFFF;
}

/* ✅ Navigation Bar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 24px; /* reduced from 15px 40px */
  background-color: white;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: top 0.3s ease-in-out;
  z-index: 9999;
}

.logo img {
  height: 70px; /* reduced from 95px */
}


.nav-links a {
  font-weight: bold;
  text-decoration: none;
  color: black;
  margin: 0 20px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #28a745; /* or any color you want on hover */
}

.nav-links a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #28a745;
  transition: width 0.3s;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.nav-links a:hover::after {
  width: 100%;
}


.cta-button {
  padding: 6px 16px;       /* Reduced for smaller height */
  font-size: 14px;         /* Slightly smaller text */
  border-radius: 8px;
  background-color: #3e961f;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #256427;
}

/* ✅ Hero Section */
.hero-section {
  padding: 30px 10px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-image img {
  max-width: 100%;
  width: 560px;
  height: 400px;
}

.hero-text {
  max-width: 300px;
  padding: 16px;
  text-align: left;
}

.hero-text h1 {
  font-size: 5px;
  margin: 0;
  text-align: left;
  font-weight: bold;
}

.hero-text h2 {
  font-size: 25px;
  margin-top: 20px;
  line-height: 1.5;
  font-weight: 700;
}

.red {
  color: #e60000;
}

.bold-red {
  color: #e60000;
  font-weight: 1000;
}
/* Section Layout */
.order-section {
  background-color: #F1F7CC;
  padding: 60px 20px;
}

.order-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1290px;
  margin: auto;
  gap: 150px;
}

/* Left Content */
.order-left {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.order-text {
  font-size: 50px;
  font-weight: 4500px;
  max-width: 350px;
  margin: 0 auto 4px;
  margin-left: 140px;
  margin-top: -19px;
  line-height: 1.4;
  color: #333;
}

.order-person {
  width: 400px;
  max-width: 100%;
  margin-bottom: 20px;
  margin-right: 230px;
  margin-top: -22px;
}

/* Button */
.order-btn {
  display: inline-block;
  background-color: #43a047;
  color: white;
  font-weight: 700;
  padding: 15px 50px;
  margin-left: -545px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 25px;
  transition: background 0.3s ease;
}

.order-btn:hover {
  background-color: #2e7d32;
}

/* Right Content */
.order-right {
  position: relative;
  width: 320px;
  height: 450px;
  overflow: hidden;
  border-radius: 15px;
  border: 2px solid #ddd;
}

.slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose {
  position: relative;
  background: #f9f9f9;
  padding: 20px 10px;
  text-align: center;
  overflow: hidden;
}

.why-choose h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.feature {
  max-width: 280px;
  padding: 25px;


  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature img {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  color: #555;
}

/* Background image frames */
.background-left,
.background-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.40;
  z-index: 1;
}

.background-left {
  left: 0;
  background-image: url("../img/download.jpeg"); /* Example: Left frame image */

  background-position: left center;
}

.background-right {
  right: 0;
  background-image: url("../img/Want to create stylish and eco-friendly shoes, hats, and bags_.jpeg"); /* Example: Right frame image */
  background-position: right center;
}

.collections-section {
  text-align: center;
  padding: 30px 20px;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
  margin: auto;
  
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 20px;
}

.carousel-track img {
  width: 200px;     /* ubah ikut saiz yang kau nak */
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.card {
  flex: 0 0 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  border: medium;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.arrow {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  margin: 0 10px;
  color: #000;
  transition: transform 0.2s;
}

.arrow:hover {
  transform: scale(1.2);
}


.how-to-order {
  position: relative;
  padding: 10px 0px;
  text-align: center;
  background: #fff;
}

.how-to-order h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.step {
  max-width: 280px;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.icon {
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
}

.step p {
  font-size: 20px;
  color: #333;
}

.cta-button {
  background-color: #3e961f;
  color: white;
  font-weight: 700;
  padding: 12px 28px;
  font-size: 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
  max-width: 300px;
  width: auto;
  

}

.cta-button:hover {
  background-color: #2f751a;
}

/* Decorative leaves */
.leaf {
  position: absolute;
  width: 90px;
  animation: bounce 2s ease-in-out infinite;
}

/* Decorative leaves */
.leaf {
  position: absolute;
  width: 90px;
  animation: bounceSway 3s ease-in-out infinite;
}

/* Leaf positions */
.top-left {
  top: 0;
  left: 0;
}

.bottom-right {
  bottom: 0;
  right: 0;
 
}

/* Combined Bounce + Sway animation */
@keyframes bounceSway {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(-5deg);
  }
  50% {
    transform: translateY(-25px) rotate(5deg);
  }
  75% {
    transform: translateY(-15px) rotate(-3deg);
  }
}

.testimonials {
  text-align: center;
  padding: 5px 0px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.testimonials h2 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  background: #fefdd7;
  padding: 25px;
  border-radius: 30px;
  width: 280px;
  box-shadow: 8px 8px 0 #444;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.stars {
  font-size: 24px;
  color: orange;
  margin-bottom: 10px;
}

.testimonial-card p {
  margin: 10px 0;
  font-size: 15px;
  color: #222;
}

.testimonial-card .name {
  margin-top: 20px;
  font-weight: bold;
  font-size: 14px;
  text-align: left;
}


@keyframes slideUpFade {
  0% {
    opacity: 0;


    transform: translateY(30px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.contact-footer {
  background: #fffced;
  border-top: 2px solid #000;
  padding: 30px 20px 10px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-left,
.footer-right {
  flex: 1 1 420px;
}

.footer-left h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.tagline {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.desc {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.clients-logos span {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.logos img {
  height: 40px;
  object-fit: contain;
}

.footer-right h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px;
  margin-left: 150px;
}

.footer-right p {
  font-size: 13px;
  margin: 5px 0;
  margin-left: 15px;
}

.footer-right span {
  font-weight: bold;
  margin-right: 130px;

}

.social-icons img {
  height: 45px;
  margin-right: -10px;
  margin-left: 175px;

}

address {
  margin-top: 20px;
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
	margin-left: 150px
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: #111;
  margin-top: 40px;
  border-top: 1px solid #aaa;
  padding-top: 10px;
}


/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Section style to make it full screen height */
section {
  height: 100vh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  min-height: 100vh;
  padding: 60px 20px;
}

/* Ensure image inside hero scales responsively */
.hero-left img {
  max-width: 100%;
  height: auto;
}

.cta-wrapper {
	text-align: center;
	margin-top: 30px;
  scroll-behavior: smooth;
  overflow: hidden;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}

/* ✅ Navigation Bar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 24px; /* reduced from 15px 40px */
  background-color: white;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: top 0.3s ease-in-out;
  z-index: 9999;
}

.logo img {
  height: 65px; /* reduced from 95px */
}


.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
  color: #000;
}

.cta-button {
  padding: 6px 16px;       /* Reduced for smaller height */
  font-size: 14px;         /* Slightly smaller text */
  border-radius: 8px;
  background-color: #3e961f;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #256427;
}

/* ✅ Hero Section */
.hero-section {
  padding: 80px 20px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-image img {
  max-width: 100%;
  width: 560px;
  height: 400px;
}

.hero-text {
  max-width: 600px;
  padding: 20px;
  text-align: left;
}

.hero-text h1 {
  font-size: 70px;
  margin: 0;
  font-weight: bold;
}

.hero-text h2 {
  font-size: 28px;
  margin-top: 20px;
  line-height: 1.5;
  font-weight: 900;
}

.red {
  color: #e60000;
}

.bold-red {
  color: #e60000;
  font-weight: 1000;
}
/* Section Layout */
.order-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.order-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1290px;
  margin: auto;
  gap: 150px;
}

/* Left Content */
.order-left {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.order-text {
  font-size: 20px;
  font-weight: 490px;
  max-width: 350px;
  margin: 0 auto 4px;
  margin-left: 140px;
  margin-top: -19px;
  line-height: 1.4;
  color: #333;
}

.order-person {
  width: 400px;
  max-width: 100%;
  margin-bottom: 20px;
  margin-right: 230px;
  margin-top: -22px;
}

/* Button */
.order-btn {
  display: inline-block;
  background-color: #43a047;
  color: white;
  font-weight: 700;
  padding: 15px 50px;
  margin-left: -545px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 25px;
  transition: background 0.3s ease;
}

.order-btn:hover {
  background-color: #2e7d32;
}

/* Right Content */
.order-right {
  position: relative;
  width: 320px;
  height: 450px;
  overflow: hidden;
  border-radius: 15px;
  border: 2px solid #ddd;
}

.slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-choose {
  position: relative;
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.why-choose h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.feature {
  max-width: 280px;
  padding: 25px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature img {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  color: #555;
}

/* Background image frames */
.background-left,
.background-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.40;
  z-index: 1;
}

.background-left {
  left: 0;
  background-image: url("../img/Woven Logic Collection.jpeg"); /* Example: Left frame image */
  background-position: left center;
}

.background-right {
  right: 0;
  background-image: url("../img/Gallante by Panaz - A Luxurious Chenille FR Upholstery Fabric.jpeg"); /* Example: Right frame image */
  background-position: right center;
}

.collections-section {
  text-align: center;
  padding: 50px 20px;
  margin-left: 150px;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
  margin: auto;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}
.carousel-track img {
  width: 100%;     /* ubah ikut saiz yang kau nak */
  flex-shrink: 0;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  margin: 0 10px;
}

.card {
  flex: 0 0 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.arrow {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  margin: 0 10px;
  color: #000;
  transition: transform 0.2s;
}

.arrow:hover {
  transform: scale(1.2);
}


.how-to-order {
  position: relative;
  padding: 10px 5px;
  text-align: center;
  background: #fff;
}

.how-to-order h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.step {
  max-width: 280px;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.icon {
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
}

.step p {
  font-size: 20px;
  color: #333;
}

.cta-button {
  background-color: #3e961f;
  color: white;
  font-weight: 700;
  padding: 12px 28px;
  font-size: 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
  max-width: 300px;
  width: auto;
  

}

.cta-button:hover {
  background-color: #2f751a;
}

/* Decorative leaves */
.leaf {
  position: absolute;
  width: 90px;
  animation: bounce 2s ease-in-out infinite;
}

/* Decorative leaves */
.leaf {
  position: absolute;
  width: 130px;
  animation: bounceSway 3s ease-in-out infinite;
}

/* Leaf positions */
.top-left {
  top: 0;
  left: 0;
}

.bottom-right {
  bottom: 0;
  right: 0;
}

/* Combined Bounce + Sway animation */
@keyframes bounceSway {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(-5deg);
  }
  50% {
    transform: translateY(-25px) rotate(5deg);
  }
  75% {
    transform: translateY(-15px) rotate(-3deg);
  }
}

.testimonials {
  text-align: center;
  padding: 10px 5px;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.testimonials h2 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  background: #fefdd7;
  padding: 25px;
  border-radius: 30px;
  width: 280px;
  box-shadow: 8px 8px 0 #444;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.stars {
  font-size: 24px;
  color: orange;
  margin-bottom: 10px;
}

.testimonial-card p {
  margin: 10px 0;
  font-size: 15px;
  color: #222;
}

.testimonial-card .name {
  margin-top: 20px;
  font-weight: bold;
  font-size: 14px;
  text-align: left;
}
.testimonial-image-below {
  margin-top: 40px;
  text-align: center;
}

.testimonial-image-below img {
  width: 90%;
  max-width: 200px;
  height: auto;
}


@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.contact-footer {
  background: #fffced;
  border-top: 2px solid #000;
  padding: 50px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-left,
.footer-right {
  flex: 1 1 420px;
}

.footer-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

.tagline {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.clients-logos span {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.logos img {
  height: 40px;
  object-fit: contain;
}

.footer-right h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px;
  margin-left: 150px;
}

.footer-right p {
  font-size: 15px;
  margin: 5px 0;
  margin-left: 15px;
}

.footer-right span {
  font-weight: bold;
  margin-right: 130px;

}

.social-icons img {
  height: 45px;
  margin-right: -10px;
  margin-left: 175px;

}

address {
  margin-top: 20px;
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
	margin-left: 150px
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: #111;
  margin-top: 40px;
  border-top: 1px solid #aaa;
  padding-top: 10px;
}


/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Section style to make it full screen height */
section {
  height: 100vh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  min-height: 100vh;
  padding: 60px 20px;
}

/* Ensure image inside hero scales responsively */
.hero-left img {
  max-width: 100%;
  height: auto;
}

.cta-wrapper {
	text-align: center;
	margin-top: 30px;
}
/* Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}

/* Floating WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  width: 55px;
  height: 50px;
  animation: pulse 1.8s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.moving-image {
  position: absolute;
  top: 150px;
  left: 100px;
  width: 250px;
  transition: transform 1.5s ease;
  z-index: 5;
}

.moving-image.active {
  transform: translate(450px, 980px); /* Adjust based on your layout */
}



@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
  }

  .nav-links a {
    margin: 5px 10px;
    font-size: 14px;
  }

  .cta-button {
    font-size: 13px;
    padding: 8px 14px;
    margin-top: 10px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text h2 {
    font-size: 18px;
  }

  .order-container {
    flex-direction: column;
    gap: 40px;
  }

  .order-left {
    text-align: center;
    margin-left: 0;
  }

  .order-text {
    margin: 0 auto;
    font-size: 16px;
  }

  .order-person {
    margin: 0 auto;
    width: 70%;
  }

  .order-btn {
    margin: 20px auto 0;
    display: block;
    font-size: 18px;
    padding: 12px 28px;
  }

  .order-right {
    width: 90%;
    height: auto;
  }

  .slider {
    height: auto;
  }

  .carousel-track img {
    max-width: 85%;
    margin: 0 auto;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right,
  .footer-left {
    margin-left: 0 !important;
  }

  address {
    margin-left: 0;
  }

  .social-icons img {
    margin-left: 0;
  }

  .footer-right h3,
  .footer-right p {
    margin-left: 0;
  }

  .leaf {
    display: none;
  }
}
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
  }

  .nav-links a {
    margin: 5px 10px;
    font-size: 14px;
  }

  .cta-button {
    font-size: 13px;
    padding: 8px 14px;
    margin-top: 10px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text h2 {
    font-size: 18px;
  }

  .order-container {
    flex-direction: column;
    gap: 40px;
  }

  .order-left {
    text-align: center;
    margin-left: 0;
  }

  .order-text {
    margin: 0 auto;
    font-size: 16px;
  }

  .order-person {
    margin: 0 auto;
    width: 70%;
  }

  .order-btn {
    margin: 20px auto 0;
    display: block;
    font-size: 18px;
    padding: 12px 28px;
  }

  .order-right {
    width: 90%;
    height: auto;
  }

  .slider {
    height: auto;
  }

  .carousel-track img {
    max-width: 85%;
    margin: 0 auto;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right,
  .footer-left {
    margin-left: 0 !important;
  }

  address {
    margin-left: 0;
  }

  .social-icons img {
    margin-left: 0;
  }

  .footer-right h3,
  .footer-right p {
    margin-left: 0;
  }

  .leaf {
    display: none;
  }
}
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
  }

  .nav-links a {
    margin: 5px 10px;
    font-size: 14px;
  }

  .cta-button {
    font-size: 13px;
    padding: 8px 14px;
    margin-top: 10px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text h2 {
    font-size: 18px;
  }

  .order-container {
    flex-direction: column;
    gap: 40px;
  }

  .order-left {
    text-align: center;
    margin-left: 0;
  }

  .order-text {
    margin: 0 auto;
    font-size: 16px;
  }

  .order-person {
    margin: 0 auto;
    width: 70%;
  }

  .order-btn {
    margin: 20px auto 0;
    display: block;
    font-size: 18px;
    padding: 12px 28px;
  }

  .order-right {
    width: 90%;
    height: auto;
  }

  .slider {
    height: auto;
  }

  .carousel-track img {
    max-width: 85%;
    margin: 0 auto;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right,
  .footer-left {
    margin-left: 0 !important;
  }

  address {
    margin-left: 0;
  }

  .social-icons img {
    margin-left: 0;
  }

  .footer-right h3,
  .footer-right p {
    margin-left: 0;
  }

  .leaf {
    display: none;
  }
}
html, body {
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}


.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}

/* ✅ Navigation Bar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 24px; /* reduced from 15px 40px */
  background-color: white;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: top 0.3s ease-in-out;
  z-index: 9999;
}

.logo img {
  height: 65px; /* reduced from 95px */
}


.nav-links a {
  font-weight: bold;
  text-decoration: none;
  color: black;
  margin: 0 20px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #28a745; /* or any color you want on hover */
}

.nav-links a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #28a745;
  transition: width 0.3s;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.nav-links a:hover::after {
  width: 100%;
}


.cta-button {
  padding: 6px 16px;       /* Reduced for smaller height */
  font-size: 14px;         /* Slightly smaller text */
  border-radius: 8px;
  background-color: #3e961f;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #256427;
}

/* ✅ Hero Section */
.hero-section {
  padding: 80px 20px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-image img {
  max-width: 100%;
  width: 560px;
  height: 400px;
}

.hero-text {
  max-width: 600px;
  padding: 20px;
  text-align: left;
}

.hero-text h1 {
  font-size: 70px;
  margin: 0;
  font-weight: bold;
}

.hero-text h2 {
  font-size: 28px;
  margin-top: 20px;
  line-height: 1.5;
  font-weight: 900;
}

.red {
  color: #e60000;
}

.bold-red {
  color: #e60000;
  font-weight: 1000;
}
/* Section Layout */
.order-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.order-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1290px;
  margin: auto;
  gap: 150px;
}

/* Left Content */
.order-left {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.order-text {
  font-size: 20px;
  font-weight: 490px;
  max-width: 350px;
  margin: 0 auto 4px;
  margin-left: 140px;
  margin-top: -19px;
  line-height: 1.4;
  color: #333;
}

.order-person {
  width: 400px;
  max-width: 100%;
  margin-bottom: 20px;
  margin-right: 230px;
  margin-top: -22px;
}

/* Button */
.order-btn {
  display: inline-block;
  background-color: #43a047;
  color: white;
  font-weight: 700;
  padding: 15px 50px;
  margin-left: -545px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 25px;
  transition: background 0.3s ease;
}

.order-btn:hover {
  background-color: #2e7d32;
}

/* Right Content */
.order-right {
  position: relative;
  width: 320px;
  height: 450px;
  overflow: hidden;
  border-radius: 15px;
  border: 2px solid #ddd;
}

.slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 5px 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #333;
}
.why-choose {
  position: relative;
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.why-choose h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.feature {
  max-width: 280px;
  padding: 25px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature img {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  color: #555;
}

/* Background image frames */
.background-left,
.background-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.40;
  z-index: 1;
}

.background-left {
  left: 0;
  background-image: url("../img/download (2).jpg"); /* Example: Left frame image */
  background-position: left center;
}

.background-right {
  right: 0;
  background-image: url("../img/bde.jpg"); /* Example: Right frame image */
  background-position: right center;
}

.collections-section {
  text-align: center;
  padding: 50px 20px;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
  margin: auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 20px;
}

.carousel-track img {
  width: 200px;     /* ubah ikut saiz yang kau nak */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.card {
  flex: 0 0 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.arrow {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  margin: 0 10px;
  color: #000;
  transition: transform 0.2s;
}

.arrow:hover {
  transform: scale(1.2);
}


.how-to-order {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.how-to-order h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.step {
  max-width: 280px;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.icon {
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
}

.step p {
  font-size: 20px;
  color: #333;
}

.cta-button {
  background-color: #3e961f;
  color: white;
  font-weight: 700;
  padding: 12px 28px;
  font-size: 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
  max-width: 300px;
  width: auto;
  

}

.cta-button:hover {
  background-color: #2f751a;
}

/* Decorative leaves */
.leaf {
  position: absolute;
  width: 90px;
  animation: bounce 2s ease-in-out infinite;
}

/* Decorative leaves */
.leaf {
  position: absolute;
  width: 90px;
  animation: bounceSway 3s ease-in-out infinite;
}

/* Leaf positions */
.top-left {
  top: 0;
  left: 0;
}

.bottom-right {
  bottom: 0;
  right: 0;
}

/* Combined Bounce + Sway animation */
@keyframes bounceSway {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(-5deg);
  }
  50% {
    transform: translateY(-25px) rotate(5deg);
  }
  75% {
    transform: translateY(-15px) rotate(-3deg);
  }
}

.testimonials {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.testimonials h2 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  background: #fefdd7;
  padding: 25px;
  border-radius: 30px;
  width: 280px;
  box-shadow: 8px 8px 0 #444;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.stars {
  font-size: 24px;
  color: orange;
  margin-bottom: 10px;
}

.testimonial-card p {
  margin: 10px 0;
  font-size: 15px;
  color: #222;
}

.testimonial-card .name {
  margin-top: 20px;
  font-weight: bold;
  font-size: 14px;
  text-align: left;
}


@keyframes slideUpFade {
  0% {
    opacity: 0;


    transform: translateY(30px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.contact-footer {
  background: #fffced;
  border-top: 2px solid #000;
  padding: 30px 20px 10px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-left,
.footer-right {
  flex: 1 1 420px;
}

.footer-left h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.tagline {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.desc {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.clients-logos span {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.logos img {
  height: 40px;
  object-fit: contain;
}

.footer-right h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px;
  margin-left: 150px;
}

.footer-right p {
  font-size: 13px;
  margin: 5px 0;
  margin-left: 15px;
}

.footer-right span {
  font-weight: bold;
  margin-right: 130px;

}

.social-icons img {
  height: 45px;
  margin-right: -10px;
  margin-left: 175px;

}

address {
  margin-top: 20px;
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
	margin-left: 150px
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: #111;
  margin-top: 40px;
  border-top: 1px solid #aaa;
  padding-top: 10px;
}


/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Section style to make it full screen height */
section {
  height: 100vh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  min-height: 100vh;
  padding: 60px 20px;
}

/* Ensure image inside hero scales responsively */
.hero-left img {
  max-width: 100%;
  height: auto;
}

.cta-wrapper {
	text-align: center;
	margin-top: 30px;
  scroll-behavior: smooth;
  overflow: hidden;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}

/* ✅ Navigation Bar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 24px; /* reduced from 15px 40px */
  background-color: white;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: top 0.3s ease-in-out;
  z-index: 9999;
}

.logo img {
  height: 65px; /* reduced from 95px */
}


.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
  color: #000;
}

.cta-button {
  padding: 6px 16px;       /* Reduced for smaller height */
  font-size: 14px;         /* Slightly smaller text */
  border-radius: 8px;
  background-color: #3e961f;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #256427;
}

/* ✅ Hero Section */
.hero-section {
  padding: 80px 20px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-image img {
  max-width: 100%;
  width: 560px;
  height: 400px;
}

.hero-text {
  max-width: 600px;
  padding: 20px;
  text-align: left;
}

.hero-text h1 {
  font-size: 70px;
  margin: 0;
  font-weight: bold;
}

.hero-text h2 {
  font-size: 28px;
  margin-top: 20px;
  line-height: 1.5;
  font-weight: 900;
}

.red {
  color: #e60000;
}

.bold-red {
  color: #e60000;
  font-weight: 1000;
}
/* Section Layout */
.order-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.order-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1290px;
  margin: auto;
  gap: 150px;
}

/* Left Content */
.order-left {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.order-text {
  font-size: 20px;
  font-weight: 490px;
  max-width: 350px;
  margin: 0 auto 4px;
  margin-left: 140px;
  margin-top: -19px;
  line-height: 1.4;
  color: #333;
}

.order-person {
  width: 400px;
  max-width: 100%;
  margin-bottom: 20px;
  margin-right: 230px;
  margin-top: -22px;
}

/* Button */
.order-btn {
  display: inline-block;
  background-color: #43a047;
  color: white;
  font-weight: 700;
  padding: 15px 50px;
  margin-left: -545px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 25px;
  transition: background 0.3s ease;
}

.order-btn:hover {
  background-color: #2e7d32;
}

/* Right Content */
.order-right {
  position: relative;
  width: 320px;
  height: 450px;
  overflow: hidden;
  border-radius: 15px;
  border: 2px solid #ddd;
}

.slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 5px 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #333;
}
.why-choose {
  position: relative;
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.why-choose h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.feature {
  max-width: 280px;
  padding: 25px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature img {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  color: #555;
}

/* Background image frames */
.background-left,
.background-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.40;
  z-index: 1;
}

.background-left {
  left: 0;
  background-image: url("../img/download (2).jpg"); /* Example: Left frame image */
  background-position: left center;
}

.background-right {
  right: 0;
  background-image: url("../img/bde.jpg"); /* Example: Right frame image */
  background-position: right center;
}

.collections-section {
  text-align: center;
  padding: 50px 20px;
  margin-left: 150px;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
  margin: auto;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}
.carousel-track img {
  width: 100%;     /* ubah ikut saiz yang kau nak */
  flex-shrink: 0;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  margin: 0 10px;
}

.card {
  flex: 0 0 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.arrow {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  margin: 0 10px;
  color: #000;
  transition: transform 0.2s;
}

.arrow:hover {
  transform: scale(1.2);
}


.how-to-order {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.how-to-order h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.step {
  max-width: 280px;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.icon {
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
}

.step p {
  font-size: 20px;
  color: #333;
}

.cta-button {
  background-color: #3e961f;
  color: white;
  font-weight: 700;
  padding: 12px 28px;
  font-size: 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
  max-width: 300px;
  width: auto;
  

}

.cta-button:hover {
  background-color: #2f751a;
}

/* Decorative leaves */
.leaf {
  position: absolute;
  width: 90px;
  animation: bounce 2s ease-in-out infinite;
}

/* Decorative leaves */
.leaf {
  position: absolute;
  width: 90px;
  animation: bounceSway 3s ease-in-out infinite;
}

/* Leaf positions */
.top-left {
  top: 0;
  left: 0;
}

.bottom-right {
  bottom: 0;
  right: 0;
}

/* Combined Bounce + Sway animation */
@keyframes bounceSway {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(-5deg);
  }
  50% {
    transform: translateY(-25px) rotate(5deg);
  }
  75% {
    transform: translateY(-15px) rotate(-3deg);
  }
}

.testimonials {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.testimonials h2 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  background: #fefdd7;
  padding: 25px;
  border-radius: 30px;
  width: 280px;
  box-shadow: 8px 8px 0 #444;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.stars {
  font-size: 24px;
  color: orange;
  margin-bottom: 10px;
}

.testimonial-card p {
  margin: 10px 0;
  font-size: 15px;
  color: #222;
}

.testimonial-card .name {
  margin-top: 20px;
  font-weight: bold;
  font-size: 14px;
  text-align: left;
}


@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.contact-footer {
  background: #fffced;
  border-top: 2px solid #000;
  padding: 50px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-left,
.footer-right {
  flex: 1 1 420px;
}

.footer-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

.tagline {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.clients-logos span {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.logos img {
  height: 40px;
  object-fit: contain;
}

.footer-right h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px;
  margin-left: 150px;
}

.footer-right p {
  font-size: 15px;
  margin: 5px 0;
  margin-left: 15px;
}

.footer-right span {
  font-weight: bold;
  margin-right: 130px;

}

.social-icons img {
  height: 45px;
  margin-right: -10px;
  margin-left: 175px;

}

address {
  margin-top: 20px;
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
	margin-left: 150px
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: #111;
  margin-top: 40px;
  border-top: 1px solid #aaa;
  padding-top: 10px;
}


/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Section style to make it full screen height */
section {
  height: 100vh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  min-height: 100vh;
  padding: 60px 20px;
}

/* Ensure image inside hero scales responsively */
.hero-left img {
  max-width: 100%;
  height: auto;
}

.cta-wrapper {
	text-align: center;
	margin-top: 30px;
}

/* Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}

/* Floating WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  animation: pulse 1.8s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Optional: Hide on small devices if you want */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
}

