@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-white: #ffffff;
  --primary-black: #111111;
  --soft-black: #1c1c1c;

  --accent-yellow: #ffcc00;
  --accent-yellow-dark: #e6b800;

  --text-dark: #111111;
  --text-gray: #555555;
  --text-light: #777777;

  --border-light: #e5e5e5;

  --gradient-main: linear-gradient(
    135deg,
    #ffcc00 0%,
    #ffd633 50%,
    #fff2b3 100%
  );
}

/* ===== SCROLL ANIMATION BASE ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

/* WHEN VISIBLE */
.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

/* VARIATIONS (OPTIONAL) */
.fade-left {
  transform: translateX(-40px);
}

.fade-right {
  transform: translateX(40px);
}

.fade-up {
  transform: translateY(40px);
}

.show.fade-left,
.show.fade-right,
.show.fade-up {
  transform: translate(0, 0);
}
/* scroll animaiton end */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}

/* ========== TOP INFO BAR ========== */
.top-info-bar {
  background: #ffffff;
}

.top-info-inner {
  max-width: 1600px;
  margin: auto;
  padding: 8px 24px;
  display: flex;
  justify-content: right;
}

.info-left {
  cursor: pointer;
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: #111111;
}

/* ========== MAIN HEADER ========== */
.even-header {
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
}

.even-header-inner {
  max-width: 1600px;
  margin: auto;
  padding: 20px 24px;

  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

/* LOGO */
.even-logo img {
  max-height: 56px;
  width: auto;
}

/* NAV */
.even-nav ul {
  list-style: none;
  display: flex;
  gap: 34px;
}

.even-nav a {
  text-decoration: none;
  color: #111111;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
}

/* NAV HOVER UNDERLINE */
.even-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #ffcc00;
  transition: width 0.3s ease;
}

.even-nav a:hover::after {
  width: 100%;
}

.hero-carousel {
  position: relative;
  height: 92vh;
  overflow: hidden;
}

/*carousal start */

/* SLIDES */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 1.4s ease,
    transform 1.4s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* OVERLAY */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 20%,
    rgba(0, 0, 0, 0.25) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* CONTENT */
.hero-content {
  position: absolute;
  left: 7%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 520px;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
}

.hero-content h1 span {
  color: #ffcc00; /* theme yellow */
}

.hero-content p {
  margin-top: 18px;
  font-size: 17px;
  color: #e0e0e0;
  line-height: 1.6;
}

/* DOTS */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 10;
}

.dot {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.dot.active {
  background: #ffcc00;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content {
    left: 6%;
  }
}

/* carousal end  */

/* catalog start  */
.catalog-section {
  background: rgb(189, 189, 189);
  padding: 100px 24px;
}

.catalog-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.catalog-container h2 {
  font-size: 36px;
  color: #111;
  margin-bottom: 10px;
}

.catalog-container h2 span {
  color: #ffcc00;
}

.catalog-container p {
  color: #555;
  margin-bottom: 40px;
}

/* CARD */
.catalog-card {
  position: relative;
  display: inline-block;
  max-width: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.catalog-card img {
  width: 100%;
  display: block;
}

/* OVERLAY */
.download-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.download-overlay i {
  font-size: 32px;
  margin-bottom: 10px;
}

.download-overlay span {
  font-size: 15px;
  font-weight: 500;
}

/* HOVER */
.catalog-card:hover .download-overlay {
  opacity: 1;
}

/* catalog end  */

/* product style start  */
.product-grid {
  background: #ffffff;
  padding: 100px 24px;
}

.product-grid-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */
.product-card {
  position: relative;
  height: 320px; /* 🔥 SAME HEIGHT FOR ALL */
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
}

/* IMAGE */
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  transition: background 0.3s ease;
}

/* CONTENT */
.product-content {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.product-content h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.product-content span {
  font-size: 13px;
  font-weight: 600;
  color: #ffcc00;
}

/* HOVER */
.product-card:hover::before {
  background: rgba(0, 0, 0, 0.35);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .product-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid-container {
    grid-template-columns: 1fr;
  }

  .product-card {
    height: 260px;
  }
}
/* product style end */

/* why spm start */
.about-split {
  background: #ffffff;
  padding: 120px 24px;
}

.about-split-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* LEFT */
.about-left h2 {
  font-size: 48px;
  line-height: 1.15;
  color: #111111;
  margin-bottom: 32px;
}

.about-cta {
  display: inline-block;
  background: #ffcc00; /* yellow theme */
  color: #111;
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 204, 0, 0.35);
}

/* RIGHT */
.about-right {
  color: #222;
}

.about-lead {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 500;
}

.about-right p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* why spm end */

/* service section start */
.service-section {
  background: #ffffff;
  padding: 100px 0;
}

/* IMPORTANT FIX */
.service-container {
  max-width: 500px;
  margin: auto;
  padding: 0 32px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3px; /* 👈 HORIZONTAL SPACE */
  row-gap: 3px; /* 👈 VERTICAL SPACE */
}

/* CARD */
.service-card {
  background: #ffffff;
  overflow: hidden;
}

/* IMAGE */
.service-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.service-content {
  background: #d6001c;
  padding: 36px;
  color: #ffffff;
}

.service-content span {
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}

.service-content h3 {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 24px;
}

/* BUTTON */
.service-content a {
  display: inline-block;
  background: #ffffff;
  color: #111;
  padding: 10px 26px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 900px) {
  .service-container {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
}

/* service section end  */

/* why choose us start faq */
/* FAQ SECTION */
.faq-section {
  background: #ffffff;
  padding: 100px 24px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

/* TITLE */
.faq-title {
  font-size: 36px;
  text-align: center;
  color: #111;
  margin-bottom: 50px;
}

.faq-title span {
  color: #ffcc00;
}

/* FAQ ITEM */
.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 500;
  color: #111;
  text-align: left;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* PLUS ICON */
.faq-question span {
  font-size: 26px;
  font-weight: 300;
  color: #ffcc00;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  padding-right: 20px;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 200px; /* enough for 2–3 lines */
  padding-bottom: 18px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg); /* + becomes × */
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .faq-title {
    font-size: 30px;
  }

  .faq-question {
    font-size: 16px;
  }
}

/* why choose us end faq */

/* form start */
.contact-form-section {
  background: #ffffff;
  padding: 100px 24px;
}

.contact-form-container {
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.contact-form-container h2 {
  font-size: 36px;
  color: #111;
  margin-bottom: 10px;
}

.contact-form-container h2 span {
  color: #ffcc00;
}

.contact-form-container p {
  color: #555;
  margin-bottom: 40px;
}

/* FORM */
.contact-form-container form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-container input,
.contact-form-container select,
.contact-form-container textarea {
  width: 100%;
  padding: 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  outline: none;
}

.contact-form-container textarea {
  height: 120px;
  resize: none;
}

/* BUTTON */
.contact-form-container button {
  background: #ffcc00;
  color: #111;
  padding: 14px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 40px;
  transition: 0.3s ease;
}

.contact-form-container button:hover {
  box-shadow: 0 12px 30px rgba(255, 204, 0, 0.4);
}

/* form end  */

/* footer start */
.site-footer {
  font-family: "Poppins", sans-serif;
}

/* TOP FOOTER */
.footer-top {
  background: #f2f2f2;
  padding: 80px 24px;
}

.footer-container {
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
}

/* BRAND */
.brand-col h4 {
  font-size: 22px;
  font-weight: 600;
  position: relative;
  padding-top: 12px;
}

.brand-col h4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ff0000;
}

/* TITLES */
.footer-col h5 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #111;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* BOTTOM FOOTER */
.footer-bottom {
  background: #6f6f6f;
  padding: 16px 24px;
  color: #fff;
}

.footer-bottom-container {
  max-width: 1400px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin: 0 4px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.footer-social a {
  color: #fff;
  font-size: 14px;
}
.footer-social a:hover {
  color: rgb(228, 54, 83);
}
/* footer end */

/* header tagline start */
.header-tagline {
  background: #ffffff;
  padding: 18px 24px;
  border-bottom: 1px solid #e6e6e6;
  text-align: center;
}

/* TEXT */
.tagline-text {
  font-size: 16px;
  font-weight: 500;
  color: #111;
  overflow: hidden;
}

/* ANIMATION */
.tagline-animate {
  display: inline-block;
  animation: slideFade 2s ease forwards;
}

/* KEYFRAMES */
@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .tagline-text {
    font-size: 14px;
  }
}
/* header tagline end */
