/* ---------------------------------------------
   🌿 ROOT VARIABLES
--------------------------------------------- */
:root {
  --forest-green: #01442b;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --light-green: #e4f0e9;
  --light-cream: #fdf9f4;
  --light-gray: #fafafa;
}
html {
  scroll-behavior: smooth;
}
/* ---------------------------------------------
   🌐 GLOBAL RESET & BASE STYLES
--------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Raleway', sans-serif;
  background: var(--white);
  color: var(--forest-green);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 80px;

}



/* ---------------------------------------------
   🔝 NAVBAR
--------------------------------------------- */

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10000;
  background: white;
  padding: 1rem 5%;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.nav-container {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
}

.nav-center {
  flex: 1;
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  text-align: right;
}

.navbar a {
  text-decoration: none;
  color: var(--forest-green);
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.navbar a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--forest-green);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  color: #014d27;
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

/* Hamburger Icon */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  margin-left: 1rem;
}
.nav-toggle span {
  height: 3px;
  width: 100%;
  background: var(--forest-green);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-center {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 100%;
    display: none;
    padding: 1rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
.nav-logo img {
  height: 38px;
}
  .nav-center a {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    text-align: right;
    border-top: 1px solid #eee;
    transition: background 0.3s ease;
  }

  .nav-center a:hover {
    background: #f3f3f3;
  }

  .nav-center.active {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-container {
    flex-wrap: wrap;
  }

  .nav-logo {
    flex: 1 0 60%;
  }

  .nav-toggle {
    flex: 0 0 auto;
  }
}


/* ---------------------------------------------
   🌿 HERO SECTION - Redesigned Layout
--------------------------------------------- */
/* Hero Section */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('Images/herobg.jpg'); /* replace with actual chair image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.3) 100%);
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.hero-content {
  max-width: 1000px;
  color: var(--forest-green);
}

.hero-logo {
  height: 40px;
  margin-bottom: 2rem;
}

.hero-content h1 {
  /* Fluid font size: min 3rem, ideal 6vw, max 5.5rem */
  font-size: clamp(5rem, 8vw, 7.5rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  color: var(--forest-green);
  max-width: 90vw; /* prevent overflow */
  word-wrap: break-word;
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin: 1.5rem 0;
  color: var(--text-muted);
  max-width: 90vw;
    font-weight: 600;
}

/* Optional: add some padding or max-width on hero-content so text doesn't stretch too wide */
.hero-content {
  max-width: 1000px;
  padding-right: 5vw;
  color: var(--forest-green);
}

/* Responsive Hero Text */
@media (max-width: 768px) {
  .hero-content h1 {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  }


  .cta-button {
    font-size: 1rem;
  }
}


/* ---------------------------------------------
   🎯 CTA BUTTON
--------------------------------------------- */
.cta-button {
  position: relative;
  display: inline-block;
  padding: 0.85rem 2.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest-green);
  border: 2px solid var(--forest-green);
  border-radius: 20px;
  background: transparent;
  text-decoration: none;
  overflow: hidden;
  z-index: 0;
  transition: color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background-image: linear-gradient(45deg, var(--forest-green), #012d1c);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.cta-button:hover::before {
  transform: scaleX(1);
}

.cta-button:hover {
  color: white;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(1, 68, 43, 0.35);
}

/* ---------------------------------------------
   ✨ ANIMATIONS
--------------------------------------------- */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional floating element effect */
@keyframes floatSmooth {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ---------------------------------------------
   📄 SCROLL SECTIONS
--------------------------------------------- */
:root {
  --forest-green: #014421;
  --text-white: #ffffff;
}

section.scroll-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 5vw;
  font-weight: 400;
  font-size: 1.25rem;
  position: relative;
  overflow: hidden;
}

.scroll-section .content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 5rem;
}

.content-left,
.content-right {
  flex: 1;
}

.content-left h2 {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.2;
}

.content-right blockquote {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.content-right p {
  font-size: 1.25rem;
  line-height: 1.7;
}

.scroll-arrow {
  font-size: 2.5rem;
  margin-top: 2rem;
  cursor: pointer;
  text-align: left;
}

#section1 {
  background: var(--forest-green);
  color: var(--text-white);
}

#section2 {
  background: white;
  color: var(--forest-green);
}

#section3 {
  background: var(--forest-green);
  color: var(--text-white);
}
/* Arrow color adjustments based on section background */
#section1 .scroll-arrow,
#section3 .scroll-arrow {
  color: white; /* White on dark green background */
}

#section2 .scroll-arrow {
  color: var(--forest-green); /* Forest green on white background */
}

/* For mobile pseudo-arrow, override color similarly */
@media screen and (max-width: 768px) {
  #section1 .content-right::after,
  #section3 .content-right::after {
    color: white;
  }

  #section2 .content-right::after {
    color: var(--forest-green);
  }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .scroll-section {
    padding: 4rem 1.5rem;
  }

  .scroll-section .content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .content-left h2 {
    font-size: 3rem;
  }

  .content-right blockquote {
    font-size: 1.25rem;
  }

  .content-right p {
    font-size: 1.1rem;
  }
}
  /* Show scroll-arrow on mobile inside content-left */
@media screen and (max-width: 768px) {
  .scroll-arrow {
    font-size: 2rem;
    text-align: center;
    margin-top: 2rem;
    cursor: pointer;
    display: block;
    width: 100%;
    color: inherit;
  }

  .content-left .scroll-arrow {
    display: block; /* ensure it shows */
  }

  /* Remove the content-right ::after pseudo arrow if not needed */
  .content-right::after {
    display: none;
  }
}

/* ---------------------------------------------
   📩 CONTACT SECTION
--------------------------------------------- */
:root {
  --forest-green: #004225;
  --text-dark: #00331a;
  --background-light: #ffffff;
  --border-green: #004225;
}
html, body {
  height: 100%;
  margin: 0;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 94vh;
}

.contact-section {
  flex: 1;
}

.contact-section {
  background-color: var(--background-light);
  padding: 5rem 2rem;
  font-family: 'Raleway', sans-serif;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-container h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--forest-green);
  text-align: left;
  margin-bottom: 2rem;
  max-width: 100%;
  line-height: 1.2;
}

.contact-container {
  max-width: 900px;
  margin: 4rem auto 2rem;
  padding: 0 2rem;
}


label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.form-row .col {
  flex: 1;
  min-width: 250px;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid var(--border-green);
  border-radius: 8px;
  background-color: #fff;
  color: var(--text-dark);
  outline: none;
  font-family: 'Raleway', sans-serif;
}

textarea.form-control {
  resize: vertical;
  min-height: 200px;
}

.form-control:focus {
  border-color: #006f42;
  box-shadow: 0 0 0 2px rgba(0, 66, 37, 0.2);
}



/* Responsive */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }

  .form-row .col {
    min-width: 100%;
  }

  .contact-container h2 {
    font-size: 2.8rem;
    text-align: left;
  }
}

/* ---------------------------------------------
   🙋 ABOUT PAGE REFINED STYLES (Exactly like PPTX Image)
--------------------------------------------- */
.about-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--forest-green);
  color: #ffffff;
  padding: 16rem 16vw;
  gap: 4rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 50%;
  max-width: 700px;
  text-align: left;
}

.about-text h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  color: #ffffff;
}

.about-text p {
  font-size: 1.35rem;
  line-height: 1.85;
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.about-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: right;
}

.about-image img {
  width: 100%;
  max-width: 700px;
  height: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}



/* 📱 Responsive Tweaks */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    padding: 8rem 2rem;
    text-align: left;
  }

  .about-text,
  .about-image {
    max-width: 100%;
    text-align: left;
  }

  .about-image {
    justify-content: center;
  }

  .about-text h1 {
    font-size: 2.5rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-image img {
    max-width: 90%;
  }
}



/* ---------------------------------------------
   🦶 FOOTER - Updated with Right Side Container
--------------------------------------------- */
.footer {
  background-color: var(--forest-green);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 5vw;
  flex-wrap: wrap;
  gap: 2rem;
  color: white;
  font-family: 'Raleway', sans-serif;
}

.footer-left,
.footer-right {
  flex: 1 1 300px;
  min-width: 200px;
}

.footer-left h2 {
  padding-top: 30px;
  font-size: 2rem;
  margin: 0;
  color: white;
  text-align: left;
  line-height: 1;
}

.footer-left h2 span {
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
}

.footer-left .copyright {
  font-size: 0.75rem;
  margin-top: 1rem;
  color: #ffffff;
  text-align: left;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-right .right-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.5rem;
}

.footer-right .heading {
   font-weight: 400;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.footer-right p {
  margin: 4px 0;
  font-size: 1.05rem;
  color: white;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5rem;
   font-weight: 400;
}

.footer-right p1 {
  margin: 4px 0;
  font-size: 1.05rem;
  color: white;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5rem;
   font-weight: 400;
}

.footer-right a {
  color: white;
  text-decoration: none;
   font-weight: 400;
  text-align: left;
}

/* Responsive: stack layout on smaller screens */
@media (max-width: 720px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
    padding: 2rem 2rem;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    flex: none;
  }

  .footer-right {
    align-items: flex-start;
  }

  .footer-right .right-container {
    align-items: flex-start;
    text-align: left;
  }

  .footer-right p,
  .footer-right p1 {
    text-align: left;
  }
}


/* ---------------------------------------------
   ⬇️ SCROLL ARROWS
--------------------------------------------- */
.scroll-arrow,
.scroll-arrow1 {
  display: block;
  margin: 2rem auto 0 auto;
  font-size: 2rem;
  opacity: 0.7;
  animation: bounce 2s infinite;
  transition: opacity 0.3s;
}

.scroll-arrow {
  color: var(--forest-green);
}

.scroll-arrow1 {
  color: var(--white);
}

.scroll-arrow:hover,
.scroll-arrow1:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
.instagram-feed {
  max-width: 1100px;
  margin: 3rem auto 4rem;
  padding: 0 2rem;
  text-align: center;
  color: var(--forest-green);
}

.instagram-feed h2 {
  font-weight: 900;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.instagram-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.instagram-posts a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(1, 68, 43, 0.15);
  transition: box-shadow 0.3s ease;
}

.instagram-posts a:hover {
  box-shadow: 0 10px 30px rgba(1, 68, 43, 0.3);
}

.instagram-posts img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
/* ---------------------------------------------
   💰 PRICING PAGE STYLES (Green Header Bar Styled per Image)
--------------------------------------------- */
.pricing-hero {
  background-color: var(--forest-green);
  color: white;
  padding: 8rem 5vw 4rem;
  text-align: center;
}

.pricing-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.pricing-hero p {
  font-size: 1.2rem;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.pricing-section {
  padding: 4rem 5vw;
  background-color: var(--white);
  font-family: 'Raleway', sans-serif;
}
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-card {
  background-color: white;
  border: 2px solid var(--forest-green);
  border-radius: 0.5rem;
  max-width: 320px;
  flex: 1 1 280px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(1, 68, 43, 0.15);
}

.card-header {
  background-color: var(--forest-green);
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1rem;
  text-align: center;
  text-transform: none;
}

.card-body {
  padding: 1.5rem 1.25rem 2rem;
  color: var(--forest-green);
  font-size: 1rem;
    text-align: left;
}
.card-body p1{
  margin: 1rem 0;
  color: var(--forest-green);
    text-align: left;
}
.card-body p {
  margin: 1rem 0;
  color: var(--forest-green);
    text-align: center;
}

.card-body strong {
  display: block;
  margin-top: 1rem;
  font-weight: 700;
}

.card-body ul {
  list-style: disc;
  padding-left: 1.25rem;
  text-align: left;
  margin: 0.5rem 0 1rem;
}

.card-body .price {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 1.5rem;
}

.card-body .gst {
  font-weight: 600;
  font-size: 1rem;
}

  @media (max-width: 768px) {
    .pricing-card {
      max-width: 100%;
    }

    .pricing-hero h1 {
      font-size: 2.5rem;
    }

    .pricing-hero p {
      font-size: 1rem;
    }
  }



/* Responsive */
@media (max-width: 768px) {
  .pricing-hero h1 {
    font-size: 2.5rem;
  }

  .pricing-hero p {
    font-size: 1rem;
  }

  .pricing-card {
    max-width: 100%;
  }
}
