@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
  scroll-behavior: smooth;
}

/* Overrides */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}


/* Main Wrapper */
.main-wrapper {
  padding: 0;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-color: #f1f8fc;
  background: url(images/3dbg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}


/* Header Styling */
header {
  margin: 0;
  padding: 10px 0; /* Adjusted padding for better spacing */
  position: fixed;
  z-index: 10;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Background color for visibility */
  display: flex;
  justify-content: center; /* Center the container horizontally */
}

/* Header Container */
header .container {
  display: flex;
  justify-content: space-between; /* Distribute space between logo and links */
  align-items: center;
  width: 100%; /* Ensure it spans the full width */
  box-sizing: border-box; /* Include padding and border in width calculation */
  padding: 0 3rem; /* Padding to match .container's previous padding */

}

/* Logo Styling */
header .container .logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none; /* Ensure no underline if using an anchor tag */
}

/* Logo Text */
header .container .logo h3 {
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 700;
  color: white;
  text-shadow: 1px 1px 2px rgba(5, 0, 0, 1);
}

/* Logo Image */
header .container .logo img {
  width: 40px;
  margin-right: 0.6rem;
  clip-path: circle(50%);
}

/* Navigation Links Styling */
header .container .links {
  display: flex; /* Ensure links are in a row */
  margin-left: auto; /* Push links to the right side */
}

header .container .links ul {
  display: flex;
  list-style: none;
  align-items: center;
  margin: 0; /* Reset margin */
  padding: 0; /* Reset padding */
}

header .container .links li {
  margin-left: 4rem;
  background-color:transparent;
}

header .container .links a {
  display: inline-block;
  color: white;
  text-decoration: none; /* Ensure no underline */
}

header .container .links a:hover {
  transform: scale(1.09);
}

#contact-btn{
  display: inline-block;
  padding: .9rem 1.2rem;
  background-color: #6667aa;
  border-radius: 50px;
  text-transform: capitalize;
  text-align: center;
}

/* Overlay Styling */
.overlay {
  display: none; /* Hide if not used in the layout */
}



@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

section {
  padding: 6rem 2rem;
  min-height: 100vh;
  animation: fade-bottom 1s ease-in;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  min-height: 100vh;
}

section .title {
  font-size: 2rem;
}




.burger-menu {
  width: 2rem;
  height: 2rem;
  background-color: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 99;
  display: none;
}

.burger-menu .bar {
  position: relative;
  width: 100%;
  height: 3px;
  background: white;
  transition: 0.5s;
}

.bar::before,
.bar::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before {
  transform: translateY(-8px);
}

.bar::after {
  transform: translateY(8px);
}

.main-wrapper.active .burger-menu .bar {
  background-color: transparent;
}

.main-wrapper.active .bar::before {
  transform: translateY(0) rotate(-45deg);
}

.main-wrapper.active .bar::after {
  transform: translateY(0) rotate(45deg);
}

.btn {
  display: inline-block;
  padding: .9rem 1.2rem;
  color: #fff !important;
  background-color: #6667aa;
  border-radius: 50px;
  text-transform: capitalize;
  text-align: center;
}

.btn:hover {
  background-color: #fff !important;
  color: #6667aa !important;
  transform: scale(1) !important;
}

.hero .content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.content .title {
  color: white;
  text-shadow: 1px 1px 2px rgba(5, 0, 0, 1);
}

.content .subtext {
  line-height: 2;
  margin-top: 24px;
  margin-bottom: 24px;
  color: white;
  text-shadow: 1px 1px 2px rgba(5, 0, 0, 1);
}

.text {
  color: white;
  text-shadow: 1px 1px 2px rgba(5, 0, 0, 1);
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.contact-content>div.reach{
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Services */

.services-container {
  padding: 2em;
}

.service-header {
  font-size: 2.5rem;
  margin-bottom: 40px;
  margin-top: 40px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-title {
  font-size: 1.25rem;
  margin-top: 8px;
  margin-bottom: 8px;
}

.service-description {
  margin-top: 10px;
  width: 300px;
}

.service-image {
  height: 250px;
  width: 250px;
  border-radius: 16px;
}

.service-price{
  background: #6667aa;
  /* clip-path: circle(100%); */
  border-radius: 50%;
  position: absolute;
  left: 25px;
  top: 15px;
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.price-varying{
  font-weight: 500;
  font-size: 10px;
  margin-right: 10px;
}

.price-fee::before{
  content : "₱ ";
}
.price-fee{
  font-weight: 800;
  color: #fff;
}

.book-appointment-wrapper{
  margin-top: 20px;
}

.about-us-content{
  white-space: pre-wrap;
  width: 100%;
  text-align:center;
}


.service-checkbox-container {
    display: flex;
    flex-wrap: wrap;
}

.service-checkbox {
    flex-basis: 50%; /* Set to 50% for two columns */
    box-sizing: border-box; /* Include padding and border in the width */
    padding-right: 10px; /* Adjust as needed for spacing between columns */
    color:	#6667AB;
    margin-bottom:5px;
}

.service-checkbox input[type="checkbox"] {
    display: none; /* Hide the default checkbox */
}

.service-checkbox label {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 2px solid #fff; /* Border color */
    border-radius: 5px; /* Rounded corners */
    background-color: #ecf0f1; /* Background color */
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth transition */
}

.service-checkbox input[type="checkbox"]:checked + label {
  background-color: #3498db; /* Background for checked state */
  color: #fff; /* Text color for checked state */
}

.service-checkbox input[type="checkbox"]:not(:checked) + label {
  background-color: #ecf0f1; /* Background for unchecked state */
  color: #6667AB; /* Text color for unchecked state */
}

/*.service-checkbox label:hover {*/
/*  background-color: #6667AB; */
/*  color: #fff; */
/*}*/



@media screen and (max-width: 992px) {
    
    header {
        background-color: transparent; 
        border-radius: 0; 
    }

  .contact-content {
    grid-template-columns: repeat(1, 1fr);
  }

  .hero .content {
    grid-template-columns: 1fr;
  }

  .burger-menu {
    display: flex;
  }

  .links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background-color: #6667aa;
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.5s;
  }

  .links ul {
    flex-direction: column;
  }

  .links a {
    color: #fff;
    margin-left: 0;
    padding: 2rem 0;
  }
  

  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
  }

  .main-wrapper.active .links {
    transform: translateX(0);
    box-shadow: 0 0 50px 2px rgba(0, 0, 0, 0.4);
  }

  .main-wrapper.active .overlay {
    pointer-events: all;
    opacity: 1;
  }

  .content .title {
    text-align: center;
  }

  .content .subtext {
    font-size: .75rem;
  }

  .content .cta {
    width: 100%;
  }

  .content .cta a {
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
  }

  section {
    padding: 1rem;
  }


  .services {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* helpers */

.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: end;
}

.justify-start {
  justify-content: start;
}

.align-right {
  text-align: right;
}

.align-left {
  text-align: left
}

.align-center {
  text-align: center;
}

.align-justify {
  text-align: justify;
}

.bg-red {
  background-color: #8c3f3f;
}

.bg-green {
  background-color: #688c3f;
}

.bg-yellow {
  background-color: #96912a;
}

.text-facebook{
  color: #3B5998;
}

.text-facebook a:visited{
  color: #3B5998;
}

.text-white {
  color: white;
}

.action-btns>button {
  border: none;
  border-radius: 8px;
  padding: 5px;
  width: 80px;
  cursor: pointer;
}

.form-horizontal{
  display: flex;
  flex-direction: column;
  padding: 8px;
}

.form-item{
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

.form-item input, .form-item select, .form-item textarea{
  height: 32px;
  border-radius: 4px;
  border: none;
  padding: 8px;
}

.form-item input:focus, .form-item select:focus, .form-item textarea:focus{
  outline: none !important;
}

/* Services Section */
@media (max-width: 768px) {
  .services-container {
    padding: 1em;
  }

  .services {
    grid-template-columns: repeat(2, 1fr);
  }

  .service {
    width: 100%;
    margin: 0 auto;
  }

  .service-image {
    height: 200px;
    width: 200px;
  }

  .service-description {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .services {
    grid-template-columns: 1fr;
  }

  .service-image {
    height: 150px;
    width: 150px;
  }

  .service-description {
    width: 100%;
    font-size: 0.9rem;
  }

  .service-title {
    font-size: 1rem;
  }
}

/* Contact Section and nav menu*/
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .form-horizontal {
    width: 100%;
    padding: 1em;
  }

  .form-item {
    margin-bottom: 1em;
  }

  .form-item label {
    display: block;
    margin-bottom: 0.5em;
  }

  .form-item input,
  .form-item textarea,
  .form-item select {
    width: 100%;
    box-sizing: border-box;
  }

  .reach {
    flex-direction: column;
    align-items: center;
  }

  .reach iframe {
    width: 100%;
    height: auto;
  }

  .text {
    font-size: 0.9rem;
  }
  
    header .container {
    justify-content: space-between; /* Space between logo and hamburger menu */
    padding: 0 1rem; /* Adjust padding for smaller screens */
  }

  header .container .burger-menu {
    display: flex; /* Show hamburger menu on smaller screens */
    flex-direction: column; /* Stack bars vertically */
    align-items: center; /* Center bars horizontally */
  }
  
  .links ul li a:hover{
      background-color:transparent;
  }
  
}

@media (max-width: 480px) {
  .form-item input,
  .form-item textarea,
  .form-item select {
    font-size: 0.9rem;
  }

  .text {
    font-size: 0.8rem;
  }

  .btn {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
}

