@font-face {
  font-family: "avenir";
  src: url("./assets/fonts/Avenir\ Regular.ttf") format("truetype");
}


.email-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  text-decoration: none;
  font-size: 16px;
  border-radius: 0;
  background: transparent;
}

.email-btn:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  width: 100%;
  font-family: "avenir", sans-serif;
}

:root {
  --color-black: #252525;
  --color-gray: #9f9f9f;
  --color-gray-light: #252525cc;
  --color-white: #fff;
}

.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0px 16px;
}

.py-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}
.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
}

.logo img {
  width: 120px;
}

.navbar ul {
  list-style: none;
  display: flex;
}

.navbar ul li {
  padding: 4px 30px;
}

.navbar ul li a {
  text-decoration: none;
  color: var(--color-black);
  font-size: 16px;
  padding: 0px 8px;
  font-weight: bold;
}

/* HERO SECTION */

.hero .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.hero .content .left {
  max-width: 637px;
}

.hero .content h2 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}

.hero .content h4 {
  font-size: 28px;
  color: var(--color-gray-light);
  margin-top: 14px;
  line-height: 1.3;
}

.hero .content p {
  margin-top: 24px;
  font-size: 18px;
  color: var(--color-gray-light);
}

.hero .content .img {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero .content .img .main-img {
  max-width: 85%;
}

.hero .content .stick-line-short {
  position: absolute;
  left: 0;
  bottom: 10%;
  height: 30%;
}

.hero .content .stick-line-long {
  position: absolute;
  right: -0%;
  bottom: 12%;
  height: 80%;
}
/* ABOUT SECTION */

.about .content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about .our-mission {
  flex: 0 0 42%;
  max-width: 637px;
  min-width: 0;
  background-color: #f5f5f5;
  padding: 36px;
}

.about .our-vision {
  flex: 1;
  min-width: 0;
  max-width: 620px;
}

.about .our-mission h2 {
  font-size: 72px;
  font-weight: 700;
  color: var(--color-black);
}

.about .our-mission p {
  font-size: 28px;
  color: var(--color-gray-light);
  line-height: 1.3;
  margin-top: 14px;
}

.about .our-vision h2 {
  font-size: 46px;
  color: var(--color-black);
}

.about .our-vision p {
  font-size: 18px;
  color: var(--color-gray-light);
  margin-top: 14px;
  line-height: 1.3;
  font-weight: 400;
}

/* STRATEGY SECTION */
.strategy {
  background-color: var(--color-black);
}

.strategy .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.strategy .content .left {
  max-width: 555px;
  color: var(--color-white);
}

.strategy .content h2 {
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
}

.strategy .content p {
  margin-top: 30px;
  font-size: 26px;
  line-height: 1.2;
}

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

/* LEADERSHIP SECTION */

.leadership .content {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.leadership .content .left {
  max-width: 530px;
}

.leadership h2 {
  font-size: 72px;
  font-weight: 700;
  color: var(--color-black);
}

.leadership h4 {
  font-size: 26px;
  color: var(--color-gray-light);
  font-weight: 400;
  line-height: 1.2;
  margin-top: 20px;
}

.leadership .desc {
  font-size: 16px;
  color: var(--color-gray-light);
  margin-top: 24px;
  line-height: 1.2;
  font-weight: 400;
}

.leadership .img-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-content: center;
  width: 80%;
  padding-left: 60px;
}

.leadership .img-wrapper img {
  width: 100%;
  height: auto;
}

/* CONTACT SECTION */
.contact {
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  font-weight: 400;
  opacity: 80%;
}

.contact a {
  text-decoration: none;
  color: var(--color-black);
  font-size: 24px;
}

/* FOOTER */
footer {
  background-color: var(--color-black);
  color: var(--color-gray);
  padding: 20px;
  font-size: 12px;
  text-align: center;
  display: flex;
  align-items: center;
}

/* HAMBURGER MENU */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-black);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* RESPONSIVE DESIGN */

@media screen and (max-width: 991px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav-links.open {
    right: 0;
  }

  .navbar ul li {
    padding: 12px 0;
  }
  .hero .content {
    flex-direction: column;
    gap: 50px;
  }

  .hero .content .img img {
    max-width: 360px;
  }

  .about .content {
    flex-direction: column;
    gap: 50px;
  }

  .about .our-mission {
    max-width: 100%;
  }

  .about .our-mission h2 {
    font-size: 48px;
  }

  .about .our-mission p {
    font-size: 20px;
  }

  .strategy .content {
    flex-direction: column;
  }

  .strategy .content .left {
    max-width: 100%;
  }

  .strategy .content h2 {
    font-size: 48px;
  }

  .strategy .content p {
    font-size: 22px;
  }

  .leadership {
    padding: 60px 0px;
  }

  .leadership .content {
    flex-direction: column;
    gap: 50px;
  }

  .leadership .content .left {
    max-width: 100%;
  }

  .leadership .img-wrapper {
    width: 100%;
    padding: 0px 60px;
  }

  .leadership h2 {
    font-size: 48px;
  }

  .leadership h4 {
    font-size: 20px;
  }

  .leadership .desc {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .leadership .img-wrapper {
    padding: 0px 0px;
  }
}

@media screen and (max-width: 576px) {
  .py-120 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .py-80 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .logo img {
    width: 80px;
  }

  .hero .content h2 {
    font-size: 36px;
  }

  .hero .content h4 {
    font-size: 20px;
  }

  .hero .content p {
    font-size: 16px;
  }

  .about .our-mission {
    padding: 24px 16px;
  }

  .about .our-mission h2 {
    font-size: 36px;
  }

  .about .our-mission p {
    font-size: 18px;
  }

  .about .our-vision h2 {
    font-size: 24px;
  }

  .strategy .content h2 {
    font-size: 36px;
  }

  .strategy .content p {
    font-size: 18px;
  }

  .leadership h2 {
    font-size: 36px;
  }

  .leadership h4 {
    font-size: 18px;
  }
}
