/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 120px;
  background-color: #FFF4E2;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  font-family: 'Raleway', sans-serif;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Logo */
.logo img {
  width: 200px;
}

/* Menu */
.nav-menu ul.menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-menu ul.menu li a {
  text-decoration: none;
  font-size: 18px;
  color: #000;
  transition: color 0.3s;
}

.nav-menu ul.menu li a:hover {
  color: #BF4500;
}

/* WhatsApp icon */
.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.whatsapp img {
  width: 20px;
  
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  display: block;
  border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: #fff;
  position: fixed;
  top: 60px;
  right: 20px;
  width: 200px;
  padding: 20px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  z-index: 9999;
}

/* Show when active */
.mobile-menu.active {
  display: block;
}

/* Optional: animate hamburger into X */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.mobile-menu ul li a {
  text-decoration: none;
  font-size: 18px;
  color: #000;
  transition: color 0.3s;
}

.mobile-menu ul li a:hover {
  color: #BF4500;
}

/* Responsive */
@media (max-width: 1024px) {
  .header {
    padding: 16px 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .header-right .whatsapp {
    display: block;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 16px 20px;
  }
}





/*Services*/

/* Section */
.services-section {
  position: relative;
  background: url("Images/Wooden\ Bg.svg") no-repeat center center/cover;
  padding: 100px 120px;
  margin-top: 60px;
}

/* Container */
.services-container {
  max-width: 1600px;
  margin: 0 auto;
}

/* Title */
.services-title {
  text-align: center;
  margin-bottom: 60px;
}

.services-title h1 {
  font-size: 80px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  color: #694223;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  border-right: 2px solid #694223; /* blinking cursor */
  visibility: hidden;
}

.services-title .static-text {
  color: #694223;
}

#animated-text {
  color: #ff6a00;
  border-right: 0.15em solid #ff6a00;
  display: inline-block;
  white-space: nowrap;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Card */
.service-card {
  position: relative;
  width: 588px;
  height: 412px;
  padding: 24px;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 0;
}

.service-card.odd {
  background-color: #6A3A1E; /* brown */
  color: #fff;
}

.service-card.even {
  background-color: #000; /* black */
  color: #fff;
}

/* Background Image (Hover) */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  border-radius: 0;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 1;
}

.service-card:hover::before {
  opacity: 1;
  transform: scale(1.05);
}

/* Text */
.service-card h3,
.service-card p {
  position: relative;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.service-card h3 {
  align-self: flex-start;
  font-size: 40px;
  font-weight: 500;
}

.service-card p {
  align-self: flex-end;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Raleway', sans-serif;
}

.service-card:hover h3,
.service-card:hover p {
  opacity: 0;
}

/* Responsive */
@media (max-width: 1300px) {
  .service-card {
    width: 100%;
    height: auto;
    aspect-ratio: 588 / 412;
  }
}

@media (max-width: 992px) {
  .services-section {
    padding: 80px 60px;
    
  }
   .service-card p{
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 24px;
  }

  .services-title h1 {
    font-size: 48px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card p{
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .services-title h1 {
    font-size: 36px;
  }
   .service-card p{
    font-size: 14px;
  }
}



/*How we work


.how-we-work {
  background: url('Images/Wooden Bg.svg') no-repeat center center/cover;
  padding: 100px 120px;
}

.how-we-work-container {
  max-width: 1600px;
  margin: 0 auto;
}


.how-we-work-title h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 400;
  color: #694223;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  border-right: 2px solid #694223;
  visibility: hidden;
  margin-bottom: 60px;
}


.how-we-work-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.work-card {
  display: flex;
  align-items: center;
  height: 306px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.work-card.odd .card-content {
  text-align: left;
  flex: 1;
  padding-right: 40px;
}

.work-card.odd .card-image {
  flex: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.work-card.odd:hover .card-image {
  opacity: 1;
}

.work-card.even {
  flex-direction: row;
}

.work-card.even .card-content {
  text-align: right;
  flex: 1;
  padding-left: 40px;
}

.work-card.even .card-image {
  flex: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.work-card.even:hover .card-image {
  opacity: 1;
}


.card-number {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 36px;
  display: block;
  margin-bottom: 8px;
  color: #694223;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  margin-bottom: 8px;
  color: #694223;
}

.card-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  color: #694223;
}


.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@media (max-width: 1200px) {
  .how-we-work {
    padding: 80px 60px;
  }

  .how-we-work-title h1 {
    font-size: 60px;
  }

  .work-card {
    height: auto;
    flex-direction: column;
    text-align: center;
  }

  .work-card.odd .card-content,
  .work-card.even .card-content {
    padding: 0;
  }

  .work-card.odd .card-image,
  .work-card.even .card-image {
    opacity: 1; 
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .how-we-work {
    padding: 60px 24px;
  }

  
  .how-we-work-title h1 {
    font-size: 48px;
  }

  
  .work-card {
    flex-direction: column !important; 
    height: auto;
    text-align: center;
    padding: 0;
  }

  
  .work-card.odd .card-content,
  .work-card.even .card-content {
    order: 1;
    padding: 0 !important;
    text-align: center !important;
  }

  
  .card-number,
  .card-title,
  .card-desc {
    margin: 0 auto 8px auto;
    text-align: center;
  }

  
  .work-card .card-image {
    width: 100%;
    height: auto; 
    opacity: 1; 
    margin-top: 16px;
    order: 2;
    
  }

 
  .work-card.odd:hover .card-image,
  .work-card.even:hover .card-image {
    opacity: 1 !important;
    transform: none !important;
  }

  
  .card-number {
    font-size: 28px;
  }
  .card-title {
    font-size: 22px;
  }
  .card-desc {
    font-size: 16px;
  }
}

*/


    /* Section with background image */
    .how-we-work {
      background-image: url('Images/Wooden\ Bg.svg'); /* Replace with your bg image */
      background-size: cover;
      background-position: center;
      padding: 100px 5%;
    }

    .how-we-work-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Title */
    #work-title {
      font-size: 80px;
      color: #694223;
      margin-bottom: 80px;
      overflow: hidden;
      border-right: 2px solid #694223;
      display: inline-block;
      font-size: 80px;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
    }

    /* Cards container */
    .how-we-work-cards { display: flex; flex-direction: column; gap: 100px; }

    /* Card styles */
    .work-card {
      display: flex;
      align-items: center;
      gap: 50px;
      flex-wrap: wrap;
    }

    .work-card .card-content {
      flex: 1;
      color: #694223;
      font-family: 'Raleway', sans-serif;
    }

    .work-card .card-number { 
      font-size: 40px; 
      font-weight: bold; 
      display: block; 
      margin-bottom: 10px; 
      font-family: 'Cormorant Garamond', serif;
    }
    .work-card .card-title { 
      font-size: 32px; 
      margin-bottom: 10px; 
    }
    .work-card .card-description { 
      font-size: 18px; 
      line-height: 1.5; 
    }

    /* Image container */
    .work-card .card-image {
      flex: 1;
      position: relative;
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease-out;
    }

    .work-card .card-image img {
      width: 100%;
      height: auto;
      display: block;
      position: sticky;
      top: 100px;
      transition: transform 0.3s ease;
    }

    /* Image hover effect */
    .work-card .card-image img:hover {
      transform: scale(1.05);
    }

    /* Active animation class */
    .work-card .card-image.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Alternate cards */
    .work-card:nth-child(even) { flex-direction: row-reverse; }

    /* Responsive */
    @media (max-width: 992px) { #work-title { font-size: 60px; } }
    @media (max-width: 768px) {
      #work-title { font-size: 40px; }
      .work-card { flex-direction: column !important; }
      .work-card .card-image img { position: relative; top: 0; }
    }
    @media (max-width: 480px) { #work-title { font-size: 32px; } }





/* Footer */
.footer {
  background: #FFF4E2;
  color: #694223;
  font-family: 'Raleway', sans-serif;
  padding: 40px 20px 20px;
  border-top: 1px solid #e0e0e0;
}

/* Footer Container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Quick Links */
.footer-links-container {
  text-align: center;
}

.footer-links-container h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 17px;
  font-family: 'Cormorant Garamond', serif;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links li a {
  text-decoration: none;
  color: #694223;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
}

.footer-links li a:hover {
  color: orange;
  transform: translateY(-3px);
}

/* Bottom Row */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

/* Left */
.footer-left {
  flex: 1;
  min-width: 150px;
}

.footer-logo {
  width: 120px;
}

/* Center */
.footer-center {
  flex: 1;
  text-align: center;
  min-width: 200px;
}

.footer-center p {
  margin: 5px 0;
  font-size: 16px;
}

/* Right */
.footer-right {
  flex: 1;
  text-align: right;
  min-width: 150px;
}

.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.social-icons a img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.2);
}

/* Footer Year */
.footer-year {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #694223;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
