/**
* Template Name: eStartup
* Template URL: https://bootstrapmade.com/estartup-bootstrap-landing-page-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */

@font-face {
  font-family: "BahijTheSansArabic";
  src: url("../fonts/Bahij-Fonts/Bahij_TheSansArabic-Plain.ttf")
      format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "BahijTheSansArabic";
  src: url("../fonts/Bahij-Fonts/Bahij_TheSansArabic-Light.ttf")
      format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "BahijTheSansArabic";
  src: url("../fonts/Bahij-Fonts/Bahij_TheSansArabic-Bold.ttf")
      format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "BahijTheSansArabic";
  src: url("../fonts/Bahij-Fonts/Bahij_TheSansArabic-ExtraBold.ttf")
      format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "BahijTheSansArabic";
  src: url("../fonts/Bahij-Fonts/Bahij_TheSansArabic-Black.ttf")
      format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "BahijJenna";
  src: url("../fonts/Bahij-Fonts/alfont_com_بهيج-جنة-عريض-1.ttf")
      format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "BahijJenna";
  src: url("../fonts/Bahij-Fonts/alfont_com_بهيج-جنة-رفيع.ttf")
      format("truetype");
  font-weight: 300;
  font-style: normal;
}
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #101f0c; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #74a32d; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529; /* The default color of the main navmenu links */
  --nav-hover-color: #74a32d; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #74a32d; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the same color scheme. */

.light-background {
  /* --background-color: #f1f6f1; */
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
  background: rgb(45, 95, 120);
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(45, 95, 120);
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "BahijTheSansArabic", sans-serif;
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}
p {
  font-family: "BahijJenna", sans-serif;
  /* font-weight: 300; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: "BahijTheSansArabic", sans-serif;
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* PHP Email Form Messages ------------------------------ */
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Adjustments for Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu ul {
      display: flex;
  }

  .navmenu a:hover {
      text-decoration: underline;
  }
}

/* Responsive Navigation Menu */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
      display: block;
  }
  .navmenu ul {
      display: none; /* Initially hidden */
  }

  .navmenu.active ul {
      display: block; /* Shown when active */
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 80px;
  /* margin-right: 8px; */
}
.header .container-fluid {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .quote_btn-container {
  /* position: absolute;
left: 0; */
  gap: 10px;
}

.logo {
  margin-right: auto;
}

.navmenu {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo h1 span {
  color: var(--accent-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
.header .logo a .ms-2 {
  max-height: 90px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
      padding: 0;
  }

  .navmenu ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
      justify-content: center;
  }

  .navmenu li {
      position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
      color: var(--nav-color);
      padding: 18px 15px;
      font-size: 13px;
      font-family: var(--nav-font);
      font-weight: 400;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
  }
  .navmenu .quote_btn-container a,
  .navmenu .quote_btn-container a:focus {
      padding: 10px 20px;
      font-family: var(--nav-font);
      font-size: 17px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
      color: white;
  }
  .navmenu a i,
  .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      transition: 0.3s;
  }

  .navmenu li:last-child a {
      padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
      color: var(--nav-hover-color);
      list-style: none;
      border: none;
  }

  .navmenu .dropdown ul {
      margin: 0;
      padding: 10px 0;
      background: var(--nav-dropdown-background-color);
      display: block;
      position: absolute;
      visibility: hidden;
      left: 14px;
      top: 130%;
      opacity: 0;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
      min-width: 200px;
  }

  .navmenu .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
      font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
      color: var(--nav-dropdown-hover-color);
      border: none;
  }

  .navmenu .dropdown:hover > ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
      top: 0;
      left: -90%;
      visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
      opacity: 1;
      top: 0;
      left: -100%;
      visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
      color: var(--nav-color);
      font-size: 28px;
      line-height: 0;
      margin-right: 10px;
      cursor: pointer;
      transition: color 0.3s;
      top: 3px;
      position: relative;
  }

  .navmenu {
      padding: 0;
      z-index: 9997;
  }

  .navmenu ul {
      display: none;
      list-style: none;
      position: absolute;
      inset: 60px 20px 20px 20px;
      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      background-color: var(--nav-mobile-background-color);
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
      color: var(--nav-dropdown-color);
      padding: 10px 20px;
      font-family: var(--nav-font);
      font-size: 14px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
      background-color: color-mix(
          in srgb,
          var(--accent-color),
          transparent 90%
      );
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
      background-color: var(--accent-color);
      color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
      color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
      background-color: var(--accent-color);
      color: var(--contrast-color);
      /* transform: rotate(180deg); */
  }
  .navmenu a.active {
      color: var(--nav-hover-color);
      border-bottom: 2px solid var(--nav-hover-color);
  }
  .navmenu li:hover > a,
  .navmenu .active:focus {
      color: var(--nav-hover-color);
  }

  .navmenu a.active:hover {
      color: var(--nav-dropdown-hover-color);
      border-bottom-color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown ul {
      position: static;
      display: none;
      z-index: 99;
      padding: 10px 0;
      margin: 10px 20px;
      background-color: var(--nav-dropdown-background-color);
      border: 1px solid
          color-mix(in srgb, var(--default-color), transparent 90%);
      box-shadow: none;
      transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
      background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
      display: block;
      background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
      overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
      color: #fff;
      position: absolute;
      font-size: 32px;
      top: 15px;
      right: 15px;
      margin-right: 0;
      z-index: 9999;
  }

  .mobile-nav-active .navmenu {
      position: fixed;
      overflow: hidden;
      inset: 0;
      background: white;
      transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
      display: block;
  }

  .mobile-nav-active .navmenu ul {
      display: block;
      background-color: #ffffff;

      color: #333333;

      padding: 10px 0;
      border-radius: 6px;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
      width: 100%;
  }

  .mobile-nav-active .navmenu a,
  .mobile-nav-active .navmenu a:focus {
      color: #333333;
  }

  .mobile-nav-active .navmenu a:hover,
  .mobile-nav-active .navmenu .active,
  .mobile-nav-active .navmenu .active:focus {
      color: #555555;
  }
}
.home img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.model .card {
  margin: auto;
  width: 38%;
  max-width: 600px;
  padding: 5vh 71px;
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-top: 3px solid #74a32d;
  border-bottom: 3px solid #74a32d;
  border-left: none;
  border-right: none;
  margin-top: 57px;
}

@media (max-width: 768px) {
  .model .card {
      width: 90%;
  }
}

.title {
  color: rgba(36, 90, 165, 0.6);
  font-weight: 600;
  margin-bottom: 2vh;
  /* padding: 0 8%; */
  font-size: initial;
  text-align: center;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal.card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  text-align: center;
}

.title {
  font-size: 20px;
  color: #1a1a1a;
}

.amount {
  color: #74a32d;
  text-align: center;
}

.form-group input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.progress-container {
  margin-top: 20px;
  text-align: left;
}

.progress-bar {
  background-color: #ddd;
  border-radius: 10px;
  overflow: hidden;
  height: 10px;
}

.progress {
  height: 100%;
  background-color: #007bff;
}

.payment-options img {
  width: 61px;
  height: 49px;
  margin: 5px;
  cursor: pointer;
}

.buttons {
  margin-top: 20px;
}

.add-to-cart,
.donate-now {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.add-to-cart {
  background-color: #f0f0f0;
  color: #333;
  margin-right: 10px;
  /* background: linear-gradient(180deg, rgba(36, 90, 165, 0.25) 0%, #245AA5 100%); */
  transition: background 0.3s ease;
  border: none;
  padding: 15px;
  /* color: white; */
  font-weight: bold;
  box-shadow: 0px 4px 4px 0px #00000040;
  border-radius: 8px;
  text-align: center;
}

.donate-now {
  background-color: #007bff;
  color: #fff;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
}

.close {
  position: absolute;
  top: 1px;
  right: 16px;
  font-size: 34px;
  cursor: pointer;
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  font-size: 14px;
  padding: 63px 0;
  position: relative;
  background: linear-gradient(
      93.65deg,
      #051833 3%,
      #0c2b56 53.83%,
      #051833 107.56%
  );
  /* background: linear-gradient(180deg, rgba(36, 90, 165, 0.25) 0%, #245AA5 100%); */
}

.footer .copyright p {
  margin-bottom: 0;
  font-size: 18px;
}

.footer .social-links {
  margin-top: 20px;
  gap: 0px;
  justify-content: center;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, #f7f7f7, transparent 50%);
  font-size: 18px;
  margin: 0 5px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .social-links a i {
  padding-top: 5px;
}

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}
.footer {
  padding: 30px 0;
  background-color: #222;
  color: #fff;
}

.footer-logo img {
  max-width: 100px;
}

.footer-links a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.social-links a {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #20c997;
}

.divider {
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #fff;
  opacity: 0.5;
}

.copyright p {
  margin-top: 15px;
  font-size: 0.9em;
}
.footer-logo img {
  max-width: 150px;
}
.footer p {
  font-size: 16px;
  text-align: justify;
}
.footer h3 {
  font-size: 22px;
  font-weight: bold;
  color: white;
  text-align: justify;
}

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

.footer ul li {
  margin-bottom: 5px;
  text-align: justify;
}

.footer ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer ul li a:hover,
.footer .social-links a:hover {
  color: #74a32d;
}

.footer .social-links a {
  /* font-size: 20PX;
    color: #fff;
    margin-left: 15px;
    transition: color 0.3s ease; */
}

.footer .footer-text {
  text-align: center;
  font-size: 0.875rem;
  color: #74a32d;
  font-weight: bold;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .footer h5 {
      font-size: 0.9rem;
  }
  .footer h3 {
      font-size: 20px;
  }
  /*
     .footer ul li a,
     .footer p,
     .footer .footer-text {
       font-size: 0.85rem;
     } */

  .footer .social-links a {
      font-size: 1.2rem;
  }
  /* .footer p{
      text-align: center;
     } */

  .footer-logo img {
      max-width: 101px;
  }
  .footer-logo .side-img {
      max-width: 67px;
  }
  .tree-logo {
      width: 60%;
  }
}

@media (max-width: 768px) {
  .footer-logo img {
      max-width: 100px;
  }

  .footer h3 {
      font-size: 19px;
      text-align: center;
  }

  .footer .row .col-sm-6 {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }
  .footer .row .col-sm-12 {
      justify-content: center;
      flex-direction: row;
  }
  .footer-logo {
      gap: 1px;
  }
  .tree {
      display: flex;
      justify-content: center;
  }
  .footer p {
      text-align: center;
  }
}

@media (max-width: 767px) {
  .tree-logo {
      width: 24%;
  }
}

@media (max-width: 576px) {
  .footer .row .col-sm-6 {
      flex: 0 0 100%;
      max-width: 50%;
  }

  /* .footer .row .col-sm-12,
    .footer .row .col-sm-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    } */
  .footer h5 {
      font-size: 0.85rem;
  }

  .tree-logo {
      width: 24%;
  }

  .footer p {
      font-size: 14px;
  }
  .footer ul li a {
      font-size: 14px;
  }

  /* .footer ul li a,
     .footer p,
     .footer .footer-text {
       font-size: 0.8rem;
     } */

  .footer .social-links a {
      font-size: 1rem;
      /* margin: 0 5px; */
  }

  .footer-logo img {
      max-width: 100px;
  }
}

/* Contact Form */
.contact-us .contact-us-title {
  font-size: clamp(2rem, 5vw, 50px);
  font-weight: 800;
  line-height: 1.6;
  color: #74a32d;
}

.contact-us .form-container {
  margin: auto;
  width: 100%;
  max-width: 1300px;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

@media (max-width: 768px) {
  .contact-us .form-container {
      flex-direction: column;
  }

  /* .form-right {
    display: none;
    } */
}

@media (max-width: 999px) {
  /* .footer .social-links a {
       border: none
     } */
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* #preloader {
position: fixed;
inset: 0;
z-index: 9999;
overflow: hidden;
background-color: var(--background-color);
transition: all 0.6s ease-out;
}

#preloader:before {
content: "";
position: fixed;
top: calc(50% - 30px);
left: calc(50% - 30px);
border: 6px solid var(--accent-color);
border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
border-radius: 50%;
width: 60px;
height: 60px;
animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
0% {
  transform: rotate(0deg);
}

100% {
  transform: rotate(360deg);
}
} */

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: linear-gradient(
      260.13deg,
      #f59622 0%,
      #ffb355 49%,
      #f59622 97.99%
  );
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 20px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
      transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid
      color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li + li {
  padding-left: 10px;
}

.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 50px 0;
  scroll-margin-top: 90px;
  overflow: clip;
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  section,
  .section {
      scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: linear-gradient(90deg, #a3dd4b, #74a32d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* background: linear-gradient(90deg, #A3DD4B, #74A32D); */

  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title div .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.home {
  width: 100%;
  position: relative;
  padding: 12px 0 0 0;
}

.home .container {
  position: relative;
  z-index: 3;
  padding: 24px 20px;
  transition: 0.3s;
  color: #fff;
  background: url(../../images/webSite/logo/plant-logo.png) no-repeat center
      center;
  background-size: 40%;
}

.home h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #245aa5;
}

.home h2 .accent {
  color: var(--accent-color);
}

.home p {
  font-weight: 500;
  margin-bottom: 36px;
  font-size: 22px;
  color: #303030;
  text-align: justify;
  line-height: 40px;
}
.home h5 {
  background: linear-gradient(90deg, #a3dd4b, #74a32d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  margin-bottom: 36px;
  font-size: 20px;
}
.home .btn-get-started {
  /* color: #241e1e;
  background: #f3f3f3; */
  color: #245aa5;
  background: linear-gradient(90deg, #ededed, #f1efed);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  transition: 0.5s;
  box-shadow: 0px 10px 40px 0px #bfbfbf40;
  border: 1px solid #245aa5;
}

.home .btn-get-started:hover {
  background: color-mix(in srgb, #245aa5, transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.home .btn-watch-video {
  font-size: 14px;
  transition: 0.5s;
  /* margin-left: 25px; */
  font-weight: 600;
  gap: 9px;
}

.home .btn-watch-video i {
  color: rgb(45, 95, 120);
  font-size: 26px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.home .btn-watch-video:hover {
  color: rgb(45, 95, 120);
}

.home .btn-watch-video:hover i,
.home .btn-watch-video:hover span {
  color: color-mix(in srgb, #ffffff, transparent 15%);
}

@media (max-width: 640px) {
  .home h2 {
      font-size: 36px;
  }

  .home .btn-get-started,
  .home .btn-watch-video {
      font-size: 14px;
  }
}
.logo-divider {
  width: 2px;
  height: 70px;
  background-color: #000;
  margin: 0 10px;
  border: 2px solid #c8d6e9;
}
@media (max-width: 768px) {
  .logo-divider {
      height: 45px;
  }
}
.home .icon-boxes {
  padding-bottom: 60px;
  z-index: 4;
}

.home .icon-box {
  background: var(--surface-color);
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}

.home .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.home .icon-box .title a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.home .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: var(--accent-color);
}

.home .icon-box:hover {
  background-color: var(--accent-color);
}

.home .icon-box:hover .title a,
.home .icon-box:hover .icon {
  color: var(--contrast-color);
}
@media (max-width: 797px) {
  .home h2,
  .about .content h2,
  .features h2,
  .services h2,
  .impact span,
  .orphans .content h2,
  .video h2,
  .contact-support-title,
  .faq h2 {
      font-size: 30px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}
.about .content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #245aa5;
}
.about h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #245aa5;
}
.about p {
  font-size: 27px;
  font-weight: 500;
  line-height: 52px;
  /* text-align: center; */
  color: rgba(36, 90, 165, 0.6);
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .dec-about {
  font-weight: 500;
  margin-bottom: 36px;
  font-size: 22px;
  color: #303030;
  text-align: justify;
  line-height: 40px;
}
.about .content ul li {
  padding-bottom: 27px;
  font-size: 22px;
  font-weight: 500;
  line-height: 64px;
  color: #303030;
}
.about .card-title {
  background: linear-gradient(90deg, #a3dd4b, #74a32d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: bold;
}
.about .card-text {
  margin-top: 15px;
  color: #303030;
  font-size: 16px;
  line-height: 1.6;
}
.about .about_card {
  background-color: #f5fbf9;
  border: 1px solid #a3dd4b;
  height: 100%;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}
.about .content ul i {
  font-size: 2rem;
  margin-right: 4px;
  color: var(--accent-color);
}
.about .img-about {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}
.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  object-fit: cover;
  border-radius: 16px;
  height: 90%;
  box-shadow: 42px 52px 95px 16px #5064914d;
}

.about_card {
  opacity: 0;
  transform: translateY(20px) rotate(-5deg);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.about_card.show {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.about_card:hover {
  /* transform: scale(1.05) rotate(3deg); */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 585px) {
  .about h2 {
      font-size: 30px;
  }
  .about p {
      font-size: 18px;
  }
  .about .content ul li {
      font-size: 18px;
      font-weight: 500;
      line-height: 46px;
  }
  .about .content ul i {
      font-size: 1.25rem;
      margin-right: 4px;
      color: var(--accent-color);
  }
}
.about .img-about {
  width: 100%;
  height: auto;
  max-height: 700px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

@media (max-width: 768px) {
  .about .img-about {
      height: auto;
      max-height: auto;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 8px;
  border-bottom: 5px solid var(--surface-color);
  height: 100%;
}
.services h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #245aa5;
}
.services .service-item .icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: inherit;
  margin: 0;
}

.services .service-item .icon::after {
  content: "";
  filter: drop-shadow(-0.25rem 0.25rem 0.0675rem rgba(0, 0, 0, 0.5)) blur(1px);
}
.services .service-item .icon::before,
.services .service-item .icon::after {
  inset: 0;
  position: absolute;
  border-radius: 50%;
  border: 11px solid white;
  line-height: 1.1;
}

.services .service-item h3 {
  font-weight: 800;
  margin: 10px 0 15px 0;
  font-size: 20px;
  transition: ease-in-out 0.3s;
  background: linear-gradient(90deg, #a3dd4b, #74a32d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 24px;
}

.services .service-item p {
  line-height: 26px;
  font-size: 18px;
  margin-bottom: 0;
  color: #303030;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
      transform: translateY(-10px);
      border-color: var(--accent-color);
  }

  .services .service-item:hover h3 {
      color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/

.sectione2 {
  background-image: url(../../images/webSite/home/slide4.png);
  background-size: cover;
  background-position: center;
  padding: 24px 20px;
  transition: 0.3s;
  /* height: 100%; */
  color: #fff;
}
.features .feature-box {
  background-color: var(--surface-color);
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
  border-radius: 8px;
}
.features h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #245aa5;
}
.features .feature-box h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  line-height: 1.6;
  color: #74a32d;
}

.features .feature-box p {
  color: #303030;
  font-size: 18px;
  line-height: 1.5;
  /* text-align: justify; */
}
.features .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 20px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.features .img-goals {
  width: 100%;
  height: auto;
  max-height: 700px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}
@media (max-width: 976px) {
  .features .img-goals {
      height: auto;
  }
}
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.impact span {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #245aa5;
}
.pricing .pricing-tem {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

@media (min-width: 1200px) {
  .pricing .pricing-tem:hover {
      transform: scale(1.1);
  }
}

.pricing h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing .price {
  font-size: 36px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .price span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .icon {
  padding: 20px 0;
}

.pricing .icon i {
  font-size: 48px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: var(--default-color);
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.pricing ul li {
  padding-bottom: 10px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--accent-color);
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .btn-buy:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
}
.impact .card {
  border-radius: 32px 0 32px 0px;
  padding: 20px;
  box-shadow: 0px 4px 4px 0px #00000040;
  text-align: center;
  border: 1px solid #a3dd4b;
  height: 100%;
}

.impact-item h3 {
  margin-bottom: 10px;
  color: #245aa5;
  font-size: 18px;
}

.impact-item p {
  background: linear-gradient(90deg, #a3dd4b, #74a32d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.1em;
}

.impact-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.impact-item:hover {
  transform: translateY(-10px);

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/*--------------------------------------------------------------
# Orphans Section
--------------------------------------------------------------*/
.orphans .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.orphans .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.orphans .content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 39px;
  color: #245aa5;
}

.orphans .content ul {
  list-style: none;
  padding: 0;
}

.orphans .dec-orphans {
  font-weight: 500;
  margin-bottom: 36px;
  font-size: 22px;
  color: #303030;
  text-align: justify;
  line-height: 40px;
}

.orphans .content ul li {
  padding-bottom: 10px;
}

.orphans .img-orphans {
  width: 100%;
  height: 92%;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.orphans .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.orphans .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.orphans .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.orphans .content .read-more:hover i {
  margin-left: 10px;
}
/*--------------------------------------------------------------
# Video Section
--------------------------------------------------------------*/
.video .content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: rgba(36, 90, 165, 0.6);
}
.video h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #245aa5;
}
.video span {
  background: linear-gradient(90deg, #a3dd4b, #74a32d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 22px;
  font-weight: bold;
}
.video .video-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video .img-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/* .video .img-video {
    width: 100%;
  height: auto;
  max-height: 700px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

} */

.video .video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: #ffffff;
  opacity: 0.8;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  /* padding: 20px; */
  backdrop-filter: blur(2px);
  border: 1px solid #ffffff29;
  transition: 0.3s ease;
  padding: 0px 15px;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video .video-play-icon:hover {
  opacity: 1;
}
@media (max-width: 991px) {
  .video .img-video {
      width: 100%;
      height: auto;
      max-height: 500px;
      object-fit: cover;
  }
}
@media (max-width: 768px) {
  .video span {
      font-size: 19px;
  }
  .video .video-play-icon {
      width: 48px;
      height: 48px;
      font-size: 31px;
  }
}

/*--------------------------------------------------------------
# news Section
--------------------------------------------------------------*/
.news-list {
  gap: 1rem 0;
  /* height: 100%; */

  overflow-x: hidden;

  scroll-behavior: smooth;
}

.news-list-wrapper {
  display: flex;
  transition: transform 0.3s ease;
}
.arrows {
  display: flex;
  gap: 10px;
}

.btn-arrow {
  background-color: white;
  color: #245aa5;
  border: none;
  padding: 12px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s;
  border: 1px solid #245aa5;
}

.btn-arrow:hover {
  background: #dfe0e0;
  color: #ffffff;
  border: 2px solid #dfe0e0;
}
.news-card {
  box-shadow: 0px 4px 26px 0px #00000040;
  border-radius: 10px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  height: 100%;
  padding: 20px;
}

.news-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.news-list img {
  width: 100%;
  box-shadow: 0px 4px 26px 0px #00000040;
  border-radius: 8px;
}

.news-body {
  padding: 0px 1px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin-top: 22px;
}

.news-title {
  font-weight: bold;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  background: linear-gradient(90deg, #a3dd4b, #74a32d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 25.95px;
  color: #245aa5;
  margin-top: 12px;
}

.btn-custom {
  background: rgb(45, 95, 120);

  /* background: linear-gradient(180deg, rgb(242 193 125) 0%, #f59622 100%); */
  /* background: linear-gradient(180deg, rgba(36, 90, 165, 0.25) 0%, #245AA5 100%); */
  transition: background 0.3s ease;
  border: none;
  padding: 15px;
  color: white;
  font-weight: bold;
  box-shadow: 0px 4px 4px 0px #00000040;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgb(45, 95, 120);
}

.btn-custom:hover {
  /* background: linear-gradient(90deg, #245AA5 0%, rgba(36, 90, 165, 0.25) 100%); */
  /* background: linear-gradient(90deg, #f59622 0%, rgb(242 193 125) 100%); */
  background: white;

  color: rgb(45, 95, 120);
}
.btn-custom:hover {
  /* background: linear-gradient(90deg, #245AA5 0%, rgba(36, 90, 165, 0.25) 100%); */
  /* background: linear-gradient(90deg, #f59622 0%, rgb(242 193 125) 100%); */
  background: #5e8f86;
  color: #fff;
}

.news-cards .text-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #245aa5;
}
.news-list-card {
  padding: 12px 12px;
}

.news-list {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  flex-wrap: nowrap;
}

/* Media queries for responsiveness */

@media (max-width: 768px) {
  .news-list .col-md-6 {
      flex: 0 0 48%;
      max-width: 100%;
  }
  .about .vision {
      margin-top: 12px;
  }
}
@media (max-width: 568px) {
  .news-list .col-md-6 {
      flex: 0 0 40%;
      max-width: 100%;
  }
}
/* Responsive styles */
@media (max-width: 576px) {
  .navmenu .quote_icon i {
      margin-top: -1px;
      background: linear-gradient(180deg, #a3dd4b 0%, #74a32d 100%);
      color: white;
      width: 33px;
      margin-left: -13px;
      height: 33px;
  }
}
.news-card {
  box-shadow: 0px 4px 26px 0px #00000040;
  border-radius: 10px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  height: 100%;
  padding: 20px;
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.news-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 12px;
  color: #245aa5;
}

.news-desc {
  font-size: 14px;
  color: #555;
  margin-top: 12px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.btn-custom {
  background: rgb(45, 95, 120);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
  border: 1px solid rgb(45, 95, 120);
}

.btn-custom:hover {
  background: white;
  color: rgb(45, 95, 120);
}

.news-cards {
  margin: 40px 0;
}

.news-cards .text-title {
  font-size: 28px;
  font-weight: bold;
  color: #245aa5;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .col-lg-4 {
      flex: 0 0 100%;
      max-width: 100%;
  }
}
.volunteer-image,
.partner-image {
  /* width: 150px; */
  height: 150px;
  /* object-fit: cover; */
}

/*--------------------------------------------------------------
# contact Section
--------------------------------------------------------------*/

.copyright .midad {
  color: #f6a13a;
}

.contact-support-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #245aa5;
}

.contact-support .form-container {
  background-color: #fff;
  border-radius: 15px;
  padding: 2rem;
  max-width: 700px;
  margin: auto;
  box-shadow: 5px 5px 10px 8px #5064911a;
  /* width: 68%; */
}

.contact-support .form-label {
  font-weight: bold;
  color: #333;
}

.contact-support .form-control {
  border-radius: 10px;
  padding: 12px 20px 7px 12px;
  /* padding: 21px 20px 15px 15px; */
  border: 1.6px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #efefef;
}
.contact-support .form-container img {
  width: 37%;
}
.contact-support .form-control:focus {
  border-color: #f59622;
  outline: none;
  box-shadow: 0px 4px 8px 0px rgba(76, 126, 176, 0.5);
}
.contact-support .btn-send {
  justify-content: center;
  display: flex;
}
.contact-support .send-btn {
  /* background: linear-gradient(180deg, #245AA5 0%, #0986CF 50%, #245AA5 100%); */
  /* background: linear-gradient(180deg, rgb(242 193 125) 0%, #f59622 100%); */
  text-align: center;
  border: none;
  padding: 15px;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  border: 1px solid rgb(45, 95, 120);
  width: 43%;
  transition: background 0.3s ease-in-out;
  box-shadow: 0px 20px 20px 0px #00000017;
  background-color: rgb(45, 95, 120);
}

.contact-support .send-btn:hover {
  /* background: linear-gradient(90deg, #245AA5 0%, rgba(36, 90, 165, 0.25) 100%); */
  background: white;
  color: rgb(45, 95, 120);
}

.contact-support .file-upload {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f5f5f5;
  padding: 12px;
  border-radius: 8px;
  border: 1.5px solid #ccc;
  color: #888;
  cursor: pointer;
}

.contact-support .file-upload input[type="file"] {
  display: none;
}

@media (max-width: 576px) {
  .contact-support-title {
      font-size: 1.8rem;
  }

  .contact-support .form-container {
      padding: 1.5rem;
  }

  .contact-support .form-control,
  .contact-support .send-btn {
      font-size: 0.9rem;
  }
  .contact-support img {
      width: 60%;
  }
}
.contact-support .form-control {
  border-radius: 10px;
  padding: 12px 10px;
  border: 1.6px solid transparent;
  background: #efefef;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-support .form-control:focus {
  border-color: #f59622;
  outline: none;
  box-shadow: 0px 4px 8px 0px rgba(76, 126, 176, 0.5);
}

/*--------------------------------------------------------------
# end-contact-support Section
--------------------------------------------------------------*


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}
.faq h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #245aa5;
}
.faq p {
  color: #303030;
  font-size: 18px;
}
.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  background-color: #faf6ff;
  position: relative;
  padding: 28px;
  margin-bottom: 20px;
  /* box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  border-radius: 16px;
  /* border-right: 4px solid #245AA5; */
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.5;
  /* margin: 0 30px 0 0; */
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  color: #245aa5;
}
.faq .faq-container .faq-item span {
  margin-right: 15px;
}
.faq .faq-container .faq-item h3 .num {
  color: #245aa5;
}

.faq .faq-container .faq-item h3:hover {
  color: #245aa5;
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  padding: 3px 41px;
  font-size: 18px;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  background: #ffffff;
  border-radius: 50%;
  padding: 12px;
  border: 1px solid #245aa5;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: #245aa5;
}

.faq .faq-container .faq-active {
  border-right: 4px solid #245aa5;
  background: #f3f3f3;
  box-shadow: 0px 4px 4px 0px #00000040;
}
.faq .faq-container .faq-active h3 {
}
.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
  color: #303030;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}
@media (max-width: 776px) {
  .faq .faq-container .faq-item h3 {
      font-size: 20px;
  }
}

@media (max-width: 576px) {
  .faq .faq-container .faq-item h3 {
      font-size: 14px;
      line-height: 1.5;
  }
  .faq .faq-container .faq-item .faq-content p {
      font-size: 13px;
  }
  .faq .faq-container .faq-item .faq-toggle {
      position: absolute;
      top: 18px;
      left: 7px;
      font-size: 10px;
  }
}
.faq .faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq .faq-item {
  background-color: #faf6ff;
  position: relative;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .faq .faq-item {
      padding: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item + .info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(
      in srgb,
      var(--background-color),
      transparent 50%
  );
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box + .service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid
      color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid
      color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.header_section {
  padding: 5px 0;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand span {
  font-weight: bold;
  color: #ffffff;
  font-size: 20px;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 25px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #000000;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #74a32d;
  /* background-color: #ffffff;
background: #74A32D; */
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}
.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
  transform: none;
}

.quote_btn-container {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.quote_btn-container a {
  color: #000000;
  text-transform: uppercase;
}

.quote_btn-container a span {
  margin-left: 5px;
}

.quote_btn-container .quote_btn {
  display: inline-block;
  padding: 8px 28px;
  background: linear-gradient(
      259.08deg,
      #74a32d 10.97%,
      #91bc71 54.14%,
      #74a32d 97.3%
  );
  color: #ffffff;
  border-radius: 5px;
  border: 1px solid #74a32d;
  box-shadow: 0px 0px 0px 0px #0000001a;
  white-space: nowrap;
}
.quote_btn-container .quote_open {
  display: inline-block;
  padding: 8px 28px;
  font-size: 17px;
  color: #fff;
  border-radius: 6px;
  border: 1px solid #e29940;
  background: linear-gradient(
      260.13deg,
      #f59622 0%,
      #ffb355 49%,
      #f59622 97.99%
  );
  white-space: nowrap;
  font-size: 0.875rem;
  /* line-height: 1.6; */
  /* border-radius: 0 40px 40px 40px; */
}
.quote_open {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 16px;
}

.quote_open i {
  font-size: 18px;
}

.quote_btn-container .quote_open:hover {
  background: white;
  color: rgb(245, 150, 34);
  border-color: rgb(245, 150, 34);
}
/* .quote_btn-container .quote_btn:hover {
color: #ffffff;
-webkit-transform: translateY(-3px);
transform: translateY(-3px);
} */
@media (max-width: 992px) {
  .home_area {
      height: auto;
  }

  /* .quote_btn-container {
  display: none;
} */

  .custom_nav-container .navbar-nav {
      margin: 0;
      margin-left: auto;
      align-items: center;
  }

  .custom_nav-container .navbar-nav {
      padding-top: 15px;
  }

  .custom_nav-container .navbar-nav .nav-item .nav-link {
      padding: 5px 25px;
      margin: 5px 0;
  }

  .slider_section {
      padding: 75px 0;
  }

  .contact_section .img-box {
      margin-top: 45px;
  }

  .info_section .row > div:nth-child(1) {
      margin-bottom: 25px;
  }

  .info_section .row > div:nth-child(2) {
      margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .home_area {
      border-radius: 0 0 250px 0;
  }

  .quote_open i {
      font-size: 14px;
  }

  .slider_section .detail-box {
      margin-top: 45px;
  }

  .about_section {
      border-radius: 150px 0 150px 0;
  }

  .about_section .img-box {
      margin-top: 45px;
  }

  .contact_section .row {
      flex-direction: column-reverse;
  }

  .contact_section .map_container {
      margin-left: 0;
      margin-bottom: 45px;
      height: 375px;
  }

  .info_section .row > div:nth-child(3) {
      margin-bottom: 35px;
  }

  .info_section .row > div {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .info_section .info_links {
      align-items: center;
  }

  .info_section form input {
      text-align: center;
  }
}
.navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar > .container,
.navbar > .container-fluid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

.projects-section .card-background {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  /* max-width: 1170px; */
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.projects-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #245aa5;
}
.projects-section .projects-section-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #245aa5;
}
.projects-section .projects-section-p {
  font-weight: 500;
  margin-bottom: 36px;
  font-size: 20px;
  color: #303030;
  text-align: justify;
  line-height: 40px;
}

.projects-section .img-fluid {
  max-width: 100%;
  height: auto;
}
.projects-section .btn-custom {
  background: rgb(45, 95, 120);
  /* background: linear-gradient(180deg, rgb(242 193 125) 0%, #f59622 100%); */
  /* background: linear-gradient(180deg, rgba(36, 90, 165, 0.25) 0%, #245AA5 100%); */
  transition: background 0.3s ease;
  border: none;
  padding: 15px;
  color: white;
  font-weight: bold;
  box-shadow: 0px 4px 4px 0px #00000040;
  border-radius: 8px;
  text-align: center;
  width: 29%;
}

.projects-section .btn-custom-projects {
  background: rgb(45, 95, 120);
  /* background: linear-gradient(180deg, rgb(242 193 125) 0%, #f59622 100%); */
  /* background: linear-gradient(180deg, rgba(36, 90, 165, 0.25) 0%, #245AA5 100%); */
  transition: background 0.3s ease;
  border: none;
  padding: 8px 28px;
  color: white;
  font-weight: bold;
  box-shadow: 0px 4px 4px 0px #00000040;
  border-radius: 8px;
  text-align: center;
  display: inline-block;

  font-size: 0.875rem;
  padding: 8px 28px;
  border-radius: 6px;
  border-width: 1px;
  border-style: solid;
  border-image: initial;
  white-space: nowrap;
}
.projects-section .btn-custom-projects:hover {
  background: #fff;
  padding: 8px 28px;
  color: rgb(45, 95, 120);
}
.projects-section h1 {
  font-size: 36px;
  color: #245aa5;
  font-weight: bold;
  margin-bottom: 20px;
}

.projects-section p {
  color: #303030;
  font-size: 18px;
  line-height: 1.5;
}

.projects-section {
  margin-top: 50px;
  margin-bottom: 50px;
}
.project-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.project-card img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.project-card .card-body {
  text-align: center;
}
/* trees */
.trees-section .btn-custom-trees:hover {
  background: #fff;
  padding: 8px 28px;
  color: rgb(45, 95, 120);
}
.trees-section .tree-name {
  font-size: 22px;
  color: #245aa5;
  font-weight: bold;
  margin-bottom: 20px;
}

.trees-section p {
  color: #303030;
  font-size: 18px;
  line-height: 1.5;
}

.trees-section {
  margin-top: 50px;
  margin-bottom: 50px;
}
.tree-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.tree-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.tree-card img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.tree-card .card-body {
  text-align: center;
}

/* end trees */

.dropdown-menu {
  display: none;
  position: absolute;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 160px;
  z-index: 1000;
}

.dropdown-menu .dropdown-item {
  padding: 8px 16px;
  cursor: pointer;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.btn-language {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #000;
  font-size: 16px;
}
.mobile-nav-toggle {
  z-index: 1040;
}

.btn-language {
  background-color: transparent;
  border: 1px solid #08291a;
  color: #08291a;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-language a img span {
  background-color: transparent;
  border: 1px solid #08291a;
  color: #08291a;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
@media (max-width: 998px) {
  .projects-section .btn-custom {
      width: 39%;
      font-size: 14px;
  }
}
@media (max-width: 769px) {
  .btn-language {
      padding: 6px 14px;
      font-size: 12px;
  }
  .projects-section .img-fluid {
      max-width: 100%;
  }
  .projects-section .projects-section-title {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #245aa5;
  }
  .projects-section .projects-section-p {
      font-weight: 500;
      margin-bottom: 36px;
      font-size: 14px;
      color: #303030;
      text-align: justify;
      line-height: 40px;
  }
}
@media (max-width: 400px) {
  .btn-language {
      padding: 6px 14px;
      font-size: 12px;
  }
}

.quote_open {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.quote_open .button-text {
  display: inline-block;
  margin-left: 8px;
}

@media (max-width: 768px) {
  .quote_open .button-text {
      display: none;
  }

  .quote_open {
      padding: 10px;
      font-size: 20px;
  }
}
@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
      padding-right: 0;
      padding-left: 0;
  }
}

@media (min-width: 576px) {
  .navbar-expand-sm {
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
      -ms-flex-pack: start;
      justify-content: flex-start;
  }

  .navbar-expand-sm .navbar-nav {
      -ms-flex-direction: row;
      flex-direction: row;
  }

  .navbar-expand-sm .navbar-nav .dropdown-menu {
      position: absolute;
  }

  .navbar-expand-sm .navbar-nav .nav-link {
      padding-right: 0.5rem;
      padding-left: 0.5rem;
  }

  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  }

  .navbar-expand-sm .navbar-collapse {
      display: -ms-flexbox !important;
      display: flex !important;
      -ms-flex-preferred-size: auto;
      flex-basis: auto;
  }

  .navbar-expand-sm .navbar-toggler {
      display: none;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
      padding-right: 0;
      padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
      -ms-flex-pack: start;
      justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
      -ms-flex-direction: row;
      flex-direction: row;
  }

  .navbar-expand-md .navbar-nav .dropdown-menu {
      position: absolute;
  }

  .navbar-expand-md .navbar-nav .nav-link {
      padding-right: 0.5rem;
      padding-left: 0.5rem;
  }

  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  }

  .navbar-expand-md .navbar-collapse {
      display: -ms-flexbox !important;
      display: flex !important;
      -ms-flex-preferred-size: auto;
      flex-basis: auto;
  }

  .navbar-expand-md .navbar-toggler {
      display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
      padding-right: 0;
      padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
      -ms-flex-pack: start;
      justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
      -ms-flex-direction: row;
      flex-direction: row;
      margin-right: 10px;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
      position: absolute;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
      padding-right: 0.5rem;
      padding-left: 0.5rem;
  }

  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  }

  .navbar-expand-lg .navbar-collapse {
      display: -ms-flexbox !important;
      display: flex !important;
      -ms-flex-preferred-size: auto;
      flex-basis: auto;
  }

  .navbar-expand-lg .navbar-toggler {
      display: none;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
      padding-right: 0;
      padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
      -ms-flex-pack: start;
      justify-content: flex-start;
  }

  .navbar-expand-xl .navbar-nav {
      -ms-flex-direction: row;
      flex-direction: row;
  }

  .navbar-expand-xl .navbar-nav .dropdown-menu {
      position: absolute;
  }

  .navbar-expand-xl .navbar-nav .nav-link {
      padding-right: 0.5rem;
      padding-left: 0.5rem;
  }

  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  }

  .navbar-expand-xl .navbar-collapse {
      display: -ms-flexbox !important;
      display: flex !important;
      -ms-flex-preferred-size: auto;
      flex-basis: auto;
  }

  .navbar-expand-xl .navbar-toggler {
      display: none;
  }
}

.navbar-expand {
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  -ms-flex-direction: row;
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.btn-get-tree {
  background: linear-gradient(
      259.08deg,
      #74a32d 10.97%,
      #91bc71 54.14%,
      #74a32d 97.3%
  );
  color: white;
  border: 1px solid #fff;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  transition: 0.5s;
  box-shadow: 0px 10px 40px 0px #bfbfbf40;
}
.btn-get-tree:hover {
  color: white;
}
/*end header section*/
@media (max-width: 997px) {
  .home h2,
  .about .content h2,
  .features h2,
  .services h2,
  .impact span,
  .orphans .content h2,
  .video h2,
  .contact-support-title,
  .news-cards .text-title,
  .faq h2,
  .projects-section h2 {
      font-size: 34px;
  }
  .orphans .content h2 {
      margin-bottom: 10px;
  }
}

@media (max-width: 797px) {
  .home h2,
  .about .content h2,
  .features h2,
  .services h2,
  .impact span,
  .orphans .content h2,
  .video h2,
  .contact-support-title,
  .news-cards .text-title,
  .faq h2,
  .projects-section h2 {
      font-size: 30px;
  }
}
@media (max-width: 576px) {
  .home h2,
  .about .content h2,
  .features h2,
  .services h2,
  .impact span,
  .orphans .content h2,
  .video h2,
  .contact-support-title,
  .faq h2,
  .news-cards .text-title,
  .projects-section h2 {
      font-size: 20px;
  }
  .features .feature-box h3,
  .services .service-item h3 {
      font-size: 20px;
  }
}
@media (max-width: 576px) {
  .about .dec-about,
  .home p,
  .orphans .dec-orphans,
  .video span,
  .faq p {
      font-size: 18px;
  }
  .home h5 {
      line-height: 1.5;
      font-size: 14px;
  }
  .btn-arrow {
      padding: 8px 9px;
      font-size: 14px;
  }
  .header .logo img {
      max-height: 52px;
      object-fit: contain;
  }
  /* .header .logo a .ms-2 {
    max-height: 50px;
} */
  .orphans .content h2 {
      margin-bottom: 10px;
  }
}

.feature-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.feature-box:hover {
  transform: scale(1.05);

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.model {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.model .card {
  position: relative;
  background: #ffffff;
  padding: 30px;
  max-width: 600px;
  width: 90%;
  border-radius: 15px;
  /* text-align: center; */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease;
}

.close:hover {
  color: #333;
}

.title {
  font-size: 1.8rem;
  color: #75a42f;
  margin-bottom: 20px;
}

.account-info {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.account-number {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  background-color: #f0f0f0;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.account-number strong {
  color: #1b4b7f;
}
.account-number p {
  margin: 0;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
}

.thank-you-message {
  font-size: 1.2rem;
  color: #75a42f;
  font-style: italic;
  margin-top: 10px;
  font-weight: bold;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: scale(0.9);
  }

  to {
      opacity: 1;
      transform: scale(1);
  }
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
}

#preloader-logo {
  max-width: 120px;
  margin-bottom: 20px;
}

.loading-dots {
  display: flex;
  gap: 8px;
}

.loading-dots span {
  width: 10px;
  height: 10px;
  background-color: #74a32d;
  border-radius: 50%;
  display: inline-block;
  animation: bounce 0.6s infinite alternate;
}

.loading-dots span:nth-child(1) {
  animation-delay: 0s;
}
.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  from {
      transform: translateY(0);
  }
  to {
      transform: translateY(-10px);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.footer-logo .logo-img {
  max-width: 100px;
}

.footer-logo .side-img {
  max-width: 80px;
}

.footer-logo .vertical-divider {
  width: 2px;
  height: 60px;
  background-color: #fff;
}
@media (max-width: 990px) {
  .footer-logo .logo-img {
      max-width: 80px;
  }
  .footer-logo .side-img {
      max-width: 70px;
  }
  .footer-logo .vertical-divider {
      width: 2px;
      height: 60px;
      background-color: rgb(45, 95, 120);
  }
  .footer-logo {
      gap: 10px;
  }
}

@media (max-width: 400px) {
  body {
      font-size: 14px;
      padding: 0px;
      overflow-x: hidden;
  }

  .btn-get-started {
      font-size: 12px;
      padding: 10px 15px;
  }

  .footer .col-md-3 {
      flex: 100%;
      text-align: center;
  }

  img {
      max-width: 100%;
      height: auto;
  }
}

.header .logo img {
  max-height: 60px;
  object-fit: contain;
  width: auto;
}

.header .logo .second_Logo {
  max-height: 52px;
  object-fit: contain;
  width: auto;
}

/* @media (max-width: 767px) {
  .quote_btn-container .quote_open{
      padding: 4px 14px;
      font-size: 12px
}
} */
@media (max-width: 400px) {
  .header .logo img,
  .header .logo .second_Logo {
      max-height: 42px;
  }
  .quote_btn-container .quote_open {
      padding: 8px 14px;
      font-size: 12px;
  }
  .header .logo a .ms-2 {
      max-height: 60px;
  }
  .account-number,
  .title,
  .thank-you-message {
      font-size: 14px;
  }
  .footer-logo .logo-img {
      max-width: 74px;
  }

  .footer-logo .side-img {
      max-width: 70px;
  }
}

.navbar-collapse ul li a {
  text-decoration: none;
}

.navbar-collapse ul li a:hover {
  text-decoration: none;
}

html:not(.no-js) [data-aos="fade-up"] {
  -webkit-transform: translate3d(0, 100px, 0);
  transform: translate3d(0, 100px, 0);
  transition-duration: 1s;
  transition-timing-function: ease-in-out;
}
html:not(.no-js) [data-aos="fade-down"] {
  -webkit-transform: translate3d(0, -100px, 0);
  transform: translate3d(0, -100px, 0);
  transition-duration: 1s;
  transition-timing-function: ease-in-out;
}
html:not(.no-js) [data-aos="fade-right"] {
  -webkit-transform: translate3d(-100px, 0, 0);
  transform: translate3d(-100px, 0, 0);
  transition-duration: 1s;
  transition-timing-function: ease-in-out;
}
html:not(.no-js) [data-aos="fade-left"] {
  -webkit-transform: translate3d(100px, 0, 0);
  transform: translate3d(100px, 0, 0);
  transition-duration: 1s;
  transition-timing-function: ease-in-out;
}
html:not(.no-js) [data-aos="fade-up-right"] {
  -webkit-transform: translate3d(-100px, 100px, 0);
  transform: translate3d(-100px, 100px, 0);
  transition-duration: 1s;
  transition-timing-function: ease-in-out;
}
html:not(.no-js) [data-aos="fade-up-left"] {
  -webkit-transform: translate3d(100px, 100px, 0);
  transform: translate3d(100px, 100px, 0);
  transition-duration: 1s;
  transition-timing-function: ease-in-out;
}

li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #000;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #b4d563;
  bottom: 0;
  left: 0;
  transition: width 0.6s ease;
}

li a:hover::after {
  width: 100%;
  right: 0;
  left: auto;
}

li a:hover {
  color: #08291a;
}

.btn-language {
  background-color: transparent;
  border: 1px solid #ccc;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-language:hover {
  background-color: #ddd;
}

@media (max-width: 576px) {
  .projects-section .btn-custom,
  .projects-section .btn-custom-projects {
      font-size: 0.8rem;
      padding: 12px;
  }
  .projects-section .btn-custom {
      width: 39%;
  }
}
/* General Section Styling */
#features {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  color: #08291a;
  margin-bottom: 40px;
  font-weight: bold;
}

/* Goal Card Styling */
.goal-card {
  /* background: linear-gradient(180deg, #73B72D 0%, #8EE54D 50%, #73B72D 100%); */
  background: linear-gradient(90deg, #a3dd4b, #74a32d);
  border-radius: 8px;
  padding: 20px;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
  overflow: hidden;
  height: 100%;
}

.goal-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.ltr .goal-number {
  position: absolute;
  top: -13px;
  right: -17px;
  background: #f0f4f5;
  color: #8bdf49;
  font-size: 2rem;
  font-weight: bold;
  width: 65px;
  height: 66px;
  line-height: 70px;
  text-align: center;
  border-radius: 58%;
  z-index: 1;
}

.rtl .goal-number {
  position: absolute;
  top: -13px;
  left: -17px;
  background: #f0f4f5;
  color: #8bdf49;
  font-size: 2rem;
  font-weight: bold;
  width: 65px;
  height: 65px;
  line-height: 70px;
  text-align: center;
  border-radius: 58%;
  z-index: 1;
}

.goal-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  z-index: 2;
  position: relative;
  color: #fff;
}

.goal-description {
  font-size: 1rem;
  line-height: 1.6;
  z-index: 2;
  position: relative;
}
@media (max-width: 576px) {
  .goal-title {
      font-size: 1rem;
  }
  .goal-description {
      font-size: 0.9rem;
  }
  .rtl .goal-number {
      position: absolute;
      top: -14px;
      left: -14px;
      background: #f0f4f5;
      color: #8bdf49;
      font-size: 1rem;
      font-weight: bold;
      width: 50px;
      height: 53px;
      line-height: 70px;
      text-align: center;
      border-radius: 58%;
      z-index: 1;
  }
  .ltr .goal-number {
      position: absolute;
      top: -14px;
      right: -14px;
      background: #f0f4f5;
      color: #8bdf49;
      font-size: 1rem;
      font-weight: bold;
      width: 50px;
      height: 53px;
      line-height: 70px;
      text-align: center;
      border-radius: 58%;
      z-index: 1;
  }
}

.dropdown-menu.show {
  display: block;
  overflow-x: hidden;
  max-width: 100%;
}
@media (max-width: 400px) {
  .btn-language {
      padding: 6px 14px;
      font-size: 12px;
      overflow-x: hidden;
  }
}
.dropdown-item .item {
  color: #212529;
}

@media (max-width: 990px) {
  .footer .tree {
      display: flex;
      justify-content: center;
  }
}

.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-info {
  padding: 15px;
}

.project-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #555;
}

.project-description {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 15px;
}

.progress-container {
  background-color: #cfcfcf;
  border-radius: 5px;
  height: 10px;
  width: 100%;
  margin-bottom: 10px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: #22c55e;
  transition: width 0.3s ease;
}

.donation-info {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 15px;
  color: #555;
}

.dates-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 14px;
  color: #94a3b8;
}

.dates-info span {
  display: block;
}

.tree-button {
  background-color: #0ea5e9;
  color: #fff;
  font-size: 14px;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  text-align: center;
  display: block;
  text-decoration: none;
}

.btn-primary:hover {
  background: #fff;
  color: #2575fc;
}

.tree-button:hover {
  background-color: #0056b3;
}

.custom-tabs .nav-link {
  font-size: 1.1rem;
  color: #555;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 12px 25px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.custom-tabs .nav-link.active {
  color: #2575fc;
  border-bottom: 3px solid #2575fc;
}

.custom-tabs .nav-link i {
  margin-right: 10px;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.custom-tabs .nav-link:hover {
  color: #2575fc;
}

.custom-tabs .nav-link:not(.active):hover {
  border-bottom: 3px solid #2575fc;
}

.tab-content {
  padding: 20px;
  background: #f1f1f1;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.projects-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.project-card {
  flex: 0 0 calc(50% - 20px);
  max-width: 450px;
  background-color: #f5f5f5;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #333;
  overflow: hidden;
}
.trees-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

@media (max-width: 1300px) and (min-width: 993px) {
  .project-card {
      flex: 0 0 100%;
  }

  .tree-card {
      flex: 0 0 100%;
  }
}

@media (max-width: 992px) {
  .project-card {
      flex: 0 0 100%;
  }

  .tree-card {
      flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  .project-card {
      flex: 0 0 100%;
  }

  .tree-card {
      flex: 0 0 100%;
  }
}

.project-card {
  flex: 0 0 calc(33.33% - 20px);
  max-width: 400px;
  background-color: #f5f5f5;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #333;
  overflow: hidden;

  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
  position: relative;
  z-index: 1;
  background: white;

  border-radius: 10px;
}
.tree-card {
  flex: 0 0 calc(33.33% - 20px);
  max-width: 400px;
  background-color: #f5f5f5;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #333;
  overflow: hidden;

  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
  position: relative;
  z-index: 1;
  background: white;

  border-radius: 10px;
}
@media (max-width: 1200px) {
  .project-card {
      flex: 0 0 calc(50% - 20px);
  }
  .tree-card {
      flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .project-card {
      flex: 0 0 100%;
  }

  .tree-card {
      flex: 0 0 100%;
  }
}
