/* Base Styles */
:root {
  --primary-color: #8a0da6;
  --primary-text-color: #21242a;
  /* --primary-color: rgb(216, 111, 207); */
}

body {
  background-color: transparent;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  padding-top: 30px;
}


a {
  /* color: #03DAC6; */
  color:  var(--primary-color);
  text-decoration: none;
}

p {
  color: #666;
}

.site {
  color: var(--primary-text-color);
}

a:hover {
  color: var(--primary-color);
}

h1, h2, h3, ul{
  color: var(--primary-text-color);
}


.site-header {
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: none;
}
.site-footer {
  background-color: var(--primary-color, #8000b3);
  color: white;
  padding: 40px 0;
}

.site-footer p {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: white;
}


.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-col ul {
  color: white;
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  color: white;
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
}


.footer-col ul li a:hover {
  text-decoration: underline;
}


.header-flex {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  z-index: 1000;
  padding: 20px 0 0 0;
  box-sizing: border-box;
}

.header-flex.scrolled {
  background: var(--primary-color);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.main-nav {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #1e2528;
  font-weight: 500;
}
.main-nav a:active {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
}
.main-nav a:hover {
  color: var(--primary-color);
}
.main-nav.scrolled li a {
  color: #fff;
}
.main-nav.scrolled li a:hover {
  border-bottom: 2px solid #fff;
}
.main-nav li a:hover {
  border-bottom: 2px solid var(--primary-color);
}

.header-buttons {
  gap: 10px;
  justify-content: baseline;
  margin-top: -15px;
}

.btn-header {
  background-color: var(--primary-color);
  color: #fff;
  padding: 5px 15px;
  border-color: white;
  border-width: 2;
  border-radius: 20px;
  text-decoration: none;
  margin-left: 10px;
}
.btn-header:hover {
  background-color: white;
  color: var(--primary-color);
  padding: 5px 15px;
  border-color: var(--primary-color);
  border-width: 2;
  border-radius: 20px;
  text-decoration: none;
  margin-left: 10px;
}

.language-switch {
  margin-right: 10px;
  cursor: pointer;
  color: #fff;
}

.lang-en .filipino-content {
  display: none;
}

.lang-fil .english-content {
  display: none;
}

/* Hero Section */
.hero-split {
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: transparent;
  flex-wrap: wrap;
  padding: 50px 100px 0; /* Remove side padding */
  margin: 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.container h1 p{
  color: var(--primary-text-color);
}

.hero-text {
  max-width: 600px;
}

.hero-text .subheading {
  font-size: 18px;
  font-weight: bolder;
  line-height: 24px;
  color: var(--primary-color);
  margin-bottom: 1em;
}

.hero-text h1 {
  color: #1e2528;
  margin: 2px 0 15px;
  font-size: 60px;
  font-weight: bolder;
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: 1em;
  color: #444;
}

.cta-btn {
  display: inline-block;
  background-color: #0073e6;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

/* Hero Image */
.hero-image {
  position: fixed;
  top: 0;
  right: 100px;
  width: 50%;
  max-width: 1400px;
  z-index: -1;
  text-align: right;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Logo */
.logo-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e2528;
  text-decoration: none;
  vertical-align: middle;
}

.logo-link.scrolled {
  color: #fff;
}

.logo-link img {
  margin-right: 8px;
  transition: filter 0.3s ease;
}

.logo-link.scrolled img {
  filter: brightness(0) saturate(100%) invert(31%) sepia(96%) saturate(4641%) hue-rotate(356deg) brightness(95%) contrast(107%);
}

.logo-img {
  height: 40px;
  vertical-align: middle;
  margin-right: 10px;
}

.site-logo {
  display: flex;
  align-items: center;
  margin-top: -10px;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .header-flex {
    padding: 20px 50px 0;
  }

  .hero-split {
    padding: 50px 50px 0;
  }

  .hero-image {
    right: 50px;
  }
}

@media screen and (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }
/* 
  .main-nav {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  } */

  .hero-split {
    flex-direction: column;
    padding: 50px 20px 0;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-image {
    position: relative;
    right: 0;
    top: 20px;
    width: 80vw;
    max-width: 300px;
    margin-top: 20px;
    z-index: 0;
  }

  .hero-text {
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .header-flex {
    padding: 10px 15px;
  }

  .btn-header {
    padding: 6px 12px;
    font-size: 0.9rem;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-image {
    width: 90vw;
  }
}
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1001;
}

.burger-menu span {
  height: 3px;
  width: 100%;
  background-color: #1e2528;
  border-radius: 2px;
  transition: 0.3s ease;
}

@media screen and (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    gap: 15px;
    background-color: var(--primary-color); /* Default transparent */
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    color: #fff;
  }
  .header-buttons {
    width: 100%;
  }
  .header-buttons.scrolled {
    border-color: white;
    border-radius: 20px;
    border-width: 2px;
  }

}

.download-buttons{
  margin-top: 20px;
}

.services-intro, .how-it-works {
  padding: 50px 20px;
  text-align: center;
  background-color: white;
  color: #000000;
}

.services-intro h2, .how-it-works h2 {
  font-size: 2em;
  margin-bottom: 15px;
  color: black;
}

.btn-more-services {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.btn-more-services:hover {
  color: white;
  background-color: #bc56e7;
}


.steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.step h3 p {
  font-size: 1.3em;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    justify-content: space-between;
  }

  .step {
    width: 22%;
    text-align: left;
  }
}

.btn-rapidoo {
  margin-top: 20px;
  padding: 20px 100px;
  background-color: var(--primary-color, #8000b3);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.btn-rapidoo:hover {
  background-color: #5e008a; /* slightly darker */
  color: #fff;
}

html {
    scroll-behavior: smooth;
  }
.services-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    background-color: #f8f8f8;
    padding: 20px;
    border-bottom: 2px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-top: 20px;
  }

  .services-nav a {
    text-decoration: none;
    color: var(--primary-color, #8000b3);
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }

  .services-nav a:hover {
    background-color: rgba(128, 0, 179, 0.1);
    /* color: white; */
  }

  section {
    padding: 80px 20px;
    border-bottom: 1px solid #eee;
    /* max-width: 800px; */
    margin: auto;
  }

  section h2 {
    color: var(--primary-color, #8000b3);
  }

  section p {
    color:  #000000;
  }

  
.about-split {
  width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: transparent;
  flex-wrap: wrap;
  padding: 50px 100px 0; /* Remove side padding */
  margin: 0;
}
.about-text {
  max-width: 1500px;
}
.about-text h1 {
  color: var(--primary-color);
  margin: 2px 0 15px;
  font-weight: bolder;
}
.about-text h2, h3, h4 ,h5 {
  color: var(--primary-color);
  margin: 2px 0 15px;
}

.about-text p {
  margin-bottom: 1em;
  color: #444;
}
.about-content {
  width: 100vw; /* full width of the viewport */
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  background-color: white;
  color: #000000;
  margin: 0;
  box-sizing: border-box;
}


.about-image {
  position: fixed;
  top: 0;
  right: 100px;
  width: 50%;
  max-width: 1400px;
  z-index: -1;
  text-align: right;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  display: inline-block;
  filter: invert(1); /* Optional: turns icon white if they’re black SVGs */
  transition: opacity 0.3s ease;
}

.social-icons img:hover {
  opacity: 0.7;
}

/* FAQ CSS */
.faq-section {
  background-color: #fff;
  color: #000;
  padding: 60px 20px;
  margin: 0 auto;
  max-width: 1200px;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  color: var(--primary-color, #8a0da6);
}

.faq-contents {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.faq-title {
  color: var(--primary-color);
  font-weight: bolder;
  margin-left: 100px;
}

.faq-group {
  display: none;
}
.faq-tabs {
  display: flex;
  align-items: center;
  gap: 10px; /* Optional: space between buttons */
  margin: 20px 100px; /* Optional: spacing around the tab row */
}

.faq-tab {
  padding: 10px 50px;
  margin-right: 5px;
  background-color: #f1f1f1;
  border: 1px solid var(--primary-color);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  color: var(--primary-color);
}

.faq-tab:hover {
  background-color: var(--primary-color);  /* Purple */
  color: #fff;
}

/* Active tab style */
.faq-tab.active {
  color: var(--primary-color);
  border: 3px solid var(--primary-color);  /* Darker purple */
}
.faq-tab.active:hover {
  color: #fff;
  border: 3px solid #fff;
}


.faq-column {
  flex: 1 1 45%;
  min-width: 300px;
}

.faq-item {
  background-color: #f9f9f9;
  border-left: 5px solid var(--primary-color, #8a0da6);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  color: #222;
}
.faq-item h1 {
  color: var(--primary-color);
}

.faq-item h4 span {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #222;
}

.faq-item p {
  margin: 0;
  color: #444;
}

/* Responsive fix */
@media (max-width: 768px) {
  .faq-contents {
    flex-direction: column;
  }

  .faq-column {
    width: 100%;
  }
}

hr {
  border: none;
  height: 2px;
  background-color: #7a1ea1;
  width: 100%;
  margin: 0 0 40px;
}

/* LEFTY */
.lefty_container {
  display: flex;
  align-items: center;
  background: #fff;
  box-shadow: 0 0 30px rgba(0,0,0,0.05);
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  border: 5px solid #e0e0e0;
  border-left: none;
  border-top: none;
}

.lefty_image-box {
  flex: 1;
  padding: 10px;
}

.lefty_image-box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  /* filter: drop-shadow(0px 0px 12px grey); */
}

.lefty_text-box {
  flex: 1;
  padding: 20px 30px;
}

.lefty_text-box h2 {
  color: #8000aa;
  font-size: 28px;
  margin-bottom: 20px;
}

.lefty_text-box p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .lefty_container {
    flex-direction: column;
  }

  .lefty_text-box {
    padding: 20px 10px;
  }
}

/* MISSION VISION BOX */
.about-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.text-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box {
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

.info-box h4 {
  margin-bottom: 10px;
  color: #4a00e0; /* Optional: Accent color */
}

.info-box p {
  margin: 0;
  line-height: 1.6;
}

.image-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* ABOUT US */
.about_container {
      display: flex;
      flex-wrap: wrap;
      padding: 40px;
      align-items: center;
      justify-content: center;
      background-color: #f9f9f9;
    }

    .about_image-section {
      position: relative;
      flex: 1 1 40%;
      max-width: 500px;
      margin-right: 40px;
    }

    .about_image-section::before {
      content: "";
      position: absolute;
      top: -20px;
      left: -20px;
      width: 100%;
      height: 100%;
      border: 20px solid purple;
      z-index: 0;
    }

    .about_image-section img {
      width: 100%;
      height: auto;
      position: relative;
      z-index: 1;
    }

    .about_content-section {
      flex: 1 1 50%;
      max-width: 600px;
    }

    .about_content-section h2 {
      font-size: 2em;
      margin-bottom: 10px;
    }

    .about_content-section p {
      margin-bottom: 30px;
      line-height: 1.6;
      font-size: 1rem;
      color: #555;
    }

    @media screen and (max-width: 768px) {
      .about_container {
        flex-direction: column;
        padding: 20px;
      }

      .about_image-section {
        margin-right: 0;
        margin-bottom: 30px;
      }
    }

/* Blog Posting */
/* General Blog Container */
.blog-container,
.single-post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  font-family: Arial, sans-serif;
}

/* Titles */
.blog-title,
.post-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Blog Post Box */
.blog-post {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ddd;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

/* Thumbnails */
.post-thumbnail img,
.post-thumbnail img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* Titles and Meta */
.post-title a {
  font-size: 1.5rem;
  color: #333;
  text-decoration: none;
}

.post-title a:hover {
  color: #0073aa;
}

.post-meta {
  font-size: 0.9rem;
  color: #777;
  margin-top: 0.3rem;
}

/* Excerpt & Read More */
.post-excerpt {
  margin-top: 1rem;
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  margin-top: 0.5rem;
  color: #0073aa;
  text-decoration: none;
  font-weight: bold;
}

.read-more:hover {
  text-decoration: underline;
}

/* Post Content */
.post-content {
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 2rem;
}
.post-content p, span {
  color: #000;
}

/* Tags */
.post-tags {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #555;
}

/* Navigation Links */
.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  font-size: 0.9rem;
}

.post-navigation a {
  color: #0073aa;
  text-decoration: none;
}

.post-navigation a:hover {
  text-decoration: underline;
}

/* Pagination */
.pagination {
  text-align: center;
  margin-top: 3rem;
}

.pagination a {
  color: #0073aa;
  margin: 0 0.5rem;
  text-decoration: none;
}

.pagination .current {
  font-weight: bold;
}

/* Comments */
.comments-wrapper {
  margin-top: 4rem;
  border-top: 1px solid #eee;
  padding-top: 2rem;
}

.comments-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.comment-list {
  list-style: none;
  padding: 0;
}

.comment {
  margin-bottom: 1.5rem;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 1rem;
  color: #000;
}

.comment-author {
  font-weight: bold;
}

.comment-metadata {
  font-size: 0.8rem;
  color: #666;
}

.comment-content {
  margin-top: 0.5rem;
}

.comment-form {
  margin-top: 2rem;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.comment-form input[type="submit"] {
  background: #0073aa;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  margin-top: 1rem;
  cursor: pointer;
  font-weight: bold;
}

.comment-form input[type="submit"]:hover {
  background: #005e8b;
}

.manual-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 20px;
}

.manual-thumbs a {
  display: inline-block;
}

.featured-image-slider {
  max-width: 900px;
  margin: 20px auto;
  padding: 10px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.extra-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Optional: style arrows and dots */
.swiper-button-next, .swiper-button-prev {
  color: #555;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  padding: 6px;
  width: 35px;
  height: 35px;
  top: 40%;
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #333;
}


.extra-thumb:hover {
  transform: scale(1.05);
}

.no-thumbs-msg {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
}

.featured-image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.featured-image-row .extra-thumb {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.featured-image-row .extra-thumb:hover {
  transform: scale(1.03);
}

.thumb-group {
  margin-bottom: 15px;
}
.thumb-preview {
  display: block;
  margin-top: 5px;
  max-width: 100%;
  border-radius: 4px;
}

.swiper-container {
  max-width: 100%;
  margin-bottom: 1rem;
}
.swiper-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

#submitBtn:disabled {
  background-color: #ccc !important;
  color: #666 !important;
  cursor: not-allowed;
}





