/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  font-family: 'SourGummy';
  background-color: white;
}

@font-face {
  font-family: 'Smythe';
  src: url('../fonts/Smythe-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SourGummy';
  src: url('../fonts/NunitoSans.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


.contact-us-content {
  padding: 50px 20px;
  text-align: center;
  margin-top: 20vh;
  margin-bottom: 10vh;
  background-color: white;
  border-radius: 15px;
}

/* Dropdown Container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Toggle Button */
.dropdown-toggle {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 10px 15px;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
  top: 100%;
  left: 0;
  border-radius: 6px;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

/* Content Styles */
.content {
  padding: 50px 20px;
  text-align: center;
}

/* General Footer Styling */
.footer {
  background-color: #fff0f5;
  color: black;
  padding: 40px 20px;
}

/* Layout for Footer Sections */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  padding: 20px 0;
  margin-top: 5vh;
}

/* Left Section (Logo + Map) */
.footer-left {
  flex: 1;
  min-width: 250px;
  margin: 10px;
}

.footer-logo {
  text-align: center;
  margin: 20px;
}

.footer-logo-img {
  height: 100px;
}

/* Center Section (Quick Links) */
.footer-center {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-center h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: black;
}

/* Right Section (Social Links) */
.footer-right {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-right h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: black;
}

/* Quick Links and Social Links Vertical */
.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Link Styling */
.footer-link {
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #ff9900;
}

/* About Section */
.footer-about {
  max-width: 800px;
  margin: 30px auto;
  font-size: 14px;
  font-weight: lighter;
  color: #666;
  line-height: 1.5;
  text-align: center;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  color: black;
  /* adjust as needed */
}

.footer-bottom .powered-by {
  margin-top: 6px;
  display: inline-block;
  color: black;
}

.footer-bottom .powered-by a {
  color: #0f2f63;
  text-decoration: underline;
}


/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    min-width: 100%;
    margin: 20px 0;
  }
}

/* Modal Styles */
.modal-content {
  display: block;
  overflow: hidden;
  margin: 10% auto;
  background-color: #fff0f5;
  max-width: 400px;
  color: black;
  padding: 20px;
  box-shadow: 0px 16px 16px 0px rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  font-family: 'SourGummy';
}

.txtbox {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid black;
  border-radius: 15px;
}

.txtctr {
  text-align: center;
  font-family: 'Smythe';
  font-size: 2rem;
  color: #333;
}

.sbmt:hover {
  color: #ff9900;
}

/* Button Styles */

.modal-content label {
  margin-right: 15px;
}

.normal-label {
  text-decoration: none;
  /* Removes hyperlink style */
  color: inherit;
  /* Inherits the parent text color */
  cursor: default;
  /* Makes it look like a label */
}

.normal-label:hover {
  text-decoration: none;
  /* Prevents underline on hover */
  color: inherit;
  /* Prevents color change on hover */
}


.error {
  color: red;
  margin-top: 10px;
}


.sbmt {
  background-color: black;
  color: white;
  padding: 10px 20px;
  border: none;
  float: right;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  margin-bottom: 20px;
  font-family: 'SourGummy';
  transition: color 0.3s;
}


.underline {
  width: 100px;
  height: 4px;
  background: red;
  margin: 8px auto 0;
  border-radius: 2px;
}


.hero-title::first-letter,
.text-header h1::first-letter,
.timeline-heading::first-letter,
.testimonials-section h1::first-letter,
.gallery-heading::first-letter,
.txtctr::first-letter {
  color: black;
  font-size: 5rem;
}


.card-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 2dvh;
  flex-wrap: wrap;
}

.card {
  width: 250px;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 15px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.card:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.card-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.card-content {
  padding: 16px;
}

.card-title {
  font-size: 1.3em;
  margin: 10px 0;
  color: #0f2f63;
}

.card-description {
  font-size: 1em;
  color: #777;
  margin-top: 2vh;
}

.choose-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0f2f63;
  padding: 40px 20px;
  margin-bottom: 5%;
  text-align: center;
  flex-wrap: wrap;
  /* Allows wrapping on smaller screens */
}


/* Our Features Section */
.features-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: black;
  /* light green like in the sample image */
  padding: 40px 30px;
  margin-top: 5vh;
  width: 100%;
  border-radius: 0px 0px 20px 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  flex: 1 1 30%;
  gap: 15px;
  min-width: 250px;
}

.feature-img {
  width: 40px;
  height: 40px;
  margin-top: 4px;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-size: 1em;
  font-weight: 600;
  margin: 0;
  color: white;
}

.feature-description {
  font-size: 0.85em;
  color: white;
  margin-top: 5px;
}



/* Responsive Design */
/* Responsive Design */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: #fff0f5;
    text-align: center;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 1;
  }

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

  .modal-content {
    width: 90%;
    padding: 15px;
    margin: 40% auto;
  }

  .card-container {
    display: flex;
    justify-content: space-between;
    /* Ensure two cards per row */
    flex-wrap: wrap;
    gap: 18px;
    /* Adjust gap as needed */
  }

  .card {
    width: 55%;
    /* Adjust to fit two cards per row */
  }

  .card-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }

  .features-container {
    justify-content: center;
  }

  .feature-item {
    width: 100%;
    /* Full width on smaller screens */
    padding: 20px 0;
    margin: 10px 0;
  }

  .feature-img {
    width: 70px;
    /* Smaller image size for mobile */
    height: 70px;
  }

  .feature-title {
    font-size: 1.2em;
  }

  .feature-description {
    font-size: 0.9em;
  }

  .footer-logo-img {
    height: 50px;
    /* Smaller logo size for mobile */
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-center {
    margin-top: 20px;
  }

  .footer {
    margin-top: 10vh;
  }


  .underline {
    width: 100px;
    height: 4px;
    background: red;
    margin: 8px auto 0;
    border-radius: 2px;
  }
}

@media screen and (max-width: 480px) {

  .modal-content {
    width: 90%;
    padding: 15px;
    margin: 40% auto;
  }

  .btn {
    font-size: 0.9em;
  }

  .card-container {
    display: flex;
    justify-content: center;
    /* Ensure two cards per row */
    flex-wrap: wrap;
  }

  .card {
    width: 45%;
    /* Adjust to fit two cards per row */
  }

  .card-content {
    font-size: small;
  }

  .card-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
  }

  .feature-item {
    width: 100%;
    /* Full width for mobile screens */
    text-align: center;
    padding: 20px 0;
    margin: 10px 0;
  }

  .feature-img {
    width: 60px;
    /* Even smaller image for extra small screens */
    height: 60px;
  }

  .feature-title {
    font-size: 1.1em;
  }

  .feature-description {
    font-size: 0.8em;
  }

  .footer {
    margin-top: 10vh;
  }

  .footer-logo-img {
    height: 40px;
    /* Smaller logo size for mobile */
  }

  .footer-logo-text {
    font-size: 20px;
  }

  .footer-link {
    font-size: 14px;
  }

  .underline {
    width: 100px;
    height: 4px;
    background: red;
    margin: 8px auto 0;
    border-radius: 2px;
  }

}

.timeline-heading-container {
  margin-top: 10vh;
  text-align: center;
}

.timeline-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  font-family: 'Smythe';
  padding: 12px;
  margin-bottom: 10vh;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: auto;
}

/* Vertical dotted line */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  border-left: 4px dotted #aaa;
}

.timeline-item {
  position: relative;
  width: 45%;
  margin-bottom: 20px;
  text-align: center;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 55%;
}

.timeline-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid black;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: #ddd;
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-text {
  margin-top: 12px;
}

.timeline-text h3 {
  margin: 8px 0 4px;
  font-size: 1.5em;
  font-family: smythe;
  color: black;
}

.timeline-text p {
  margin: 0;
  color: #666;
  font-size: 0.95em;
}

/* Dots on center line */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 50px;
  width: 20px;
  height: 20px;
  background: #555;
  border: 5px solid #fff;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left::before {
  right: -35px;
}

.timeline-item.right::before {
  left: -35px;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
    height: 100%;
    border-left: 4px dotted #aaa;
  }

  .timeline-item {
    width: 100%;
    padding-left: 10px;
    margin-left: 0;
    text-align: left;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0 !important;
  }

  .timeline-item::before {
    left: 15px !important;
    right: auto !important;
  }

  .timeline-content {
    align-items: center;
    text-align: center;
  }

  .timeline-text h3,
  .timeline-text p {
    text-align: center;
  }


  .circle-image {
    width: 100px;
    height: 100px;
  }
}

.testimonials-section {
  background-color: #fff0f5;
  padding: 40px 20px;
  text-align: center;
  margin-top: 10vh;
  margin-bottom: 10vh;
  border-top: 1px solid #ddd;
}

.testimonials-heading-container {
  text-align: center;
}

.testimonials-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  font-family: 'Smythe';
  padding: 10px;
  margin-bottom: 10vh;
}

.testimonial {
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

.testimonial span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}

.gallery-heading-container {
  margin-top: 10vh;
  text-align: center;
}

.gallery-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  font-family: 'Smythe';
  margin-bottom: 10vh;
}


.gallery-scroll-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 0 20px;
}

/* Scrollable row of 5 images */
.gallery-container {
  display: flex;
  gap: 20px;
  margin: 40px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}



.gallery-container::-webkit-scrollbar {
  height: 8px;
}

.gallery-container::-webkit-scrollbar-track {
  background: #fff0f5;
  border-radius: 8px;
}

.gallery-container::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 8px;
}


.gallery-item {
  flex: 0 0 calc(100% / 5 - 20px);
  scroll-snap-align: start;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.gallery-title {
  margin-top: 20px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 3vh;
  font-family: 'Smythe';
}


.gallery-title::first-letter {
  color: black;
  font-size: 3rem;
}

/* Base dot styles */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  width: 14px;
  height: 14px;
  background-color: #000;
}

/* Hide dots by default */
.carousel-dots {
  display: none;
}

/* Show only on mobile screens */
@media (max-width: 768px) {
  .carousel-dots {
    display: flex;
  }
}




/* Responsive for smaller screens */
@media (max-width: 768px) {
  .gallery-container {
    gap: 20px;
    scrollbar-width: none;
  }

  .gallery-item {
    flex: 0 0 calc(50% - 10px);
  }

  .gallery-title {
    font-size: 1.2rem;
  }

  .gallery-title::first-letter {
    font-size: 2rem;
  }

  .gallery-item img {
    height: 200px;
  }

  .swipe-title {
    display: block;
    font-size: 1.3rem;
    padding: 0 10px;
  }
}

.essential-services {
  padding: 80px 10px;
  margin-top: 5vh;
  background-color: white;
}

.essential-title {
  font-size: 2.5rem;
  color: #333;
  text-align: center;
  font-family: 'Smythe';
  margin-top: 15px;
}

.essential-title::first-letter {
  color: black;
  font-size: 3.5rem;
}

.essential-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.essential-time {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  font-family: 'SourGummy';
  padding: 10px;
  margin-top: 5vh;
}

.essential-description {
  font-size: 1rem;
  font-weight: 700;
  color: #666;
  text-align: center;
  font-family: 'SourGummy';
  padding: 10px;
  margin-bottom: 5vh;
}

.essential-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  display: grid;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid black;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: #ddd;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
  }

  .service-icon {
    width: 150px;
    height: 150px;
  }

  .essential-title {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .service-icon {
    width: 150px;
    height: 150px;
  }

  .service-card {
    padding: 8px;
  }
}

.google-review-section {
  text-align: center;
  padding: 50px 20px;
}

.google-review-heading h1 {
  font-size: 2rem;
  color: #c35e5e;
  margin-bottom: 10px;
}

.google-review-heading p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
}

.google-review-content {
  margin-top: 20px;
}

.google-review-image {
  width: 220px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.google-review-image:hover {
  transform: scale(1.05);
}
