* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Ubuntu", sans-serif;
}


body {
  width: 100%;
  height: 100%;
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  min-height:720px;          /* fills screen */
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 80px 16px;         /* prevents text cut */
  overflow: hidden;           /* hides overflow safely */
}


.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* keeps aspect ratio */
  object-position: center;    /* desktop focus */
  z-index: 1;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 2;
}




/* Center everything */
.hero-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* LOGO */
.hero-logo {
  max-width: 270px;
  width: 100%;
  margin-bottom: 20px;
}

/* ORANGE CTA BOX */
.cta-box {
  background-color: orange;
  color: #fff;
  padding: 10px 60px;
  border-radius:40px;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-box h1 {
  font-size: 1.6rem;
  font-weight: 400;
}

.cta-box p {
  font-size: 1.1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    
   .hero {
    min-height: auto;       /* 🔥 LET HERO GROW */
    padding: 140px 16px 80px;
  }

  .hero-img {
    height: 100%;
    object-position: center top; /* image shifts, text stays */
  }
  
  .hero-logo {
    max-width: 190px;
  }
  
     .cta-box{
    padding: 10px 40px;
    }
    
  .cta-box h1 {
    font-size: 1.2rem;
     font-weight: 400;
  }

  .cta-box p {
    font-size: 1rem;
  }
}


@media (max-width: 576px) {
    .hero-logo {
    max-width: 200px;
  }

    .cta-box{
    padding: 10px 20px;
    }
    
    
  .cta-box h1 {
    font-size: 1rem;
     font-weight: 400;
  }

  .cta-box p {
    font-size: 0.9rem;
  }
}




/* form section css */

/* Section background */
.form-section {
  min-height: 100vh;
  background: #1C3B01;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}

.form-section_thankyou{
     min-height: 53vh;
  background: #1C3B01;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}

/* Card */
.form-card {
  background: #efe6cf;
  width: 100%;
  max-width: 800px;
  padding: 40px 35px;
  border-radius: 14px;
  border: 2px solid #e8c98c;
}

/* Heading */
.form-card h2 {
  color: #488e0b;
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 400;
}

/* Labels */
.form-card label {
  display: block;
  color: #488e0b;
  font-size: 14px;
  margin-bottom: 6px;
}

/* Inputs */
.form-card input,textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid #1C3B01;
  background: transparent;
  margin-bottom: 18px;
  color: #28490b;
  outline: none;
  font-size: 14px;
  font-weight: 500;
}

.form-card input::placeholder {
  color: rgba(255,255,255,0.7);
}

/* Section label */
.section-label {
  margin: 15px 0 10px;
}

/* Checkbox group */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.25);
  padding: 12px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
}

.checkbox-item input {
  display: none;
}

.checkmark_box{
    display: flex;
    gap:8px
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 3px solid #1C3B01;
  border-radius: 4px;
  /*padding: 5px;*/
}

.checkmark i {
  display: none;
  color: #fff;
}

.checkbox-item {
  cursor: pointer;
}



/* ✅ Checkbox turns brown when selected */

.checkbox-item input:checked ~ div .checkmark {
  background: #488e0b;
  border-color: #488e0b;
}


/* Fake select boxes */

.select2-container .select2-selection--single .select2-selection__rendered {
   background: #F3ECDB;
}

.area-select{
    background-color: red;
}

.select-box arrow{
    color:#000;
}




/* Select2 full width */

.area-wrapper {
  display: none;
   margin-bottom: 20px;
}





/* Button */
button {
  width: 100%;
  background: #28490b;
  color: #fff;
  padding: 14px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
     background: #488e0b;
}

/* Privacy text */
.privacy-text {
  text-align: center;
  font-size: 11px;
  color: #1C3B01;
  margin-top: 15px;
}

/* 📱 Responsive */
@media (max-width: 600px) {
  .form-card {
    padding: 25px 20px;
  }

  .form-card h2 {
    font-size: 18px;
  }
}




/*footer css*/


.footer-bottom {
  background-color: #000;
  width: 100%;
  padding: 18px 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left & Right common */
.footer-left,
.footer-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Links */
.footer-bottom a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Divider */
.divider {
  color: #444;
}

/* Brand */
.footer-right span {
  color: #888;
  font-size: 14px;
}

.footer-right .brand {
  color: #ff8c00;
  font-weight: 500;
}

/* 📱 Responsive */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .divider {
    display: none;
  }
}


/* PRIVACY POLICY PAGE CSS */

.privacy-section {
  padding: 90px 20px;
  background: #1C3B01;
}

.privacy-container {
  max-width: 900px;
  margin: auto;
  background: #EFE6CF;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.privacy-title {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.privacy-updated {
  color: #64748b;
  margin-bottom: 35px;
  font-size: 14px;
}

.privacy-content p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}

.privacy-content h3 {
  margin-top: 35px;
  margin-bottom: 10px;
  font-size: 22px;
  color: #0f172a;
}

.privacy-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy-content ul li {
  margin-bottom: 10px;
  color: #475569;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-container {
    padding: 30px 25px;
  }

  .privacy-title {
    font-size: 28px;
  }

  .privacy-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .privacy-container {
    padding: 25px 20px;
  }

  .privacy-title {
    font-size: 24px;
  }
}
