/* ABOUT INTRO SECTION */
.about-intro {
  width: 100%;
  background-color: #ffffff;
  padding: 40px 0;
}

.about-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-breadcrumb {
  display: inline-block;
  font-size: 14px;
  color: #6fa843; /* CEES green */
  margin-bottom: 24px;
}

.about-title {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #6f6f6f; /* industrial grey */
  text-transform: uppercase;
}

/* TABLET */
@media (max-width: 1024px) {
  .about-intro {
    padding: 30px 0;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .about-intro {
    padding: 20px 0;
  }

  .about-title {
    font-size: 24px;
    line-height: 1.2;
  }
}




/* ABOUT HERO IMAGE SECTION */
.about-hero {
  width: 100%;
  background-color: #ffffff;
  padding: 0;
}

.about-hero-image {
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* DESKTOP LARGE */
@media (min-width: 1440px) {
  .about-hero-image {
    max-height: 90vh;
  }
}

/* TABLET */
@media (max-width: 1024px) {
  .about-hero-image {
    max-height: 70vh;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .about-hero-image {
    max-height: 55vh;
  }
}









.cert-section {
  padding: 70px 40px;
  background: #fff;
}

.cert-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* ROW */
.cert-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.cert-left {
  max-width: 600px;
}

.cert-head {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-bottom: 12px;
  justify-content: space-between;
}

.cert-head h3 {
  color: #6cab1f;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
}

.cert-head h3 span {
  font-size: 22px;
}

.cert-head img {
  position: relative;
  height: 100px;
  right: 100px;
}

/* TEXT */
.cert-left p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* RIGHT */
.cert-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #579a06;
  color: #fff;
  padding: 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  min-width: 260px; /* matches design button width */
}

.cert-arrow {
  font-size: 13px;
  transition: transform 0.25s ease;
}




/* DIVIDER */
.cert-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 40px 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .cert-section {
    padding: 50px 20px;
  }

  .cert-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cert-right {
    text-align: left;
  }

  .cert-head h3 {
    font-size: 22px;
  }

  .cert-head img {
    height: 100px;
  }

  .cert-divider {
    margin: 40px 0 0px 0;
  }
}


.cert-note {
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0;
}

.cert-note h3 {
  color: #2fa400;
  font-size: 18px;
  margin: 0 0 6px;
}

/* Mobile */
@media (max-width: 768px) {
  .cert-note {
    padding: 0;
    margin-bottom: 30px;
  }

  .cert-note p {
    font-size: 13px;
  }
}













.ays-intro {
  padding: 70px 40px 40px;
  background: #fff;
}

.ays-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.ays-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7a7a7a;
  font-size: 14px;
  margin-bottom: 40px;
}

.ays-breadcrumb i {
  font-size: 11px;
  color: #6cab1f; /* CEES green arrow like design */
}

.ays-title {
  color: #6cab1f;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ays-subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 50px;
}

.ays-focus {
  color: #6cab1f;
  font-size: 16px;
  margin-bottom: 24px;
}

.ays-points {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
}

.ays-points::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e5e5;
  max-width: 1100px;
  margin: 0 auto;
}

.ays-point {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* CHECK IMAGE */
.ays-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* TEXT */
.ays-point span {
  font-size: 14px;          /* exact visual match */
  font-weight: 400;
  color: #6cab1f;           /* CEES green like design */
  line-height: 1.4;
}


/* MOBILE */
@media (max-width: 768px) {
  .ays-intro {
    padding: 50px 20px 30px;
  }

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

  .ays-points {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}




.ays-form {
  padding: 40px 40px 80px;
}



.ays-form-grid {
  display: grid;
  grid-template-columns: 3fr 1.3fr;
  gap: 60px;
  align-items: start;
}


.ays-form-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
}

.ays-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.ays-field.full {
  grid-column: 1 / -1;
}

.ays-field label {
  font-size: 13px;
  color: #939598;
  margin-bottom: 6px;
}

.ays-field input,
.ays-field textarea {
  background: #f5f5f5;
  border: none;
  padding: 20px;
  font-size: 14px;
}

.ays-field textarea {
  min-height: 200px;
}

.ays-field small {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
}

.ays-btn {
  grid-column: 1 / -1;
  margin-top: 20px;
  background: #6cab1f;
  color: #fff;
  border: none;
  padding: 20px 30px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  cursor: pointer;
  position: relative;

}

.ays-form-image img {
  width: 100%;
  height: auto;
  display: block;
}


.ays-btn i {
  transition: none; /* GSAP will handle */
}


/* MOBILE */
@media (max-width: 768px) {
  .ays-form {
    padding: 30px 20px 60px;
  }

  .ays-form-grid {
    grid-template-columns: 1fr;
  }

  .ays-form-left {
    grid-template-columns: 1fr;
  }

  .ays-btn {
    width: 100%;
    margin-top: 0px;
    justify-content: center;
  }
}






.ays-field .ays-error, #contactForm .ays-error {
  color: #d63636;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.ays-field input.error,
.ays-field textarea.error {
  border-color: #d63636;
}

.ays-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.ays-popup-box {
  background: #fff;
  padding: 32px;
  max-width: 420px;
  width: 90%;
  border-radius: 16px;
  text-align: center;
  animation: scaleIn .35s ease;
}

.ays-popup-box i {
  font-size: 52px;
  color: #1e7f5c;
  margin-bottom: 12px;
}

.ays-popup-box button {
  margin-top: 18px;
  padding: 10px 26px;
  background: #1e7f5c;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

@keyframes scaleIn {
  from { transform: scale(.85); opacity: 0 }
  to { transform: scale(1); opacity: 1 }
}


.ays-btn {
  position: relative;
  overflow: hidden;
}

.ays-btn.loading {
  pointer-events: none;
  opacity: 0.85;
}

.btn-text {
  transition: opacity .2s ease;
}

.ays-btn.loading .btn-text,
.ays-btn.loading i {
  opacity: 0;
}

.btn-loader {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
  animation: spin .7s linear infinite;
}

.ays-btn.loading .btn-loader {
  opacity: 1;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}















#contact_details,
#contact_form {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}


.contact_details {
    display: flex;
    justify-content: space-between; /* Distribute space between divs */
    width: 100%; /* Full width */
    padding: 40px 0;
}

.contact_details .box {
    width: calc(33.33% - 20px); /* 33.33% width for each div with 20px gap */
    box-sizing: border-box; /* Include padding and border in width */
    text-align: left; /* Center text */
    margin: 0 10px; /* Gap between divs */
}

.contact_details .box h4{
  color: #579a06;
  font-size: 16px;
  /*font-family: Manrope-Bold;*/
  font-weight: normal;
}

.contact_details .box p{
  color: #727271;
  font-size: 12px;
  /*font-family: Manrope-Regular;*/
}


/*#contact_form {
  width: 1000px;
  margin: 0 auto 50px auto;
}*/

#contact_form h3{
  /*font-family: Manrope-ExtraBold;*/
  font-size: 30px;
  font-weight: normal;
  color: #000;
  margin: 20px 0;
}

#contact_form .container{
  display: flex;
    justify-content: space-between; /* Distribute space between divs */
    width: 100%; /* Full width */
    padding: 0 0 40px 0;
}

#contact_form .container .box:nth-child(1) {
    width: calc(70% - 20px); /* 33.33% width for each div with 20px gap */
    box-sizing: border-box; /* Include padding and border in width */
    text-align: left; /* Center text */
    margin: 0; /* Gap between divs */
    background: #f7f7f7;
    padding: 30px 30px;
}

#contact_form .container .box:nth-child(2) {
    width: calc(30% - 20px); /* 33.33% width for each div with 20px gap */
    height: 430px;
    box-sizing: border-box; /* Include padding and border in width */
    text-align: left; /* Center text */
    margin: 0 10px; /* Gap between divs */
    background: #f7f7f7 url("../assets/images/contact_form.png") no-repeat;
    background-size: cover;
}

.form_input_group{
  display: flex;
    justify-content: space-between; /* Distribute space between divs */

}

.form_input{
  width: calc(50% - 15px);
  box-sizing: border-box;
  margin-bottom: 15px;
}


.form_input label{
  display: block;
  color: #727271;
  font-size: 12px;
  /*font-family: Manrope-Regular;*/
}

.form_input input{
  width: 100%;
  font-size: 14px;
  height: 35px;
  border: 1px solid #d9d6df;
  padding: 0 5px;
  margin-top: 5px;
  box-sizing: border-box;
}


.form_textarea{
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 15px;
}


.form_textarea label{
  display: block;
  color: #727271;
  font-size: 12px;
  /*font-family: Manrope-Regular;*/
}

.form_textarea textarea{
  width: 100%;
  font-size: 16px;
  height: 73px;
  border: 1px solid #d9d6df;
  padding: 0 5px;
  margin-top: 5px;
  box-sizing: border-box;
}


#contact_form .container .box button {
  background: #579a06;
  color: #fff;
  font-size: 12px;
  /*font-family: Manrope-Bold;*/
  border: none;
  width: 120px;
  height: 40px;
  cursor: pointer;
}



@media (max-width: 1024px) {

  .contact_details {
    gap: 20px;
  }

  .contact_details .box {
    width: calc(33.33% - 10px);
    margin: 0;
  }

  #contact_form .container {
    gap: 20px;
  }

}




@media (max-width: 768px) {

  /* CONTACT DETAILS */
  .contact_details {
    flex-direction: column;
    padding: 30px 0;
  }

  .contact_details .box {
    width: 100%;
    margin: 0 0 20px 0;
  }

  /* FORM TITLE */
  #contact_form h3 {
    font-size: 24px;
    line-height: 1.2;
  }

  /* FORM LAYOUT */
  #contact_form .container {
    flex-direction: column;
  }

  #contact_form .container .box:nth-child(1),
  #contact_form .container .box:nth-child(2) {
    width: 100%;
    margin: 0;
  }

  #contact_form .container .box:nth-child(2) {
    height: 300px;
    margin-top: 20px;
    background-position: center;
  }

  /* INPUT GROUPS */
  .form_input_group {
    flex-direction: column;
  }

  .form_input {
    width: 100%;
  }

  /* BUTTON */
  #contact_form .container .box button {
    width: 100%;
    height: 44px;
    font-size: 14px;
  }


  #contact_form .container .box:nth-child(2) {
    background-size: contain;
  }

}



@media (max-width: 480px) {

  .contact_details .box h4 {
    font-size: 15px;
  }

  .contact_details .box p {
    font-size: 13px;
  }

  .form_textarea textarea {
    height: 90px;
  }

}



