/* 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;
  }
}



/*  Why work with us*/

.why-work {
  background: url('Images/Wooden Bg.svg') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 24px;
  margin-top: 90px;
}

.why-work-container {
  max-width: 1600px;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title */
.why-work-title h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  font-weight: 400;
  margin-top: 10px;
  color: #694223;
  text-align: center;
  white-space: pre-line;
  display: inline-block;
  min-height: 160px; /* Reserve height */
  white-space: pre-line;
  overflow: hidden;
  border-right: 2px solid #694223;
  
  
  z-index: 2;
  position: relative;
  line-height: 1.1;
}

/* Floating Items */
.floating-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.floating-item img {
  width: 220px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.floating-text {
  font-family: 'Raleway', sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #694223;
  margin-top: 8px;
}

/* Positioning */
.top-image {
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
}
.top-left-text {
  position: absolute;
  left: -400px;
  top: 50%;
  transform: translateY(-50%);
}

.left-image {
  left: 8%;
  top: 40%;
  transform: translateY(-50%);
}
.left-bottom-text {
  margin-top: 40px;
  right: 30%;
}

.bottom-center-text {
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
}

.right-image {
  right: 8%;
  top: 20%;
  transform: translateY(-50%);
}
.right-top-text {
  position: absolute;
  top: -160px;
  right: 0;
}

.bottom-right-text {
  bottom: -60%;
  right: 10%;
}

/* Floating Animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1200px) {
  .why-work-title h1 {
    font-size: 60px;
  }

  .floating-item img {
    width: 180px;
    height: 160px;
  }

  .floating-text {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .why-work {
    padding: 40px 16px;
    min-height: 640px;
    max-height: 760px;
  }

  .why-work-title h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .floating-item img {
    width: 130px;
    height: 110px;
  }

  .floating-text {
    font-size: 18px;
  }

  .top-image {
    top: -90%;
    left: 180px;
  }

  .top-left-text {
    left: -80%;
  }

  .left-image {
    left: 4%;
    top: 60%;
  }

  .right-image {
    right: 4%;
    top: 60%;
  }

  .right-top-text {
  top: -160px;
  right: 10%;
}

  .bottom-center-text {
    bottom: -40%;
    left: 200px;
  }

  .bottom-right-text {
    right: 8%;
    bottom: -70%;
  }
}



/*Start your career*/

/* Start Your Career Section - same as Why Choose Us */
.start-career {
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Section background image */
.start-career .section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Title container */
.start-career .content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 120px;
  position: relative;
  z-index: 1;
}

.start-career .title-container.align-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* left-align */
  text-align: left;
  margin-bottom: 20px;
}

.start-career .title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 400;
  color: #694223;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #694223;
  display: inline-block;
  visibility: hidden;
}

/* Full-width image */
.start-career .full-width-image-container {
  position: relative;
  width: 100%;
}

.start-career .full-width-image {
  width: 100%;
  height: 900px;
  object-fit: cover;
}

/* Floating card */
.start-career .floating-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(50px);
  width: 444px;
  height: 367px;
  background-color: #FFF4E2;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
  opacity: 0;
  transition: all 0.8s ease-out;
  font-family: 'Raleway', sans-serif;
  z-index: 1;
}

.start-career .card-title {
  font-size: 20px;
  font-weight: 400; /* Regular */
  margin-bottom: 15px;
  color: #694223;
}

.start-career .card-description .mail-id {
  font-size: 24px;
  font-weight: 500; /* Semi-bold */
  color: #694223;
}

/* Floating animation */
@keyframes floatUpDownCard {
  0% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-15px); }
  100% { transform: translate(-50%, -50%) translateY(0); }
}

/* Responsive */
@media (max-width: 1200px) {
  .start-career .content { padding: 0 60px; }
  .start-career .title { font-size: 70px; }
  .start-career .full-width-image { height: 700px; }
  .start-career .floating-card { width: 400px; height: 320px; padding: 25px; }
  .start-career .card-title { font-size: 22px; }
  .start-career .card-description .mail-id { font-size: 28px; }
}

@media (max-width: 768px) {
  .start-career .content { padding: 0 30px; }
  .start-career .title { font-size: 50px; }
  .start-career .full-width-image { height: 500px; }
  .start-career .floating-card { width: 300px; height: 270px; padding: 20px; }
  .start-career .card-title { font-size: 20px; }
  .start-career .card-description .mail-id { font-size: 24px; }
}

@media (max-width: 480px) {
  .start-career .title { font-size: 36px; }
  .start-career .full-width-image { height: 400px; }
  .start-career .floating-card { width: 260px; height: 250px; padding: 15px; }
  .start-career .card-title { font-size: 18px; }
  .start-career .card-description .mail-id { font-size: 20px; }
}





/* 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: 15px;
  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;
  }
}
