/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Body styles */
body {
  font-family: Arial, sans-serif;
  padding-top: 70px; /* Adjusted for navbar */
  min-height: 100vh;

  background: #E3F2FD;
}



/* Ensure the download-section is using flexbox for layout */
.download-section .container {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;  /* Ensures space between the two main sections */
  align-items: center;             /* Centers items vertically */
}

/* Left Section: Ensuring text and download buttons are aligned properly */
.download-section .col-lg-6.text-center.text-lg-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Container for download buttons */
.download-section {
  /*display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;  /* Adds some space between the buttons */
  margin-top: 70px;
}

@media (max-width: 480px), (max-width: 460px) {
  .custom-margin-top {
    position: relative;
    padding: 8px;
    gap: 8px;
    display: flex; /* Add flex for alignment if needed */
    justify-content: center; /* Optional: Centers the buttons */
    top: 40px;
  }
  .download-section .container {
    top: 40px;
  }

  
}

@media (max-width: 768px) {
  .download-section {
    /*max-width: 280px;  Limits the width of the container */
    width: 100%; /* Ensures the container takes full width */
    height: auto; /* Keeps the aspect ratio of the image correct */
  }
}

.store-appp, .google-play {
  background-color: #fff;
  display: flex;
  left: 0;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, filter 0.3s ease;
  text-decoration: none;
  color: #000;
}

/* Style for images inside the buttons */
.google-play img, .store-appp img {
  max-width: 150px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover effect: zoom in and brighten the image */
.google-play:hover img, .store-appp:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Right Section: Ensure image is properly aligned and responsive */
.static-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;  /* Add some space above the image */
}

@media (max-width: 768px) {
  .static-image-container {
    position: relative;
    margin-top: 40px;  /* No margin-top to avoid extra space above the image */
  }
}

@media (max-width: 480px), (max-width: 460px) {
  .static-image-container {
    position: relative;
    margin-top: 30px;  /* No margin-top to avoid extra space above the image */
    max-width: 180px;  /* Adjust the width of the container */
    display: flex;
    justify-content: center;
  }

  .static-image-container img {
    width: 100%;  /* Make sure it scales with the container */
    max-width: 180px;  /* Limit the max-width for mobile screens */
    object-fit: contain;
    margin-top: 0;  /* No margin-top to avoid extra space above the image */
  }
}

.static-image-container img {
  width: 100%;  /* Make sure it scales with the container */
  max-width: 300px;  /* Increase the max-width for a larger image */
  object-fit: contain;
  margin-top: 0;  /* No margin-top to avoid extra space above the image */
  padding-top: 20px;  /* Optional: padding to add more space above */
}

/* Mobile Responsiveness: Stack buttons and adjust image sizes */
@media (max-width: 768px) {
  .download-section .container {
    flex-direction: column;  /* Stack the left and right sections */
  }

  .static-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .download-buttons {
    justify-content: center;
    gap: 10px;  /* Reduce space between buttons */
  }

  .google-play img, .store-app img {
    max-width: 120px;
  }

  .static-image-container img {
    max-width: 200px;
  }
}

@media (max-width: 480px), (max-width: 460px) {
  .download-buttons {
    flex-direction: column;  /* Stack buttons vertically */
    gap: 10px;
  }

  .google-play img, .store-app img {
    max-width: 150px;
  }
}

.step {
  background-color: rgb(255, 215, 32);
  display: flex;
 
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, filter 0.3s ease;
  text-decoration: none;
  color: #000;
}


/* Flexbox for row */
.row {
  display: flex;
  justify-content: center;     /* Centers items horizontally */
  align-items: center;         /* Centers items vertically */
  flex-wrap: wrap;              /* Allows wrapping for smaller screens */
}

/* Ensure .col-12 is centered */
.col-12 {
  display: flex;
  justify-content: center;     /* Center the content horizontally */
  align-items: center;         /* Center vertically */
  margin-bottom: 20px;         /* Space below items */
}

/* Mobile banking call-to-action section */
.mobile-banking-cta {
  margin-top: 100px;
  background-color: #ffffff;
  padding: 50px 0;
  text-align: center;
}

.mobile-banking-cta img {
  width: 100%;
  height: auto;
  border: none;
  background-color: transparent;
  box-shadow: none;
}

.mobile-banking-cta .logo {
  display: block;
  margin: 20px auto 0;
}

/* Call-to-action content */
.cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  margin-right: 0 auto;
}

.mobile-banking-cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.mobile-banking-cta p {
  font-size: 18px;
  margin-bottom: 20px;
}

.mobile-banking-cta img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Para sa buong carousel */
.product-slideshow {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Para sa container ng carousel */
.product-slideshow .container {
  max-width: 900px; /* Lagyan ng max width */
  width: 100%;
  margin: 0 auto; /* Center horizontally */
}

/* Para sa images mismo */
.product-slideshow img {
  display: block;
  margin: 0 auto; /* Center horizontally */
  max-width: 100%;
  height: auto;
  object-fit: contain; /* Para hindi ma-stretch */
}



/* Responsive Fix */
@media (max-width: 768px) {
  .product-slideshow img {
    max-width: 100%; /* Para hindi lumampas sa screen */
    transform: none; /* Alisin ang translateX para hindi lumihis */
  }
}



/* Carousel styles */
.carousel-inner {
  width: 100%;
  height: 100%;
}

.carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.carousel-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  max-width: 600px;
  margin-top: 20px;
}

.carousel-caption h5 {
  font-size: 24px;
  margin-bottom: 10px;
}

.carousel-caption p {
  font-size: 16px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Custom container for centered content */
.custom-container {
  width: 50%;
  max-width: 100%;
  min-height: 60px;
  padding: 15px;
  border-radius: 10px;
  background-color: #3a3838;
  box-sizing: border-box;
  margin: 0 auto;
}

/* Button image styling */
.app-button img {
  width: 200px;
  height: 50px;
  transition: transform 0.3s ease;
}

/* Google Play Button Image */
.google-play img {
  width: 180px;
  max-width: 240px;
  height: auto;
}

/* Hover effects for the buttons */
.app-button img:hover,
.play-store img:hover,
.app-store img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .custom-container {
    padding: 15px;
  }

  .app-button img {
    width: 150px;
    height: 40px;
  }

  .col-12 {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .download-buttons a img {
    width: 150px;
    height: auto;
  }

  .download-buttons .app-store img {
    margin-top: 0;
    max-width: 150px;
  }

  .download-section h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .download-section p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .app-button img {
    max-width: 130px;
  }

  .google-play img {
    width: 120px;
    max-width: 200px;
  }

  

  .static-image-container img {
    max-width: 180px;
  }
}

/* Accordion item styles */
/* Accordion container (optional, used for organizing) */

.accordion-container {
  width: 90%;
  margin: 20px auto;
  padding: 20px;
}

.accordion-head-title {
  font-size: 55px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.accordion-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left; /* Make sure titles are aligned to the left */
}

.accordion {
  width: 100%; /* Make the accordion take up full width */
}

/* Accordion item styles (no margin or border) */
.accordion-item {
  margin: 0; /* Remove any margin between items */
  border: none; /* Remove border */
}

/* Accordion header styles */
.accordion-header {
  background-color: #f1f1f1; /* Light grey background */
  padding: 10px; /* Adjust padding */
  padding-left: 50px; /* Add left padding to shift the content slightly to the right */
  text-align: left;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
  border-radius: 0; /* No rounded corners */
  border: none; /* Ensure no border */
  box-shadow: none; /* Ensure no shadow */
  position: relative; /* Position relative for arrow placement */
}


/* Accordion header hover effect */
.accordion-header:hover {
  background-color: #e0e0e0; /* Slightly darker grey on hover */
}

/* Accordion content styles */
.accordion-content {
  padding: 10px; /* Adjust padding for content */
  display: block;
  background-color: #f9f9f9;
  overflow: hidden;
  opacity: 0; /* Start invisible */
  max-height: 0; /* Start with no height */
  transform: translateY(-20px); /* Start from above */
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Accordion arrow styles */
.arrow {
  font-size: 20px;
  transition: transform 0.3s;
  position: absolute; /* Fix the arrow's position */
  right: 15px; /* Move the arrow slightly to the left (adjust as needed) */
  top: 50%;
  transform: translateY(-50%); /* Center the arrow vertically */
}

@media (max-width: 480px) {
  .arrow {
    font-size: 14px;
    right: 10px; /* Binago ito mula 290px */
  }
}

/* Active state: Opened accordion item */
.accordion-item.open .accordion-content {
  opacity: 1;
  max-height: 500px; /* Adjust as necessary */
  transform: translateY(0);
}


/* To ensure consistency of height across all accordion sections, add a min-height to make them uniform */
.accordion-item {
  
  margin-bottom: 10px;
}

/* Rotate arrow when accordion item is opened */
.accordion-item.open .arrow {
  transform: rotate(90deg);
}

/* Responsive styles for smaller screens (smartphones) */
@media (max-width: 768px) {
  /* Adjust padding and font size for smaller screens */
  .accordion-header {
    padding: 8px; /* Less padding for smaller devices */
    font-size: 14px; /* Smaller font size */
  }

  .accordion-content {
    padding: 8px; /* Less padding for content */
    font-size: 14px; /* Smaller font size for content */
  }

  /* Reduce the arrow size on smaller screens */
  .arrow {
    font-size: 16px; /* Smaller arrow */
  }
  
  /* If you want accordion to be stacked on mobile devices */
  .accordion {
    margin-top: 10px;
    width: 100%; /* Make sure the accordion takes up the full width on mobile */
  }
}

/* Additional styles for extra small screens (phones in portrait mode) */
@media (max-width: 480px) {
  .accordion-header {
    padding: 6px; /* Even smaller padding */
    font-size: 12px; /* Smaller font size */
    padding-left: 50px; /* Add left padding to shift the content slightly to the right */
  }

  .accordion-content {
    padding: 6px; /* Less padding for content */
    font-size: 12px; /* Smaller font size for content */
  }

  .arrow {
    font-size: 14px; /* Smaller arrow */
    right: 290px; /* Move the arrow slightly to the left (adjust as needed) */
  }

  /* Further adjustment for mobile layout */
  .accordion-item {
    margin-bottom: 0; /* Make sure there's no space between items */
  }
}

/* Base Styles for the Footer */
.site-footer {
  background: 
    url('#16.png'),  /* Add the URL of your image here */
    linear-gradient(to right, #ffffff 0%, #ffd700 70%, #ffffff 100%); /* Gradient from white to gold and back to white */
  background-size: cover;  /* Ensures the image covers the entire footer */
  background-position: center;  /* Centers the image */
  background-repeat: no-repeat; /* Ensures the image doesn't repeat */
  color: #fff;  /* White text */
  padding: 50px 0;
  font-family: 'Arial', sans-serif;
}

.list-unstyled {
  color: black;
}

.footer-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000; /* Gold color for headings */
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-align: center; /* Centering the titles */
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd; /* Lighter text for description */
}

.footer-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #FFD700; /* Hover effect for links */
}

.social-icons .social-icon {
  font-size: 1.5rem;
  color: #fff;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-icons .social-icon:hover {
  color: #FFD700; /* Hover effect for social icons */
}

.footer-images .footer-img {
  width: 100%;
  max-width: 100%;
  margin-bottom: 15px;
  transition: transform 0.3s ease-in-out;
  object-fit: contain; /* Ensures logos maintain aspect ratio */
}

.footer-images .footer-img-link:hover .footer-img {
  transform: scale(1.1); /* Slight zoom effect on hover */
}

.footer-bottom {
  background: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-bottom .copyright {
  margin: 0;
  font-weight: 300;
}

.gold-line {
  border-top: 5px solid #FFD700;
}

/* Hover effects for "Quick Links" */
.quick-link:hover {
  color: #FFD700; /* Gold color for links */
}

/* Mobile-Friendly */
@media (max-width: 768px) {
  .site-footer .row {
    flex-direction: column;
    align-items: center;
  }

  .footer-heading {
    text-align: center; /* Ensures titles are centered */
  }

  .footer-link {
    text-align: center;
    display: block;
    margin-bottom: 10px;
  }

  .social-icons {
    justify-content: center;
    margin-bottom: 20px;
  }

  .footer-images .footer-img {
    max-width: 80%; /* Limit the size on small screens */
    margin: 10px auto; /* Center align the images */
  }
}

/* Default: Itago muna ang menu */
.menu {
  display: none;
  flex-direction: column;
  list-style-type: none;
  position: absolute;
  top: 60px;
  left: 0;
  background: rgb(125, 126, 58);
  width: 100%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  overflow-y: auto; /* Para may scroll kung mahaba */
  z-index: 1000; /* Para hindi matakpan */
}

/* Show menu when checkbox is checked */
#menu-toggle:checked ~ .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 60px;
  left: 0;
  right: 0;
}

/* Menu items spacing */
.menu > li {
  margin: 1rem;
}

/* Always show menu button */
.menu-button-container {
  display: flex;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Hide default checkbox */
#menu-toggle {
  display: none;
}

/* Hamburger lines */
.menu-button,
.menu-button::before,
.menu-button::after {
  background-color: #0d0303;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

/* Toggle animation */
#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

/* ======= Responsive Fixes for All Screen Sizes ======= */

/* Mobile screens (460px and up) */
@media (max-width: 900px) {
  .menu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    overflow-y: auto; /* May scroll kung mahaba */
  }

  #menu-toggle:checked ~ .menu {
    display: flex;
    flex-direction: column; /* Para dropdown */
    top: 60px;
    left: 0;
    right: 0;
  }


  .menu-button-container {
    display: flex;
  }

  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #222;
  }

  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}

/* Desktop (Large Screens 1024px and up) */
@media (min-width: 1024px) {
  .menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    width: 250px; /* Mas maliit sa large screens */
    background: rgb(125, 126, 58);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

  .menu-button-container {
    display: flex; /* Hamburger button visible */
  }

  #menu-toggle:checked ~ .menu {
    display: flex;
    flex-direction: column; /* Para dropdown */
    top: 60px;
    left: 0;
    right: 0;
  }
}

/* Even Larger Screens (2K Resolution and up) */
@media (min-width: 2000px) {
  .menu {
    display: none;
    flex-direction: column;
    top: 60px;
    left: 0;
    right: 0;
  }

  #menu-toggle:checked ~ .menu {
    display: flex;
    flex-direction: column;
    top: 60px;
    left: 0;
    right: 0;
  }
}

/* Full-screen menu */
.wrapped {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(106, 106, 106, 0.95);
  display: flex;
  transition: left 0.6s ease-in-out;
}
/* Left Panel (Menu) */
.menu-panel {
  width: 40%;
  background: black;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
  height: 100vh; /* Full height */
  overflow-y: auto; /* Enable scrolling */
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  font-style: bold;
}

.menu-panel::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari */
}





.menu-panel ul li a {
  font-size: 18px; /* Set font size directly to menu items */
  font-family: 'Poppins', sans-serif; /* Use Poppins font */

  
}

@media (max-width: 480px) {
  .menu-panel ul li a {
    font-size: 14px; /* Adjust font size for smaller screens */
    width: 50%; /* Adjust width for better spacing */
    left: -15px; /* Adjust position */
    padding: 0; /* Remove padding */
  }
}

/* Add gold background on hover for menu links */
.menu-panel ul li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: white;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Gold highlight on hover with visible text */
.menu-panel ul li a:hover {
  background: gold;
  color: black !important; /* Ensures the text stays visible */
  border-radius: 5px;
}



/* Right Panel (Content) */
.content-panel {
  width: 55%; /* Bawasan mula 70% para mas balanse */
  padding: 10px; /* Bawasan padding para mas compact */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .content-panel {
    width: 40%; /* Full width for smaller screens */
    font-size: 10px; /* Adjust font size for smaller screens */
  }
}

/* Hide all content sections initially */
.content-section {
  display: none;
  font-size: 18px;
  text-align: center;
}

/* Show active content */
.content-section.active {
  display: block;
}

/* Make right panel links behave like buttons */
.content-section a {
  display: block; /* Make full line clickable */
  padding: 10px;
  text-decoration: none;
  color: white; /* Default text color */
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Gold background on hover */
.content-section a:hover {
  background: gold;
  color: black; /* Better contrast */
}

/* Menu List */
.menu-panel ul {
  list-style: none;
  padding: 0;
  text-align: center;
  font-size: 18px;
}

.menu-panel ul li {
  margin: 6px 0;
}

.menu-panel ul li a {
  text-decoration: none;
  font-size: 18px;
  color: white;
  padding: 10px;
  display: block;
  transition: color 0.3s ease-in-out;
}

/* Gold Hover Effect */
.menu-panel ul li a:hover {
  color: gold;
  transition: color 0.3s ease-in-out;
}


/* Show menu when checkbox is checked */
#active:checked ~ .wrapped {
  left: 0;
}

.custom-button:hover {
  background: white;
  color: black;
}

/* Hamburger Button */
.menu-btnn {
  position: fixed;
  
  right: 80px;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  cursor: pointer;
  z-index: 2001; /* Ensures it's above menu */
  
}

@media (max-width: 480px) {
  .menu-btnn {
    right: 20px; /* Adjust position for smaller screens */
  }
}
  

/* Hamburger Icon Lines */
.menu-btnn span,
.menu-btnn:before,
.menu-btnn:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background: gold;
  transition: transform 0.6s ease-in-out;
}

/* Top Line */
.menu-btnn:before {
  transform: translateY(-10px);
}

/* Bottom Line */
.menu-btnn:after {
  transform: translateY(10px);
}

/* Animate Hamburger Button into an "X" when clicked */
#active:checked + .menu-btnn span {
  opacity: 0;
}

#active:checked + .menu-btnn:before {
  transform: rotate(45deg);
}

#active:checked + .menu-btnn:after {
  transform: rotate(-45deg);
}

/* Centered Menu Links */
.wrapped ul {
  list-style: none;
  text-align: center;
  padding: 0;
}

.wrapped ul li {
  margin: 20px 0;
}

.wrapped ul li a {
  text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    padding: 5px 30px;
    color: white; /* Default text color */
    border-radius: 50px;
    position: relative;
    line-height: 50px;
    margin: 5px 30px;
    opacity: 1;
    transition: all 0.3s ease;
}

/* Gold Hover Effect */
.wrapped ul li a:hover {
  color: gold; /* Change text to gold on hover */
  transition: color 0.3s ease-in-out;
}

/* Dropdown Menu Items */
.dropdown1-menu1 li a {
  color: white; /* Default color */
  font-size: 18px;
  text-decoration: none;
}

/* Gold Hover Effect for Dropdown */
.dropdown1-menu1 li a:hover {
  color: gold;
}

/* Fade in menu items when active */
#active:checked ~ .wrapped ul li a {
  opacity: 1;
  transition-delay: 0.3s;
}

/* Hide checkbox */
input[type="checkbox"] {
  display: none;
}


/* Parent menu item */
.has-dropdown1 {
  position: relative;
  list-style: none;
}

/* Dropdown menu (hidden by default) */
.dropdown1-menu1 {
  display: none;
    position: absolute;
    top: 100%; /* Show below the "Services" link */
    left: 0;
    background: black;
    list-style: none;
    padding: 10px;
    border-radius: 5px;
    min-width: 150px;
    z-index: 1000; /* Ensure it's above everything */
}

/* Show dropdown on hover */
.dropdown1:hover .dropdown1-menu1 {
  display: block;
}

/* Dropdown menu items */
.dropdown1-menu1 li {
  padding: 10px;
  text-align: left;
}

/* Links inside dropdown */
.dropdown1-menu1 li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

/* Show dropdown on hover */
.has-dropdown1:hover .dropdown1-menu1 {
  display: block;
}

.logo2 {
  top:-10px;
  width: 70%;
}

/* Social Media Icons (Horizontal Layout) */
.social-iconss {
  display: flex;
  justify-content: center; /* Center horizontally */
  gap: 8px; /* Spacing between icons */
  padding-bottom: 20px;
  width: 30%; /* Make sure it stretches across */
}

.social-iconss img {
  width: 30px; /* Adjust icon size */
  transition: opacity 0.3s ease-in-out;
}

.social-iconss img:hover {
  opacity: 0.7;
}

#cardd img {
  width: 250px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px px; /* Mas maliit na size ng logo */
  height: auto; /* Para hindi ma-distort */
}

.steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.step {
  width: 220px !important;
  transition: transform 0.3s ease;
}
.step:hover {
  transform: scale(1.3);
}
.step img {
  width: 100% !important;
  height: auto;
}