

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Figtree", sans-serif;
}


body {
    background-color: #f5f5f5;
}

html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px; /* slightly more than navbar height */
}



.navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 70px;
      background: #ffffff;
      border-bottom: 1px solid #e5e5e5;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    /* Logo */
    .nav-logo img {
      height: 48px;
      width: auto;
      display: block;
    }

    /* Nav Links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      color: #444444;
      letter-spacing: 0.2px;
      transition: color 0.2s ease;
    }

    .nav-links a:hover {
      color: #ff6a00;
    }

    /* Contact Us CTA Button */
    .nav-cta {
      background: linear-gradient(135deg, #F97316, #ff6a00);
      color: #ffffff !important;
      padding: 10px 24px;
      border-radius: 6px;
      font-size: 14px !important;
      font-weight: 600 !important;
      letter-spacing: 0.3px;
      transition: opacity 0.2s ease, transform 0.15s ease !important;
    }

    .nav-cta:hover {
      opacity: 0.9;
      transform: translateY(-1px);
      color: #ffffff !important;
    }

    .nav-cta:active {
      transform: translateY(0px);
    }
 @media (max-width: 600px) {
  .navbar {
    padding: 0 16px;
    height: 56px;
    justify-content: flex-start;
  }

  .nav-logo img {
    height: 36px;
  }

  .nav-links {
    display: none !important;
  }
}
  

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  

  
}

/* BACKGROUND IMAGE */
.bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* 🔥 EXACT brightness + contrast like Framer */
  filter: brightness(0.82) contrast(1.05);
}

/* OVERLAY */
.overlay {
  position: absolute;
  left: 0;
  top: 0;
  
  height: 100%;

  background:
    linear-gradient(to right,
      rgba(0,0,0,0.96) 0%,
      rgba(0,0,0,0.94) 15%,
      rgba(0,0,0,0.88) 30%,
      rgba(0,0,0,0.75) 45%,
      rgba(0,0,0,0.55) 60%,
      rgba(0,0,0,0.30) 75%,
      rgba(0,0,0,0.12) 88%,
      transparent 100%
    );
}

/* SUBTLE GLOW */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 35%;
  height: 100%;

  background: radial-gradient(
    circle at 20% 40%,
    rgba(255,120,60,0.08),
    transparent 60%
  );

  pointer-events: none;
}

/* CONTENT */
.content {
  position: absolute;
  z-index: 2;
  top: 230px;
  left: 120px;
  max-width: 800px;
  
}

/* HEADING */
.content h1 {
  font-size: 80px;
  font-weight: 600;
  line-height: 1.05;
  color: #fff;

  letter-spacing: -1.2px;
  margin-bottom: 32px;

  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; 
}

/* HIGHLIGHT */
.content h1 span {
  color: #F97316;
}

/* BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  color: #000;
  text-decoration: none;

  padding: 12px 26px;
  border-radius: 999px;

  font-size: 18px;
  font-weight: 600; /* 🔥 slightly bold */
  letter-spacing: -0.5px; /* 🔥 tight like Framer */

  margin-bottom: 40px;

  box-shadow: 0 3px 10px rgba(0,0,0,0.18);

  transition: all 0.25s ease;

  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
}

.btn:hover {
  background: #ff6a00;
  color: #ffffff;
}

.btn:active {
  transform: scale(0.97);
}

/* DESCRIPTION */
.desc {
  font-size: 18px;
  display: flex;
  align-items: flex-start;
  gap: 20px;

  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
}

/* LINE */
.line {
  width: 2px;
  height: 110px;
  background: rgba(255,255,255,0.2);
  margin-top: 6px;
}

/* TEXT */
.desc p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(6px);   /* 🔥 smooth intro */
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}



/* ABOUT SECTION */
.about {
  padding: 120px 140px;
  background: #000;
  color: #fff;
}

/* GRID */
.about-container {
  width: 100%;
  max-width: 1400px;   /* 🔥 increase overall width */

  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1.4fr; /* give more space to right */
  gap: 80px;

  padding-left: 120px;
  padding-right: 140px; /* 🔥 your requirement */
}

/* LEFT TITLE */
.about-left h2 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.1em; /* 🔥 10% */
  color: #ffffff;
}

/* RIGHT TEXT */
.about-right p {
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
}

/* INDUSTRIES */
.industries {
  margin-top: 100px;
  text-align: center;
}

/* LABEL */
.label {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

/* MARQUEE */
.marquee {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

/* TRACK */
.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;

  animation: scroll 20s linear infinite;
}

/* TEXT */
.marquee-track span {
  font-size: 22px;
  color: #F97316;
  white-space: nowrap;
}

/* ANIMATION */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* INITIAL STATE (hidden) */
/* INITIAL STATE */
.about-left,
.about-right {
  opacity: 0;
  transform: translateY(60px) scale(0.98); /* more natural depth */
  filter: blur(10px);
}

/* VISIBLE STATE */
.about.show .about-left {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);

  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.4s ease;
}

/* RIGHT TEXT (STAGGERED + SMOOTHER) */
.about.show .about-right {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);

  transition:
    opacity 1.2s ease 0.2s,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
    filter 1.4s ease 0.2s;
}

/* SECTION */
.services-img {
  background: #f5f5f5;
  padding: 120px;
}

/* HEADER */
.services-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.services-top h2 {
  font-size: 48px;
  max-width: 500px;
}

.services-top p {
  max-width: 400px;
  color: #555;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 300px;
  cursor: pointer;
}

/* IMAGE */
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  padding: 24px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.2),
    transparent
  );

  color: #fff;
}

/* TITLE */
.overlay h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

/* DESC (HIDDEN INITIALLY) */
.overlay p {
  font-size: 14px;
  line-height: 1.6;

  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

/* HOVER EFFECT */
.card:hover img {
  transform: scale(1.05);
}

.card:hover .overlay p {
  opacity: 1;
  transform: translateY(0);
}

/* ================= CTA SECTION ================= */

.cta {
  position: relative;
  width: 100%;

  
  padding: 80px 0;              /* controls height naturally */

  overflow: hidden;
}

/* BACKGROUND IMAGE */
.cta-bg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  
}

/* OVERLAY (for text readability) */
.cta-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.2) 70%,
    transparent 100%
  );
}

/* CONTENT CONTAINER */
.cta-content {
  position: relative;
  z-index: 2;

  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  justify-content: flex-start;   /* 🔥 change this */
  align-items: center;
  gap: 240px;                     /* 🔥 controls distance */

  padding: 0 40px;
}

/* TEXT */
.cta-content h2 {
  color: #fff;
  font-size: 52px;
  line-height: 1.2;
  max-width: 520px;
  margin: 0;
}

/* BUTTON */
.cta-btn {
  background: #F97316;
  color: #fff;
  text-decoration: none;

  padding: 16px 28px;
  border-radius: 12px;

  font-weight: 600;
  white-space: nowrap;

  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #ea580c;
  transform: translateY(-2px);
}





/* SECTION */
.process {
  background: #f7f7f7;
  padding: 100px 20px;
}

/* CONTAINER */
.process-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.process-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 60px;
}

.process-header .dot {
  width: 10px;
  height: 10px;
  background: #ff6a00;
  border-radius: 50%;
}

.process-header p {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #111;
}

/* GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #ddd;
}

/* CARD */
.process-card {
  padding: 60px 30px;
  text-align: center;
  border-right: 1px solid #ddd;

  transition: all 0.3s ease;
}

/* remove last border */
.process-card:last-child {
  border-right: none;
}

/* NUMBER */
.process-card span {
  display: block;
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

/* TITLE */
.process-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

/* TEXT */
.process-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* HOVER EFFECT */
.process-card:hover {
  background: #fff;
  transform: translateY(-5px);
}

/* SECTION */
.why-clean {
  background: #f7f7f7;
  padding: 100px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADING */
.why-heading {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD BASE */
.card {
  height: 320px;              /* ✅ ALL SAME SIZE */
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #fff;
  border: 2px solid #e5e7eb;
}

/* FULL IMAGE CARD */
.card.full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card.full .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.overlay h3 {
  color: #fff;
  font-size: 18px;
}

/* SPLIT CARD */
.card.split {
  display: flex;
  flex-direction: column;
}

/* TOP IMAGE */
.card.split img {
  width: 100%;
  height: 50%;
  object-fit: cover;
}

/* BOTTOM TEXT */
.card.split .text {
  height: 50%;
  padding: 20px;
}

.card.split h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.card.split p {
  font-size: 13px;
  color: #6b7280;
}

/* DARK VERSION */
.text.dark {
  background: #111;
  color: #fff;
}

.text.dark p {
  color: #ccc;
}

/* HOVER */
.card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

/* SECTION */
.faq {
  background: #f7f7f7;
  padding: 100px 20px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

/* HEADER */
.faq-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.faq-header .dot {
  width: 10px;
  height: 10px;
  background: #ff6a00;
  border-radius: 50%;
}

.faq-header p {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid #ddd;
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  font-size: 16px;
  cursor: pointer;
  text-align: left;
}

/* ICON */
.faq-question .icon {
  font-size: 22px;
  transition: 0.3s;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-answer p {
  padding: 0 0 20px;
  color: #6b7280;
  line-height: 1.6;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .icon {
  transform: rotate(45deg); /* + becomes × */
}

/* Career Section */
.career-section {
  display: flex;
  align-items: stretch;
  height: 100vh;
  background: #ffffff;
}

.career-content {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
}

.career-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111111;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.career-content p {
  font-size: 15px;
  color: #888888;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 420px;
}

.career-btn {
  display: inline-block;
  background: #1a1a1a;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 50px;
  width: fit-content;
  transition: background 0.2s ease;
}

.career-btn:hover {
  background: #333333;
}

.career-image {
  flex: 0 0 50%;
  overflow: hidden;
  height: 100vh;
}

.career-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

/* Mobile */
@media (max-width: 768px) {
  .career-section {
    flex-direction: column;
    min-height: auto;
  }

  .career-content {
    padding: 60px 24px 40px;
    flex: none;
  }

  .career-content h2 {
    font-size: 26px;
  }

   .career-image {
       height: 400px;
  }

  .career-image img {
    object-position: 60% 15%;
  }

}



/* ================= FOOTER ================= */

.footer {
  background: #ff6a00;
  color: #fff;
  padding: 80px 20px 50px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* TOP CTA */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-top h2 {
  font-size: 32px;
  font-weight: 600;
}

/* BUTTON */
.footer-btn {
  border: 1px solid #fff;
  padding: 12px 26px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-btn:hover {
  background: #fff;
  color: #ff6a00;
}

/* DIVIDER */
.footer hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.3);
  margin: 30px 0;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 40px;
}

/* BRAND */
.brand p {
  font-size: 14px;
  color: #ffe5d0;
  margin: 15px 0;
}

/* CONTACT */
.contact p {
  margin: 6px 0;
  font-size: 14px;
}

/* HEADINGS */
.footer-col h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-col h4 {
  margin-bottom: 15px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul a:hover {
  color: #000;
  transform: translateX(3px);
}

/* SERVICES 2-COLUMN */
.services-list {
  columns: 2;
  column-gap: 20px;
}


/* ================= RESPONSIVE ================= */

/* ── Responsive: Tablet / Mobile ── */
    @media (max-width: 768px) {
      .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 60px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex-wrap: nowrap;
  }

  .nav-logo img {
    height: 36px;
    width: auto;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
  }

  .nav-links::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .nav-links a {
    font-size: 13px;
    white-space: nowrap;
  }

  .nav-cta {
    
    font-size: 15px !important;
    white-space: nowrap;
    border-radius: 10px;
    line-height: 1;
  }
    }


@media (max-width: 900px) {

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-list {
    columns: 1;
  }
}

@media (max-width: 600px) {

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-top h2 {
    font-size: 24px;
  }

  .footer {
    padding: 60px 20px;
  }
}


@media (max-width: 600px) {
  .faq-banner img {
    height: 220px;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .card {
    height: 280px;
  }
}

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-card {
    border-bottom: 1px solid #ddd;
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-img {
    padding: 80px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-top {
    flex-direction: column;
    gap: 20px;
  }

  .services-top h2 {
    font-size: 32px;
  }
}

@media (max-width: 1150px) and (min-width: 769px) {

  .about {
    padding: 100px 60px;
  }

  .about-container {
    grid-template-columns: 1fr 1fr;   /* balanced columns */
    gap: 60px;

    padding-left: 0;
    padding-right: 0;
  }

  /* LEFT HEADING */
  .about-left {
    display: flex;
    align-items: center;
  }

  .about-left h2 {
    font-size: 42px;
    line-height: 1.2;
  }

  /* RIGHT TEXT */
  .about-right {
    max-width: 100%;
  }

  .about-right p {
    margin-left: 0;        /* 🔥 remove right push */
    max-width: 100%;       /* allow full width */
    font-size: 16px;
    line-height: 1.7;
  }

}

/* ================= TABLET (<= 1024px) ================= */
@media (max-width: 1024px) {

  .cta {
    padding: 60px 0;
  }

  .cta-content {
    gap: 80px;              /* reduce huge gap */
    padding: 0 30px;
  }

  .cta-content h2 {
    font-size: 40px;
    max-width: 420px;
  }

  .cta-btn {
    padding: 14px 24px;
  }
}

/* ================= SMALL TABLET / LARGE MOBILE (<= 768px) ================= */
@media (max-width: 768px) {

  .cta-content {
    flex-direction: column;     /* stack */
    align-items: flex-start;
    gap: 30px;
  }

  .cta-content h2 {
    font-size: 34px;
    max-width: 100%;
  }

  .cta-btn {
    align-self: flex-start;
  }
}

@media (max-width: 768px) {


  /* CONTENT CONTAINER */
   .content {
    left: 40px;
    right: 20px;
    top: 140px;
  }

  /* HEADING */
  .content h1 {
    font-size: 40px;
  }

  /* BUTTON */
  .btn {
    padding: 8px 16px;
    font-size: 12.5px;
  }

  /* DESCRIPTION TEXT */
  .desc p {
    font-size: 14px;
  }

  


  .about {
    padding: 80px 0;
  }

  .about-container {
    display: flex;
    flex-direction: column;   /* 🔥 STACK */
    gap: 40px;

    padding-left: 24px;
    padding-right: 24px;
  }

  .about-left {
  display: flex;
  justify-content: center;
  width: 100%;
}
  /* HEADING */
  .about-left h2 {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0.08em;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    
  }

/* TEXT CONTAINER */
.about-right {
  display: flex;
  flex-direction: column;
  align-items: center;   /* center the block */
  width: 100%;
}

/* PARAGRAPHS */
.about-right p {
  text-align: left;      /* 🔥 IMPORTANT (not center) */
  max-width: 340px;      /* controls clean width */
  width: 100%;

  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  margin-left: 0;
}
}
