:root {
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Montserrat", sans-serif;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #404041;
  --color-secondary: #37373f;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

* {
  font-family: 'Montserrat';
  box-sizing: border-box;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../font/Montserrat-Light.woff2') format('woff2'),
    url('../font/Montserrat-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Anek Devanagari SemiExpanded';
  src: url('../font/AnekDevanagariSemiExpanded-Bold.woff2') format('woff2'),
    url('../font/AnekDevanagariSemiExpanded-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../font/Montserrat-Medium.woff2') format('woff2'),
    url('../font/Montserrat-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../font/Montserrat-Regular.woff2') format('woff2'),
    url('../font/Montserrat-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../font/Montserrat-SemiBold.woff2') format('woff2'),
    url('../font/Montserrat-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}





/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}



h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
}

/*--------------------------------------------------------------
# WAPA Custom Theme Landing Page Sections
--------------------------------------------------------------*/

/* Welcome Section */
.welcome-section {
  padding-top: 60px;
  padding-bottom: 40px;
}

.welcome-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.35em;
  color: #1c1c1c;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.brand-logo-main {
  /* max-width: 180px; */
  height: auto;
  margin-bottom: 45px;
  transition: transform 0.3s ease;
}

.brand-logo-main:hover {
  transform: scale(1.03);
}

.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  /* font-weight: 600; */
  font-size: 20px;
  letter-spacing: 0.22em;
  color: #1c1c1c;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 15px;
}


/* Video Section */
.video-showcase-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.video-player-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
  overflow: visible;
}

.video-player-container::before {
  content: "";
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: 2%;
  right: 2%;
  background: url('../img/element-video.png') no-repeat center center;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}

.video-frame-wrapper {
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 18px 0;
  line-height: 0;
  z-index: 2;
}

.promo-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}


/* Action Callout Section */
.cta-action-section {
  padding-top: 20px;
  padding-bottom: 50px;
}

.btn-why-wapa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  padding: 10px 60px;
  border-radius: 12px;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: #ffffff !important;
  background: #F78F20;
  background: linear-gradient(130deg, rgba(247, 143, 32, 1) 0%, rgba(176, 30, 88, 1) 25%, rgba(101, 46, 137, 1) 50%, rgba(7, 127, 168, 1) 75%, rgba(136, 197, 93, 1) 100%);
  border: none;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.partners-section {
  padding-top: 20px;
  padding-bottom: 80px;
}

.btn-why-wapa img {
  width: 62px;
  transition: transform 0.3s ease;
}


/* Highlights Title Section */
.highlights-section {
  padding-top: 30px;
  padding-bottom: 50px;
  text-align: center;
}

.highlights-wapa-logo {
  max-width: 100px;
  height: auto;
  margin-bottom: 25px;
}

.highlights-main-title {
  font-family: 'Montserrat', sans-serif;
  /* font-weight: 700; */
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.18em;
  color: #1c1c1c;
  text-transform: uppercase;
  margin-bottom: 0;
}


/* Projects Cards Section */
.projects-section {
  padding-top: 20px;
  padding-bottom: 80px;
}

.project-card-item {
  margin-bottom: 100px;
}

.project-card-item:last-child {
  margin-bottom: 0px;
}

.project-card-media-wrapper {
  position: relative;
  width: 100%;
  border-radius: 28px;
  overflow: visible;
  /* Allows the badge icon to overlap the edge */
  margin-bottom: 20px;
}

.project-card-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05); */
  /* transition: transform 0.5s ease; */
}

/* .project-card-media-wrapper:hover .project-card-img {
  transform: scale(1.015);
} */

/* Badge Icons */
.project-card-badge {
  position: absolute;
  width: 90px;
  z-index: 5;
  /* transition: transform 0.3s ease; */
  /* filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1)); */
}

/* .project-card-badge:hover {
  transform: scale(1.08);
} */

.project-card-badge img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

.project-card-badge.bottom-left {
  bottom: -45px;
  left: 8%;
}

.project-card-badge.bottom-right {
  bottom: -45px;
  right: 8%;
}

/* Caption Text */
.project-card-details {
  padding-top: 15px;
}

.project-card-caption-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1c1c1c;
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.6;
}

.project-card-caption-desc {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #666666;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Alignments */
.text-align-right {
  text-align: right;
  /* padding-right: 2%; */
}

.text-align-left {
  text-align: left;
  /* padding-left: 2%; */
}

@media (max-width: 992px) and (min-width: 769px) {
  .welcome-section {
    padding-top: 40px;
    padding-bottom: 25px;
  }

  .partners-section {
    padding-bottom: 30px;
  }

  .video-showcase-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .cta-action-section {
    padding-top: 15px;
    padding-bottom: 35px;
  }

  .btn-why-wapa {
    /* min-width: 220px; */
    padding: 8px 50px;
    font-size: 16px;
    margin-top: 20px;
  }

  .btn-why-wapa img {
    width: 55px;
  }

  .highlights-section {
    padding-top: 20px;
    padding-bottom: 35px;
  }

  .projects-section {
    padding-top: 15px;
    padding-bottom: 50px;
  }

  .partners-section {
    padding-top: 15px;
    padding-bottom: 30px;
  }

  .project-card-item {
    margin-bottom: 80px;
  }

  .project-card-badge {
    width: 75px;
  }

  .project-card-badge.bottom-left {
    bottom: -22px;
    left: 8%;
  }

  .project-card-badge img {
    width: 65%;
  }

  .project-card-badge.bottom-right {
    bottom: -22px;
    right: 8%;
  }
}

@media (max-width: 768px) {
  .welcome-section {
    padding-top: 30px;
    padding-bottom: 15px;
  }

  .video-showcase-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .cta-action-section {
    padding-top: 10px;
    padding-bottom: 25px;
  }

  .btn-why-wapa {
    /* max-width: 320px; */
    padding: 8px 50px;
    font-size: 14px;
    border-radius: 10px;
    margin-top: 10px;
  }

  .btn-why-wapa img {
    width: 48px;
  }

  .highlights-section {
    padding-top: 15px;
    padding-bottom: 25px;
  }

  .projects-section {
    padding-top: 15px;
    padding-bottom: 40px;
  }

  .partners-section {
    padding-top: 15px;
    padding-bottom: 35px;
  }

  .welcome-label {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .brand-logo-main {
    max-width: 165px;
    margin-bottom: 18px;
  }

  .copy-right {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 20px 0;
  }

  .copy-right p {
    justify-content: center;
  }

  .hero-tagline {
    font-size: 14px;
    letter-spacing: normal;
  }

  .video-player-container {
    border-radius: 18px;
    margin: 15px 0;
  }

  .video-frame-wrapper {
    border-radius: 18px;
  }

  .highlights-main-title {
    font-size: 14px;
    letter-spacing: normal;
    line-height: 1.6;
  }

  .project-card-item {
    margin-bottom: 40px;
  }

  .project-card-media-wrapper {
    border-radius: 18px;
  }

  .project-card-img {
    border-radius: 18px;
  }

  .project-card-badge {
    width: 60px;
  }

  .project-card-badge.bottom-left {
    bottom: -22px;
    left: 8%;
  }

  .project-card-badge.bottom-right {
    bottom: -22px;
    right: 2%;
  }

  .project-card-badge img {
    width: 60%;
  }

  .project-card-caption-title {
    font-size: 14px;
    margin-bottom: 10px;
    /* letter-spacing: 0.12em; */
  }

  .project-card-caption-desc {
    font-size: 12px;
    /* letter-spacing: 0.1em; */
  }

  br {
    display: none;
  }

  .text-align-right,
  .text-align-left {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Proud Development Partners Section Styling */


.partners-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.partners-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.22em;
  color: #1c1c1c;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}

.partners-line {
  flex-grow: 1;
  /* max-width: 250px; */
  height: 2px;
  background: linear-gradient(90deg, rgba(247, 143, 32, 1) 0%, rgba(176, 30, 88, 1) 25%, rgba(101, 46, 137, 1) 50%, rgba(7, 127, 168, 1) 75%, rgba(136, 197, 93, 1) 100%);
}

.partners-logos-grid {
  display: grid;
  gap: 40px 0;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 15px 30px; */
  position: relative;
}

.partner-logo-item img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  opacity: 0.95;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.partner-logo-item img:hover {
  transform: scale(1.05);
}

/* Divider configurations by media query */
@media (min-width: 993px) {
  .partners-logos-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .partner-logo-item:not(:nth-child(4n))::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80px;
    background-color: #4a4a4b;
  }
}

@media (max-width: 992px) and (min-width: 577px) {
  .partners-logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .partner-logo-item img {
    max-height: 70px;
  }

  .partner-logo-item {
    border: 1px solid #4a4a4b;
    padding: 15px 15px;
  }

  .partner-logo-item::after {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .partners-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .partner-logo-item {
    border: 1px solid #4a4a4b;
    padding: 10px 10px;
  }

  .partner-logo-item::after {
    display: none !important;
  }

  .partners-title {
    font-size: 14px;
    letter-spacing: 0.12em;
  }

  .partners-title-container {
    gap: 10px;
  }

  .partners-line {
    max-width: 50px;
  }
}

/* Footer Copyright Styling */
.copy-right {
  position: relative;
  display: flex;
  justify-content: center;
  /* justify-content: space-between; */
  align-items: center;
  flex-wrap: wrap;
  padding: 17px 0 15px 0;
  width: 100%;
}

.copy-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(247, 143, 32, 1) 0%, rgba(176, 30, 88, 1) 25%, rgba(101, 46, 137, 1) 50%, rgba(7, 127, 168, 1) 75%, rgba(136, 197, 93, 1) 100%);
}

.copy-right p {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.copy-right a {
  display: inline-flex;
  align-items: center;
}

.copy-right img {
  /* height: 20px; */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.copy-right img:hover {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Scroll Reveal Animations
--------------------------------------------------------------*/
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional staggered animation delays */
.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}