* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Kumbh Sans', sans-serif;
}

/* =============== Navbar =============== */
.navbar {
  background: #013d1a;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: 1300px;
  padding: 0 50px;
}

#navbar__logo img {
  height: 100px;
  width: auto;
  display: block;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 50px;
}

.navbar__item {
  height: 80px;
}

.navbar__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar__links:hover {
  color: #d1b97b;
}

.nav-icon {
  height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 5px;
  transition: transform 0.3s ease;
}

.navbar__links:hover .nav-icon {
  transform: translateY(-3px) scale(1.1);
  filter: brightness(0) saturate(100%) sepia(50%) hue-rotate(30deg);
}

/* FIX: This rule now correctly styles the desktop button's container */
.navbar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

/* FIX: This is the button style for desktop. Adjust padding here. */
.button {
  text-decoration: none;
  padding: 6px 22px; /* Reduced padding for a shorter button */
  background: #cba135;
  color: #fff;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.button:hover {
  background: #d1b97b;
}

/* =============== Mobile Menu Toggle =============== */
.navbar__toggle {
  display: none; /* Hidden on desktop */
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

/* =============== Hero Section =============== */
.main {
  background-color: #f9f9f4;
}

.main__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-self: center;
  margin: 0 auto;
  height: 90vh;
  width: 100%;
  max-width: 2000px;
  padding: 0 50px;
}

.main__content h1 {
  font-size: 4rem;
  background-image: linear-gradient(to top, #2c2c2c 0%, #2c2c2c 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.main__content p {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: #2c2c2c;
}

#main__img {
  height: 80%;
  width: 80%;
}

/* =============== Services Section =============== */
.services {
  background: #013d1a;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services h1 {
  background-image: linear-gradient(to right, #ffffff 0%, #cba135 0%, #ffffff 21%, #cba135 52%, #ffffff 78%, #cba135 100%);
  background-size: 100%;
  margin-bottom: 5rem;
  font-size: 2.5rem;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.services__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* OPTIMIZATION: Consolidated common card styles */
.services__card {
  margin: 1rem;
  height: 525px;
  width: 400px;
  border-radius: 4px;
  background-size: cover;
  position: relative;
  color: #fff;
  transition: transform 0.2s ease-in;
}

.services__card:hover {
  transform: scale(1.075);
  cursor: pointer;
}

/* Set individual background images */
.services__card:nth-child(1) {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(17, 17, 17, 0.6) 100%), url('/images/pic2.png');
}

.services__card:nth-child(2) {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(17, 17, 17, 0.6) 100%), url('/images/pic3.png');
}

.services h2 {
  position: absolute;
  top: 350px;
  left: 30px;
}

.services__card p {
  position: absolute;
  top: 400px;
  left: 30px;
}

.services__card button {
  width: 120px;
  height: 40px;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background: #cba135;
  position: absolute;
  top: 440px;
  left: 30px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services__card button img {
  max-width: 170%;
  max-height: 1000%;
  object-fit: contain;
}

/* =============== About Us Section =============== */
.about {
  background-color: #f9f9f4;
  color: #2c2c2c;
  padding: 6rem 2rem;
}

.about__container {
  max-width: 900px;
  margin: 0 auto;
}

.about h1 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #013d1a;
  text-align: center; /* Center the main heading */
}

/* New two-column grid layout for desktop */
.about__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr; /* Give text more space */
  gap: 3rem;
  text-align: left;
}

.about__content p {
  font-size: 1.2rem;
  line-height: 1.7;
  font-weight: 500;
}

.about__upcoming h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #013d1a;
}

.about__upcoming ul {
  list-style: none;
  padding-left: 0;
}

.about__upcoming li {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid #ddd;
}


/* =============== Footer =============== */
.footer__container {
  background-color: #013d1a;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer__links {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer__link--wrapper {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.footer__links--items {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 1rem;
}

.footer__links--items h2 {
  margin-bottom: 16px;
  color: #fff;
}
.footer__links--items p {
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease-out;
}
.footer__links--items a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease-out;
}

.footer__links--items a:hover {
  color: #e9e9e9;
}

.website__right {
  color: #fff;
  text-align: center;
  margin-top: 2rem;
}

/* ===================================================
   Responsive Styles (Tablet and Mobile)
   =================================================== */
@media screen and (max-width: 960px) {
  .navbar__container {
    justify-content: space-between;
  }

  .navbar__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #013d1a;
    width: 100%;
    position: absolute;
    top: 100px;
    left: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 98;
  }

  .navbar__menu.active {
    max-height: 500px;
    padding-bottom: 1rem;
  }

  .navbar__toggle {
    display: block; /* Show hamburger */
    z-index: 99;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }
  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .navbar__item {
    width: 100%;
    padding: 1.2rem 0;
  }

  .navbar__btn {
    width: 100%;
    padding: 1.2rem 0;
  }
  
  /* FIX: Mobile-specific button styles moved here */
  .navbar__menu .button {
    width: 80%;
    max-width: 280px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  
  .main__container {
    grid-template-columns: 1fr;
    height: auto;
    padding: 3rem 50px;
  }

  .main__content {
    text-align: center;
    margin-bottom: 4rem;
  }

  .main__content h1 {
    font-size: 2.5rem;
  }

  .main__content p {
    font-size: 1.5rem;
  }

  .services {
    padding: 5rem 0;
  }

  .services h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr; /* Stack columns on smaller screens */
  }
}
@media screen and (max-width: 480px) {
  .main__content h1 {
    font-size: 2rem;
  }

  .main__content p {
    font-size: 1.5rem;
  }

  .services h1 {
    font-size: 1.2rem;
  }

  .services__card {
    width: 300px;
  }

  .footer__link--wrapper {
    flex-direction: column;
    gap: 2rem;
  }
}
/* --- Footer & Newsletter Section --- */
.footer__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background-color: #013d1a; /* Example background color */
}

.newsletter {
  width: 100%;
  max-width: 540px;
  margin: 2rem 0;
}

/* --- SVG Icon Fix --- */
.sib-notification__icon {
  /* This is the key fix to make your icons visible */
  width: 24px;
  height: 24px;
  margin-right: 12px;
  vertical-align: middle;
  display: inline-block; /* Ensures the icon is displayed */
}

/* --- Form Message Panels (Success/Error) --- */
.sib-form-message-panel {
  /* These are hidden by default. The form's JavaScript will display them. */
  display: none;
  padding: 12px;
  margin-bottom: 1rem;
  border-radius: 4px;
  text-align: left;
}

#error-message {
  background-color: #ffeded;
  color: #661d1d;
  border: 1px solid #ff4949;
}

#success-message {
  background-color: #e7faf0;
  color: #085229;
  border: 1px solid #13ce66;
}

.sib-form-message-panel__text {
  display: flex;
  align-items: center;
}

/* --- General Form Styling --- */
.sib-container--vertical {
  text-align: left;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #C0CCD9;
}

.sib-form-block p {
  margin: 0 0 10px 0;
}

.sib-form-block p:first-child {
  font-size: 24px;
  font-weight: 700;
  color: #3C4858;
}

.entry__label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #3c4858;
}

.input {
  width: 100%;
  padding: 12px;
  border: 1px solid #C0CCD9;
  border-radius: 3px;
  box-sizing: border-box; /* Important for padding and width */
  font-size: 16px;
}

.sib-form-block__button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #cba135; /* Your original button color */
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.sib-form-block__button:hover {
  background-color: #b38e2d; /* A slightly darker shade for hover */
}

.website__right {
  margin-top: 2rem;
  color: #fff;
}
.input--hidden {
  display: none;
}