* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.p0 {
  padding: 0 !important;
}
.w-100 {
  width: 100%;
}
/* header css start here */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 100px;
  width: 100%;
  border-bottom: 4px solid #ec4a27;
}
.navbar .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.hamburger {
  display: none;
}

.menu-icon.close {
  display: none; /* Hide close icon initially */
}
.navbar .brand_logo h2 {
  color: #ec4a27;
  font-family: "Poppins Medium";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}
.navbar .brand_logo h2 a {
  text-decoration: none;
  color: #ec4a27;
}
.navbar .nav-links a {
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  font-family: "Poppins Medium";
  font-weight: 500;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.navbar .nav-links a {
  position: relative;
}

.navbar .nav-links a::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 0;
  height: 4px;
  background: #000;
  transition: width 0.3s ease-in-out;
}

.navbar .nav-links a.active::before,
.navbar .nav-links a:hover::before {
  width: 100%; /* Expand on hover and when active */
}

/* header css end here */
/* hero section css start here */
.hero_section {
  /* padding: 0 100px; */
}
.hero_section .banner-wrapper .banner-img img {
  width: 100%;
}
.hero_section .banner-wrapper {
  position: relative;
}
.hero_section .banner-wrapper .banner-txt-box {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: #ec4a27;
  padding: 32px;
  width: 65%;
}
.hero_section .banner-wrapper .banner-txt-box p {
  color: #fff;
  text-align: center;
  font-family: "Poppins Medium";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px; /* 180% */
}
/* hero section css end here */
/* single line section start here */

.single-ln-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 93px;
  padding: 45px 312px 65px 312px;
}
.single-ln-sec p {
  color: #000;
  text-align: center;
  font-family: "Poppins Regular";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 187.5% */
}
/* single line section end here */
/* our goals section css start here */
.our_goal {
  padding: 0 220px 200px 220px;
}
.our_goal ul {
  list-style-type: none;
}
.our_goal .goal-heading h6 {
  color: #000;
  font-family: "Poppins Medium";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  padding: 0 0 20px 0;
  border-bottom: 4px solid #000;
  margin-bottom: 40px;
}
.our_goal p {
  color: #000;
  font-family: "Poppins Regular";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.our_goal .goal-cards ul {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
}
.our_goal .goal-cards ul li {
  background: #f1f1f1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  min-height: 452px;
  width: calc(100% / 3);
  /* position: relative; */
}
.our_goal .goal-cards ul li .card_title {
  width: 100%;
}
.our_goal .goal-cards ul li .card_content {
  padding-top: 16px;
}
.our_goal .goal-cards {
  padding-top: 85px;
}
.our_goal .goal-cards ul li .card_title h6 {
  color: #000;
  font-family: "Poppins Medium";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  padding: 20px 0;
  border-bottom: 4px solid #ec4a27;
  width: 100%;
}
.know-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  /* position: absolute;
  bottom: 32px;
  left: 0; */
  /* margin: 0 32px;
  right: 0; */
  width: 100%;
}
.know-more-btn a {
  color: #000;
  text-align: center;
  font-family: "Poppins Medium";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  padding: 20px 0;
  width: 100%;
  border: 1px solid #000;
  text-decoration: none;
}
.know-more-btn a:hover {
  background: #ffffff;
}
/* our goals section css end here */
/* footer css start here */
.am-footer {
  background-color: #5f5f5f;
}
.am-footer .footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 76px 463px;
  gap: 36px;
}
.am-footer .footer-wrapper p {
  text-align: center;
}
.am-footer .footer-wrapper .footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
}

.am-footer .footer-wrapper .footer-links a {
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  font-family: "Poppins Medium";
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  width: max-content;
}
.am-footer .footer-wrapper .footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 7px;
}
.am-footer .footer-wrapper .copy-right h6 {
  font-size: 18px;
  color: #ffffff;
  line-height: 27px;
  font-family: "Poppins Medium";
  font-weight: 400;
  width: max-content;
}
/* footer css end here */
/* about us page css start here */
.about-us {
  padding: 100px 242px 74px 242px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: center;
  justify-content: center;
}
.about-us .heading h2 {
  font-family: "Poppins Medium";
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  text-transform: capitalize;
}
.about-us .about-intro p {
  text-align: center;
  font-size: 24px;
  line-height: 36px;
  font-family: "Poppins Regular";
  font-weight: 400;
}
.about-main {
  padding: 0 100px 92px 100px;
}
.about-main .about-wrapper ul {
  display: flex;
  gap: 60px;
  list-style-type: none;
}
.about-main .about-wrapper ul.director-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-left: 40px;
}
.about-main .about-wrapper ul.contact-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-main .about-wrapper ul.director-list li,
.about-main .about-wrapper ul.contact-details li {
  padding: 0;
}
.about-main .about-wrapper ul.contact-details li h6 {
  color: #000;
  font-family: "Poppins Medium";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}
.about-main .about-wrapper ul.contact-details li {
  display: flex;
  align-items: center;
}
.about-main .about-wrapper ul.contact-details li img {
  margin-right: 10px;
}
.about-main .about-wrapper ul.contact-details li a {
  text-decoration: none;
  color: #000000;
}
.about-wrapper .about_right_sec {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-main .about-wrapper p,
li {
  color: #000;
  font-family: "Poppins Regular";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 187.5% */
  padding: 15px 0;
}
ol li ol li {
  list-style-type: none;
  margin-left: 40px;
}
.about-main .about-wrapper .object_head h6 {
  color: #000;
  font-family: "Poppins Medium";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  padding: 20px 0;
  border-bottom: 4px solid #000;
}
.about-main .about-wrapper ul.director-list li h6 {
  color: #000;
  font-family: "Poppins Medium";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}
.about-main .about-wrapper ul.director-list li span {
  color: #000;
  font-family: "Poppins Light";
  font-size: 18px;
  line-height: 30px;
}
/* about us page css end here */
