/* Pointers

Headers section
Pill Wrapper Section
About Section
Hamburger menu styles
btn And Color Fonts
Image Grid Section
Navigation Section
Awards Section
Expertise Section
Services Section
Partners Section, Scrolling Animation
Innovations Section
Carousel Card Section
Filipino Banner Section
Footer Section 




*/





/* Headers section */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

.header {
  width: 100vw;
  min-height: 120vh;
  background-image: url("../../assets/index/Hero-BG.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
}

/* Headers section */






/* Pill Wrapper Section */
.pill-wrapper {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50px;
  padding: 20px 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  z-index: 10;
  text-align: center;
}

.pill-wrapper p {
  color: #6c757d;
  font-size: 0.95rem;
}

.pill-wrapper img {
  filter: grayscale(100%);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.pill-wrapper img:hover {
  filter: none;
  opacity: 1;
}

.header {
  position: relative;
  padding-bottom: 10rem;
}



@media (max-width: 576px) {
  .pill-wrapper {
    border-radius: 20px;
    padding: 20px;
    width: 90%;
  }
}
@media (max-width: 576px) {
  .pill-wrapper {
    bottom: -50px;
    padding: 10px 20px;
    flex-direction: column;
    gap: 10px;
  }

  .pill-wrapper p {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .pill-wrapper img {
    max-height: 25px;
  }

  .header {
    padding-bottom: 10rem;
  }
}
/* Pill Wrapper Section */


/* About Section */
.about {
  padding-top: 10rem;
  padding-bottom: 6rem;
  text-align: center;
}

.about h6 {
  font-size: 1rem;
  letter-spacing: 1px;
}

.about h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.about-text {
  max-width: 700px;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto 2rem;
  color: #333;
}

.about-btn {
  font-size: 1rem;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.about-btn:hover {
  transform: translateY(-3px);
  background-color: #198754; /* change if needed */
  color: white;
}

/* Tablet View */
@media (max-width: 992px) {
  .about {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .about h2 {
    font-size: 1.9rem;
  }

  .about-text {
    font-size: 0.95rem;
    max-width: 90%;
  }

  .about-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.6rem;
  }
}

/* Mobile View */
@media (max-width: 576px) {
  .about {
    padding-top: 9rem;
    padding-bottom: 3rem;
  }

  .about h6 {
    font-size: 0.9rem;
  }

  .about h2 {
    font-size: 1.0rem;
  }

  .about-text {
    font-size: 0.8rem;
    max-width: 95%;
  }

  .about-btn {
  font-size: 0.85rem !important;
  padding: 0.5rem 1.3rem !important;
  }

}


@media (max-width: 375px) {
  .about {
    padding-top: 9rem;
    padding-bottom: 3rem;
  }

  .about h6 {
    font-size: 0.9rem;
  }

  .about h2 {
    font-size: 1.0rem;
  }

  .about-text {
    font-size: 0.8rem;
    max-width: 95%;
  }

  .about-btn {
  font-size: 0.65rem !important;
  padding: 0.5rem 1.3rem !important;
  }

  
}
/* End About Section */

/* About Section */


/* Hamburger menu styles */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1000;
}

/* Offcanvas mobile menu */
.offcanvas-header {
  background-color: #04091e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-body {
  background-color: #04091e;
  padding: 20px;
}

.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-links li {
  margin-bottom: 15px;
}

.mobile-menu-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  display: block;
  padding: 10px 0;
  transition: color 0.3s;
}

.mobile-menu-links a:hover {
  color: #bdff6b;
}

.mobile-contact-btn {
  background-color: #f1fdf0;
  color: #000;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  margin-top: 20px;
  width: 100%;
  text-align: center;
  transition: all 0.3s;
}

.mobile-contact-btn:hover {
  background-color: #c6f8bb;
  color: #000;
  box-shadow: 0 0 10px rgba(189, 255, 107, 0.5);
}

.offcanvas-title {
  color: white;
  font-weight: 600;
}

.btn-close {
  filter: invert(1);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .mobile-toggle {
    display: block;
  }

  .nav-links,
  .nav-right {
    display: none;
  }

  nav {
    padding: 20px;
  }

  .text-box h2 {
    font-size: 36px;
  }

  .pill-wrapper {
    border-radius: 25px;
    padding: 10px;
    width: 90%;
  }
}

@media (max-width: 767.98px) {
  .text-box {
    padding-top: 70px;
  }

  .text-box h1 {
    font-size: 22px;
  }

  .text-box h2 {
    font-size: 28px;
  }

  .btn-center .btn {
    display: block;
    margin: 10px auto;
    width: 80%;
    max-width: 280px;
  }
}

@media (max-width: 575.98px) {
  nav img {
    width: 160px;
  }
}

@media (max-width: 767px) {
  .site-footer .text-md-start {
    text-align: center !important;
  }
  .site-footer .social-icons {
    text-align: center;
    margin-top: 15px;
  }
} /* Mobile UI */




/*  btn And Color Fonts */
.text-green {
  color: #bdff6b;
}

.btn-award {
  background-color: #bdff6b;
  color: #07453c;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-award:hover {
  background-color: #c6f8bb;
  box-shadow: 0 0 10px rgba(189, 255, 107, 0.5);
}

.btn-green {
  background-color: #bdff6b;
  color: #000;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-green:hover {
  background-color: #c6f8bb;
  box-shadow: 0 0 10px rgba(189, 255, 107, 0.5);
}

.btn-outline-green {
  border: 2px solid #bdff6b;
  color: #bdff6b;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-white {
  background-color: #bdff6b;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.text-dark-green {
  color: #07453c;
} /* BTN And Color Fonts */

.btn-outline-green:hover {
  background-color: #c6f8bb;
  color: #000;
  box-shadow: 0 0 10px rgba(189, 255, 107, 0.5);
}
/*  btn And Color Fonts */
/* About Section */

/* Image Grid Section */
.lol {
  display: flex;
  justify-content: center;
}

.lol img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .lol {
    padding: 0 15px;
  }

  .lol img {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .lol img {
    width: 100%;
    max-width: 300px;
  }
}
/* Grid Section */

/* Navigation Section */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: relative;
}

nav img {
  width: 200px;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links ul li {
  display: inline-block;
  margin: 0 15px;
}

.nav-links ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links ul li a:hover {
  color: #bdff6b;
}

.nav-right {
  text-align: right;
}

.nav-right .btn {
  background-color: #f1fdf0;
  color: #000;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  transition: all 0.3s ease;
}

.nav-right .btn:hover {
  background-color: #c6f8bb;
  color: #000;
  box-shadow: 0 0 10px rgba(189, 255, 107, 0.5);
}

.text-box h1 {
  font-size: 25px;
  font-weight: 200;
  margin-bottom: 20px;
}

.text-box h2 {
  font-size: 50px;
  font-weight: 400;
}

.btn-center {
  margin-top: 30px;
}
.btn-center-two .btn {
  margin-top: 30px;
}

.btn-center-two .btn {
  background-color: #bdff6b;
  color: #196412;
  padding: 10px 24px;
  margin: 10px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-center-two .btn:hover {
  background-color: #c6f8bb;
  color: #000;
  box-shadow: 0 0 10px rgba(189, 255, 107, 0.5);
}

.btn-center .btn:hover {
  background-color: #c6f8bb;
  color: #000;
  box-shadow: 0 0 10px rgba(189, 255, 107, 0.5);
}

.partners-section {
  background-color: #f8f9fa;
  margin-top: -30px;
  position: relative;
  z-index: 1;
}

.partners-section .container {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding-top: 200;
  padding-bottom: 50px;
}

.grayscale-img {
  filter: grayscale(100%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.grayscale-img:hover {
  opacity: 1;
}

.text-box h4 {
  font-size: 20px;
  font-weight: 30;
  padding: 10px;
}

.text-box h5 {
  font-size: 20px;
  font-weight: 30;
  padding: 30px;
}

.text-box h6 {
  font-size: 50px;
  font-weight: 20;
  padding: 10px;
}

/* Awards Section */
.awards {
  width: 100%;
  min-height: 100vh;
  background: url("../../assets/index/background.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
}

/* Image Container */
.award-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-image {
  width: 95%;
  height: auto;
  max-height: 550px;
  object-fit: cover;
  border-radius: 1.5rem;
  transition: transform 0.4s ease;
}

.award-image:hover {
  transform: scale(1.02);
}

/* Button */
.btn-award {
  background-color: #a4d333;
  color: #145e40;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.7rem 2rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-award:hover {
  background-color: #c6f8bb;
  color: #000;
  transform: translateY(-2px);
}

.award-image-container {
  position: relative;
}

.award-overlay-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  padding: 1rem 1.4rem;
  border-radius: 0.8rem;
  max-width: 80%;
}

.award-overlay-text h2 {
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 600;
  margin: 0;
}

.award-overlay-text h2 span {
  color: #a4d333;
  font-weight: 700;
}

/* Make the image a bit taller */
.award-image {
  max-height: 600px;
}

@media (max-width: 1000px) and (min-width: 600px) {
  .awards .row {
    align-items: center;
  }

  .award-image {
    width: 100%;
    max-height: 380px;
  }

  .awards h2 {
    font-size: 1.7rem;
  }

  .awards p {
    font-size: 0.95rem;
  }

  .btn-award {
    font-size: 0.9rem;
    padding: 0.6rem 1.8rem;
  }
  .award-overlay-text h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 599px) {
  .awards .row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .award-overlay-text {
    bottom: 10px;
    left: 10px;
    padding: 0.8rem 1rem;
  }
  .award-overlay-text h2 {
    font-size: 1rem;
  }

  .awards .col-md-6 {
    flex: 0 0 50%;
    max-width: 80%;
  }

  .award-image {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: cover;
    border-radius: 1rem;
    display: block;
  }

  .awards h4 {
    font-size: 0.7rem;
  }

  .awards h2 {
    font-size: 1rem;
    line-height: 1.4;
  }

  .awards p {
    font-size: 0.85rem;
  }

  .btn-award {
    font-size: 0.75rem;
    padding: 0.5rem 1.4rem;
  }
}

@media (max-width: 360px) {
  .award-image {
    max-height: 220px;
  }

  .awards h2 {
    font-size: 1rem;
  }

  .awards p {
    font-size: 0.8rem;
  }

  .btn-award {
    font-size: 0.8rem;
    padding: 0.45rem 1rem;
  }
}
/* Awards Section */

/* Expertise Section*/
.expertise-card {
  transition: all 0.3s ease;
}

.expertise-card:hover {
  background-color: #e9f9ef !important; /* light green hover */
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 128, 0, 0.2);
}

/* Explore button hover */
.explore-btn {
  transition: all 0.3s ease;
}
.explore-btn:hover {
  background-color: #28a745;
  color: white;
  transform: scale(1.1);
}

/* Responsive Layout */
@media (max-width: 992px) {
  .expertise-section .col-md-6 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .expertise-section h2 {
    font-size: 1.5rem;
  }
  .expertise-section p {
    font-size: 0.95rem;
  }
  .expertise-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .expertise-card {
    width: 90%;
    margin: 0 auto;
  }
  .expertise-section h2 {
    font-size: 1.3rem;
  }
  .expertise-section p {
    font-size: 0.9rem;
  }

  .explore-btn {
    font-size: 1.5rem;
    margin-top: 10px;
  }
  .expertise-card h5 {
    font-size: 1rem;
  }
}
/* Expertise Section*/

/* Services Section*/

.services {
  width: 100%;
  min-height: 100vh;
  background-image: url("../../assets/index/Background_1.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  align-items: center;
}
.service-text h2 {
  font-weight: bold;
  font-size: 30px;
}
.slider-container {
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-slide {
  width: auto !important;
  display: flex;
  justify-content: center;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  padding: 60px;
}

.card-overlay h4 {
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: bolder;
}

.card-overlay p {
  margin-bottom: 15px;
  line-height: 1.5;
  font-weight: lighter;
}

.card-overlay a.btn {
  border-radius: 25px;
}

/* Rounded button */
.btn-rounded {
  border-radius: 50px;
}

/* Hover effect */
.service-card:hover {
  transform: scale(1.02);
}

/* Buttons */
.btn-rounded {
  border-radius: 50px;
}

.service-card {
  width: 420px;
  height: 600px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(65%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.service-card:hover img {
  filter: brightness(50%);
  transform: scale(1.05);
}

@media (min-width: 1025px) {
  .services .row {
    display: flex;
    align-items: center;
  }

  .services .col-md-6:first-child {
    order: 1;
    text-align: left;
  }

  .services .col-md-6:last-child {
    order: 2;
    display: flex;
    justify-content: flex-end;
  }

  .service-card {
    width: 420px;
    height: 600px;
  }
}


@media (max-width: 1024px) and (min-width: 768px) {
  .services .row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
  }

  .services .col-md-6:first-child {
    order: 1;
    text-align: left;
  }

  .services .col-md-6:last-child {
    order: 2;
    display: flex;
    justify-content: flex-end;
  }

  .service-card {
    width: 350px;
    height: 500px;
  }
}
@media (max-width: 767px) {
  .services {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
  }

  .service-text h6 {
    font-size: 10px !important;  
    line-height: 1.25 !important;
  }
  .service-text h2 {
    font-size: 15px !important;    
    line-height: 1.25 !important;
    margin-bottom: 7px !important;
  }
  .service-text p {
    font-size: 0.50rem !important;
  }

  .services .row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
  }

  /* Text on left */
  .services .col-md-6:first-child {
    order: 1;
    width: 55%;
    text-align: left;
    padding: 0 10px;
  }

  /* Card stays to the right side */
  .services .col-md-6:last-child {
    order: 2;
    width: 45%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .service-card {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    max-width: 250px;
    border-radius: 15px;
    overflow: hidden;
  }

  .service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .card-overlay h4 {
    font-size: 0.95rem !important; 
    margin-bottom: 6px !important;
  }
  .card-overlay p {
    font-size: 0.7rem !important; 
    line-height: 1.25 !important;
  }
  .card-overlay a.btn {
    font-size: 0.72rem !important;
    padding: 5px 10px !important;
  }
}

@media (max-width: 480px) {
  .services .row {
    flex-direction: row;
    align-items: flex-start;
  }

  .services .col-md-6:first-child {
    width: 55%;
  }

  .services .col-md-6:last-child {
    width: 45%;
  }

  .service-card {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 3 / 4.5;
  }

  .card-overlay {
    padding: 12px;
  }

  .card-overlay h4 {
    font-size: 0.85rem;
  }

  .card-overlay p {
    font-size: 0.7rem;
  }

  .card-overlay a.btn {
    font-size: 0.5rem;
    padding: 3px 8px;
  }
}


/* Services Card Section*/

/*-- Partners Section, Scrolling Animation --*/
.scroller {
  overflow: hidden;
  position: relative;
}

.scroller[data-animated="true"] {
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller_inner {
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 20s)
    var(--_animation-direction, forwards) linear infinite;
  display: flex;
  width: max-content;
}

.scroller_inner .row {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-item {
  flex-shrink: 0;
  margin: 0 1rem;
}

.partner-item .rounded-pill {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
  .scroller_inner {
    animation-duration: 20s !important;
    gap: 0.5rem;
  }

  .partner-item {
    margin: 0 0.5rem;
  }

  .partner-item img {
    max-height: 25px !important;
  }
}

@media (max-width: 480px) {
  .scroller_inner {
    animation-duration: 40s !important;
  }

  .partner-item img {
    max-height: 20px !important;
  }

  .scroller {
    padding: 0.5rem 0;
  }
}
/*-- Partners Section, Scrolling Animation --*/


/*-- Innovations Section --*/
.innovations {
  padding-top: 10rem;
}

.innovations-text {
  max-width: 700px;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .innovations {
    padding-top: 10rem;
  }

  .innovations-text {
    font-size: 0.95rem;
    max-width: 90%;
  }
}

@media (max-width: 576px) {
  .innovations {
    padding-top: 1rem;
  }

  .innovations h2 {
    font-size: 1.9rem;
  }

   .innovations h6 {
    font-size: 0.85rem;
  }

  .innovations-text {
    font-size: 1.9rem;
    max-width: 95%;
  }

  .innovations p{
    font-size: 0.95rem;
    max-width: 95%;
  }
}
  
@media (max-width: 375px) {
  .innovations {
    padding-top: 1rem;
  }

  .innovations h2 {
   font-size: 1.5rem;
  }
   .innovations h6 {
    font-size: 0.85rem;
  }


  .innovations-text {
    font-size: 0.9rem;
    max-width: 95%;
  }
  
  .innovations p{
    font-size: 0.8rem;
    max-width: 95%;
  }
}

/*-- Innovations Section --*/



/*-- Carousel Card Section --*/
#swiper-2 {
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.carousel-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.carousel-card figure {
  position: relative;
  margin: 0;
  height: 20rem;
  overflow: hidden;
}

.carousel-card img {
  width: 700px !important;
  max-width: 90vw;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
  border-radius: 1.5rem;
  display: block;
}

.carousel-card figcaption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(100%);
  color: #fff;
  font-size: 18px;
  width: 85%;
  text-align: center;
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 2;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.swiper-slide-active figcaption {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.swiper-slide-active img {
  transform: scale(1.05);
}

.swiper-button-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 700px;
  pointer-events: none;
  z-index: 10;
}

.swiper-button-next,
.swiper-button-prev {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  font-size: 10px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  color: #fff;
  font-weight: light;
}

@media (max-width: 768px) {
  .swiper-slide {
    width: 100% !important;
    display: flex;
    justify-content: center;
  }

  .carousel-card figure {
    width: 100%;
    height: auto;
  }

  .carousel-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .carousel-card figcaption {
    font-size: 15px;
    width: 90%;
    text-align: center;
  }

  .swiper-button-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 0.85rem !important;
    font-weight: light;
  }
}

@media (max-width: 600px) {
  .carousel-card img {
    height: 300px; /* Slightly smaller to match proportion */
  }

  .swiper-button-container {
    width: 100%;
    justify-content: space-between;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 0.95rem !important;
    font-weight: light;
  }
  .carousel-card figcaption {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .carousel-card figure {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .carousel-card img {
    width: 100%;
    height: 230px; /* Scales properly with desktop ratio */
    object-fit: cover;
  }

  .carousel-card figcaption {
    font-size: 13px;
    padding: 0 10px;
    text-align: center;
  }

  .swiper-button-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

 .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 0.95rem !important;
    font-weight: light;
  }
}
/*-- Carousel Card Section --*/




/*-- Filipino Banner Section  --*/
.custom-banner {
  min-height: 350px;
  background: radial-gradient(circle at 80% center, #a7d129, #0d5c4f 60%);
  position: relative;
}

.custom-banner::before {
  content: "";
  position: absolute;
  left: 60%;
  top: 0;
  bottom: 0;
  width: 50%;
  background: radial-gradient(
    circle,
    rgba(167, 209, 41, 0.6) 0%,
    transparent 70%
  );
  z-index: 0;
}

.custom-banner * {
  position: relative;
  z-index: 1;
}

.btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #004f44;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  font-size: 1.5rem;
  text-decoration: none;
}

.btn-circle:hover {
  background: #003c33;
  color: white;
}

/*-- Banner Section  --*/





/*-- Footer Section --*/
.site-footer {
  background-color: #004e42;
  padding: 45px 0 20px;
  font-size: 15px;
  line-height: 24px;
  color: #e0e0e0;
}

.bottom-bar {
  background-color: #a8d43d;
  padding: 15px 0;
  font-size: 14px;
  color: #004e42;
}

.site-footer hr {
  border-top-color: #a8d43d;
  opacity: 0.5;
}

.site-footer h6 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 2px;
}

.site-footer a {
  color: #e0e0e0;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #a8d43d;
  text-decoration: none;
}

.footer-links {
  padding-left: 0;
  list-style: none;
}
.footer-links li {
  display: block;
}

.footer-links a {
  color: #e0e0e0;
}

.footer-links a:hover {
  color: #a8d43d;
}

.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.social-icons li {
  display: inline-block;
  margin: 0 5px;
}

.social-icons a {
  background-color: #a8d43d;
  color: #004e42;
  font-size: 16px;
  display: inline-block;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  border-radius: 100%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
  background-color: #a8d43d;
}
/*-- Footer --*/
