
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


body {
  background: #f5f5f5;
}

/* ==NAVBAR == */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  z-index: 100;
}

.logo span {
  color: #f9c74f;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

.navbar a:hover {
  color: #f9c74f;
}

/* ==HERO SECTION == */
.hero {
  position: relative;
  min-height: 100vh;
  background-image: url("https://img.pikbest.com/ai/illus_our/20230424/2facb17a843908ab3f0b84b28baf6aaa.jpg!w700wp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 80px;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-left {
  max-width: 520px;
  animation: fadeSlide 1.2s ease forwards;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-left h1 span {
  color: #f9c74f;
}

.hero-left p {
  font-size: 17px;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  transition: 0.3s;
}

.btn.primary {
  background: #f9c74f;
  color: black;
  text-decoration: none;
}

.btn.primary:hover {
  background: #ffd166;
  transform: translateY(-3px);
}

.btn.secondary {
  background: transparent;
  border: 1px solid white;
  color: white;
  text-decoration: none;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ================= ABOUT ================= */


.about h1{
  margin-top: 25px;
}

.about-wrapper {
  margin-top: 40px;
  padding: 50px;
  background: #fff;
}

/* ROW */
.about-row {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 50px;
  overflow: hidden; /* prevents scroll during animation */
}

.about-row.reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.about-img {
  width: 45%;
}

.about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

/* TEXT */
.about-text {
  width: 45%;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #111;
}

.about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}


/* == ABOUT ANIMATIONS == */

/* Hide initially */
.slide-left,
.slide-right {
  opacity: 0;
}

/* Trigger animation */
.animate-left {
  animation: slideFromLeft 1.2s ease forwards;
}

.animate-right {
  animation: slideFromRight 1.2s ease forwards;
}


.about-row:nth-child(1) .slide-left,
.about-row:nth-child(1) .slide-right {
  animation-delay: 0.2s;
}

.about-row:nth-child(2) .slide-left,
.about-row:nth-child(2) .slide-right {
  animation-delay: 0.4s;
}

.about-row:nth-child(3) .slide-left,
.about-row:nth-child(3) .slide-right {
  animation-delay: 0.6s;
}

/* KEYFRAMES */
@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}



/* ================= SERVICES ================= */
.services-section {
  padding: 100px 80px;
  background: #f8f8f8;
  text-align: center;
}

.section-title {
  font-size: 42px;
  margin-top: -70px;
}

.service-main-cards {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.service-card {
  position: relative;
  width: 380px;
  height: 460px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 25px 45px rgba(0,0,0,0.2);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s;
}

.service-card:hover .card-overlay {
  opacity: 1;
}

.card-overlay h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.card-overlay p {
  margin-bottom: 20px;
}

.card-overlay button {
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  background: #f9c74f;
  cursor: pointer;
  font-size: 16px;
}

/* ================= FABRIC SLIDER ================= */

/* HEADER */
.fabric-header {
  padding: 60px 15px 35px;
  text-align: center;
  background: #f8fafa;
}

.fabric-header .section-title {
  font-size: 42px;
  color: #130e02;
  margin-bottom: 10px;
  font-weight: 600;
}

.fabric-header .section-subtitle {
  font-size: 16px;
  color: #41474e;
  max-width: 720px;
  margin: auto;
  line-height: 1.6;
}

/* SLIDER CONTAINER */
.fabric-hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

/* SLIDES */
.fabric-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 2.5s ease;
}

.fabric-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* OVERLAY */
.fabric-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35)
  );
}

/* ================= FABRIC CONTENT ================= */

.fabric-content {
  position: relative;
  z-index: 2;

  max-width: 600px;
  margin: 0 auto;                 /* center horizontally */
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;        /* center vertically */
  align-items: center;            /* center horizontally */

  text-align: center;
  color: #ffffff;

  animation: slideInText 1.1s ease forwards;
}

/* HEADING */
.fabric-content h2 {
  font-size: 48px;
  font-weight: 600;
  color: #f9c74f;
  margin-bottom: 14px;
}

/* SUBTEXT */
.fabric-content p {
  font-size: 18px;
  color: #e5e7eb;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 420px;
}

/* ================= CHOOSE FABRIC BUTTON ================= */

.fabric-content .choose-btn {
  padding: 14px 40px;
  border-radius: 40px;
  border: none;

  background: linear-gradient(135deg, #f9c74f, #ffd166);
  color: #111;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;

  cursor: pointer;
  box-shadow: 0 12px 32px rgba(249,199,79,0.35);
  transition: all 0.35s ease;
}

/* HOVER EFFECT */
.fabric-content .choose-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(249,199,79,0.5);
}

/* CLICK EFFECT */
.fabric-content .choose-btn:active {
  transform: translateY(-2px);
}


/* ================= NAV BUTTONS (MINIMAL & ELEGANT) ================= */

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  border: none;
  font-size: 22px;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  z-index: 5;
}

.nav-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.12);
}

.nav-btn.prev {
  left: 25px;
}

.nav-btn.next {
  right: 25px;
}

/* ================= ANIMATIONS ================= */

@keyframes slideInText {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .fabric-content {
    margin-left: 0;
    padding: 90px 25px;
    text-align: center;
  }

  .fabric-content p,
  .choose-btn {
    margin-left: 0;
  }

  .fabric-content h2 {
    font-size: 32px;
  }
}


/* ===BUSINESS INFO ==*/
.business-info {
  padding: 100px 80px;
  background: linear-gradient(180deg, #ffffff, #f3f6fb);
}

.business-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
}

.business-left h2 {
  font-size: 44px;
  margin-bottom: 25px;
}

.business-left p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

.business-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-box {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* === FOOTER === */
.footer {
  background: #111;
  color: #ddd;
  padding: 60px 80px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;

}

.footer-col h2,
.footer-col h3 {
  color: white;

}

/* FOOTER LINKS FIX */
.footer a {
  text-decoration: none;  
  color: #ffffff;         
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #f9c74f;          
  text-decoration: none;  
}


/* ====ANIMATIONS ===*/
@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/*  MOBILE RESPONSIVE */

@media (max-width: 768px) {

  .navbar {
    padding: 12px 20px;
    flex-direction: column;
  }

  .hero {
    padding: 0 20px;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 34px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-row,
  .about-row.reverse {
    flex-direction: column;
  }

  .about-img,
  .about-text {
    width: 100%;
  }

  .services-section {
    padding: 70px 20px;
  }

  .service-main-cards {
    flex-direction: column;
  }

  .service-card {
    width: 100%;
  }

  .fabric-content {
    margin-left: 0;
    padding: 80px 20px;
    text-align: center;
  }

  .fabric-content p,
  .choose-btn {
    margin-left: 0;
  }

  .business-container {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 28px;
  }

  .fabric-content h2 {
    font-size: 26px;
  }
}
