  @import url('https://fonts.googleapis.com/css2?family=Anek+Malayalam:wght@100..800&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');


  :root {
      --primary-color: #048550;
      --secondary-color: #50B955;
      --bg-light: #F1FFF2;
      --white: #fff;
      --white-80: rgba(255, 255, 255, 0.8);
      --white-60: rgba(255, 255, 255, 0.6);
      --primary-font: "Anek Malayalam", sans-serif;
      --secondary-font: "DM Sans", sans-serif;
      --dark-text: #000000;
      --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
          0 1px 2px 0 rgba(0, 0, 0, 0.06);
      /* --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
          0 2px 4px -1px rgba(0, 0, 0, 0.06); */
      --shadow-medium: 0px 4px 15px 1px #0000001c;
      --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
          0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  body {
      margin: 0px;
      padding-top: 0px;
      box-sizing: border-box;
      scroll-behavior: smooth;
      overflow-x: hidden !important;
      font-family: var(--primary-font) !important;
      background: var(--bg-light) !important;
  }

  html {
      scroll-behavior: smooth;
      overflow-x: hidden !important;
      scroll-padding-top: 100px !important;
  }

  a {
      text-decoration: none !important;
      color: inherit;
      cursor: pointer;
  }

  ul {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  img {
      pointer-events: none;
  }

  #splash {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* background: linear-gradient(0deg, rgba(80, 185, 85, 1) 0%, rgba(4, 133, 80, 1) 100%); */
      background: #fff;
      color: #000;
      font-weight: 600;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2rem;
      z-index: 9999;
      text-align: center;

  }

  #splash video {
      width: 600px;
      margin-bottom: 20px;
  }

  #splash h3 {
      font-family: var(--primary-font);
      font-size: 30px;
      font-weight: 600;
  }

  #splash h3 span {
      font-family: var(--secondary-font);
  }

  #splash.hidden {
      display: none;
  }

  #main-content {
      display: none;
  }

  #main-content.visible {
      display: block;
  }
  .margin-top{
    margin-top: 60px;
  }
  /* ------------------------ */
  /* ========================== */
  .header_nav {
      height: 100px;
      position: fixed;
      top: 0px;
      width: 100%;
      z-index: 1000;
      background: #00000000;
  }

  .header_nav.affix {
      background: var(--white);
      box-shadow: 0px 4px 15px 1px #0000000a;
  }

  .nav_items {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 100px;
  }

  .navs {
      display: flex;
      justify-content: space-between;
      align-items: center !important;
  }

  .navbar ul {
      display: flex;
      gap: 2rem;
      align-items: center;
      margin-bottom: 0px;
  }

  .nav_links {
      margin-right: 2rem;
  }

  .navbar ul li a {
      color: #fff !important;
      font-family: var(--secondary-font);
      font-size: 15px;
      font-weight: 400;
      display: flex;
      align-items: center;
  }

  .navbar ul li a span {
      font-family: var(--primary-font);
  }

  .logo img {
      height: 80px;
  }

  .logo-green {
      display: none;
  }

  /* ========== IT NAV ===========*/


  /* .home-nav .navbar ul li a {
  color: var(--primary-color) !important;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--secondary-font);
  display: flex;
  align-items: center;
} */

  .affix .navbar ul li a {
      color: #000000 !important;
      font-size: 15px;
      font-weight: 400;
      display: flex;
      align-items: center;
  }

  .affix .logo .logo-green {
      display: block;
  }

  .affix .logo .logo-white {
      display: none;
  }

  .nav-side {
      display: flex;
      align-items: center;
      /* gap: 4rem; */
      gap: 10px;
      color: #fff;
      font-size: 15px;
      font-weight: 400;
      height: 50px;
  }

  .toggle_icon span {
      display: block;
      background-color: #ffffff;
      height: 2px;
      width: 25px;
      margin-bottom: 5px;
      cursor: pointer;
  }

  .toggle_icon span:nth-child(2) {
      width: 18px;
      margin: 0 0px 5px auto;
  }

  .toggle_icon span:last-child {
      margin-bottom: 0;
      /* width: 20px; */
      margin: 0 0 0 auto;
  }


  .side_menu_bg {
      background: linear-gradient(0deg, rgba(80, 185, 85, 1) 0%, rgba(4, 133, 80, 1) 100%);
      color: #fff;
      width: 33%;
      position: fixed;
      right: 0;
      top: 0px;
      height: 100vh;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transform: translateX(100%);
      transition: all ease 0.4s;
      opacity: 0;
      z-index: 999;
  }

  .side_menu_active {
      transform: translateX(0%);
      opacity: 1;
  }


  .side_menu ul {
      list-style: none;
      font-size: 25px;
      line-height: 1.9;
      padding-left: 0;
  }

  .side_menu ul li a {
      font-weight: 400;
      color: #fff;
      font-family: var(--secondary-font);
  }

  .side_menu ul li a span {
      font-family: var(--primary-font);
  }

  .side_menu_adrs ul {
      list-style: none;
      padding: 0;
      display: inline-flex;
      gap: 11px;
  }

  .side_menu_adrs p {
      color: #fff;
  }

  .side_menu_adrs p span {
      color: #fff;
      font-family: var(--secondary-font);
  }
  .side_menu_adrs p span a{
      color: #fff;
      font-family: var(--secondary-font);
  }


  .close {
      position: absolute;
      right: 10%;
      top: 8%;
      cursor: pointer;
  }

  .close span {
      display: block;
      height: 2px;
      width: 35px;
      background-color: #ffffff;
      margin-bottom: 0.5rem;
  }

  .close span:first-child {
      transform: rotate(45deg);
      margin: -1px;
  }

  .close span:last-child {
      transform: rotate(-45deg);
  }

  .side_menu_adrs .social_links {
      list-style: none;
      padding: 0;
      display: inline-flex;
      gap: 25px;
  }

  .side_menu_adrs .social_links li i {
      font-size: 25px;
      color: #ffffff;
      transition: all 0.3s ease;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
  }

  .side_menu_adrs .social_links li i:hover {
      color: #fff;
      transition: all 0.3s ease;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
  }

  /* ------Dropdown-------- */


  .menu-item-has-children {
      position: relative;
  }

  .sub-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 200px;
      background: #fff;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border-radius: 4px;
      padding: 10px 0;
      z-index: 1000;
  }

  .sub-menu .menu-item {
      padding: 0;
  }

  .sub-menu .menu-link {
      padding: 8px 20px;
      display: block;
      text-transform: none;
      font-size: 16px;
      color: #333 !important;
      white-space: nowrap;
  }

  .affix .sub-menu .menu-link {
      padding: 8px 20px;
      display: block;
      text-transform: none;
      font-size: 16px;
      color: var(--primary-color) !important;
      white-space: nowrap;
  }

  .sub-menu .menu-link:hover {
      color: var(--secondary-color-dark) !important;
  }

  .dropdown-arrow {
      display: inline-block;
      transition: transform 0.3s ease;
      font-size: 11px;
      margin-left: 3px;
      color: #fff;
  }

  .home-nav .dropdown-arrow {
      display: inline-block;
      transition: transform 0.3s ease;
      font-size: 11px;
      margin-left: 3px;
      color: var(--primary-color);
  }

  .affix .dropdown-arrow {
      display: inline-block;
      transition: transform 0.3s ease;
      font-size: 11px;
      margin-left: 3px;
      color: #fff !important;
  }


  @media only screen and (min-width: 768px) {
      .navbar {
          align-items: start !important;
          padding-top: 10px !important;
      }

      .menu {
          position: relative;
          top: 10px;
          width: auto;
          height: auto;
          padding: 0rem;
          margin-left: auto;
          background: none;
          box-shadow: none;
          height: 200px;
      }

      .menu-item-has-children {
          position: relative;
      }

      .menu-item-has-children .sub-menu {
          display: none;
          position: absolute;
          top: 100%;
          left: 50%;
          transform: translateX(-50%);
          min-width: 200px;
          background: #fff;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          border-radius: 7px;
          padding: 10px 0;
          z-index: 1000;
      }

      .menu-item-has-children.active .sub-menu {
          display: block;
      }

      .menu-item-has-children.active .dropdown-arrow {
          transform: rotate(-90deg);
      }

      @media (hover: hover) {
          .menu-item-has-children:hover .sub-menu {
              display: block;
          }

          .menu-item-has-children:hover .dropdown-arrow {
              transform: rotate(-90deg);
          }
      }

      .menu-inner {
          display: flex;
          flex-direction: row;
          column-gap: 2rem;
          margin: 0 auto;
      }

      .menu-link {
          text-transform: capitalize;
      }

      .menu-block {
          margin-left: 2rem;
      }

  }

  @media only screen and (max-width: 991px) {
      .header_nav {
          background: #ffffff00;
      }

      .it_nav {
          background: #ffffff;
      }

  }

  /* ============================ */

  .primary_btn {
      font-family: var(--secondary-font);
      font-weight: 500;
      background: var(--white);
      color: var(--dark-text);
      padding: 8px 8px 8px 20px;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      font-size: 16px;
      border: 1px solid transparent;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 15px;
      box-shadow: 0px 4px 15px 1px #0000001c;
      transition: all ease 0.3s;
      white-space: nowrap;
  }

  .primary_btn .green_arrow {
      background: var(--white);
      padding: 8px;
      border-radius: 30px;
      display: none;
      transition: all ease 0.3s;
  }

  .primary_btn .white_arrow {
      background: var(--secondary-color);
      padding: 8px;
      border-radius: 30px;
      transition: all ease 0.3s;
  }

  .primary_btn:hover {
      background: var(--secondary-color);
      color: var(--white);
      transition: all ease 0.3s;
  }

  .primary_btn:hover .white_arrow {
      display: none;
      transition: all ease 0.3s;
  }

  .primary_btn:hover .green_arrow {
      display: flex;
      transition: all ease 0.3s;
  }

  /* ---------------------------- */

  .multi-lang {
      padding-right: 5px;
      filter: brightness(0) invert(1);
  }

  .affix .multi-lang {
      filter: brightness(1) invert(0);
  }

  .multi-lang2 {
      filter: brightness(0) invert(1);
  }

  .affix .primary_btn {
      border: 1px solid var(--secondary-color);
  }

  .affix .toggle_icon span {
      background-color: var(--secondary-color);
  }


  .banner_exclude {
      width: 100%;
      position: absolute;
      bottom: 0;
      z-index: 3;
  }

  .banner_items {
      height: 100vh;
      position: relative;
  }
  .banner_items img{
      width: 100%;
      height: 100%;
      object-fit: cover;
  }


    .banner_content {
      position: absolute;
      left: 15%;
      top: 50%;
      transform: translateY(-50%);
      z-index: 100;
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: start;
      gap: 1rem;
      color: var(--white);
  }

  .banner_content h3 {
      font-size: 60px;
      font-weight: 600;
      color: var(--white);
  }

  .banner_content h3 span {
      font-family: var(--secondary-font);
  }

  .main_banner_slider .slick-dots li {
      position: relative;
      display: inline-block;
      width: 10px;
      height: 10px;
      margin: 0 3px;
      padding: 0;
      cursor: pointer;
      background-color: var(--secondary-color);
      border-radius: 50px;
  }

  .main_banner_slider .slick-dots li.slick-active {
      width: 20px;
      height: 10px;
      background: var(--primary-color);
  }

  .main_banner_slider .slick-dots li button:before {
      font-family: 'slick';
      font-size: 6px;
      line-height: 10px;
      position: absolute;
      top: 0;
      left: 0;
      width: 10px;
      height: 10px;
      content: '';
      text-align: center;
      opacity: .25;
      color: black;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
  }

  .main_banner_slider .slick-dots {
      bottom: 4%;
      right: 0px !important;
      z-index: 6;
  }

  .main_banner_slider .slick-prev:before,
  .main_banner_slider .slick-next:before {
      font-family: 'FontAwesome';
      font-size: 20px;
      line-height: 1;
      opacity: 1;
      color: #333;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      background: #fff;
  }

  .main_banner_slider .slick-prev:before {
      content: '\f060';
      font-size: 25px;
      border-radius: 50px;
      background: #fff;
  }

  .main_banner_slider .slick-next:before {
      content: '\f061';
      font-size: 25px;
      border-radius: 50px;
      background: #fff;
  }

  .main_banner_slider .slick-prev,
  .main_banner_slider .slick-next {
      font-size: 0;
      line-height: 0;
      position: absolute;
      top: 96%;
      display: block;
      width: 60px;
      height: 60px;
      padding: 0;
      /* -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%); */
      cursor: pointer;
      color: transparent;
      border: none;
      outline: none;
      /* background: transparent; */
      background: #fff;
      border-radius: 50px;
      z-index: 3;
      box-shadow: 0 0px 15px 1px #0000000a;
  }

  .main_banner_slider .slick-prev {
      left: 80px;
  }

  .main_banner_slider .slick-next {
      left: 160px;
  }

  /* =========== what_is_virtual ============== */

  .what_is_virtual {
      padding: 5rem 0;
      position: relative;
  }

  .bottom_include {
      position: absolute;
      bottom: -9px;
      left: 0;
      width: 100%;
      z-index: 1;
  }

  .bottom_include_mob {
      position: absolute;
      bottom: -9px;
      left: 0;
      width: 100%;
      z-index: 1;
      display: none;
  }

  .what_is_virtual_content h1 {
      font-size: 40px;
      font-weight: 600;
      color: var(--dark-text);
      margin-bottom: 1rem;

  }

  .what_is_virtual_content h1 span {
      font-family: var(--secondary-font);
  }

  .para {
      font-size: 16px;
      font-weight: 400;
      color: var(--dark-text);
      margin-bottom: 1rem;
  }

  .para span {
      font-family: var(--secondary-font);
  }

  .about_image {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;

  }

  /* ============ video section =========== */

  .video_section {
      background-color: var(--white);
      padding: 5rem 0;
      position: relative;
  }

  .videos {
      max-width: 1000px;
      margin: 0 auto;
  }

  .video_box {
      padding: 10px;
      border-radius: 25px;
      box-shadow: var(--shadow-medium);
      position: relative;
      margin-bottom: 7px;
      height: calc(100% - 7px);
  }

  .video_box img {
      width: 100%;
      height: auto;
      border-radius: 22px;
      cursor: pointer;
      object-fit: cover;
  }
  .home_video img {
      height: 310px;
    object-fit: cover;
  }

  .video_link {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .video_box i {
      color: var(--white);
      border-radius: 50%;
      width: 50px;
      height: 50px;
      line-height: 50px;
      font-size: 20px;
      padding-left: 4px;
      text-align: center;
      background: #ffffff22;
      backdrop-filter: blur(5px);
      position: absolute;
      border: 1px solid #ffffff10;
  }

  .right_plant {
      position: absolute;
      right: 0px;
      z-index: 10;
      bottom: -170px;
      -webkit-animation: mover1 5s infinite alternate;
      animation: mover1 5s infinite alternate;
      display: none;
  }

  @keyframes mover1 {
      0% {
          transform: translateY(0);
      }

      50% {
          transform: translateX(10px);
      }

      100% {
          transform: translateY(-10px);
      }
  }
  
  .video_slider .slick-slide{
    padding: 20px 30px;
  }

  .pdf-open{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  #pdfPopup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 720px;
  height: 80%;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
}

/* Style the close button (you can customize this) */
.closeBtn {
  position: absolute;
  top: -10px;
  right: -10px;
  cursor: pointer;
  padding: 10px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  height: 12px;
  width: 12px;
  display: flex;
  /* align-content: center; */
  justify-content: center;
  align-items: center;
  color: #fff;
}


  /* ================================== */

  .our_aim_section {
      padding: 5rem 0;
      background: var(--bg-light);
      position: relative;
  }

  .sub_head {
      font-size: 40px;
      font-weight: 550;
      color: var(--dark-text);
      margin-bottom: 1rem;
  }

  .sub_head span {
      font-family: var(--secondary-font);
  }

  .aim_box {
      padding: 10px;
      border-radius: 20px;
      box-shadow: var(--shadow-medium);
      background: var(--white);
      margin-bottom: 20px;
      display: flex;
      justify-content: center;
      text-align: center;
  }

  .aim_box img {
      width: 50px;
      height: 50px;
      margin-bottom: 10px;

  }

  .aim_box h5 {
      font-size: 18px;
      font-weight: 550;
      color: var(--dark-text);
      font-family: var(--primary-font);
  }

  .aim_box h5 span {
      font-family: var(--secondary-font);
  }

  .aim_image {
      margin-left: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
  }

  .aim_image img {
      width: 100%;
  }

  /* ================================== */

  .procedure_section {
      padding: 5rem 0;
      background: var(--white);
      position: relative;
  }

  .procedure_content {
      text-align: center;
  }

  .procedure_boxes {
      max-width: 1100px;
      margin: 0 auto;
  }

  .procedure_boxes .procedure_box {
      text-align: center;
      padding: 20px 15px 35px 15px;
  }

  .procedure_boxes .procedure_box h5 {
      margin-bottom: 0px;
      text-align: center;
  }

  .procedure_boxes .procedure_box h5 span {
      font-family: var(--secondary-font);
  }

  .procedure_boxes .procedure_box h5 {
      margin-bottom: 0px;
  }

  .procedure_box h5 span {
      font-family: var(--secondary-font);
  }

  .procedure_box {
      padding: 20px;
      border-radius: 30px;
      box-shadow: var(--shadow-medium);
      background: var(--white);
      margin-bottom: 20px;
      /* display: flex;
      justify-content: center; */
      border: 1px solid #50b9554d;
      height: calc(100% - 20px);
      transition: all ease 0.3s;
      position: relative;
      z-index: 3;
      overflow: visible;
  }

  .procedure_box .readmore {
      position: absolute;
      bottom: -26px;
      left: 50%;
      transform: translateX(-50%);
      transition: all ease 0.5s;
      opacity: 0;
      border: none;
      background: var(--secondary-color);
      font-family: var(--secondary-font);
      font-size: 14px;
      border-radius: 30px;
      color: #fff;
      padding: 3px 10px;
      cursor: pointer;
  }

  .procedure_box:hover .readmore {
      transition: all ease 0.5s;
      bottom: 5px;
      opacity: 1;
      font-size: 14px;
  }

  .procedure_box .readmore_content {
      display: none;
      /* hide by default */
      margin-top: 10px;
      transition: all ease 0.5s;
      text-align: left;
  }

  .procedure_box .readmore_content.active {
      display: block;
      /* show when active */
      transition: all ease 0.5s;
      height: auto;
      z-index: 10;
  }

  .procedure_box .readmore_content.active {
      display: block;
      transition: all ease 0.5s;
      height: auto;
      background: #fff;
      padding: 25px 15px 15px 15px;
      border-radius: 20px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      width: 350px;
      top: 100%;
      border: 1px solid #50b9554d;
  }


  .procedure_box ul {
      padding-left: 0px;
  }

  .procedure_box li {
      display: flex !important;
      align-items: start !important;
      gap: 10px;
  }

  .procedure_box li .para {
      font-size: 14px;
  }


  .procedure_box li i {
      font-size: 12px;
      margin-top: 7px;
      color: var(--primary-color) !important;
  }

  .procedure_box h5 {
      font-size: 17px;
      font-weight: 550;
      color: var(--dark-text);
      margin-bottom: 15px;
      width: 70%;
      margin: 0 auto 15px auto;
      font-family: var(--primary-font);
  }

  .procedure_box img {
      width: 50px;
      height: 50px;
      margin-bottom: 10px;

  }


  /* ================================== */

  .no_investment_section {
      padding: 5rem 0;
      background: linear-gradient(270deg, rgba(4, 133, 80, 1) 0%, rgba(80, 185, 85, 1) 100%);
      position: relative;
  }

  .no_investment_img img {
      width: 97%;
      margin-top: 30px;

  }

  .no_investment_content {
      display: flex;
      align-items: center;
      height: 100%;
      margin-left: 20px;
      margin-top: 20px;
  }

  .no_investment_content .para {
      color: var(--white-80);
  }

  .no_investment_content ul {
      padding-left: 5px;
      margin-top: 30px;
  }

  .no_investment_content ul li {
      display: flex;
      align-items: start;
      gap: 10px;
  }

  .no_investment_content ul li i {
      font-size: 12px;
      margin-top: 7px;
      color: var(--white);
  }

  /* =================================== */

  .one_panchayath_section {
      padding: 5rem 0;
      background: var(--white);
      position: relative;
  }

  .one_panchayath_contents {
      text-align: center;
      max-width: 1100px;
      margin: 0px auto;
  }

  .left_plants {
      position: absolute;
      z-index: 10;
      left: 0px;
      bottom: -200px;
      -webkit-animation: mover2 5s infinite alternate;
      animation: mover2 5s infinite alternate;
      display:none;
  }

  @keyframes mover2 {
      0% {
          transform: translateY(0);
      }

      50% {
          transform: translateX(-10px);
      }

      100% {
          transform: translateY(-10px);
      }
  }

  /* =================================== */

  .why_us_section {
      padding: 5rem 0;
      background: var(--bg-light);
      position: relative;
      z-index: 5;
  }

  .why_us_content_box {
      background: linear-gradient(90deg, rgba(4, 133, 80, 1) 0%, rgba(80, 185, 85, 1) 100%);
      padding: 50px;
      border-radius: 30px;
      text-align: center;
      color: var(--white);
  }

  .why_us_content_box h3 {
      color: var(--white);
  }

  .panchayath_aim {
      padding: 20px 30px;
      margin: 10px 0px;
      /* overflow: hidden; */
      position: relative;
  }

  .panchayath_aim .readmore {
      position: absolute;
      bottom: -30px;
      left: 50%;
      transform: translateX(-50%);
      transition: all ease 0.5s;
      opacity: 0;
      border: none;
      background: var(--secondary-color);
      font-family: var(--secondary-font);
      font-size: 14px;
      border-radius: 30px;
      color: #fff;
      padding: 3px 10px;
      cursor: pointer;
  }


  .panchayath_aim img {
      margin-bottom: 10px;

  }

  .panchayath_aim h5 {
      font-size: 17px;
      /* width: 80%; */
      margin: 0 auto 10px auto;

  }

  .panchayath_aim .para {
      color: var(--white-80);
  }

  .panchayath_aim .para b {
      color: var(--white);
      font-weight: 500;
  }

  .panchayath_aim h5 span {
      font-family: var(--secondary-font);
  }

  /* .why-details h5 {
      margin-bottom: 10px;
  }

  .why-details ul {
      padding-left: 0px;
  }

  .why-details li {
      display: flex;
      align-items: start;
      gap: 10px;
  }

  .why-details li .para {
      color: var(--white-80);
      font-size: 14px;
      text-align: start;
  }

  .why-details li .para b {
      color: var(--white);
      font-size: 14px;
      text-align: start;
  }

  .why-details li i {
      font-size: 12px;
      margin-top: 7px;
      color: var(--white);
  } */
  .panchayath_aim h5 {
      margin-bottom: 10px;
  }

  .panchayath_aim ul {
      padding-left: 0px;
  }

  .panchayath_aim li {
      display: flex;
      align-items: start;
      gap: 10px;
  }

  .panchayath_aim li .para {
      color: var(--white-80);
      font-size: 14px;
      text-align: start;
  }

  .panchayath_aim li .para b {
      color: var(--white);
      font-size: 14px;
      text-align: start;
  }

  .panchayath_aim li i {
      font-size: 12px;
      margin-top: 7px;
      color: var(--white);
  }

  .panchayath_aim:hover .readmore {
      transition: all ease 0.5s;
      bottom: 0px;
      opacity: 1;
  }

  .panchayath_aim .readmore_content {
      display: none;
      /* hide by default */
      margin-top: 10px;
      transition: all ease 0.5s;
  }

  .panchayath_aim .readmore_content.active {
      display: block;
      /* show when active */
      transition: all ease 0.5s;
      height: auto;
  }

  .panchayath_aim .readmore_content.active {
      display: block;
      transition: all ease 0.5s;
      height: auto;
      background: #048550;
      padding: 25px 15px 15px 15px;
      border-radius: 20px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      width: 350px;
      top: 100%;
      border: 1px solid #ffffff80;
  }

    .home-sec .aim-image img{
        width: 95%;
        border-radius: 25px;
    }

  /* ================================ */
    .footer_contact {
        padding: 5rem 0 0rem 0;
        background: #EBEBDD;
        position: relative;
    }


  .footer_flex {
      display: flex;
      justify-content: space-between;
  }

  .email-click {
      padding: 7px 16px;
      background: var(--white);
      width: auto;
      display: inline;
      font-size: 18px;
      border-radius: 10px;
  }

  .email-click a {
      color: var(--primary-color);
      font-family: var(--secondary-font);

  }
  /* ===================================== */

  .footer_design{
    width: 100%;
  }

  .footer_design_mob {
      display: none;
  }


  /* ===================================== */

  footer {
      padding-top: 1rem;
      background: linear-gradient(270deg, rgba(4, 133, 80, 1) 0%, rgba(80, 185, 85, 1) 100%);
      position: relative;
      text-align: center;
  }

  .footer_logo {
      margin: 15px 0px 20px 0px;
      text-align: start;
  }

  .footer_logo .para {
      font-size: 14px;
      margin-top: 15px;
      color: var(--white);
      width: 80%;
      font-family: var(--secondary-font);
  }

  .footer_box {
      margin-top: 40px;
  }
  .footer_box ul li a:hover{
    color: #24f324;
  }


  .footer_box {
      margin-top: 20px;
  }

  .footer_box h5 {
      font-size: 19px;
      color: var(--white);
      font-family: var(--secondary-font);
      text-align: start;
      margin-bottom: 10px;
  }


  .footer_menu {
      padding: 0px;
  }

  .footer_menu li {
      text-align: start;
      padding: 5px 0px;
  }

  .footer_menu li a {
      text-align: start;
      color: var(--white-80);
      font-family: var(--secondary-font);
  }

  .footer_menu li img {
      filter: brightness(0) invert(1);
      height: 18px;
      width: 18px;
      margin-right: 10px;
  }


  .footer_menu .para {
      color: var(--white);
  }


  .email_flex {
      display: flex;
      gap: 5px;
      width: 95%;
  }

  .email_flex input {
      width: 100%;
      padding: 10px 15px;
      border-radius: 10px;
      border: 1px solid #fff;
      background: transparent;
      color: var(--white);
  }

  .email_flex input::placeholder {
      color: rgba(255, 255, 255, 0.877);
  }

  .footer_bottom {
      margin-top: 1.5rem;
      padding: 1.5rem 0px 1.5rem 0rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid #ffffff4d;
      font-family: var(--secondary-font);
      color: var(--white-80);
  }

  .footer_bottom .hover_link {
      color: var(--white);
      transition: all ease 0.3s;
  }
  .footer_bottom .hover_link:hover {
      color: #ffd900;
      transition: all ease 0.3s;
  }

  .multi-lang-footer {
      filter: brightness(0) invert(1);
      margin-right: 5px;
  }

  .copy {
      display: flex;
      gap: 3px;
  }

  .footer_bottom p {
      margin-bottom: 0px;
      color: var(--white);
      font-size: 14px;
      font-family: var(--secondary-font);
  }

  .footer_bottom .para {
      margin-bottom: 0px;
      color: var(--white);
      font-size: 13px;
      font-family: var(--primary-font);
  }

  .social_links {
      margin-top: 25px;
  }

  footer .social_links ul {
      display: flex;
      gap: 20px;
      margin-bottom: 0px;
      padding-left: 0;
  }

  footer .social_links ul li i {
      cursor: pointer;
      transition: all ease 0.3s;
      -webkit-transition: all ease 0.3s;
      -moz-transition: all ease 0.3s;
      -ms-transition: all ease 0.3s;
      -o-transition: all ease 0.3s;
      color: var(--white);
      text-align: start;
      font-size: 20px;
  }

  footer .social_links ul li:hover {
      transform: translateY(-5px);
      transition: all ease 0.3s;
      -webkit-transition: all ease 0.3s;
      -moz-transition: all ease 0.3s;
      -ms-transition: all ease 0.3s;
      -o-transition: all ease 0.3s;
  }

  /* =============== What We Do ========================== */
  .inner_banner_section {
      position: relative;
  }

  .inner_banner_items {
      height: 50vh;
  }

  .about_banner {
      background: url(/assets/images/about_banner.webp);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
  }

  .inner_banner_content {
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      height: 100%;
      gap: 1rem;
      height: 50vh;
      color: var(--white);
      text-align: center;
      padding-top: 100px;
  }

  .inner_banner_content h3 {
      font-size: 55px;
      font-weight: 500;
      color: var(--white);
      font-family: var(--secondary-font);

  }

  .inner_banner_content h3 span {
      font-family: var(--primary-font);
  }

  .inner_banner_exclude {
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      z-index: 1;
      transform: rotate(180deg);
  }

  .inner_banner_exclude_mob {
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      z-index: 1;
      transform: rotate(180deg);
      display: none;
  }

  .ouraim_about {
      background: var(--white);
  }

  .what_we_do {
      /* padding: 5rem 0px; */
      position: relative;
      background: linear-gradient(270deg, rgba(4, 133, 80, 1) 0%, rgba(80, 185, 85, 1) 100%);
      color: var(--white-80);
  }

  .what_we_do .para {
      color: var(--white-80);
  }

  .what_we_do_image {}

  .what_we_do_image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .what_we_do_content {
      display: flex;
      align-items: center;
      height: 100%;
      margin-left: 20px;
      margin-top: 20px;
      max-width: 650px;
      padding: 4rem 2rem;
  }

  .what_we_do_content .para {
      color: var(--white-80);
  }

  .what_we_do_content ul {
      padding-left: 5px;
      margin-top: 30px;
  }

  .what_we_do_content ul li {
      display: flex;
      align-items: start;
      gap: 10px;
  }

  .what_we_do_content ul li i {
      font-size: 12px;
      margin-top: 7px;
      color: var(--white);
  }

  .what_we_exclude {
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      z-index: 1;
      transform: rotate(180deg);
  }

  .what_we_exclude_mob {
      transform: rotate(180deg);
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      z-index: 1;
      display: none;
  }

  /* ================= Contact ====================== */

  .contact_banner {
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0)), url(/assets/images/contact_banner.webp);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
  }

  .get_in_touch {
      padding: 5rem 0;
      background: #fff;
      position: relative;
  }

  .get_in_touch_content {
      max-width: 900px;
      margin: 0 auto;
      margin-bottom: 2rem;
  }

  .get_in_touch_content h3 {
      font-size: 60px;
      font-weight: 500;
      margin-bottom: 1rem;
      font-family: var(--secondary-font);
      text-align: center;
  }

  .get_in_touch_content h3 span {
      font-family: var(--primary-font);
  }

  .get_in_touch_content .para {
      max-width: 600px;
      text-align: center;
      margin: 0 auto;
  }

  .get_in_touch_content .social_links {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      margin-top: 30px;
  }

  .get_in_touch_content .social_links li i {
      font-size: 20px;
      color: var(--primary-color);
      height: 40px;
      width: 40px;
      text-align: center;
      line-height: 40px;
      border: 1px solid #e6e6e6;
      border-radius: 50px;

  }

  .get_in_touch_form {
      max-width: 900px;
      margin: 0 auto;
      padding: 50px;
      background: var(--white);
      border-radius: 30px;
      border: 1px solid #e6e6e6;
      box-shadow: 0px 4px 15px 1px #0000000a;

  }

  .get_in_touch_form input {
      width: 100%;
      padding: 13px 20px;
      border-radius: 30px;
      border: 1px solid #e6e6e6;
      margin-bottom: 30px;
      font-size: 16px;
      color: var(--dark-text);
      font-family: var(--secondary-font);
  }

  .get_in_touch_form textarea {
      width: 100%;
      padding: 13px 20px;
      border-radius: 30px;
      border: 1px solid #e6e6e6;
      margin-bottom: 30px;
      font-size: 16px;
      color: var(--dark-text);
      font-family: var(--secondary-font);
  }

  .button_cntr {
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .get_in_touch_form .primary_btn {
      border: 1px solid var(--secondary-color);
  }

    .contact_info {
        padding: 5rem 0 0rem 0;
        background: var(--bg-light);
    }

  .contact_info_box {
      padding: 30px;
      background: var(--white);
      height: calc(100% - 25px);
      font-family: var(--secondary-font);
      text-align: center;
      border-radius: 20px;
      margin-bottom: 10px;
      box-shadow: var(--shadow-medium);
  }

  .contact_info_box h5 span {
      font-family: var(--primary-font);
  }

  .contact_info_box p a {
      color: inherit;
  }

  /* =========================================== */
  .enquiry_banner {
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.172), rgba(0, 0, 0, 0.476)), url(/assets/images/enquiry_banner.webp);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
  }

    .enquire_page_section {
        padding: 5rem 0 4rem 0;
        background: #fff;
        position: relative;
    }

  .enquiry_content {
      max-width: 900px;
      margin: 0 auto;
      margin-bottom: 2rem;
  }

  .enquiry_content h3 {
      font-size: 60px;
      font-weight: 500;
      margin-bottom: 1rem;
      font-family: var(--secondary-font);
      text-align: center;
  }

  .enquiry_content h3 span {
      font-family: var(--primary-font);
  }

  .enquiry_content .para {
      max-width: 600px;
      text-align: center;
      margin: 0 auto;
  }

  .enquiry_content .social_links {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      margin-top: 30px;
  }

  .enquiry_content .social_links li i {
      font-size: 20px;
      color: var(--primary-color);
      height: 40px;
      width: 40px;
      text-align: center;
      line-height: 40px;
      border: 1px solid #e6e6e6;
      border-radius: 50px;

  }

  .enquiry_form {
      max-width: 900px;
      margin: 0 auto;
      padding: 50px;
      background: var(--white);
      border-radius: 30px;
      border: 1px solid #e6e6e6;
      box-shadow: 0px 4px 15px 1px #0000000a;

  }

  .enquiry_form input {
      width: 100%;
      padding: 13px 20px;
      border-radius: 30px;
      border: 1px solid #e6e6e6;
      margin-bottom: 30px;
      font-size: 16px;
      color: var(--dark-text);
      font-family: var(--secondary-font);
  }

  .enquiry_form textarea {
      width: 100%;
      padding: 13px 20px;
      border-radius: 30px;
      border: 1px solid #e6e6e6;
      margin-bottom: 30px;
      font-size: 16px;
      color: var(--dark-text);
      font-family: var(--secondary-font);
  }

  .enquiry_form select {
      width: 100%;
      padding: 13px 20px;
      border-radius: 30px;
      border: 1px solid #e6e6e6;
      margin-bottom: 30px;
      font-size: 16px;
      color: var(--dark-text);
      font-family: var(--secondary-font);
      cursor: pointer;
      appearance: none;
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><polyline points="6,9 12,15 18,9"/></svg>');
      background-repeat: no-repeat;
      background-position: right 15px center;
      background-size: 20px;
  }

  .enquiry_form select option {
      background: var(--bg-light);
      padding: 10px;
  }

  .enquiry_form label {
      font-size: 16px;
      color: var(--secondary-color);
      font-family: var(--secondary-font);
      padding-left: 20px;
      margin-bottom: 3px;
  }

  .button_cntr {
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .enquiry_form .primary_btn {
      border: 1px solid var(--secondary-color);
  }

  /* ============================================ */
  .business_banner {
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.172), rgba(0, 0, 0, 0.26)), url(/assets/images/business_banner.webp);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
  }

  .future_banner {
      background: url(/assets/images/future_banner.webp);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      height: 60vh;
  }

  .future_icons {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
      margin-top: 30px;
  }

  .myfuture_section {
      padding: 5rem 0;
      background: var(--bg-light);
      position: relative;
  }

  .future_banner .why_us_content_box {
      background: none;
      padding: 0px 0px;
      border-radius: 30px;
      text-align: center;
      color: var(--white);
  }

  .future_banner .panchayath_aim {
      padding: 20px 50px;
      margin: 10px 0px;
      /* overflow: hidden; */
      position: relative;
  }

  .future_banner .inner_banner_content {
      padding-top: 150px;
      height: 60vh;
  }

  .myfuture_section img {
      width: 60px;
      height: 60px;
  }

  .invensions_slider {
      margin: 40px 0px;
  }

  .invensions_slider .invension_img {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
  }

  .invensions_slider img {
      height: 100px;
  }

  .invensions_slider .slick-prev:before,
  .invensions_slider .slick-next:before {
      font-family: 'FontAwesome';
      font-size: 20px;
      line-height: 1;
      opacity: 1;
      color: #333;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      background: #fff;
  }

  .invensions_slider .slick-prev:before {
      content: url('/assets/images/main-arrow-white-l.svg');
      transform: rotate(180deg);
      font-size: 25px;
      border-radius: 50px;
      background: var(--secondary-color);
      padding: 8px 11px;
  }

  .invensions_slider .slick-next:before {
      content: url('/assets/images/main-arrow-white.svg');
      font-size: 25px;
      border-radius: 50px;
      background: var(--secondary-color);
      padding: 8px 11px;
  }

  .invensions_slider .slick-prev,
  .invensions_slider .slick-next {
      font-size: 0;
      line-height: 0;
      position: absolute;
      display: block;
      padding: 0;
      cursor: pointer;
      color: transparent;
      border: none;
      outline: none;
      border-radius: 50px;
      z-index: 3;
      box-shadow: 0 0px 15px 1px #0000000a;
      display: none;
      transition: all ease 0.5s;
      -webkit-transition: all ease 0.5s;
      -moz-transition: all ease 0.5s;
      -ms-transition: all ease 0.5s;
      -o-transition: all ease 0.5s;
  }

  .invensions_slider .slick-prev {
      left: -23px;
  }

  .invensions_slider .slick-next {
      right: 0px;
  }

  .invensions_slider:hover .slick-prev,
  .invensions_slider:hover .slick-next {
      display: block;
      transition: all ease 0.5s;
      -webkit-transition: all ease 0.5s;
      -moz-transition: all ease 0.5s;
      -ms-transition: all ease 0.5s;
      -o-transition: all ease 0.5s;
  }


  .meat_section {
      padding: 5rem 0;
      background: var(--bg-light);
      position: relative;
  }

  .meat_section img {
      width: 100%;
      margin: auto;
  }

  .kerala_map_section {
      padding: 5rem 0;
      background: var(--white);
      position: relative;
  }

  .map_img .map-web {
      width: 100%;
  }

  .map_img .map-mob {
      width: 100%;
      display: none;
  }

  .food-process_content {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%
  }

  .food-factory {
      width: 100%;
  }
    .img_full{
        display: flex;
        justify-content: center;
    }
  .img_full img {
      width: 70%;
      border-radius: 30px;
  }

  .kerala_map_content {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%
  }

  /* =============== Gallery ================ */

  .gallery_banner {
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.479), rgba(0, 0, 0, 0)), url(/assets/images/gallery_banner.webp);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
  }

  /* Style for the gallery section */
  .gallery-section {
      padding: 5rem 0 12rem 0;
      text-align: center;
  }

  .tabs {
      margin-bottom: 30px;
      display: inline-grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 10px;
  }

  .tabs button {
      font-family: var(--secondary-font);
      font-weight: 500;
      background: var(--white);
      color: var(--dark-text);
      padding: 8px 20px 8px 20px;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      font-size: 16px;
      border: 1px solid transparent;
      gap: 15px;
      box-shadow: 0px 4px 15px 1px #0000001c;
      transition: all ease 0.3s;
  }

  .tabs button.active {
      background-color: var(--secondary-color);
      color: white;
  }

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

  .category {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 10px;
  }

  .gallery div {
      display: none;
      /* margin: 10px; */
  }

  .gallery img {
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: 20px;
  }

  .fslightbox-full-dimension img {
      height: 400px !important;
      width: auto !important;
  }

  /* ===========  Our Team =============== */

  .our_team_section {
      padding: 5rem 0;
      background: var(--white);
      position: relative;
  }

  .our_team_contents {
      text-align: center;
      max-width: 1100px;
      margin: 0px auto;
  }

  .team_flex {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
      margin-top: 30px;
  }

  .team_img {
      width: 100%;
      height: 220px;
      border-radius: 20px;
      overflow: hidden;
      margin-bottom: 10px;
  }

  .team_img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all ease 0.3s;
  }
  .team_img:hover img {
      transform: scale(1.1);
      transition: all ease 0.3s;
  }

  .team_content h5 {
      font-family: var(--primary-font);
      margin-bottom: 0px;
      font-size: 17px;
  }

  .team_content h5 span {
      font-family: var(--secondary-font);
  }
  .team_content .para{
    font-size: 14px;
  }












.enquire_page_section .custom-select {
    position: relative;
    width: 100%;
    user-select: none;
}

.enquire_page_section .selected {
    width: 100%;
    padding: 13px 20px;
    border-radius: 30px;
    border: 1px solid #e6e6e6;
    margin-bottom: 30px;
    font-size: 16px;
    color: var(--dark-text);
    font-family: var(--secondary-font);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.enquire_page_section .options {
    position: absolute;
    top: 101%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #50b955;
    border-radius: 20px;
    margin-top: 4px;
    display: none;
    padding: 10px 20px;
    width: 75%;
    z-index: 9;
}

.enquire_page_section .options li {
    padding: 10px 5px;
    cursor: pointer;
    transition: 0.3s;
}
.enquire_page_section .bdr-bottom{
    border-bottom: 1px solid #efefef;
}
.enquire_page_section .options li:hover {
    background: #f0f0f0;
    border-radius: 10px;
}

.homegallery{
     padding: 4rem 0;
      background: var(--bg-light);
      position: relative;
}
.myfuturehome{
    padding: 3rem;
    background: url(/assets/images/future_banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    border-radius: 30px;
}

  .myfuturehome .why_us_content_box {
      background: none;
      padding: 0px 0px;
      border-radius: 30px;
      text-align: center;
      color: var(--white);
      width: 50%;
      margin: 0 auto;
  }


  /* Thank You Page */
    .thank_you_section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 60px;
    position: relative;
    background: #fff;
    overflow: hidden;
  }

  .thank_you_content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .thank_you_icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    box-shadow: 0 15px 40px rgba(76, 132, 56, 0.3);
    opacity: 0;
    transform: scale(0.3);
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s forwards;
  }

  .thank_you_icon svg {
    width: 55px;
    height: 55px;
  }

  .thank_you_icon svg path {
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCheck 0.6s ease 0.7s forwards;
  }

  @keyframes popIn {
    0% {
      opacity: 0;
      transform: scale(0.3);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes drawCheck {
    to {
      stroke-dashoffset: 0;
    }
  }

  .thank_you_content h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s ease 0.5s forwards;
  }

  .thank_you_content h2 span {
    color: var(--secondary-color);
  }

  .thank_you_content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s ease 0.7s forwards;
  }

  .thank_you_buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s ease 0.9s forwards;
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .thank_you_divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 25px;
    border-radius: 3px;
    opacity: 0;
    animation: fadeUp 0.5s ease 0.6s forwards;
  }

  @media (max-width: 768px) {
    .thank_you_section {
      padding: 80px 15px 40px;
      min-height: 60vh;
    }

    .thank_you_content h2 {
      font-size: 30px;
    }

    .thank_you_icon {
      width: 90px;
      height: 90px;
    }

    .thank_you_icon svg {
      width: 40px;
      height: 40px;
    }
  }

.grecaptcha-badge {
    z-index: 998 !important;
}
.connection i{
    background: #50b955;
    padding: 10px 10px;
    margin-bottom: 10px;
    color: white;
    border-radius: 100px;
    width: 38px;

}