/* ==========================================
   1. GLOBAL & ROOT STYLES
   ========================================== */
:root {
  --bg-color: #f8f8f8;
  --text-dark: #111;
  --text-light: #fff;
  --brand-green: #3cb649;
  --brand-yellow: #fef200;
  --dark-bg: #1a1a1a;
  --gray-text: #666;
  --border-color: #e0e0e0;
  --primary-color: var(--brand-green);
  --accent-color: var(--brand-yellow);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', 'Inter', sans-serif;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: #fff;
  color: var(--text-dark);
  line-height: 1.6;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo i {
  font-size: 28px;
}

.logo div {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo span {
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.w-100 {
  width: 100%;
}

/* Common/Global Buttons */
.btn-primary.btn-brand-yellow {
  background-color: var(--brand-yellow) !important;
  color: #111 !important;
  padding: 10px 10px 10px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: transform 0.3s;
}

.btn-primary.btn-brand-yellow i {
  background: #111;
  color: var(--brand-yellow);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.btn-primary.btn-brand-yellow:hover {
  transform: translateY(-2px);
}

.view-more {
  background: #fff;
  color: #000;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.btn-white-pill {
  background: #111;
  color: white;
  padding: 10px 10px 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.btn-white-pill i {
  background: white;
  color: #111;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* ==========================================
   2. NAVBAR
   ========================================== */
.navbar-custom {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: transparent;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
}
.navbar-custom .container-fluid,
.navbar-custom .container-fluid {
  padding: 30px 40px;
}

.navbar-custom.navbar-scrolled,
.navbar-custom.navbar-expanded {
  background-color: rgba(33, 37, 41, 0.95) !important;
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-custom.navbar-scrolled .container-fluid,
.navbar-custom.navbar-expanded .container-fluid {
  padding: 0px 40px;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand .logo {
  color: white !important;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #f8f153 !important; /* Yellow accent on hover */
}

@media (max-width: 991px) {
  .navbar-custom.navbar-expanded,
  .navbar-custom.navbar-scrolled {
    background-color: #212529 !important;
  }

  .navbar-collapse {
    background-color: transparent !important;
    padding: 1rem 0;
    margin-top: 0;
  }
}

/* Sections moved the rest below */

/* ==========================================
   3. HERO SECTION (#hero-section)
   ========================================== */
.hero {
  height: 95vh;
  background-color: #2b2b2b;
  background-image: url('https://images.unsplash.com/photo-1493663284031-b7e3aefcae8e?w=1600&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-top: 50px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #e0e0e0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
}
@media (max-width: 991px) {
  .hero h1 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* ==========================================
   4. COLLECTIONS & SOLUTIONS (#section-2)
   ========================================== */
.collections {
  padding: 60px 40px 80px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fa 100%);
}

.collections-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.collections-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  max-width: 600px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
}

.collections-header p {
  color: var(--gray-text);
  max-width: 800px;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .collections-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .collections-header p {
    text-align: left;
  }
}

.collections-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
  justify-content: center;
}

.tab {
  padding: 10px 24px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-text);
  transition: all 0.3s;
}

.tab:hover {
  border-color: #999;
  color: #333;
}

.tab.active.brand-tab {
  background-color: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.solution-card {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  height: 450px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}

.solution-card:hover {
  transform: translateY(-10px);
}

.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  text-align: left;
}

.solution-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.solution-content p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

/* Chairs Display (Used in script.js) */

.partners {
  padding: 60px 40px;
  text-align: center;
  background: linear-gradient(180deg, #f4f8fa 0%, #ffffff 100%);
}

.partners h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 50px;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  align-items: center;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: 0.3s;
}

.partner-logos:hover {
  filter: grayscale(0%);
  opacity: 0.8;
}

.logo-placeholder {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================
   5. WASHING SERVICES (PARALLAX HERO) (#section-21)
   ========================================== */
.parallax-hero {
  position: relative;
  min-height: 100vh;
  background-image: url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&q=80&w=2000');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.parallax-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.content-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.divider {
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5), transparent);
  height: 100%;
}

@media (max-width: 768px) {
  .parallax-hero {
    background-attachment: scroll;
  }
  .divider {
    display: none;
  }
}

/* ==========================================
   6. GALLERY SHOWCASE (#section-5)
   ========================================== */
.gallery-showcase {
  padding: 100px 40px;
  background: linear-gradient(180deg, #fffde7 0%, #e2f3ca 100%);
}

.showcase-title {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

@media (max-width: 1024px) {
  .showcase-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .showcase-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .showcase-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.showcase-item {
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  height: 320px;
  background: #e0e0e0;
}

.showcase-item.span-2 {
  grid-column: span 2;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.showcase-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-item.span-2 {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   7. ABOUT US (#about-us)
   ========================================== */
.about-us {
  padding: 100px 0;
  overflow: hidden;
}

.sub-heading {
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 0.9rem;
  position: relative;
}

.about-text h2 {
  font-weight: 800;
  font-size: 2.8rem;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #333;
}

.highlight {
  color: var(--accent-color);
}

.about-text p {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .about-text {
    text-align: center;
    margin-bottom: 50px;
  }
  .about-text h2 {
    font-size: 2.2rem;
  }
  .about-text {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .about-text h2 {
    font-size: 2.2rem;
  }
}

.feature-box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

.feature-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .feature-box {
    text-align: left;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
  }
}

.about-image {
  position: relative;
  padding: 20px;
}

.image-wrapper img {
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

/* Decorative background element */
.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 80%;
  background: var(--primary-color);
  border-radius: 30px;
  z-index: 1;
  opacity: 0.1;
}

@media (max-width: 991px) {
  .about-image {
    max-width: 500px;
    margin: 0 auto;
    display: none;
  }
}

/* PARALLAX EFFECT FOR ABOUT US ON MOBILE */
@media (max-width: 991px) {
  .about-us {
    background:
      linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
      url('https://next-gen-coatings.quoteiq.site/wp-content/uploads/2026/01/tenweb_media_s2neajo1k.webp')
        center/cover no-repeat fixed;
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  /* .about-us, */
}

/* ==========================================
   8. PROCESS (#section-6)
   ========================================== */
.process {
  background: linear-gradient(180deg, #e2f3ca 0%, #f8ffee 100%);
  color: #333;
  padding: 100px 40px;
  position: relative;
}

.process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

.process-left {
  max-width: 500px;
}

.process-left h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.process-left p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .process-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .process-left h2 {
    font-size: 2.2rem;
  }
}

.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.timeline-item {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: left;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  height: 200px;
}

.t-top {
  justify-content: flex-start;
}
.t-bottom {
  justify-content: flex-end;
}

.timeline-item .dot {
  width: 12px;
  height: 12px;
  background: var(--brand-green);
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 0 0 5px rgba(155, 198, 83, 0.2);
  left: 20px;
}

.t-top .dot {
  top: calc(50% - 6px);
}
.t-bottom .dot {
  bottom: calc(50% - 6px);
}

.timeline-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.timeline-item h4 i {
  font-size: 16px;
  opacity: 0.9;
}

.timeline-item p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    gap: 40px;
  }
  .timeline-line {
    display: none;
  }
  .timeline-item {
    height: auto;
    padding: 0;
  }
  .timeline-item .dot {
    display: none;
  }
}

/* ==========================================
   9. UNVEILING (#section-7)
   ========================================== */
.unveiling {
  padding: 100px 40px;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.unveil-img {
  height: 350px;
  width: 300px;
  object-fit: cover;
  border-radius: 120px 120px 30px 30px;
  position: absolute;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.unveil-img.left {
  left: 8%;
  bottom: 50px;
}

.unveil-img.right {
  right: 8%;
  top: 50px;
  border-radius: 30px 30px 120px 120px;
}

@media (max-width: 768px) {
  .unveil-img {
    display: none;
  }
}

.unveiling-text {
  max-width: 500px;
  z-index: 2;
  background: white;
  padding: 40px;
}

.unveiling-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.unveiling-text p {
  color: var(--gray-text);
  margin-bottom: 30px;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ==========================================
   10. CONTACT SECTION (#contact)
   ========================================== */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f4f8fa 0%, #ffffff 100%);
  color: #333;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.contact-info p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    padding: 60px 0;
  }
}

.contact-form-card {
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.contact-form-card .form-control {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  padding: 15px 0;
  margin-bottom: 20px;
  background: transparent;
}

.contact-form-card .form-control:focus {
  box-shadow: none;
  border-color: var(--brand-green);
}

/* ==========================================
   11. FOOTER (#octapin-style-footer)
   ========================================== */
.octapin-style-footer {
  background-color: #f1faee;
  padding: 80px 0 0;
  position: relative;
  color: #333;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: #111;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #444;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-col ul li a:hover {
  color: #9bc653;
}

@media (min-width: 768px) {
  .footer-col.align-right {
    text-align: right;
  }

  .footer-col.align-right ul li a {
    justify-content: flex-end;
  }
}

.footer-divider {
  max-width: 1200px;
  margin: 40px auto;
  height: 1px;
  background: rgba(0, 0, 0, 0.05);
}

.footer-bottom {
  text-align: center;
  padding: 0 40px 0px;
  position: relative;
  z-index: 2;
}

.logo-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: #111;
}

.logo-center img {
  height: 150px;
  width: auto;
}

.logo-center i {
  font-size: 40px;
  color: #9bc653;
}

.brand-text {
  text-align: left;
  line-height: 1;
}

.brand-text strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}

.brand-text span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 5px;
}

.policy-links a {
  text-decoration: none;
  color: #9bc653;
  font-size: 0.9rem;
  margin: 0 5px;
}

.policy-links a:hover {
  text-decoration: underline;
}

.social-icons-center {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.social-icons-center a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #eaf2da;
  color: #9bc653;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons-center a:hover {
  background: #9bc653;
  color: #fff;
  transform: translateY(-3px);
}

.footer-wave {
  line-height: 0;
  margin-top: -120px;
  pointer-events: none;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.footer-mask {
  -webkit-background-image: url('./footer_design.svg');
  background-image: url('./footer_design.svg');
  -webkit-background-repeat: no-repeat;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.footer-mask .mask {
  height: 12.2rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  footer {
    padding-bottom: 300px;
  }
}

/* ==========================================
   12. MISCELLANEOUS & LEGACY (STAYING IN FILE)
   ========================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#section-1 {
  background: linear-gradient(180deg, #ffffff 0%, #f6f4cf 100%);
}
#section-2 {
  background: linear-gradient(180deg, #f6f4cf 0%, #f6f4cf 25%, #ecffee 100%);
}
#section-5 {
  background: linear-gradient(180deg, #fef3f3 0%, #fffeed 100%);
}
#about-us {
  background: linear-gradient(180deg, #fffeed 0%, #ecffee 100%);
}
#section-6 {
  background: linear-gradient(180deg, #ecffee 0%, #fff6ec 100%);
}
#section-7 {
  background: linear-gradient(180deg, #fff6ec 0%, #fff 100%);
}
#contact {
  background: linear-gradient(180deg, #fff 0%, #f5f5f5 70%, #fff 100%);
}
