@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alata&family=Oswald:wght@200..700&display=swap');

* {
  box-sizing: border-box;
}

:root {
      --header-bg: #038da6;
      --link-color: #ffffff;
      --link-hover: #ffffff;
      --link-active: #ffffff;
    }

    body {
      font-family: 'Alata', sans-serif;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
  overflow-x: hidden;
}

    /* global header decorations */
    /* Make header sticky */
    header.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1030;
    }

    .navbar-custom {
      height: 100%;
      background-color: var(--header-bg);
    }

    .navbar-custom .nav-link {
      color: var(--link-color);
      margin-right: 20px;
    }

    .navbar-custom .nav-link:hover,
    .navbar-custom .nav-link.active {
      text-decoration: underline;
      color: var(--link-hover) !important;
    }

    .navbar-nav .nav-item {
        margin: 0 16px; /* or more */
    }

    .navbar-nav .nav-link {
        font-weight: bold;
        font-size: 16px; /* base size */
    }

    /* Increase font-size on large screens and up */
    @media (min-width: 992px) {
    .navbar-nav .nav-link {
        font-size: 18px; /* or 20px for more emphasis */
    }
    }

    .logo-img {
      height: 80px;
    }

    @media (max-width: 991.98px) {
      .navbar-nav {
        flex-direction: column;
      }
    }

    .navbar-toggler {
      border:none !important;
    }

    .navbar-toggler i {
  font-size: 24px;
  color: white !important; /* This works for Font Awesome */
}

.mobile-menu {
  background-color: var(--header-bg);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1030;
}

.mobile-menu .nav-link {
  color: white;
  font-weight: bold;
  padding: 10px 0;
  display: block;
  text-align: right;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
}


    /* Banner section styles*/
    .oswald {
    font-family: 'Oswald', sans-serif;
    }

    .banner-section {
    position: relative;
    }

    .banner-slide {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 5%;
    }

    @media (max-width:1024px){
      .banner-slide {
        background-size: cover !important;
        background-repeat: no-repeat;
        background-position: center;
      }
    }

    /* Desktop Default (applied first) */
/* .banner-slide.slide-1 {
  background-image: url('./assets/images/Desktop_banner1.jpg');
}
.banner-slide.slide-2 {
  background-image: url('./assets/images/Desktop_banner2.jpg');
} */

/* Mobile Override */
/* @media screen and (max-width: 768px) {
  .banner-slide.slide-1 {
    background-image: url('./assets/images/Mobile_banner1.jpg') !important;
    border: 5px solid red;
  }
  .banner-slide.slide-2 {
    background-image: url('./assets/images/Mobile_banner2.jpg') !important;
    border: 5px solid red;
  }
} */

    .banner-content {
    color: #000;
    text-align: right;
    max-width: 500px;
    }

    .banner-content h2 {
    font-family: 'Alata', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    }

    .banner-content h2 span {
    color: #038da6; /* Teal or your theme accent */
    }

    /* Mobile styles */
    /* @media (max-width: 768px) {
    .banner-slide {
        justify-content: center;
        text-align: center;
    }

    .banner-content {
        text-align: center;
    }

    .banner-content h2 {
        font-size: 1.8rem;
    }
    } */

    /* about us section styles */
    .font-alata {
        font-family: 'Alata', sans-serif;
    }

    .text-medium {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .about-us-section h5{
        font-size: 1.5rem;
    }

    .text-justify-custom {
      text-align: justify;
    }

    @media (max-width: 767.98px) {
  .splash-top-left {
    width: 220px !important;
  }

  .splash-bottom-right {
    width: 200px !important;
  }
}


    /* services section styles */
    

    .section-title {
  background-color: #038da5;
  margin: 0 auto;
  max-width: none !important;
  padding: 0 !important;
}



    .service-img {
      width: 100%;
      height: 400px !important;
      object-fit: cover;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      border-radius: 50px !important;
    }

    .service {
      border-radius: 15px;
    }

    .services_container {
  padding: 10px 120px;
}

@media(max-width:425px){
  .services_container {
    padding: 30px;
  }

  .service-img {
      width: 90%;
      height: 400px !important;
      object-fit: cover;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      border-radius: 50px !important;
    }

}
    .more-services-btn {
  width: 50%; /* Mobile default */
  background-color: #038da5;
  border: none;
}

.service p{
  font-size: 20px;
}

/* Desktop & tablets: width 25% */
@media (min-width: 768px) {
  .more-services-btn {
    width: 25%;
  }

  
}

/* Why choose section in home page styles*/
.whyChoose h4 {
  color: #1A00FF !important;
}

.overlay-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Same width as the bottom image */
  height: 100%;
  object-fit: contain; /* or cover depending on how you want it to scale */
  pointer-events: none; /* So it doesn’t block interactions */
}

/*our works section style */
   .section-title {
  background-color: #1B34D7;
  margin: 0 auto;
  max-width: none !important;
  padding: 0 !important;
}



    .work-img {
      width: 100%;
      height: 400px !important;
      object-fit: cover;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      border-radius: 50px !important;
    }

    .work {
      border-radius: 15px;
    }

    .more-works-btn {
  width: 50%; /* Mobile default */
  background-color: #038da5;
  border: none;
}

.work p{
  font-size: 24px;
}

.works_container {
  padding: 10px 120px;
}

@media(max-width:425px){
  .works_container {
    padding: 30px;
  }

  .work-img {
      width: 90%;
      height: 400px !important;
      object-fit: cover;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      border-radius: 50px !important;
    }

}

/* Desktop & tablets: width 25% */
@media (min-width: 768px) {
  .more-works-btn {
    width: 25%;
  }
}


/* contact section styles */
.contact-section {
  font-family: sans-serif;
  padding: 40px;
  background: #fff;
}

.contact-section h3 {
  text-align: center;
  font-size: 30px; /* adjust size as needed */
  margin-bottom: 30px;
  font-weight: bold;
  text-decoration: underline;
}


.contact-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row !important;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Left */
.contact-info {
  background-color: #038da5;
  color: #fff;
  padding: 40px 30px;
  flex: 1 1 350px;
  position: relative;
}

.contact-info h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-info p {
  margin-bottom: 30px;
}



.info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  }

.info-item img {
  width: 20px;
  margin-top: 2px;
}


/* Circles */
.circle-decor {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  width: 150px;
  height: 150px;
  bottom: -40px;
  right: -60px;
  z-index: 0;
}

.circle-decor.small {
  width: 80px;
  height: 80px;
  bottom: 60px;
  right: 20px;
}
/* Tablet/Desktop view */
@media (min-width: 768px) {
  .contact-info,
  .contact-form {
    flex: 1 1 50%;
  }

  .contact-form form {
    padding: 40px;
  }

  .contact-container {
    gap: 0; /* Add this to avoid spacing glitches */
  }
}

.contact-form-layout {
  /* display: flex; */
  flex-direction: column;
  align-items: center; /* center horizontally */
  justify-content: center;
}

/* Make sure form-group doesn't stretch full width on mobile */
.form-group {
  width: 100%;
  max-width: 400px; /* or adjust based on your design */
  margin-bottom: 20px;
}

/* Labels & inputs spacing */
form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

/* Wrap two inputs in a row on desktop */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Each input takes full width by default (mobile) */
.form-row .form-group {
  flex: 1;
}

/* Side-by-side on desktop */
@media (min-width: 768px) {
  .form-row {
    flex-direction: row;
  }

  .form-row .form-group {
    width: 100%;
  }
}
/* Fix contact form width on mobile */
@media (max-width: 767px) {
  .contact-form {
    width: 100%;
    padding: 0 16px;
  }

  .contact-form-layout {
    width: 100%;
  }

  .form-group {
    max-width: 100%; /* Remove 400px cap */
    width: 100%;
  }
}



.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  font-size: 14px;
  background: transparent;
}


/* Remove default placeholder (they're no longer used) */
input::placeholder,
textarea::placeholder {
  display: none;
}


.form-submit {
  display: flex;
  justify-content:center; /* Push button to the right */
  align-items: center;
  margin-top: 20px;
  position: relative;
  width: 100%;
}

.form-submit button {
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.form-submit img {
  position: absolute;
  bottom: -90px;
  right: 0; /* Align below the button on the right */
  transform: translateX(0);
}


.social-icons-wrapper-contact {
    background: #fff;
  border: 2px solid #ffff00;
  padding: 10px 20px;
  border-radius: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 180px;
  margin-top: 80px;
  margin-left: 0; 
  }

  .social-icons-contact {
    display: flex; 
    align-items: center;
    justify-content: center; 
    gap: 15px; /* Adds spacing between icons */
    flex-wrap: wrap;  
  }

  .social-list__items {
    list-style: none;
  }

  .social-list__links-contact {
    color: #000;
    font-size: 18px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .social-list__links-contact:hover {
    transform: translateY(-2px);
  }

  /* Optional: Add specific hover colors for each social platform */
  .social-list__links-contact .fa-twitter:hover {
    color: #1DA1F2;
  }

  .social-list__links-contact .fa-whatsapp:hover {
    color: #25D366;
  }

  .social-list__links-contact .fa-facebook:hover {
    color: #4267B2;
  }

  .social-list__links-contact .fa-linkedin:hover {
    color: #0077b5;
  }

  .social-list__links-contact .fa-instagram:hover {
    color: #E4405F;
  }



/* services page styles */
  .section-title {
  background-color: #038da5;
  margin: 0 auto;
  max-width: none !important;
  padding: 0 !important;
}


.our-services-page h3 {
  text-align: center;
  font-size: 30px; /* adjust size as needed */
  margin-bottom: 30px;
  font-weight: bold;
  padding: 4px 0px;
}


    .service-page-img {
      width: 96%;
      height: 400px !important;
      object-fit: cover;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      border-radius: 50px !important;
    }

    .service-page {
      border-radius: 15px;
    }

    .more-services-page-btn {
  width: 50%; /* Mobile default */
  background-color: #038da5;
  border: none;
}

.service-page p{
  font-size: 20px;
}

/* Desktop & tablets: width 25% */
@media (min-width: 768px) {
  .more-services-page-btn {
    width: 25%;
  }
}



    /* footer styles */
    .custom-footer-bg {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: #023250;
      clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
      z-index: 0;
    }
  .footer-section {
    position: relative;
    background-color: transparent;
    overflow: hidden;
  }

  .footer-section .container {
    position: relative;
    z-index: 2;
  }

  .footer-section p,
  .footer-section li {
    text-align: justify;
  }


  .footer-follow-us {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: flex-end; /* Align items to the right */
    gap: 10px;
  }

  

  .follow-button {
    position: relative;
    background: linear-gradient(to right, #ff6b6b, #7c3aed);
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
  }

  /* Speech bubble pointer */
  .follow-button:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    font-size: large;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #7c3aed;
  }

  .social-icons-wrapper {
    background: #fff;
    border:2px solid #ffff00;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-left: 50px;
  }

  .social-icons {
    display: flex; 
    align-items: center;
    justify-content: center; 
    gap: 15px; /* Adds spacing between icons */
    flex-wrap: wrap;  
  }

  .social-list__items {
    list-style: none;
  }

  .social-list__links {
    color: #000;
    font-size: 18px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .social-list__links:hover {
    transform: translateY(-2px);
  }

  /* Optional: Add specific hover colors for each social platform */
  .social-list__links .fa-twitter:hover {
    color: #1DA1F2;
  }

  .social-list__links .fa-whatsapp:hover {
    color: #25D366;
  }

  .social-list__links .fa-facebook:hover {
    color: #4267B2;
  }

  .social-list__links .fa-linkedin:hover {
    color: #0077b5;
  }

  .social-list__links .fa-instagram:hover {
    color: #E4405F;
  }

  @media (max-width: 768px) {
    .footer-section .col-12 {
      text-align: left !important;
    }

    .footer-section .row {
      margin-bottom: 10px; /* Reduce spacing between rows */
    }

    .footer-follow-us {
      align-items: flex-start !important; /* Align to left */
      justify-content: flex-start !important;
      margin-left: 0 !important;
    }

    .social-icons-wrapper {
      margin-left: 0 !important;
    }

    .footer-section p,
    .footer-section li {
      text-align: justify;
      margin-bottom: 6px; /* Reduce bottom spacing on paragraphs and list items */
    }

    .footer-section h6 {
      margin-top: 1rem !important; /* Slightly less top margin */
      margin-bottom: 0.75rem !important;
    }
  }

  /* appointment div styles */
  .text-justify-customized {
      text-align: center;
    }