@font-face {
  font-family: "GE SS Unique Light";
  src: url("../fonts/GE-SS-Unique-Light.otf");
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/IBMPlexSans-Regular.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "GE SS Unique Light", sans-serif;
  direction: rtl;
  background-color: #ffffff;
}

/* =========================
   HEADER
========================= */

.site-header {
  width: 100%;
  background-color: #333333;
  padding: 28px 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  transform: translateY(0);
  transition:
    transform 0.35s ease,
    padding 0.35s ease,
    background-color 0.35s ease;
}

.site-header.scrolled {
  background-color: #b49a6b;
  padding: 16px 0;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.container {
  width: 90%;
  max-width: 1500px;
  margin: auto;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* =========================
   LOGO
========================= */

.logo img {
  width: 180px;
  height: auto;
  transition: width 0.35s ease;
}

.site-header.scrolled .logo img {
  width: 150px;
}

/* =========================
   NAVIGATION
========================= */

.main-nav {
  display: flex;
  align-items: center;
  gap: 80px;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s ease;
}

.main-nav a:hover {
  opacity: 0.7;
}

.site-header.scrolled .main-nav a {
  color: #333333;
}

/* =========================
   BUTTON
========================= */

.header-btn,
.mobile-btn {
  background-color: #b49a6b;
  color: #ffffff !important;
  padding: 14px 34px;
  text-decoration: none;
  font-size: 15px;
  transition:
    background-color 0.3s ease,
    padding 0.35s ease,
    opacity 0.3s ease;
}

.header-btn:hover,
.mobile-btn:hover {
  opacity: 0.85;
}

.site-header.scrolled .header-btn {
  background-color: #333333;
  padding: 11px 28px;
}

.mobile-btn {
  display: none;
}

/* =========================
   HAMBURGER
========================= */

.hamburger {
  display: none;
  width: 34px;
  height: 26px;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  margin-bottom: 7px;
  transition: 0.35s ease;
}

.site-header.scrolled .hamburger span {
  background-color: #333333;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
/* Hero section */
.hero-section {
  width: 100%;
  height: 100vh;
  min-height: 650px;
  background-image: url("../images/almnfthon-header-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: 80px;
}

.hero-content h1 {
  color: #ffffff;
  font-size: 90px;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 45px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-btn {
  display: inline-block;
  background-color: #b49a6b;
  color: #ffffff;
  text-decoration: none;
  padding: 18px 55px;
  font-size: 18px;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background-color: #333333;
}
/* Counter number section css */
.numbers-section {
  padding: 120px 0 100px;
  background-color: #ffffff;
}
/* Riyal sign */

.riyal-symbol {
  width: 28px;
  height: auto;
  margin-right: 8px;
  vertical-align: middle;
}

.numbers-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 120px;
}

.numbers-heading h2 {
  font-size: 42px;
  font-weight: 300;
  color: #333333;
}

.numbers-heading span {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 34px;
  letter-spacing: 10px;
  color: #333333;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  direction: rtl;
}

.number-item {
  text-align: center;
  padding: 0 35px;
  border-left: 1px solid #b49a6b;
}

.number-item:last-child {
  border-left: none;
}

.number-item h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #333333;
  line-height: 1;
  margin-bottom: 18px;
}

.number-text {
  font-family: "GE SS Unique Light", sans-serif;
  font-size: 40px;
  font-weight: 600;
}

.number-item p {
  font-size: 22px;
  color: #333333;
}

.numbers-bottom-text {
  margin-top: 120px;
  text-align: center;
  font-size: 28px;
  color: #b8b8b8;
  font-style: italic;
}

/* About section */
.about-section {
  background-color: #f3f3f3;
  padding: 120px 0 140px;
}

.about-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
}

.about-heading h2 {
  font-size: 42px;
  font-weight: 300;
  color: #333333;
}

.about-heading span {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 34px;
  letter-spacing: 8px;
  color: #333333;
}

.about-year {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  margin-bottom: 95px;
}

.about-year .line {
  flex: 1;
  height: 1px;
  background-color: #333333;
}

.year-box {
  text-align: center;
  min-width: 220px;
}

.year-box p {
  font-size: 38px;
  color: #333333;
  margin-bottom: 10px;
}

.year-box h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 78px;
  font-weight: 700;
  color: #333333;
  line-height: 1;
}

.about-text {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  font-size: 27px;
  line-height: 2;
  color: #333333;
}
/* Feature Section */
.featured-section {
  display: grid;
  grid-template-columns: 40% 60%;
  width: 100%;
  min-height: 760px;
  overflow: hidden;
}

.featured-left {
  display: grid;
  grid-template-rows: 50% 50%;
}

.bed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.red-box {
  position: relative;
  overflow: hidden;
}

.red-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.red-text {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  direction: rtl;

  color: #ffffff;
}

.red-text h2 {
  font-size: 62px;
  margin-bottom: 18px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  text-rendering: geometricPrecision;
}

.red-text p {
  font-size: 48px;
  font-weight: 300;
}

.featured-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Values section */
.values-section {
  background-color: #ffffff;
  padding: 120px 0 0;
}

.values-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 110px;
}

.values-heading h2 {
  font-size: 42px;
  font-weight: 300;
  color: #333333;
}

.values-heading span {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 34px;
  letter-spacing: 8px;
  color: #333333;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
}

.value-card {
  height: 530px;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #ffffff;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(51, 51, 51, 0.25);
  transition: 0.4s ease;
}

.value-card.light {
  color: #333333;
}

.value-card.light::before {
  background-color: rgba(255, 255, 255, 0.45);
}

.value-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.value-card h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.value-card p {
  font-size: 25px;
  position: relative;
  z-index: 2;
}

.value-card:hover::before {
  background-color: rgba(180, 154, 107, 0.55);
}

.value-card:hover {
  transform: translateY(-8px);
  transition: 0.4s ease;
}

/* Project filter */
.projects-section {
  padding: 110px 0;
  background-color: #ffffff;
}

.projects-filter {
  display: grid;
  grid-template-columns: 2.3fr 1fr 1fr 1fr;
  gap: 35px;
  margin-bottom: 80px;
}

.search-box {
  position: relative;
}

.search-box input,
.projects-filter select {
  width: 100%;
  height: 48px;
  border: 1px solid #333333;
  background: #ffffff;
  color: #333333;
  padding: 0 18px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
}

.search-box input {
  padding-right: 45px;
}

.search-box span {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #333333;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
  direction: rtl;
}

.project-card {
  border: 1px solid rgba(180, 154, 107, 0.6);
  background-color: #ffffff;
  transition: 0.35s ease;
}

.project-card.hide {
  display: none;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.project-image {
  height: 270px;
  background-color: #b49a6b;
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-image span {
  position: absolute;
  top: 25px;
  right: 25px;
  border: 1px solid rgba(51, 51, 51, 0.35);
  padding: 8px 16px;
  font-size: 13px;
  color: #333333;
  background-color: rgba(180, 154, 107, 0.8);
}

.project-info {
  padding: 30px 28px 35px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  direction: rtl;
  text-align: right;
}

.project-info h3 {
  font-size: 22px;
  color: #333333;
  margin-bottom: 22px;
  font-weight: 600;
}

.project-info p {
  font-size: 15px;
  color: #333333;
  margin-bottom: 10px;
}

.project-info a {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  border: 1px solid #333333;
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.project-info a:hover {
  background-color: #333333;
  color: #ffffff;
}

.load-more-btn {
  display: block;
  margin: 90px auto 0;
  background: transparent;
  border: none;
  color: #333333;
  font-family: inherit;
  font-size: 24px;
  cursor: pointer;
  position: relative;
}

.load-more-btn::after {
  content: "⌄";
  display: block;
  font-size: 28px;
  line-height: 1;
  margin-top: 5px;
}

.project-meta {
  margin-top: 15px;
  width: 100%;
}

.meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;

  gap: 10px;
  margin-bottom: 14px;
}

.meta-item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin-top: 2px;
}

.meta-item span {
  font-size: 15px;
  color: #333333;

  text-align: right;
  direction: rtl;
}
/* Contact us */
.interest-section {
  padding: 130px 0 120px;
  background: url("../images/contact-bg.jpg") center/cover no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.interest-form select {
  margin-bottom: 25px;
  appearance: none;
  cursor: pointer;

  background-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.interest-form select option {
  background-color: #b49a6b;
  color: #ffffff;
}
.interest-form input[type="tel"] {
  direction: ltr;
  text-align: right;
}
.interest-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 110px;
}

.interest-heading h2 {
  font-size: 42px;
  font-weight: 300;
  color: #ffffff;
}

.interest-heading span {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 34px;
  letter-spacing: 8px;
  color: #ffffff;
}

.interest-form {
  max-width: 850px;
  margin: auto;
  direction: rtl;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  width: 100%;
  border: none;
  outline: none;
  background-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  padding: 18px 22px;
}

.interest-form input::placeholder,
.interest-form textarea::placeholder {
  color: #ffffff;
}

.interest-form select {
  margin-bottom: 25px;
  appearance: none;
  cursor: pointer;
}

.interest-form textarea {
  height: 150px;
  resize: none;
  margin-bottom: 28px;
}

.interest-form button {
  display: block;
  margin: auto;
  border: none;
  background-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  font-family: inherit;
  font-size: 18px;
  padding: 16px 48px;
  cursor: pointer;
  transition: 0.3s ease;
}

.interest-form button:hover {
  background-color: #333333;
}
/* Contact info section */
/* Contact Info Section */

.contact-info-section {
  background-color: #ffffff;
  padding: 130px 0 0px;
}

.contact-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-bottom: 130px;
}

.contact-heading h2 {
  font-size: 42px;
  font-weight: 300;
  color: #333333;
}

.contact-heading span {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 34px;
  letter-spacing: 8px;
  color: #333333;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px;

  direction: rtl;
}

.contact-box {
  text-align: right;
}

.contact-box h3 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;

  font-size: 28px;
  color: #333333;
  margin-bottom: 30px;
  font-weight: 400;
}

.contact-box h3 img {
  width: 28px;
  height: 28px;
  background-color: #eeeeee;
  padding: 6px;
}

.contact-box-content {
  border-right: 1px solid #b49a6b;
  padding-right: 24px;

  text-align: right;
}

.contact-box-content strong {
  display: block;
  font-size: 18px;
  color: #333333;
  margin-bottom: 10px;
}

.contact-box-content p {
  font-size: 18px;
  color: #666666;
  line-height: 1.9;
  margin-bottom: 8px;
}

.contact-box-content a {
  display: block;
  color: #333333;
  text-decoration: none;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}

.social-icons {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 25px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  background-color: #eeeeee;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s ease;
}

.social-icons a:hover {
  background-color: #b49a6b;
}

.social-icons img {
  width: 18px;
  height: 18px;
}
.contact-item {
  margin-bottom: 24px;
}

.contact-item p {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 10px;
}

.contact-item p img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.ibm-number {
  font-family: "IBM Plex Sans", sans-serif !important;
  letter-spacing: 0.5px;
}

.contact-box-content a {
  font-family: "IBM Plex Sans", sans-serif;
}
.partners-section {
  padding: 100px 0;
  text-align: center;
}

.partners-heading span {
  display: block;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #666;
}

.partners-heading h2 {
  font-size: 28px;
  margin-bottom: 50px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.partners-logos img {
  max-height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partners-logos img:hover {
  transform: scale(1.1);
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .main-nav {
    gap: 35px;
  }

  .logo img {
    width: 150px;
  }

  .hero-content h1 {
    font-size: 70px;
  }
  .numbers-section {
    padding: 90px 0;
  }
  .numbers-heading {
    margin-bottom: 80px;
  }
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 60px;
  }

  .number-item:nth-child(2) {
    border-left: none;
  }
  .about-section {
    padding: 90px 0 110px;
  }

  .about-heading span {
    font-size: 26px;
    letter-spacing: 6px;
  }

  .about-heading h2 {
    font-size: 36px;
  }

  .about-year {
    gap: 45px;
  }

  .year-box h3 {
    font-size: 68px;
  }

  .about-text {
    font-size: 23px;
  }
  /* Feature section */
  .featured-section {
    grid-template-columns: 1fr;
  }

  .featured-right {
    height: 650px;
  }

  .red-text h2 {
    font-size: 48px;
  }

  .red-text p {
    font-size: 38px;
  }
  /* Values section */
  .values-section {
    padding-top: 90px;
  }

  .values-heading {
    margin-bottom: 75px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-card {
    height: 430px;
  }

  .value-card:last-child {
    grid-column: span 2;
  }
  /* Project Filter */
  .projects-filter {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Contact us  */
  .interest-section {
    padding: 100px 0;
  }

  .interest-heading {
    margin-bottom: 75px;
  }

  .interest-heading h2 {
    font-size: 36px;
  }

  .interest-heading span {
    font-size: 26px;
    letter-spacing: 6px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-info-section {
    padding: 100px 0;
  }

  .contact-heading {
    margin-bottom: 85px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .partners-logos {
    gap: 30px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .site-header {
    padding: 20px 0;
  }

  .site-header.scrolled {
    padding: 12px 0;
  }

  .hamburger {
    display: block;
  }

  .header-btn {
    display: none;
  }

  .logo img {
    width: 140px;
    position: relative;
    z-index: 1001;
  }

  .site-header.scrolled .logo img {
    width: 120px;
  }

  .main-nav {
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    width: 100%;

    background-color: #333333;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;

    max-height: 0;
    overflow: hidden;
    opacity: 0;

    transform: translateY(-15px);

    transition:
      max-height 0.5s ease,
      opacity 0.35s ease,
      transform 0.35s ease;

    z-index: 998;
  }

  .site-header.scrolled .main-nav {
    background-color: #b49a6b;
    top: 70px;
  }

  .main-nav.active {
    max-height: 430px;
    opacity: 1;
    transform: translateY(0);
    padding: 25px 0;
  }

  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 18px 0;
    font-size: 26px;
    color: #ffffff;
  }

  .site-header.scrolled .main-nav a {
    color: #333333;
  }

  .mobile-btn {
    display: inline-block;
    width: auto !important;
    margin-top: 15px;
    padding: 16px 34px !important;
    color: #ffffff !important;
  }

  .hero-section {
    height: 90vh;
    min-height: 550px;
    background-position: center;
  }

  .hero-content {
    margin-top: 60px;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
  }

  .hero-btn {
    font-size: 16px;
    padding: 15px 40px;
  }
  .numbers-heading {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 60px;
  }

  .numbers-heading h2 {
    font-size: 34px;
  }

  .numbers-heading span {
    font-size: 24px;
    letter-spacing: 6px;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .number-item {
    border-left: none;
    border-bottom: 1px solid #b49a6b;
    padding-bottom: 35px;
  }

  .number-item:last-child {
    border-bottom: none;
  }

  .number-item h3 {
    font-size: 48px;
  }

  .number-item p {
    font-size: 20px;
  }

  .numbers-bottom-text {
    margin-top: 70px;
    font-size: 22px;
    line-height: 1.8;
  }
  .about-section {
    padding: 70px 0 85px;
  }

  .about-heading {
    flex-direction: column-reverse;
    gap: 15px;
    margin-bottom: 55px;
  }

  .about-heading h2 {
    font-size: 34px;
  }

  .about-heading span {
    font-size: 22px;
    letter-spacing: 5px;
  }

  .about-year {
    gap: 20px;
    margin-bottom: 60px;
  }

  .year-box {
    min-width: 150px;
  }

  .year-box p {
    font-size: 28px;
  }

  .year-box h3 {
    font-size: 54px;
  }

  .about-text {
    font-size: 20px;
    line-height: 2;
    padding: 0 10px;
  }
  /* Feature section */
  .bed-image,
  .red-box {
    height: 320px;
  }

  .featured-right {
    height: 500px;
  }

  .red-text h2 {
    font-size: 38px;
  }

  .red-text p {
    font-size: 28px;
  }
  /* Values section */
  .values-section {
    padding-top: 70px;
  }

  .values-heading {
    flex-direction: column-reverse;
    gap: 15px;
    margin-bottom: 55px;
  }

  .values-heading h2 {
    font-size: 34px;
  }

  .values-heading span {
    font-size: 22px;
    letter-spacing: 5px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .value-card:last-child {
    grid-column: auto;
    height: 360px;
  }

  .value-card img {
    width: 52px;
    height: 52px;
    margin-bottom: 25px;
  }

  .value-card h3 {
    font-size: 21px;
  }

  .value-card p {
    font-size: 23px;
  }
  /* Project Filter */
  .projects-section {
    padding: 75px 0;
  }

  .projects-filter {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 55px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-image {
    height: 250px;
  }

  .load-more-btn {
    margin-top: 55px;
    font-size: 22px;
  }
  .interest-section {
    padding: 75px 0 85px;
  }

  .interest-heading {
    flex-direction: column-reverse;
    gap: 15px;
    margin-bottom: 55px;
    text-align: center;
  }

  .interest-heading h2 {
    font-size: 34px;
  }

  .interest-heading span {
    font-size: 20px;
    letter-spacing: 4px;
  }

  .interest-form input,
  .interest-form select,
  .interest-form textarea {
    font-size: 15px;
    padding: 16px 18px;
  }

  .interest-form textarea {
    height: 140px;
  }
  .contact-info-section {
    padding: 75px 0 85px;
  }

  .contact-heading h2 {
    font-size: 34px;
  }

  .contact-heading span {
    font-size: 22px;
    letter-spacing: 5px;
  }

  .contact-box h3 {
    font-size: 24px;
  }

  .contact-box-content p,
  .contact-box-content a {
    font-size: 16px;
  }
  .partners-heading h2 {
    font-size: 24px;
  }

  .partners-logos {
    gap: 20px;
  }

  .partners-logos img {
    max-height: 50px;
  }
}
/* =========================
   FOOTER
========================= */
.arfont {
  font-family: "GE SS Unique Light", sans-serif;
}
.site-footer {
  position: relative;

  padding: 110px 0 55px;

  background-image: url("../images/footer-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 120px;
}

/* LEFT */

.footer-left {
  max-width: 420px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 90px;
}

.footer-social a {
  width: 44px;
  height: 44px;

  background-color: rgba(255, 255, 255, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s ease;
}

.footer-social a:hover {
  background-color: #b49a6b;
}

.footer-social img {
  width: 18px;
  height: 18px;
}

.footer-newsletter h3 {
  font-size: 30px;
  font-weight: 300;
  color: #ffffff;

  margin-bottom: 24px;
}

.footer-newsletter form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-newsletter input {
  width: 100%;
  height: 50px;

  border: 1px solid rgba(255, 255, 255, 0.4);

  background: transparent;

  padding: 0 18px;

  color: #ffffff;
  font-family: inherit;
  font-size: 15px;

  outline: none;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter button {
  height: 50px;

  border: none;

  background-color: #b49a6b;

  color: #ffffff;

  padding: 0 28px;

  font-family: inherit;
  font-size: 14px;

  cursor: pointer;

  transition: 0.3s ease;

  white-space: nowrap;
}

.footer-newsletter button:hover {
  background-color: #ffffff;
  color: #333333;
}

/* RIGHT */

.footer-right {
  direction: rtl;
}

.footer-logo img {
  width: 65px;

  margin-bottom: 60px;
}

.footer-links {
  display: flex;
  gap: 90px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-column a {
  color: #ffffff;

  text-decoration: none;

  font-size: 18px;
  font-weight: 300;

  transition: 0.3s ease;
}

.footer-column a:hover {
  color: #b49a6b;
}

/* BOTTOM */

.footer-bottom {
  margin-top: 120px;

  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);

  font-size: 14px;
  letter-spacing: 1px;

  margin-bottom: 10px;

  font-family: "IBM Plex Sans", sans-serif;
}

.footer-bottom strong {
  color: #ffffff;
}

.footer-bottom span {
  color: #ffffff;
}
.footer-social img {
  width: 18px;
  height: 18px;

  filter: brightness(0) invert(1);
}
.m-icon {
  width: 13px; /* adjust the size as you like */
  height: 13px; /* maintain aspect ratio */
  vertical-align: middle; /* align with text */
  margin-right: 5px; /* space between icon and MM brand text */
}
/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .site-footer {
    padding: 90px 0 50px;
  }

  .footer-wrapper {
    flex-direction: column-reverse;
    gap: 70px;
  }

  .footer-right {
    width: 100%;
  }

  .footer-links {
    justify-content: space-between;
  }

  .footer-left {
    max-width: 100%;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .site-footer {
    padding: 70px 0 45px;
  }

  .footer-wrapper {
    gap: 55px;
  }

  .footer-logo img {
    width: 60px;

    margin-bottom: 45px;
  }

  .footer-links {
    gap: 40px;
  }

  .footer-column a {
    font-size: 16px;
  }

  .footer-social {
    margin-bottom: 50px;

    justify-content: center;
  }

  .footer-newsletter h3 {
    text-align: center;

    font-size: 24px;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-newsletter input,
  .footer-newsletter button {
    width: 100%;
  }

  .footer-bottom {
    margin-top: 70px;
  }

  .footer-bottom p {
    font-size: 12px;
    line-height: 1.8;
  }
}
@media (max-width: 480px) {
  .partners-heading h2 {
    font-size: 20px;
  }

  .partners-logos {
    gap: 15px;
  }

  .partners-logos img {
    max-height: 40px;
  }
}
/* Full-screen map section */
.projects-map-section {
  width: 100vw;
  height: 70vh;
  position: relative;
  overflow: hidden;
}

.projects-map-section .map-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.projects-map-section .map-wrapper .map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.map-popup-right {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100vh;
  background: #fff;
  box-shadow: -3px 0 20px rgba(0, 0, 0, 0.2);
  padding: 20px;
  overflow-y: auto;
  transition: right 0.5s ease;
  z-index: 1001;
}

.map-popup-right.active {
  right: 0;
}

.popup-close-right {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.popup-projects-list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.popup-project-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.popup-project-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.popup-project-item p {
  font-size: 14px;
  margin-bottom: 8px;
}

.popup-btn {
  display: inline-block;
  padding: 6px 12px;
  background: #b49a6b;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}
/* Map area numbers use IBM Plex Sans for clarity */
.map-area {
  position: absolute;
  background: rgba(6, 4, 0, 0.85);
  color: #fff;
  padding: 6px 10px;
  border-radius: 50%;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    background 0.3s ease;

  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
}

.map-area:hover {
  transform: scale(1.3);
  background: rgba(180, 154, 107, 1);
}

.map-area p.map-label {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-family: "ge ss unique light", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  pointer-events: none; /* so it doesn’t block clicks */
}
/* Desktop */
/* NORTH */
.map-area[data-area="north"] {
  top: 39%; /* adjust to fit mobile screen */
  left: 39%;
}

/* CENTRAL */
.map-area[data-area="central"] {
  top: 58%;
  left: 49%;
}

/* EAST */
.map-area[data-area="east"] {
  top: 60%;
  left: 60%;
}

/* WEST */
.map-area[data-area="west"] {
  top: 60%;
  left: 42%;
}

/* SOUTH */
.map-area[data-area="south"] {
  top: 76%;
  left: 50%;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  /* NORTH */
  .map-area[data-area="north"] {
    top: 41%; /* adjust to fit mobile screen */
    left: 20%;
  }

  /* CENTRAL */
  .map-area[data-area="central"] {
    top: 55%;
    left: 50%;
  }

  /* EAST */
  .map-area[data-area="east"] {
    top: 60%;
    left: 78%;
  }

  /* WEST */
  .map-area[data-area="west"] {
    top: 55%;
    left: 20%;
  }

  /* SOUTH */
  .map-area[data-area="south"] {
    top: 67%;
    left: 50%;
  }

  /* Optional: adjust number circle size */
  .map-area {
    width: 30px;
    height: 30px;
    line-height: 14px;
    font-size: 12px;
  }

  /* Optional: adjust label font size */
  .map-area p.map-label {
    font-size: 10px;
    top: -28px; /* distance above the circle */
    white-space: normal; /* allow wrapping if text is long */
  }
}
