/*
Theme Name: Zepoga WP
Theme URI: https://zepoga.com
Author: Ivy Auxilio
Author URI: https://zepoga.com
Description: WordPress theme using Zepoga Design System
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: zepoga
*/

.parallax {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.parallax-text {
  position: absolute;
  font-size: 5em;
  color: #fff;
  /* text-shadow: 2px 2px 4px rgb(0, 0, 0, 0.2); */
  z-index: 3;
}

/* .parallax img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
} */

.sec {
  position: relative;
  background-color: #0c1221;
  padding-bottom: 100px;
  color: white;
  text-align: center;
}

.sec h2 {
  font-size: 3em;
  color: #fff;
  margin-bottom: 10px;
}
.sec p {
  font-size: 1em;
  color: #fff;
}

/* .video {
  position: sticky; 
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
} */

.video-1 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%; /* adjust top focus */
}
.video {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
} */
.video-2 {
  position: relative;
  overflow: hidden;
}

.video-2 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: 50% 80%;
}
.video-1 {
  position: relative;
  overflow: hidden;
}
.video-1 {
  z-index: 2;
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-repeat: no-repeat;
  mask-size: cover;
}

/* .video-2 {
  z-index: 2;
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-repeat: no-repeat;
  mask-size: cover;
} */
.video-1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px; /* longer fade for smoother blend */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    #1d56c3 100% /* deep navy to match water dark */
  );
  pointer-events: none;
  z-index: 2;
}
.video-2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px; /* length of fade */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    #0c1221 100% /* match text section background */
  );
  pointer-events: none;
  z-index: 2;
}
.video-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40vh;
  background: #0c1221;
  background: linear-gradient(
    to top,
    rgba(12, 18, 33, 0) 0%,
    #1d56c3 100% /* solid dark blue */
  );
  pointer-events: none;
  z-index: 2;
}

/* Argon nav link style */
.navbar-nav .nav-link {
  font-weight: 500;
  padding: 10px 15px;
  color: #32325d;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .current-menu-item .nav-link {
  color: #5e72e4; /* Argon blue */
}

/* Dropdown */
.dropdown-menu {
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.375rem;
}

.dropdown-menu .dropdown-item:hover {
  background: #f6f9fc;
  color: #5e72e4;
}
#menu-cta-button-nav {
  display: flex;
  gap: 19px; /* modern way */
}
#menu-cta-button-nav li {
  width: 130px;
  text-align: center;
}
#menu-cta-button-nav li:nth-child(1) a {
  border: 1px solid #a42019;
  padding: 0.5rem 1rem;
  color: #a42019;
}

#menu-cta-button-nav li:nth-child(2) a {
  border: 1px solid #a42019;
  background-color: #a42019;
  padding: 0.5rem 1rem;
  color: #fff;
}

/* Offcanvas */
.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -360px; /* hidden off-screen */
  width: 320px;
  max-width: 90%;
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.18);
  padding: 2rem 1.25rem;
  transition: right 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1060;
  overflow-y: auto;
}

/* visible */
.offcanvas-menu.active {
  right: 0;
}

/* overlay */
.offcanvas-overlay {
  position: fixed;
  inset: 0; /* top:0;right:0;bottom:0;left:0; */
  background: rgba(0, 0, 0, 0.45);
  /* z-index: 1050; */
  opacity: 1;
}

/* prevent body scroll when open */
.offcanvas-open {
  overflow: hidden;
}

/* close button */
.offcanvas-menu .close-btn {
  font-size: 2rem;
  background: none;
  border: none;
  color: #333;
  position: absolute;
  top: 10px;
  right: 12px;
  cursor: pointer;
}

/* stacked navbar items */
.offcanvas-menu .navbar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

/* ensure toggler sits above other elements */
/* .navbar-toggler {
  z-index: 2000;
} */

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
}
.ze-bg {
  background: radial-gradient(circle at top left, #dbeafe, #93c5fd);
}
.po-bg {
  background: radial-gradient(circle at top left, #dbeafe, #008080);
}
.ga-bg {
  background: radial-gradient(circle at top left, #dbeafe, #457a0e);
}

.icon-circle img {
  width: 32px;
  height: 32px;
}

.rotating-section {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: background-color 0.8s ease, color 0.8s ease;
  padding: 40px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.rotating-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.rotating-section p {
  font-size: 1.2rem;
  max-width: 600px;
}

.bold-word {
  font-weight: 700;
}

.rotating-word-wrapper {
  display: inline-block;
  min-width: 8ch; /* reserve space for longest word */
  text-align: left;
}

.bold-word {
  font-weight: 700;
  display: inline-block;
  white-space: nowrap;
}

.feature-section {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
}
.feature-section::before {
  content: "";
  position: absolute;
  inset: 0;

  /* blur the background image */
  backdrop-filter: blur(8px);

  /* black overlay */
  background: rgba(0, 0, 0, 0.65);

  z-index: 1;
}

/* Ensure content stays above overlay */
.feature-section > * {
  position: relative;
  z-index: 2;
}

.feature-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.feature-card {
  background: #fff;
  color: #333;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.feature-card .card-header {
  padding: 16px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.feature-card .card-body {
  padding: 20px;
}

.light-text {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}

.text-60 {
  max-width: 60ch;
}

.features-split {
  padding: 80px 0;
}

.feature-box {
  background: #fff;
  border: 1px dashed;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.icon-circle-feature {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.icon-circle-feature img {
  width: 32px;
  height: 32px;
}
.icon-circle-feature:hover {
  background: #017edd;
}

.feature-box h6 {
  margin: 0;
  font-weight: 600;
}

.zepoga-theme-color {
  background-color: #0b1526 !important;
  color: #fff !important;
}
.zepoga-theme-secondary-color {
  background-color: #017edd !important;
  color: #fff !important;
}

.case-section {
  background: #f2f2f2;
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 60px;
}

/* .case-cards {
  gap: 20px;
} */

.case-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.case-card img {
  /* width: 100%; */
  display: block;
}

.case-card:hover {
  transform: translateY(-6px);
}

.case-content {
  padding: 16px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* Featured (middle) card */
/* .case-card.featured {
  transform: scale(1.05);

  padding-top: 10px;
  z-index: 2;
} */
.logo-gradient-box {
  width: 100%;
  /* max-width: 300px; */
  height: 160px;
  background: linear-gradient(135deg, #0c1221, #314a87);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  /* max-width: 70%; */
  height: auto;
}
.case-card.featured .logo-gradient-box {
  height: 180px; /* ONLY featured card */
}

.case-content {
  padding: 16px;
  text-align: center;
  margin-top: auto;
}
/* image-only version (3rd card) */
.logo-gradient-box.logo-image-only {
  background: none;
  padding: 0;
}

/* make image behave like a thumbnail */
.logo-gradient-box.logo-image-only img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section */
.service-section {
  min-height: 100vh;
  padding: 80px 20px;
  /* background: linear-gradient(180deg, #0b0d3a 0%, #3b63e6 20%, #ffffff 54%); */
  background: linear-gradient(180deg, #0b0d3a 0%, #3b63e6 11%, #ffffff 23%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Header */
.section-title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 60px;
  text-align: left;
}
/* Background image only in the lower area */
.service-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 78%; /* controls how tall the red-highlight area is */

  background-image: url("assets/img/bg-service.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;

  opacity: 0.5;
  z-index: 0;
}

/* Ensure content stays above background */
.service-section .container {
  position: relative;
  z-index: 2;
}
.intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 70px;
}

.intro h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 15px;
}

.intro p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.9;
}

/* Layout */
/* .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
} */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* slightly favor text */
  gap: 30px; /* reduced from 60px */
  justify-content: center;
}
.content-grid-right {
  display: grid;
  grid-template-columns: 1.5fr 1fr; /* slightly favor text */
  gap: 30px; /* reduced from 60px */
  justify-content: center;
}
/* Image */
.image-card img {
  width: 80%;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}
.right-image {
  display: flex;
  justify-content: flex-end;
}
/* Text Content */
.text-content {
  color: #1f2937;
}

.text-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.subtitle {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: #6b7280;
  margin-bottom: 25px;
}

/* Info Boxes */
.info-box {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 13px;
  /* font-weight: 300; */
  line-height: 1.7;
  color: #374151;
  margin-bottom: 15px;
}

.features {
  font-family: "Open Sans", sans-serif;
  max-width: 500px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.feature-list li {
  position: relative;
  /* padding-left: 32px; 
  margin-bottom: 10px;
  font-size: 15px;*/
  font-weight: 400;
  color: #111827;
}

/* Green check icon */
.feature-list li::before {
  content: "✔";
  color: #22c55e;
  font-weight: 700;
  font-size: 16px;
  top: 2px;
  padding-right: 0.5rem;
}

/* Fallback if image is unavailable */
.feature-list li::before {
  background-color: transparent;
}

/* Footer note */
.feature-note {
  font-size: 14px;
  font-weight: 300;
  color: #374151;
  margin-top: 12px;
}
.two-column {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: flex-start;
}

.hero {
  text-align: center;
  margin-bottom: 40px;
}
.hero h1 {
  font-size: 2.5em;
  color: #3d3d3d;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1em;
  color: #555;
}

.features-meeting,
.importance,
.cohesion {
  margin-bottom: 30px;
}

.features-meeting h2,
.importance h2,
.cohesion h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

.feature-meeting-list li::before {
  content: "✔";
  color: #a42019;
  font-weight: 700;
  font-size: 16px;
  top: 2px;
  padding-right: 0.5rem;
}

.features-meeting ul li {
  font-size: 1em;
  margin-bottom: 10px;
}

.features-meeting ul {
  list-style-type: none;
  padding-left: 0;
}

.image-section-meeting img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
}

/* Cohesion section */
.cohesion p {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .case-card.featured {
    transform: none;
  }
}

.width-70 {
  width: 70%;
}
.dark-bg {
  height: 250px;
}
@media (max-width: 768px) {
  .banner-title {
    font-size: 40px;
  }
  .why-zepoga-text {
    padding: 5rem;
    position: relative;
    margin-top: 45rem;
  }
  .dark-bg {
    height: 130vh;
  }
  .feature-section {
    height: 160vh;
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .two-column {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .image-card img {
    width: 100%;
  }
}

/* Hero Section */
.contact-hero {
  min-height: 100vh;
  background: url("assets/img/contact-us.png") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  background: rgba(10, 90, 160, 0.5);
  min-height: 100vh;
  padding: 60px 20px;
}

/* Hero Text */
.hero-text {
  max-width: 1000px;
  margin: 0 auto 40px;
  color: #fff;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.hero-text p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Contact Card */
.contact-card {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 6px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Left Info */
.contact-info h2 {
  margin-bottom: 20px;
  color: #1f2a44;
}

.contact-info p {
  color: #555;
  margin-bottom: 16px;
  line-height: 1.6;
}

.contact-info .info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f4f6fb;
  padding: 15px;
  border-radius: 6px;
  margin-top: 15px;
}

.contact-info .icon {
  font-size: 22px;
  background: radial-gradient(red, transparent);
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

/* Form */
.contact-form {
  background: #f9fbff;
  border-radius: 6px;
  padding: 25px;
}

.contact-form h3 {
  background: #003963;
  color: #fff;
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  margin-bottom: 12px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 90px;
  resize: vertical;
}

.contact-form button {
  background: #017edd;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
}

.contact-form button:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .hero-text {
    text-align: center;
  }
}
