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

html,
body {
  overflow-x: hidden;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  /* For older browsers and aggressive wrapping */
}

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

.primary-bttn {
  background: #F7B247;
  color: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 16px;
  text-decoration: none;
  color: #000;
  transition: 0.3s all ease-in-out;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.primary-bttn:hover {
  background: #0F1922;
  color: #F7B247;
}

.outline-bttn {
  background: transparent;
  color: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  border: 1px solid #fff;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
}
.outline-bttn:hover {
  background: #0F1922;
  color: #F7B247;
  border-color: #F7B247;
}

.arrow-bttn {
  width: 60px;
  height: 60px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
  border: thin solid #d5d5d5;
}
.arrow-bttn i {
  font-size: 2rem;
  transform: rotate(-45deg);
  transition: 0.3s all ease-in-out;
  color: #d5d5d5;
}
.arrow-bttn:hover {
  background: #F7B247;
}
.arrow-bttn:hover i {
  transform: rotate(0deg);
  color: #fff;
}

.icon-link-bttn {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.icon-link-bttn span {
  color: #000;
}
.icon-link-bttn .arrow-bttn {
  width: 48px;
  height: 48px;
  border-color: #000;
}
.icon-link-bttn .arrow-bttn i {
  color: #000;
  font-size: 1.24rem;
}
.icon-link-bttn:hover .arrow-bttn {
  border-color: #F7B247;
}
.icon-link-bttn:hover .arrow-bttn i {
  color: #000;
}

.icon-link-bttn-dark {
  text-decoration: none;
}
.icon-link-bttn-dark span {
  color: #fff;
}
.icon-link-bttn-dark .arrow-bttn {
  border-color: #fff;
}
.icon-link-bttn-dark .arrow-bttn i {
  color: #fff;
}
.icon-link-bttn-dark:hover .arrow-bttn {
  border-color: #F7B247;
}
.icon-link-bttn-dark:hover .arrow-bttn i {
  color: #000;
}

body {
  background: #000;
  font-family: "Open Sans", sans-serif;
  color: #fff;
}

a {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.table-responsive {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  min-width: 0;
}
.table-responsive table {
  margin: 0 !important;
  min-width: 800px;
}

.es-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  width: clamp(280px, 100%, 1360px);
  padding: 0 2rem;
}
@media (max-width: 480px) {
  .es-container {
    padding: 0 1rem;
  }
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.section-title small {
  color: #F7B247;
  font-size: 14px;
  text-transform: uppercase;
}
.section-title span {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  font-family: "Tinos", serif;
  color: #fff;
}

.section-title-dark span {
  color: #000;
}

.para {
  font-size: 16px;
  line-height: 24px;
  color: #d5d5d5;
}

.para-dark {
  color: #000;
}

/* HEADER */
.site-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  padding: 2rem 0;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 10;
  width: 100%;
}
@media (max-width: 600px) {
  .site-header {
    padding: 1.5rem 0;
  }
  .site-header .es-container {
    flex-direction: row;
    align-items: center;
  }
}
.site-header .logo {
  font-family: "Tinos", serif;
  font-size: 37px;
  font-weight: 700;
  color: #F7B247;
  text-decoration: none;
}
.site-header .logo:hover {
  color: #F7B247;
  text-decoration: none;
  opacity: 0.9;
}
@media (max-width: 480px) {
  .site-header .logo {
    font-size: 24px;
  }
}
.site-header .nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  /* Social icons */
}
.site-header .nav-right .social {
  display: flex;
  gap: 24px;
}
.site-header .nav-right .social a {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d5d5d5;
}
@media (max-width: 768px) {
  .site-header .nav-right .social {
    display: none;
  }
}
.site-header .nav-right {
  /* Menu button */
}
.site-header .nav-right .menu-btn {
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: end;
  flex-direction: column;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  outline: none;
}
.site-header .nav-right .menu-btn span {
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.3s ease;
}
.site-header .nav-right .menu-btn span:nth-child(2) {
  width: 80%;
}
.site-header .nav-right .menu-btn.active span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.site-header .nav-right .menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.site-header .nav-right .menu-btn.active span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  min-height: 900px;
  width: 100%;
  overflow: hidden;
}
.hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/hero-bg-img.jpg") center/cover no-repeat;
}
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, #000 100%);
}
.hero {
  /* HERO CONTENT */
}
.hero .hero-content {
  position: absolute;
  bottom: 150px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin: auto;
}
.hero .hero-content .hero-title {
  font-family: "Tinos", serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 72px;
  max-width: 680px;
  color: #fff;
}
.hero .hero-content .hero-right {
  max-width: 572px;
}
.hero .hero-content .hero-right .hero-desc {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 30px;
  text-transform: capitalize;
  color: #fff;
}
.hero .hero-content .hero-right .hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 1100px) {
  .hero .hero-content {
    flex-direction: column;
    align-items: flex-start;
    bottom: 120px;
  }
  .hero .hero-content .hero-title {
    font-size: 60px;
    line-height: 60px;
  }
  .hero .hero-content .hero-right {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .hero .hero-content {
    left: 0px;
    right: 30px;
  }
  .hero .hero-content .hero-title {
    font-size: 44px;
    line-height: 48px;
  }
  .hero .hero-content .hero-desc {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .hero .hero-content .hero-title {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (max-width: 768px) {
  .hero header {
    padding: 0 30px;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: 750px;
  }
  .hero .logo {
    font-size: 28px;
  }
}

/*sticky card */
/* STRATEGIC DOMAINS SECTION */
.strategic-domains {
  background: #000;
  padding: 120px 0;
  position: relative;
  background-image: url("../img/line-vector-bg.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-attachment: fixed;
  overflow: hidden;
}
.strategic-domains .es-container {
  display: block;
}
@media (max-width: 768px) {
  .strategic-domains {
    padding: 60px 0;
  }
}
.strategic-domains::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0.05));
}
.strategic-domains .sticky-title {
  position: sticky;
  top: 100px;
  height: -moz-fit-content;
  height: fit-content;
  align-self: flex-start;
  padding: 200px 0;
}
.strategic-domains .sticky-title::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, #503503 0%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}
.strategic-domains .domain-cards {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media (max-width: 768px) {
  .strategic-domains .domain-cards {
    gap: 3rem;
  }
}
.strategic-domains .grid-card {
  /* Auto layout */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0rem;
  isolation: isolate;
  background: radial-gradient(98.3% 202.92% at 1.47% 0%, #111111 0%, #211601 100%);
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.16);
  border-radius: 24px;
  transition: all 0.3s ease-in-out;
}
.strategic-domains .grid-card .card-image {
  display: block;
  padding: 3rem;
  width: 100%;
}
@media (max-width: 768px) {
  .strategic-domains .grid-card .card-image {
    padding: 1.5rem;
  }
}
.strategic-domains .grid-card .card-image img {
  display: block;
  width: 100%;
  height: 350px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 768px) {
  .strategic-domains .grid-card .card-image img {
    height: 200px;
  }
}
.strategic-domains .grid-card .card-bottom {
  padding: 0 3rem 3rem;
  display: flex;
  gap: 2rem;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .strategic-domains .grid-card .card-bottom {
    padding: 0 1.5rem 1.5rem;
    gap: 1rem;
  }
}
.strategic-domains .grid-card .card-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 32px;
  background: #F7B247;
}
.strategic-domains .grid-card .card-bottom .card-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: calc(100% - 72px);
  position: relative;
}
.strategic-domains .grid-card .card-bottom .card-text h3 {
  color: #fff;
  font-family: "Tinos", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 0;
}
.strategic-domains .grid-card .card-bottom .card-text p {
  margin: 0;
  color: #d5d5d5;
}
.strategic-domains .grid-card .card-bottom .arrow-bttn {
  flex-grow: 1;
}
.strategic-domains .grid-card:hover {
  background: radial-gradient(94.56% 197.1% at 100% 98.62%, #111111 0%, #211601 100%);
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.16);
}
.strategic-domains .grid-card:hover .card-bottom .card-text h3 {
  color: #F7B247;
}
.strategic-domains .grid-card:hover .card-bottom .arrow-bttn {
  background-color: #F7B247;
  border-color: #F7B247;
}
.strategic-domains .grid-card:hover .card-bottom .arrow-bttn i {
  color: #000;
  transform: rotate(0deg);
}

/* institutional section */
/* SECTION BACKGROUND */
/* INSTITUTIONAL SECTION */
.institutional-section {
  background: linear-gradient(180deg, #FFF6E9 0%, #F7E2C8 38%, #000 100%);
  padding: 120px 0 160px;
  position: relative;
}
@media (max-width: 768px) {
  .institutional-section {
    padding: 60px 0 80px;
  }
}
.institutional-section .institution-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .institutional-section .institution-card {
    min-height: auto;
  }
}
.institutional-section .institution-card:hover .accent-bar {
  width: 100%;
  left: 0;
}
.institutional-section .institution-card .accent-bar {
  width: 50px;
  height: 4px;
  background: #F7B247;
  position: absolute;
  top: 0;
  left: 1rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.institutional-section .institution-card .card-text {
  padding: 16px 24px 0;
}
.institutional-section .institution-card .card-text h3 {
  font-family: "Tinos", serif;
  font-size: 20px;
  margin-bottom: 12px;
  color: #000;
}
.institutional-section .institution-card .card-text p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000;
}
.institutional-section .institution-card .card-image {
  height: 228px;
  margin-top: auto;
}
.institutional-section .institution-card .card-image img {
  display: block;
  width: 100%;
}

/* RESEARCH SECTION */
@keyframes reveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal-on-scroll {
  opacity: 0;
  will-change: transform, opacity;
}
.reveal-on-scroll.is-visible {
  animation: reveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.research-section {
  background: #000;
  padding: 120px 0 140px;
  position: relative;
}
@media (max-width: 768px) {
  .research-section {
    padding: 60px 0 80px;
  }
}
.research-section .research-container {
  max-width: 1135px;
  margin: auto;
  padding: 0 24px;
}
.research-section .research-header {
  text-align: center;
  margin-bottom: 80px;
}
.research-section .research-header .research-eyebrow {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F7B247;
  margin-bottom: 16px;
}
.research-section .research-header .research-title {
  font-family: "Tinos", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 55px;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .research-section .research-header .research-title {
    font-size: 36px;
    line-height: 42px;
  }
}
.research-section .research-header .research-subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #ccc;
  max-width: 670px;
  margin: auto;
}
.research-section .research-list {
  border-top: 1px solid #191919;
}
.research-section .research-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid #191919;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
  background: transparent;
}
@media (max-width: 600px) {
  .research-section .research-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.research-section .research-item .research-text h3 {
  font-family: "Tinos", serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 6px;
}
.research-section .research-item .research-text p {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: #929292;
}
@media (max-width: 900px) {
  .research-section .research-item .research-text p {
    font-size: 16px;
  }
}
.research-section .research-item .arrow-bttn-dark {
  border: 1px solid #888;
}
.research-section .research-item .arrow-bttn-dark i {
  color: #888;
}
.research-section .research-item {
  opacity: 0;
  transition: background 0.3s ease-in-out;
}
.research-section .research-item.is-visible {
  animation: reveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.research-section .research-item:hover {
  background: radial-gradient(48.3% 517.45% at 51.12% 57.46%, #241904 0%, rgba(0, 0, 0, 0) 100%);
}
.research-section .research-item:hover .arrow-bttn-dark {
  background-color: #F7B247;
  border-color: #F7B247;
}
.research-section .research-item:hover .arrow-bttn-dark i {
  color: #000;
  transform: rotate(0deg);
}
.research-section .research-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.research-section .research-btn-wrapper .research-btn {
  background: #F7B247;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  transition: 0.2s;
}
.research-section .research-btn-wrapper .research-btn:hover {
  transform: translateY(-2px);
}

/* PATHWAY SECTION */
.pathway-section {
  background: #130D02;
  padding: 120px 0;
  position: relative;
  background-image: url("../img/leaf-element-left.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
}
.pathway-section .pathway-card {
  background: #130D02;
  border-radius: 24px;
  padding: 28px;
  transition: all 0.25s ease;
}
.pathway-section .pathway-card .pathway-icon {
  width: 100px;
  height: 92px;
  background: #241904;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pathway-section .pathway-card .pathway-icon img {
  width: 56px;
  height: 56px;
}
.pathway-section .pathway-card {
  /* TEXT */
}
.pathway-section .pathway-card h3 {
  font-family: "Tinos", serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}
.pathway-section .pathway-card p {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 22px;
  color: #888;
  overflow: hidden;
}
.pathway-section .pathway-card:hover {
  background: #F7B247;
}
.pathway-section .pathway-card:hover h3,
.pathway-section .pathway-card:hover p {
  color: #000;
}
.pathway-section {
  /* RESPONSIVE */
}
@media (max-width: 1024px) {
  .pathway-section .pathway-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .pathway-section .pathway-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pathway-section .pathway-title {
    font-size: 40px;
  }
}
@media (max-width: 640px) {
  .pathway-section .pathway-grid {
    grid-template-columns: 1fr;
  }
  .pathway-section .pathway-title {
    font-size: 32px;
    line-height: 38px;
  }
}

/* FOOTER SECTION */
.site-footer {
  background: #000;
  padding: 80px 0 40px;
  border-top: 1px solid #1a1a1a;
  position: relative;
}
.site-footer .footer-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin: auto;
  width: clamp(280px, 100%, 1360px);
  padding: 0 2rem;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .site-footer .footer-container {
    gap: 40px;
  }
}
.site-footer .footer-brand {
  flex: 1 1 300px;
  max-width: 320px;
}
.site-footer .footer-brand .footer-logo {
  font-family: "Tinos", serif;
  font-size: 32px;
  font-weight: 700;
  color: #F7B247;
  margin-bottom: 24px;
}
.site-footer .footer-brand .footer-desc {
  font-size: 16px;
  line-height: 24px;
  color: #888;
  margin-bottom: 24px;
  text-transform: capitalize;
}
.site-footer .footer-brand .footer-socials {
  display: flex;
  gap: 20px;
}
.site-footer .footer-brand .footer-socials a {
  color: #fff;
  font-size: 18px;
  transition: color 0.3s ease;
}
.site-footer .footer-brand .footer-socials a:hover {
  color: #F7B247;
}
.site-footer .footer-col {
  flex: 1 1 180px;
}
.site-footer .footer-col h4 {
  font-family: "Tinos", serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}
.site-footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-col ul li {
  margin-bottom: 12px;
}
.site-footer .footer-col ul li a {
  color: #888;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}
.site-footer .footer-col ul li a:hover {
  color: #fff;
}
.site-footer .footer-bottom {
  border-top: 1px solid #1a1a1a;
  margin-top: 60px;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: clamp(280px, 100%, 1360px);
  padding-left: 2rem;
  padding-right: 2rem;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer .footer-bottom p {
  color: #555;
  font-size: 14px;
  margin: 0;
}
.site-footer .footer-bottom .footer-legal {
  display: flex;
  gap: 24px;
  align-items: center;
}
.site-footer .footer-bottom .footer-legal a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.site-footer .footer-bottom .footer-legal a:hover {
  color: #fff;
}
.site-footer .footer-bottom .footer-legal a + a::before {
  content: "|";
  margin-right: 24px;
  color: #333;
  pointer-events: none;
}
@media (max-width: 768px) {
  .site-footer .footer-bottom .footer-legal {
    gap: 12px;
  }
  .site-footer .footer-bottom .footer-legal a + a::before {
    margin-right: 12px;
  }
}
@media (max-width: 768px) {
  .site-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

/* EVENTS SECTION */
.events-section {
  background: #000;
  padding: 120px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .events-section {
    padding: 60px 0;
  }
}
.events-section .events-header {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.events-section .events-header .events-eyebrow {
  color: #F7B247;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.events-section .events-header .events-title {
  font-family: "Tinos", serif;
  font-size: 48px;
  color: #fff;
  line-height: 55px;
}
@media (max-width: 640px) {
  .events-section .events-header .events-title {
    font-size: 32px;
    line-height: 38px;
  }
}
.events-section .events-header .events-link {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.events-section .events-header .events-link .arrow-circle {
  width: 36px;
  height: 36px;
  border: 1px solid #777;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.events-section .events-carousel {
  position: relative;
  width: clamp(280px, 100%, 1360px);
  margin: auto;
  overflow: hidden;
}
.events-section .events-carousel .carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}
.events-section .events-carousel .event-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .events-section .events-carousel .event-card {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 640px) {
  .events-section .events-carousel .event-card {
    flex: 0 0 100%;
  }
}
.events-section .events-carousel .event-card .event-image {
  height: 200px;
  background: #cfcfcf;
}
.events-section .events-carousel .event-card .event-content {
  padding: 22px;
}
.events-section .events-carousel .event-card .event-content h3 {
  font-family: "Tinos", serif;
  font-size: 20px;
  margin-bottom: 8px;
}
.events-section .events-carousel .event-card .event-content p {
  color: #666;
  margin-bottom: 14px;
  font-size: 15px;
}
.events-section .events-carousel .event-card .event-content a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}
.events-section .events-carousel .carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #666;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}
@media (max-width: 768px) {
  .events-section .events-carousel .carousel-btn {
    width: 32px;
    height: 32px;
    background: rgba(247, 178, 71, 0.8);
    color: #000;
  }
}
.events-section .events-carousel .carousel-btn.prev {
  left: -20px;
}
.events-section .events-carousel .carousel-btn.next {
  right: -20px;
}

/* PARTNERSHIP SECTION */
.partnership-section {
  background: #000;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 768px) {
  .partnership-section {
    padding: 60px 0;
  }
}
.partnership-section::before, .partnership-section::after {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
}
.partnership-section::before {
  width: 800px;
  height: 800px;
  background: radial-gradient(50% 50% at 50% 50%, #5D1901 14.9%, rgba(0, 0, 0, 0) 100%);
  top: -20%;
  left: -10%;
}
@media (max-width: 768px) {
  .partnership-section::before {
    width: 400px;
    height: 400px;
  }
}
.partnership-section::after {
  width: 900px;
  height: 900px;
  background: radial-gradient(50% 50% at 50% 50%, #4E3300 33.65%, rgba(0, 0, 0, 0) 100%);
  bottom: -25%;
  right: -10%;
}
@media (max-width: 768px) {
  .partnership-section::after {
    width: 500px;
    height: 500px;
  }
}
.partnership-section .partnership-container {
  margin: auto;
  padding: 80px;
  background: #140d02;
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
@media (max-width: 1024px) {
  .partnership-section .partnership-container {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .partnership-section .partnership-container {
    padding: 30px 20px;
  }
}
@media (max-width: 640px) {
  .partnership-section .partnership-container {
    padding: 30px 20px;
  }
}
.partnership-section .partnership-container::before, .partnership-section .partnership-container::after {
  z-index: -1;
}
.partnership-section .partnership-container::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(247, 178, 71, 0.2), transparent 70%);
  background-image: url("../img/leaf-element.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.partnership-section .partnership-container::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(247, 178, 71, 0.1333333333), transparent 70%);
  background-image: url("../img/leaf-element-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.partnership-section .partnership-container .section-eyebrow {
  color: #F7B247;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}
.partnership-section .partnership-container .section-title {
  font-family: "Tinos", serif;
  font-size: 48px;
  line-height: 56px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}
@media (max-width: 640px) {
  .partnership-section .partnership-container .section-title {
    font-size: 36px;
    line-height: 42px;
  }
}
.partnership-section .partnership-container .section-desc {
  color: #bbb;
  max-width: 520px;
  margin-bottom: 40px;
}
.partnership-section .partnership-container .cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.partnership-section .partnership-container .cta-buttons .btn-primary {
  background: #F7B247;
  color: #000;
  padding: 14px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}
.partnership-section .partnership-container .cta-buttons .btn-outline {
  border: 1px solid #F7B247;
  color: #F7B247;
  padding: 14px 24px;
  border-radius: 40px;
  text-decoration: none;
}
.partnership-section .partnership-container .subscribe-card {
  background: #5c3417;
  padding: 40px;
  border-radius: 20px;
  color: #fff;
}
.partnership-section .partnership-container .subscribe-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-family: "Tinos", serif;
}
.partnership-section .partnership-container .subscribe-card p {
  color: #ddd;
  margin-bottom: 20px;
}
.partnership-section .partnership-container .subscribe-card .subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.partnership-section .partnership-container .subscribe-card .subscribe-form input,
.partnership-section .partnership-container .subscribe-card .subscribe-form button {
  padding: 1rem;
  border-radius: 1rem;
  border: none;
  outline: none;
}
.partnership-section .partnership-container .subscribe-card .subscribe-form button {
  background-color: #F7B247;
  color: #000;
}

/* FULLSCREEN MENU */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  background: #0b0b0b;
  color: #fff;
  z-index: 9999;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.fullscreen-menu.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.fullscreen-menu {
  /* Custom Scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(227, 176, 75, 0.3) transparent;
}
.fullscreen-menu::-webkit-scrollbar {
  width: 6px;
}
.fullscreen-menu::-webkit-scrollbar-track {
  background: transparent;
}
.fullscreen-menu::-webkit-scrollbar-thumb {
  background: rgba(227, 176, 75, 0.3);
  border-radius: 10px;
}
.fullscreen-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(227, 176, 75, 0.5);
}

.menu-container {
  display: flex;
  height: 100vh;
}

/* LEFT SIDEBAR */
.menu-sidebar {
  width: 350px;
  background: #14110e;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-logo {
  font-size: 37px;
  color: #e3b04b;
  font-weight: 700;
  font-family: "Tinos", serif;
  text-decoration: none;
}
.menu-logo:hover {
  color: #e3b04b;
  text-decoration: none;
  opacity: 0.9;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}

.sidebar-nav a {
  color: #e3b04b;
  font-size: 28px;
  text-decoration: none;
  font-weight: 600;
  font-family: "Tinos", serif;
  transition: opacity 0.3s;
}
.sidebar-nav a:hover {
  opacity: 0.7;
}

.menu-social {
  font-size: 11px;
  color: #888;
}

.social-icons {
  margin-top: 10px;
  display: flex;
  gap: 15px;
}
.social-icons a {
  color: #888;
  font-size: 18px;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #e3b04b;
}

/* RIGHT CONTENT */
.menu-content {
  flex: 1;
  padding: 80px;
  overflow-y: auto;
  position: relative;
}

.menu-close {
  position: absolute;
  right: 40px;
  top: 40px;
  background: none;
  border: none;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
}
@media (max-width: 600px) {
  .menu-close {
    top: 24px;
    right: 16px;
  }
}

.menu-content h1 {
  font-size: 52px;
  margin-bottom: 15px;
  font-family: "Tinos", serif;
}

.menu-subtext {
  color: #9a9a9a;
  max-width: 600px;
  margin-bottom: 60px;
}

/* GRID */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 80px;
}

.menu-block h4 {
  color: #e3b04b;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: "Tinos", serif;
  border-bottom: 1px solid rgba(227, 176, 75, 0.2);
  padding-bottom: 15px;
}

.menu-block ul {
  list-style: none;
  padding: 0;
}

.menu-block li {
  margin-bottom: 10px;
  color: #888;
  font-size: 14px;
}

.menu-block li a {
  color: #888;
  text-decoration: none;
}
.menu-block li a:hover {
  color: #F7B247;
}

/* SEARCH */
.search-box {
  display: flex;
  border: 1px solid #333;
  border-radius: 6px;
  overflow: hidden;
}

.search-box input {
  flex: 1;
  background: none;
  border: none;
  padding: 10px;
  color: white;
  outline: none;
}

.search-box button {
  background: #e3b04b;
  border: none;
  padding: 0 15px;
  cursor: pointer;
}

.search-note {
  font-size: 12px;
  color: #777;
  margin-top: 10px;
}

/* FOOTER */
.menu-footer {
  margin-top: 80px;
  display: flex;
  gap: 25px;
  font-size: 12px;
  color: #777;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.menu-footer a {
  color: #777;
  text-decoration: none;
}
.menu-footer a:hover {
  color: #fff;
}

/* MOBILE */
@media (max-width: 900px) {
  .menu-container {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }
  .menu-sidebar {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    gap: 30px;
  }
  .sidebar-nav {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
  }
  .menu-content {
    padding: 40px 20px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .menu-content h1 {
    font-size: 32px;
    text-align: center;
  }
  .menu-subtext {
    text-align: center;
    margin: 0 auto 40px;
  }
}
/* BLOG PAGES */
.blog-hero {
  background: #000;
  padding: 160px 0 80px;
  text-align: left;
}
.blog-hero .section-title {
  margin-bottom: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid #1a1a1a;
  text-decoration: none;
  display: block;
}
.blog-card:hover {
  transform: translateY(-10px);
  border-color: #F7B247;
}
.blog-card .blog-card-image {
  height: 240px;
  background-color: #222;
  background-size: cover;
  background-position: center;
  position: relative;
}
.blog-card .blog-card-image .category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #F7B247;
  color: #000;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.blog-card .blog-card-content {
  padding: 30px;
}
.blog-card .blog-card-content h3 {
  font-family: "Tinos", serif;
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #fff;
}
.blog-card .blog-card-content p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.blog-card .blog-card-content .read-more {
  color: #F7B247;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s;
  font-size: 14px;
}
.blog-card .blog-card-content .read-more:hover {
  gap: 15px;
}

.blog-detail-hero {
  height: 70vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #000 20%, rgba(0, 0, 0, 0.4) 100%);
}
.blog-detail-hero .hero-text {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  padding: 0 20px;
}
.blog-detail-hero .hero-text .category {
  color: #F7B247;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 25px;
  display: block;
  font-size: 14px;
}
.blog-detail-hero .hero-text h1 {
  font-family: "Tinos", serif;
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #fff;
}
@media (max-width: 768px) {
  .blog-detail-hero .hero-text h1 {
    font-size: 42px;
  }
}
.blog-detail-hero .hero-text .meta {
  color: #aaa;
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.article-container {
  padding: 100px 0;
  background: #000;
}

.article-content {
  max-width: 850px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: #ccc;
}
.article-content h2,
.article-content h3 {
  font-family: "Tinos", serif;
  color: #fff;
  margin: 50px 0 25px;
}
.article-content h2 {
  font-size: 38px;
}
.article-content h3 {
  font-size: 30px;
}
.article-content p {
  margin-bottom: 30px;
}
.article-content blockquote {
  border-left: 3px solid #F7B247;
  padding: 10px 0 10px 40px;
  margin: 50px 0;
  font-style: italic;
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
  font-family: "Tinos", serif;
}
.article-content img {
  width: 100%;
  border-radius: 20px;
  margin: 50px 0;
}
.article-content ul,
.article-content ol {
  margin-bottom: 30px;
  padding-left: 20px;
}
.article-content ul li,
.article-content ol li {
  margin-bottom: 15px;
}
.article-content ul li::marker,
.article-content ol li::marker {
  color: #F7B247;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */