.navbar {
  background-color: #D8EAB2 !important;
}

.navbar-brand {
  color: black !important;
}

.nav-link {
  color: black !important;
}

.idata-background {
  background-color: #D8EAB2 !important;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
}

.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, padding 0.3s ease;
  background-color: transparent;
  z-index: 1000;
}

.main-header.scrolled {
  background-color: #464646;
  padding: 10px 40px;
}

.main_header-container {
  max-width: 1400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 70px;
  transition: height 0.3s ease;
}

.main-header.scrolled .logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.main-header .nav-links a {
  color: #ffffff;
}

.main-header.scrolled .nav-links a {
  color: #fff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #347322;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.cta .talk-btn {
  background: linear-gradient(to right, #7eba0a, #347322);
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.cta .talk-btn:hover {
  transform: scale(1.05);
}



@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  background: linear-gradient(to right, #464646, #041214);
  font-family: Arial, sans-serif;
  color: white;
  margin: 0;
  padding: 150px 0 0 0;
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  padding: 50px;
  justify-content: space-between;
}

.contact-left {
  flex: 1;
  max-width: 40%;
  padding-right: 30px;
}



.contact-left h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  animation: fadeUp 1s ease-out forwards;
}

.contact-left h1 span {
  color: #347322;
}

.contact-section h2 {
  font-size: 30px;
  font-weight: 550;
}

.contact-left h4 {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
}

.contact-left p {
  margin: 20px 0;
  font-size: 14px;
  color: #ccc;
}

.contact-numbers {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.contact-numbers li {
  margin-bottom: 10px;
  color: #fff;
}

.email {
  margin-bottom: 20px;
}


.book-btn {
  position: relative;
  background: linear-gradient(to right, #7eba0a, #347322);
  color: #464646;
  border: none;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.4s ease;
  border-radius: 6px;
  z-index: 1;
}


.book-btn span {
  position: relative;
  z-index: 2;
}

.book-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 1;
}

.book-btn:hover::before {
  transform: translateX(0);
}

.book-btn:hover {
  color: black;
}

.contact-right {
  flex: 1;
  max-width: 50%;
}

form {
  display: flex;
  flex-direction: column;
}

/* === Floating Label Input Styles === */
.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 18px 12px 6px 12px;
  font-size: 20px;
  background-color: #464646;
  border: 2px solid #fff;
  color: white;
  border-radius: 6px;
  outline: none;
}

.form-group label {
  position: absolute;
  top: 18px;
  left: 12px;
  color: #ccc;
  font-size: 20px;
  pointer-events: none;
  transition: all 0.2s ease;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label {
  top: 6px;
  font-size: 12px;
  color: #347322;
}

.form-group input::placeholder {
  color: transparent;
}

/* Optional: matching floating labels for textarea */
.form-group textarea {
  width: 100%;
  padding: 18px 12px 6px 12px;
  font-size: 16px;
  background-color: #464646;
  border: 4px solid #fff;
  color: white;
  border-radius: 6px;
  outline: none;
  resize: vertical;
  height: 100px;
}

.form-group textarea {
  width: 100%;
  padding: 18px 12px 6px 12px;
  font-size: 16px;
  background-color: #464646;
  border: 2px solid #fff;
  color: white;
  border-radius: 6px;
  outline: none;
  resize: vertical;
  height: 100px;
}

.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
  top: 6px;
  font-size: 12px;
  color: #347322;
}

.form-group textarea::placeholder {
  color: transparent;
}

.updates {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 15px;
}

.updates a {
  color: #33d6cc;
  text-decoration: underline;
}

.recaptcha {
  margin-bottom: 15px;
  font-size: 14px;
}

.submit-btn {
  position: relative;
  background: linear-gradient(to right, #7eba0a, #347322);
  color: black;
  border: none;
  padding: 12px 24px;
  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.4s ease;
  border-radius: 8px;
  z-index: 1;
}

.submit-btn span {
  position: relative;
  z-index: 2;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 1;
}

.submit-btn:hover::before {
  transform: translateX(0);
}

.submit-btn:hover {
  color: black;
}

.idata-footer {
  background-color: #464646;
  color: white;
  padding: 60px 40px 30px;
  font-family: 'Montserrat', sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-brand {
  flex: 1 1 250px;
}

.footer-brand h2 {
  font-size: 45px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}

.footer-brand .highlight {
  color: #347322;
}

.footer-brand img {
  margin-top: 20px;
  width: 120px;
}

.footer-columns {
  display: flex;
  flex: 2 1 600px;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-column h4 {
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.btn-idata {
  background-color: #347322;
  color: rgb(0, 0, 0);
  padding: 5px 20px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}

.btn-idata.secondary {
  background: linear-gradient(to right, #7eba0a, #347322);
  color: black;
}

.footer-social a {
  color: white;
  font-size: 20px;
  margin-right: 15px;
  text-decoration: none;
}

.footer-social a:hover {
  color: #009739;
}

.copyright {
  font-size: 12px;
  color: #ccc;
  margin-top: 10px;
}

/* Responsive adjustments for screens smaller than 768px */
@media (max-width: 768px) {
  .main-header {
    padding: 10px 20px;
  }

  .main-header.scrolled {
    padding: 6px 20px;
  }

  .logo img {
    height: 50px;
  }

  .main-header.scrolled .logo img {
    height: 40px;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
    background-color: #D8EAB2;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 20px;
  }

  .main-header.open .nav-links {
    display: flex;
  }

  .cta .talk-btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .page-container {
    padding: 0 10px;
  }

  #chatbot-window {
    width: 90%;
    right: 5%;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-idata {
    width: 100%;
    text-align: center;
  }

  .footer-social {
    margin-top: 10px;
  }
}


@media (max-width: 1400px) {

  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .main-header,
  .main_header-container,
  .nav-links,
  .cta,
  .logo,
  #chatbot-button,
  #chatbot-window {
    max-width: 100vw;
    box-sizing: border-box;
  }
}

/* Hamburger menu (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: 0.3s;
}

/* Slide-in Mobile Menu */
.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #347322;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  padding: 40px 20px;
  z-index: 1050;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease-in-out;
}

.mobile-nav.open {
  right: 0;
}

.close-btn {
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 30px;
  align-self: flex-end;
  color: #fff;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.mobile-nav-links a.mobile-cta {
  background: linear-gradient(to right, #7eba00, #347322);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}

/* Responsive visibility */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links,
  .cta {
    display: none !important;
  }

  .mobile-nav {
    display: flex;
  }

  .logo {
    margin-left: 12px;
  }
}

@media (max-width: 600px) {
  .contact-left h1 {
    font-size: 36px;
  }
}

a {
  color: #ffffff;
  text-decoration: none;

}