/* ===========================
   BASE STYLES
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --header-height: 100px;
}

section {
  scroll-margin-top: var(--header-height);
}

body {
  font-weight: 400;
  margin: 0;
  background: #FCFCFC;
  color: #0b2026;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
  overflow-x: hidden;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.inner {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===========================
   HEADER
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.125rem 0;
  background: #FCFCFC;
  box-shadow: 0 1px 19.6px rgba(0, 0, 0, 0.1);
  transform: translateZ(0);
}

.header-inner {
  max-width: 1320px;
  width: 91.6%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
}

/* Logo */
.header-logo {
  width: 100%;
  min-width: 3.75rem;
  max-width: 6.1875rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Desktop Menu */
.header-menu {
  flex: 1;
  max-width: 1013px;
  margin-top: 0;
}

.header-menu ul {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.connect-us-dropdown-menu {
  display: none;
}

.connect-us-dropdown button {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #606062;
}

.menu-item,
.connect-us-dropdown .dropdown-toggle {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  padding-bottom: 0.25rem;
  margin: 0;
  font-family: inherit;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1;
  color: #606062;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-sizing: content-box;
  transition: color 0.2s ease;
}

/* arrow-ի style */
.connect-us-dropdown .arrow {
  font-size: 0.75em;
  transition: transform 0.3s ease;
}

.menu-item.active {
  font-weight: 600;
  color: #606062;
}

.menu-item.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.125rem;
  width: 100%;
  height: 1px;
  background-color: #606062;
  border-radius: 0.125rem;
}

/* Right Side Controls */
.right-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.625rem;
  flex-shrink: 0;
}

/* Language Selector */
.lang-wrapper {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: transparent;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
}

.current-lang {
  color: #0A0A0C;
}

.lang-dropdown {
  position: absolute;
  width: 6.25rem;
  top: 1.75rem;
  right: 0;
  top: calc(100% + 10px);
  border-radius: 20px;
  padding: 20px 16px;
  width: 236px;
  background: #FCFCFC;
  border: 1px solid #E8E8E8;
  display: none;
  z-index: 1000;
  list-style: none;
}

.lang-dropdown li {
  padding: 0.625rem 0.875rem;
  font-size: 1rem;
  color: #0A0A0C;
  cursor: pointer;
  font-weight: 400;
}

.lang-dropdown li:first-child {
  padding-top: 0.75rem;
}

.lang-dropdown li:not(:last-child) {
  border-bottom: 1px solid #D1D1D8
}

.lang-dropdown li:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* =========== Connect us ========== */
.connect-us-dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  color: inherit;
}

.arrow {
  transition: transform 0.3s ease;
  font-size: 12px;
}

/* dropdown menu */
.header-menu .connect-us-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  padding: 8px 0;
  min-width: 220px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 1000;
  display: none;
}

.connect-us-dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #333;
}

/* active state */
.connect-us-dropdown.open .connect-us-dropdown-menu {
  display: block;
  background: #FCFCFC;
  border-radius: 20px;
  border: 1px solid #E8E8E8;
}

.connect-us-dropdown.open .arrow {
  transform: rotate(180deg);
}

.connect-us-dropdown-menu .dividing-line {
  width: 85%;
  margin: 0 auto;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: #A6A6A6;
}

.connect-us-dropdown-menu li a {
  position: relative;
  transition: color 0.2s ease;
  color: #0A0A0C;
  font-size: 15px;
  font-weight: 400;

}

.connect-us-dropdown-menu li a:hover {
  color: #606062;
}

.connect-us-dropdown-menu li a:hover::after {
  transform: translateX(4px);
}


/* ================= HERO SECTION ====================== */
.main {
  max-width: 1320px;
  width: 91.6%;
  margin: 10% auto 0 auto;
  padding: 5rem 0.25rem 10rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #DEF2F9;
  border-radius: 2.5rem;
  gap: 1.25rem;
}

.main .left {
  flex: 1;
  max-width: 37.5rem;
  width: 100%;
  text-align: center;
}

.main .right {
  padding-right: 2.125rem;
}

.main #title {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin: 0 0 0.75rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.03125rem;
  color: #1F1F21;
}

.main #main-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #1F1F21;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.left .content {
  line-height: 1.5;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #0b2026;
  font-weight: 400;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.left .content span {
  display: block;
}

.left .content .line1 {
  width: 100%;
}

.left .content .line2 {
  width: 80%;
}

.left .content .line3 {
  width: 60%;
}

.btn-learn-more {
  display: inline-block;
  background: #1F1F21;
  color: #FCFCFC;
  padding: 0.625rem 1.25rem;
  border-radius: 1.25rem;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  transition: opacity 0.2s ease;
}

.btn-learn-more:hover {
  opacity: 0.9;
}

/* Hero Right Side */
.main .right {
  flex: 1;
  max-width: 37.5rem;
  width: 100%;
  min-height: 18.75rem;
  position: relative;
  border-radius: 2rem;
  aspect-ratio: 16 / 9;
}

.main img.mock {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.125rem;
  display: block;
  box-shadow: 0 0.5rem 1.875rem rgba(12, 40, 40, 0.12);
}

/* Badges */
.badge {
  position: absolute;
  background: #FFFFFF;
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 1.25rem rgba(11, 34, 38, 0.08);
  display: flex;
  gap: 0.625rem;
  align-items: center;
  font-size: 0.8125rem;
  overflow: hidden;
  max-width: 90%;
}

.badge.top {
  max-width: 18.25rem;
  padding: 0.625rem 1.1125rem;
  border-radius: 1.1875rem;
  top: -1.875rem;
  left: 0.875rem;
}

.badge.top img {
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.badge-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.badge-content .name {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0;
  color: #181B32;
}

.badge-content p {
  font-size: 0.75rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
  color: #666680;
  white-space: normal;
}

.badge.middle {
  max-width: 10.5625rem;
  padding: 0.975rem 1.25rem;
  border-radius: 1.3125rem;
  top: 7.125rem;
  right: 0;
}

.badge.middle p {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  color: #1F1F21;

}

.badge.bottom {
  display: block;
  max-width: 21.125rem;
  padding: 0.675rem 1.25rem;
  border-radius: 1.1875rem;
  bottom: -2.075rem;
  left: 21%;
}

.badge.bottom .badge-content {
  font-size: 0.75rem;
  font-weight: 400;
  color: #666680;
}

.badge-bottom-images {
  display: flex;
  padding: 0.3125rem;
}

.badge.bottom .avatar {
  margin-left: -0.475rem;
}

.badge-bottom-images .avatar.count {
  width: 48px;
  background: #EFF7F9;
  border-radius: 50%;
  justify-content: flex-end;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #5FB0C9;
  font-size: 14px;
  font-weight: 700;
}

/* ===========================
   ABOUT SECTION
   =========================== */
#about {
  max-width: 1320px;
  width: 91.6%;
  display: grid;
  grid-template-columns: 42% 58%;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  margin: 5.2% auto;
}

#about img {
  width: 100%;
  height: auto;
  border-radius: 1.125rem;
  display: block;
  aspect-ratio: 4 / 3;

}

#about .about-content {
  max-width: 45.9375rem;
  width: 100%;
  margin: 0 auto;
  padding-bottom: clamp(1.25rem, 5vw, 7.4%);
  padding-right: 1.4rem;
}

#about .about-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1F1F21;
  font-weight: 600;
  margin: 0;
}

#about .about-content p {
  font-size: clamp(0.875rem, 1.3vw, 1.125rem);
  color: #181B32;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  padding-top: 2rem;
}

/* ===========================
   STATS SECTION
   =========================== */
.stats {
  display: flex;
  gap: clamp(0.25rem, 1vw, 0.75rem);
  margin: 0 auto;
  max-width: 1440px;
  width: 100%;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 9.375rem;
  padding: clamp(0.625rem, 1.2vw, 0.875rem);
  text-align: center;
  background: transparent;
  border-right: 1px solid #89898C4D;
}

.stat:last-child {
  border-right: none;
}

.stat h3 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #62B3CC;
}

.stat p {
  margin: 0.375rem 0 0;
  color: #89898C;
  font-weight: 500;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

/* ===========================
   PROJECTS SECTION
   =========================== */
#project {
  max-width: 1320px;
  width: 91.6%;
  margin: 5.2% auto 0 auto
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin: 1.75rem 0 0.75rem;
  font-weight: 600;
  color: #1F1F21;
}

.project-content {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  color: #181B32;
  font-weight: 400;
  text-align: center;
  line-height: 1.8;
  margin-top: 2.8%;
}

/* Carousel */
.carousel-container {
  position: relative;
  margin: 1.375rem 0 0;
}

.carousel {
  display: flex;
  overflow: hidden;
  gap: 1.125rem;
  padding: 0.625rem 0;
  width: 100%;
}

.track {
  max-width: 1320px;
  width: 100%;
  display: flex;
  gap: 1.125rem;
  transition: transform 400ms ease;
  align-items: flex-start;
}

.card {
  width: calc(50% - 0.5625rem);
  min-width: 17.5rem;
  max-width: 40.4375rem;
  background: #2727420F;
  border-radius: 0.875rem;
  padding: 1.125rem;
  flex-shrink: 0;
}

.card p {
  margin: 0 0 0.25rem;
  color: #1F1F21;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 400;
}

.card h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.125rem);

  font-weight: 700;
  color: #1F1F21;
  line-height: 1.2;
  min-height: calc(3 * 1.2em);
}

.card-modal-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

/* Buttons */
.btn-read-more,
.article-btn {
  max-width: 10rem;
  width: 100%;
  height: 2.875rem;
  background: transparent;
  color: #1F1F21;
  border-radius: 624.9375rem;
  border: 1.5px solid #27274224;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s ease;
  margin-top: 2rem;
}

.btn-read-more:hover,
.article-btn:hover {
  border-color: #272742;
}

/* Carousel Controls */
.carousel-controls,
.carousel-controls-modal {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  align-items: center;
}

.carousel-controls {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3.625rem;
}

.ctrl,
.carousel-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 624.9375rem;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  border: 1px solid #D3D3D9;
}

.ctrl svg,
.carousel-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #EFEFF1;
}

.ctrl.active,
.carousel-btn.active {
  background: #62B3CC;
}

.ctrl.active svg {
  color: #EFF0F6;
}

/* ===========================
   MODAL (Shared Styles)
   =========================== */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: flex-start;
  padding: 2.5rem 1.25rem;
  overflow-y: auto;
  z-index: 1000;
}

#project .modal,
#article .modal {
  background: rgba(0, 0, 0, 0.6);

}

.modal.active {
  display: flex;
}

.modal-content {
  max-width: 72.9375rem;
  width: 90%;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #ddd;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: clamp(1.875rem, 5vw, 3.75rem);
  margin: 0 auto;
}

.modal-article-content {
  gap: 0.625rem;
  padding: 2% 3% 10% 3%;
}

/* Modal Header */
.modal-header-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.25rem;
}

.modal-title small {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 400;
  margin: 0 0 0.25rem;
  display: block;
}

.modal-title h2 {
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin: 0.1875rem 0;
}

.modal-date {
  display: flex;
  justify-content: flex-end;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #535353;
  white-space: nowrap;
}

.close-btn {
  font-size: clamp(1.5rem, 3vw, 2rem);
  background: none;
  border: none;
  cursor: pointer;
  color: #424357;
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.2s ease;
}

.close-btn:hover {
  color: #1F1F21;
}

/* Modal Image */
.modal-image {
  display: flex;
  justify-content: center;
  margin: 1.25rem 0;
  width: 100%;
  max-width: 49.4375rem;
  margin: 0 auto;
}

.modal-image img {
  width: 100%;
  max-height: 49.5625rem;
  object-fit: contain;
  border-radius: 0.375rem;
}

.modal-article-image {
  display: flex;
  justify-content: center;
  margin: 1.25rem 0;
  width: 100%;
  max-width: 69.9375rem;
  margin: 0 auto;
}

.modal-article-image img {
  width: 100%;
  max-height: 32rem;
  object-fit: cover;
  border-radius: 0.375rem;
}

/* Modal Text */
.modal-text {
  margin-bottom: 1.25rem;
  line-height: 1.6;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #535353;
  font-weight: 300;
}

/* Gallery Section */
.gallery-section {
  display: flex;
  flex-direction: column;
}

.gallery-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #1F1F21;
  margin-bottom: 1%;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}

.preview {
  width: 100%;
  max-width: 58.4375rem;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.preview img {
  width: 100%;
  height: auto;
  display: block;
}

/* Carousel Wrapper */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

#carousel-modal {
  display: flex;
  gap: 0.75rem;
  transition: transform 0.4s ease;
  overflow: visible;
}

#carousel-modal .thumb {
  flex: 0 0 calc((100% - 2.25rem) / 4);
  height: 150px;
  object-fit: cover;
  min-width: 5rem;
  cursor: pointer;
  border-radius: 0.75rem;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

#carousel-modal .thumb.active {
  opacity: 1;
  outline: 1px solid #D3D3D9;
}

/* Modal Article Carousel */
.modal-article-carousel-wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 1.25rem;
  margin-bottom: 0.625rem;
  position: relative;
}

.modal-article-carousel-wrapper .carousel-controls {
  margin-top: 0.625rem;
}

.modal-article-carousel-wrapper .carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.modal-article-carousel-wrapper .carousel-track {
  display: flex;
  gap: 0.625rem;
  transition: transform 0.3s ease-in-out;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: flex-start;
}

.modal-article-carousel-wrapper .carousel-track li {
  min-width: 45%;
  max-height: 38.0625rem;
  display: flex;
  flex-direction: column;
  background: #f6f8f9;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  padding: 0.625rem;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.modal-article-carousel-wrapper .carousel-track li.expanded-card {
  max-height: none;
  overflow: visible;
}

/* Carousel Article */
.carousel-article {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.carousel-article img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  border-radius: 0.375rem;
  margin-bottom: 0.5rem;
}


.carousel-article h5 {
  height: 2.8rem;
  line-height: 1.4rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.carousel-article p {
  font-size: 0.9rem;
  line-height: 1.4rem;
  margin-bottom: 0.625rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.carousel-article p.expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.carousel-article .article-btn {
  max-width: 11rem;
  background: transparent;
  color: #1F1F21;
  border-radius: 624.9375rem;
  border: 1.5px solid #27274224;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 1% 0;
}

/* ===========================
   ARTICLES SECTION
   =========================== */
.articles {
  position: relative;
  margin: 8.2% auto;
  max-width: 1320px;
  width: 91.6%;
}

.article {
  display: flex;
  max-width: 77.5rem;
  width: 100%;
  gap: 1.125rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e9eef0;
  flex-wrap: wrap;
}

.articles .article.last {
  border: none;
}


.article img {
  max-width: 30.1875rem;
  width: 100%;
  height: 22.0625rem;

  object-fit: cover;
  border-radius: 0.75rem;
}

.article-content {
  flex: 1;
  min-width: 17.5rem;
  display: flex;
  flex-direction: column;
}

.article-content p {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article small {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 400;
  color: #535353;
}

.article h5 {
  margin: 0 0 0.5rem;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #000000;
}

.article p {
  margin: 0;
  color: #535353;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  line-height: 1.5;
}

.article-btn {
  margin-top: auto;
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: #FCFCFC;
  border-top: 0.5px solid #CACACD;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 91.6%;
  max-width: 1320px;
  padding: 3.125rem 0;
  margin: 0 auto;
  gap: 1.25rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-contact-column {
  margin-top: 0.1875rem;
}

.footer-contact-column .contact-info {
  display: flex;
  flex-direction: column;
}

.footer-contact-column .contact-info .phone {
  margin-top: 1.1875rem;
  margin-bottom: 1.25rem;
}

.footer-contact-column .contact-info .phone a,
.footer-contact-column .contact-info .mail a {
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}


.footer-logo {
  font-weight: 700;
  font-size: 1.5rem;
}

.footer-title {
  font-weight: 600;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  margin-bottom: 0.5rem;
  color: #000000;
  line-height: 1;
}

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

.footer-menu li {
  margin-bottom: 0.375rem;
}

.footer-menu a {
  color: #000000;
  text-decoration: none;
  font-size: clamp(1rem, 1.2vw, 1rem);
  font-weight: 400;
  line-height: 1;
  transition: text-decoration 0.2s ease;
}

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

.contact-info {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
}

.contact-info div {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.contact-info .icon {
  display: inline-flex;
  margin-right: 0.5rem;
}

.contact-info img {
  object-fit: contain;
  display: block;
}

.als {
  display: flex;
  justify-content: center;
  gap: 1.5625rem;
  margin-bottom: 0.9375rem;
}

.socials {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}


.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  --size: 44px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background-color: black;
}

.socials a:hover img,
.socials a:hover svg {
  transform: scale(1.1);
}


.webyan.desktop {
  background-color: #000000;
  text-align: center;
  padding: 0.625rem;
  width: 100%;
  margin: 0 auto;
}

.webyan.mobile {
  display: none;
}

.webyan span,
.webyan p {
  color: #FCFCFC;
  font-size: clamp(0.75rem, 1vw, 0.75rem);
  font-weight: 500;
}

.webyan a {
  color: #FCFCFC;
  font-size: clamp(0.6875rem, 1vw, 0.75rem);
  text-decoration: none;
  font-weight: 900;
  transition: opacity 0.2s ease;
}

.webyan a:hover {
  opacity: 0.8;
}

/* ===========================
   DONATE MODAL
   =========================== */
body.modal-open {
  overflow: hidden;
}

body.modal-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: #00000080;
  z-index: 999;
}

#donate-modal {
  top: 9rem;
}

.modal-donate-content {
  width: 90%;
  max-width: 44.0625rem;
  max-height: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.25rem 1rem;
}

.modal-donate-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #0000000D;
  padding-bottom: 0;
  margin-bottom: 0;
}

.donate-table .row:first-child {
  padding: 0 0 1rem 0;
  border-bottom: 1px solid #0000000D;
}

.donate-table .row {
  padding: 0.25rem 0;
}

.modal-donate-title {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 700;
  color: #292B2D;
  margin: 0;
  padding: 0.5rem 0;
}

.modal-donate-close {
  font-size: clamp(1.25rem, 2vw, 1.375rem);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.modal-donate-close img,
.modal-article-content .close-btn img {
  width: 12px;
  height: 12px;
}

.modal-donate-close:hover {
  color: #1F1F21;
}

.donate-table {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: 0.8rem;
  margin-top: 1rem;
  padding-bottom: 1rem;
}

.donate-table .row:first-child .value {
  font-family: "Montserratarm";
  font-weight: 400;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.donate-table .row .value {
  font-family: "Montserrat";
  font-weight: 600;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0.625rem;
}

.label {
  color: #292B2D;
  font-size: clamp(0.875rem, 0.9vw, 0.875rem);
}

.value {
  font-size: clamp(0.875rem, 0.9vw, 0.875rem);
  color: #292B2D;
  word-break: break-all;
}

.value.bold {
  font-weight: 600;
}

.value.link a {
  color: #292B2D;
  font-weight: 600;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.value.link a:hover {
  opacity: 0.8;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;

}

.logo a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  --size: 32px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 2px 6px #0000000F;

}

.logo img {
  display: block;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* -----  1200px  -----      */
@media (max-width: 75em) {
  .header-menu ul {
    gap: 0.75rem;
  }

  .menu-item {
    font-size: 0.875rem;
  }

  .badge.middle {
    top: 7.125rem;

  }
}

/* -----  1024px  -----     */
@media (max-width: 64em) {
  .inner {
    padding: 0 1.25rem;
  }

  .main {
    padding: 5rem 2rem;
    gap: 2rem;
    margin: 12% auto;
  }

  .main .right,
  .main .left {
    max-width: 38.5rem;
  }

  .main .right {
    padding-right: 0;
  }

  .badge.middle {
    top: 6.125rem;
    right: -26px;
  }

  .badge.bottom {
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    min-width: 341px;
  }
}

/* ----- 990px ----- */
@media (max-width:61.875em) {
  .header-inner {
    flex-wrap: wrap;
  }

  .header-logo,
  .right-side {
    order: 1;
    flex: 0 0 auto;
  }

  .header-logo {
    align-self: flex-start;
    margin-left: 2.1875rem;
  }

  .header-menu {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .header-menu::-webkit-scrollbar {
    display: none;
  }

  .header-menu ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 1.25rem;
    min-width: min-content;
    padding: 1.25rem 0.625rem;

  }

  .connect-us-dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-toggle {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    color: inherit;
  }

  .connect-us-dropdown-menu {
    /* fixed positioning handled in JS */
    min-width: 150px;
    max-width: 90vw;
    font-family: inherit;
    color: inherit;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    list-style: none;
    z-index: 1000;

  }
}

/* Tablet - 961px */
@media (max-width: 60.0625em) {
  .container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .header-logo,
  .right-side {
    order: 1;
    flex: 0 0 auto;
  }

  .header-logo {
    align-self: flex-start;
    margin-left: 2.1875rem;
  }

  .main {
    display: block;
  }

  .main .right,
  .main .left {
    max-width: none;
  }

  .main .right {
    margin-top: 8%;
  }

  .badge.top {
    left: 0;
  }

  .badge.middle {
    right: 0
  }

  .badge.bottom {
    right: 0;
    left: auto;
    transform: none;
  }

  .btn-learn-more.about {
    display: none;
  }

  .right-side {
    align-self: flex-end;
  }

  .lang-wrapper {
    margin-right: 0.625rem;
  }

  .header-menu {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .header-menu::-webkit-scrollbar {
    display: none;
  }

  .header-menu ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 1.25rem;
    min-width: min-content;
    padding: 1.25rem 0.625rem;

  }

  .dropdown-toggle {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    color: inherit;
  }

  .connect-us-dropdown-menu {
    /* fixed positioning handled in JS */
    min-width: 150px;
    max-width: 90vw;
    font-family: inherit;
    color: inherit;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    list-style: none;
    z-index: 1000;

  }

  .connect-us-dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: inherit;
    white-space: normal;
    word-break: break-word;
  }

  .connect-us-dropdown .arrow {
    display: inline-flex;
    align-items: center;
    height: 1em;
    line-height: 1;
  }

  .main {
    border-radius: 1.875rem;
    padding: 2.25rem 4.2% 7.2% 2.25rem;
    margin: 15% auto 5%;
    width: 91.6%;
    margin-left: auto;
    margin-right: auto;
  }

  #about,
  #project,
  .articles {
    width: 91.6%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding: 1%;
    scroll-margin-top: calc(var(--header-height) - 5px)
  }

  #about {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "image"
      "text";
    gap: 1.25rem;
    margin: 8.4% auto;

  }

  #about .about-content {
    display: contents;
  }

  #about .about-content h2 {
    grid-area: title;
    margin: 0;
  }

  #about img {
    grid-area: image;
    margin: 0;
  }

  #about .about-content p {
    grid-area: text;
    margin: 0;
  }

  #project .section-title,
  #article .section-title {
    text-align: start;
  }

  .card {
    width: 100%;
    min-width: 17.5rem;
  }

  .article img {
    max-width: none;
  }

  .article-btn {
    margin-top: 1.25rem;
  }

  .footer-grid {
    width: 94.6%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .socials {
    justify-content: start;
  }

}

/* Mobile - 900px */
@media (max-width: 56.25em) {
  :root {
    --header-height: 150px;
  }

  .container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  /* mobile dropdown */
  .connect-us-dropdown-menu {
    position: fixed !important;
    top: auto;
    left: auto;
    width: auto;
  }

  .menu-item.active {
    background-color: var(--highlight-color);
    z-index: 1000;
  }

  .header-inner {
    width: 100%;
  }

  .header-menu {
    position: absolute;
    background: #f6f8f9;
    margin-top: 9.625rem;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  }

  .menu-item.active::after {
    display: none;
  }

  .menu-item.active,
  .connect-us-dropdown .dropdown-toggle.active {
    background: #3A6D7C;
    border: 1px solid #3A6D7C;
    border-radius: 2rem;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.375rem 0.875rem;
  }

  .menu-item,
  .connect-us-dropdown .dropdown-toggle {
    padding-bottom: 0.25rem;
    min-height: 1.2em;
    white-space: nowrap;
  }

  .main {
    margin: 23% auto 0;
  }

  .main .left {
    max-width: 100%;
    width: 100%;
  }

  .main .right {
    max-width: 100%;
    width: 100%;

  }

  .menu-item,
  .connect-us-dropdown .dropdown-toggle {
    border: 1px solid #BEBEDA;
    border-radius: 32px;
    padding: 0.375rem 0.875rem;
    font-size: 14px;
    font-weight: 600;
  }

  .footer-grid {
    grid-template-columns: 0.8fr 1fr 1fr 1.2fr;
  }

  .footer-logo img {
    width: 100%;
  }

  .socials a {
    --size: 40px;
    width: var(--size);
    height: var(--size);

  }
}

/* Tablet - 768px */
@media (max-width: 48em) {
  :root {
    --header-height: 140px;
  }

  .container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .main {
    padding-top: 8%;
    padding-bottom: 10%;
  }

  .main #title {
    font-size: 16px;
    font-weight: 600;
    color: #1F1F21;
  }

  .main .right {
    margin-top: 11%;
  }

  .header {
    width: 100%;
  }

  .header-inner {
    width: 100%;
    min-height: 3.4375rem;
  }

  .header-menu {
    padding-left: 0.625rem;
    margin-top: 8.6875rem;
  }

  .header .top {
    position: absolute;
  }

  .header .top.right {
    right: 0;
  }

  #about,
  #project,
  .main,
  .articles {
    width: 91.6%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  #about {
    padding-top: 5%;
  }


  .btn-learn-more.about {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.875rem;
    width: 91.6%;
  }

  .footer-column {
    margin-bottom: 1.25rem;
  }

  .socials {
    justify-content: flex-start;
    margin-left: 1.2125rem;
    margin-bottom: 1.5625rem;
  }


  .stats {
    flex-wrap: wrap;
  }

  .stat {
    min-width: calc(50% - 0.375rem);
    border-right: 1px solid #89898C4D;
  }

  .stat:nth-child(2n) {
    border-right: none;
  }

  .stat:last-child,
  .stat:nth-last-child(2) {
    border-bottom: none;
  }

  .article {
    flex-direction: column;
    gap: 0.75rem;
  }

  .article img {
    max-width: 100%;
    width: 100%;
  }

  .article-content {
    width: 100%;
    max-width: 100%;
  }

  .modal-article-carousel-wrapper .carousel-track li {
    min-width: 100%;
  }

  #carousel-modal .thumb {
    flex: 0 0 calc((100% - 1.5rem) / 3);
  }

  .carousel-article .article-btn {
    max-width: none;
  }

  .project-content {
    text-align: start;
  }

  .footer-column.socials {
    margin-left: -1.3rem;
  }

  .footer-logo img {
    width: auto;
  }

  .socials {
    display: flex;
    gap: 14px;
  }
}

/* Mobile - 700px */
@media (max-width: 43.75em) {
  .container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .header,
  .main,
  #about,
  #project,
  .articles {
    margin-left: auto;
    margin-right: auto;
  }

  .main {
    border-radius: 1.25rem;
    margin: 26% auto 5%;
  }

  .main #main-title {
    font-size: 3rem;
  }

  .stat {
    padding: 0.75rem 0.5rem;
  }

  .carousel-container {
    margin-bottom: 3.75rem;
  }

  .carousel-controls {
    bottom: -3.125rem;
  }

  .ctrl,
  .carousel-btn {
    width: 3rem;
    height: 3rem;
  }

  .badge.top {
    max-width: 18.25rem;
    padding: 0.625rem 1.1125rem;
  }

  .badge-content .name {
    font-size: 0.75rem;
  }

  .badge-content p {
    font-size: 0.75rem;

  }

  .badge.middle {
    padding: 0.45rem 0.6rem;
    border-radius: 1.3125rem;
    right: 0;
  }

  .badge.middle p {
    font-size: 0.75rem;

  }

  .modal {
    padding: 1.25rem 0.625rem;
  }

  .modal-content {
    width: 99%;
    padding: 1.25rem 0.5625rem;
  }

  .modal-article-content {
    padding: 1.25rem 0.9375rem;
  }

  .gallery-section {
    gap: 0.625rem;
  }

  #carousel-modal .thumb {
    flex: 0 0 calc((100% - 0.75rem) / 2);
    min-width: 6.25rem;
  }

  .modal-article-carousel-wrapper {
    margin-bottom: 3.625rem;
  }

  .webyan.mobile {
    background-color: #000000;
    text-align: center;
    padding: 0.625rem;
    width: 100%;
    margin: 0 auto;
    display: block;
    text-align: start;
    padding-left: 20px;
  }

  .webyan.desktop {
    display: none;
  }

  .webyan.webyan-link {
    font-weight: 900;
  }
}

/* Mobile - 600px */
@media (max-width: 37.5em) {
  .right-side {
    gap: 0.5rem;
  }

  .current-lang {
    font-size: 0.875rem;
  }

  .main {
    margin: 30% auto 5%;
  }

  .badge.top {
    left: 0;
    width: 55%;
  }
}

.badge-bottom-images {
  padding-left: 0.5rem;
}

.badge-bottom-images img {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}


/* Mobile - 480px to 565px */
@media (min-width: 30em) and (max-width: 35.3125em) {
  .main {
    margin: 34% auto 10%;
    padding-bottom: 15%;
  }
}

/* Mobile - 480px */
@media (max-width: 30em) {

  .header-logo {
    min-width: 3.125rem;
  }

  .main {
    margin: 38% auto 12%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
  }

  .main .left {
    margin-top: 5%;
  }

  .main #main-title {
    font-size: 1.5rem;
    font-weight: 700;
  }

  .badge.middle {
    padding: 0.25rem 0.6rem;
  }

  .card h3 {
    min-height: calc(3 * 1.2em);
    font-size: 22px;
  }

  .left .content {
    margin: 0.75rem 0;
  }

  .left .content .line1,
  .left .content .line2,
  .left .content .line3 {
    width: 100%;
  }

  .project-content {
    text-align: start;
  }


  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }

  .footer-column {
    margin-bottom: 0;
  }

  .stat h3 {
    font-size: 2rem;
  }

  .stat p {
    font-size: 1.125rem;
  }

  .main .right {
    margin-top: 20%;
  }

  .badge.top {
    width: 67%;
    top: -2.9375rem;
  }

  .badge.middle {
    top: 5.025rem;
  }

  .badge.bottom {
    bottom: -1%;
    max-width: none;
    min-width: auto;
    width: auto;
    padding: 0.675rem 0.55rem
  }

  .ctrl,
  .carousel-btn {
    width: 2.75rem;
    height: 2.75rem;
  }

  .ctrl svg,
  .carousel-btn svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  #carousel-modal .thumb {
    flex: 0 0 85%;
  }

  .carousel-controls-modal {
    margin-top: 0.9375rem;
  }

  #about .about-content h2,
  #project .section-title,
  #article .section-title {
    font-size: 1.25rem;
  }

  #about .about-content p {
    padding-top: 1rem;
  }

  .donate-table {
    margin-left: 0;
  }

  .donate-table .row:first-child .value {
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .donate-table .row {
    gap: 0.7rem
  }

  #modal-article .modal-title {
    font-size: 16px;
  }

  .footer-menu li {
    margin-bottom: 0.675rem;
  }
}

/* Mobile - 410px */
@media (max-width:25.625em) {
  .main {
    margin: 50% auto 10%;
  }

  .main .right {
    margin-top: 20%;
  }

  .badge.top {
    width: 87%;
  }

}


/* Mobile - 360px */
@media (max-width: 22.5em) {
  .main {
    padding: 15px;
  }

  .main .left {
    margin-top: 10%;
  }

  .main .right {
    margin-top: 28%;
  }

  .badge.top {
    top: -4.0375rem;
    width: 90%;
  }

  .badge.middle {
    top: 4.025rem;
  }

  .main #main-title {
    font-size: 1.5rem;
  }

  .btn-learn-more {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .card {
    padding: 0.9375rem;
  }

  .card h3 {
    font-size: 18px;
  }

  .card-modal-text {
    font-size: 14px;
  }

  .donate-table .row .value,
  .donate-table .row .label {
    font-size: 12px;
  }
}

/* Mobile - 344px */
@media (max-width:21.5em) {
  .badge.bottom {
    width: 94%;
  }

  .main #title {
    font-size: 14px;
  }

  .donate-table .row {
    gap: 0;
  }

  .donate-table .row:first-child {
    gap: 1.2rem;
  }
}


/* Mobile - 300px */
@media(max-width:18.75em) {
  .main #title {
    font-size: 12px;
    font-weight: 500;
  }

  .main .right {
    margin-top: 31%;
  }

  .badge.top {
    top: -3.8375rem;
  }

  .donate-table .row {
    grid-template-columns: 0.9fr 1.1fr;
  }
}