/* General Styles */
body {
  font-family: 'Exo 2', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #000;
  scroll-behavior: smooth; /* Smooth scrolling for anchor links */
  text-align: center; /* Ensure text is centered by default */
  background-color: #fff0f5; /* Light pink background */
}

h1, h2, h3 {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.cta-button {
  display: inline-block;
  background-color: #ff69b4; /* Hot pink */
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(255, 105, 180, 0.3); /* Pink shadow */
}

.cta-button:hover {
  background-color: #ff85c1; /* Lighter pink */
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(255, 105, 180, 0.4);
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: center; /* Center the entire navbar content horizontally */
  align-items: center; /* Center the logo and tabs vertically */
  padding: 20px;
  background-color: #ffe4e1; /* Light pink */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  top: 0;
  z-index: 1000;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center; /* Center the tabs horizontally */
  align-items: center; /* Center the tabs vertically */
  margin: 0;
  padding: 0;
  gap: 20px; /* Add spacing between tabs */
}

.nav-links li {
  display: inline-block;
}

.nav-links li a {
  font-weight: bold;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  padding: 10px 15px; /* Add padding for better clickability */
  transition: color 0.3s ease, background-color 0.3s ease;
  display: flex; /* Flexbox for centering text */
  justify-content: center; /* Center text horizontally */
  align-items: center; /* Center text vertically */
  height: 20px; /* Set a consistent height */
  border-radius: 5px; /* Optional: Add rounded corners */
}

.nav-links li a:hover {
  color: #ff69b4;
  background-color: #ffe4e1; /* Light pink hover effect */
}

/* Prevent Tabs from Falling Off the Page */
/* Default Navigation (Desktop) */
.nav-links {
  display: flex; /* Normal navigation for larger screens */
  list-style: none;
  gap: 20px;
}

.hamburger-menu {
  display: none; /* Hide hamburger menu on larger screens */
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%; /* Full width of the screen */
    height: 0; /* Initially hidden */
    overflow: hidden; /* Prevent content from overflowing */
    background-color: #f8f9fa;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: height 0.3s ease; /* Smooth transition for height */
  }

  .nav-links.active {
    height: auto; /* Automatically adjust height based on content */
  }

  .nav-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .nav-links li {
    width: 100%; /* Make each tab span the full width */
  }

  .nav-links li a {
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    width: 500px; /* Make the button span the full width */
    padding: 15px 0; /* Add vertical padding for better clickability */
    color: #333;
    font-weight: bold;
    text-decoration: none;
    text-align: center; /* Ensure text alignment */
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .nav-links li a:hover {
    background-color: #ff69b4; /* Highlight background on hover */
    color: #fff; /* Change text color on hover */
  }

  .hamburger-menu {
    display: flex; /* Show hamburger menu on mobile */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    right: 20px; /* Move it 20px from the right edge */
  }

  .hamburger-menu span {
    display: block;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    width: 100%;
  }

  .hamburger-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px); /* Adjusted translate values */
  }
  
  .hamburger-menu.open span:nth-child(2) {
    opacity: 0; /* Hide the middle line */
  }
  
  .hamburger-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px); /* Adjusted translate values */
  }
}

/* Logo Styling */
.logo img {
  height: 55px; /* Adjust the height of the logo */
  width: auto; /* Maintain aspect ratio */
  display: block; /* Prevent inline spacing issues */
  margin-right: 30px; /* Add spacing between the logo and tabs */
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #ff69b4, #ffb6c1); /* Pink gradient */
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  align-items: center;

}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease;
}

/* Slideshow Grid */
.slideshow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid */
  gap: 20px;
  padding: 20px;
}

/* Slideshow Box */
.slideshow-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

/* Slideshow Container */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%; /* Aspect ratio 16:9 */
}

.slideshow-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dots */
.slideshow-dots {
  text-align: center;
  margin-top: 10px;
}

.slideshow-dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.slideshow-dots .dot.active {
  background-color: #717171;
}

/* Media Query for Larger Screens */
@media (min-width: 1024px) {
  .slideshow-container {
    height: 300px; /* Fixed height for larger screens */
    padding-top: 0;
  }
}

/* About Section */
.about-section {
  padding: 50px 20px;
  text-align: center;
  background-color: #fff0f5; /* Light pink */
}

.about-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 18px;
  max-width: 1100px;
  margin: 0 auto;
}


/* Services Section */
.services-section {
  padding: 50px 20px;
  text-align: center;
}

.services-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.services-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service {
  background-color: #ffe4e1; /* Light pink */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.service i {
  font-size: 40px;
  color: #ff69b4;
  margin-bottom: 10px;
}

.service h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service p {
  font-size: 16px;
}

/* Book an Appointment Section */
.appointment-section {
  padding: 40px 30px;
  text-align: center;
  background-color: #ffe4e1; /* Light pink */
  border-radius: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  margin: 60px;
  max-width: 1200px;
}

.appointment-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.button-container {
  display: inline-block;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 20px;
}

.button-container:hover {
  transform: translateY(-5px); /* Slight lift on hover */
}


/* Horizontal Line Divider */
.section-divider {
  border: none;
  border-top: 2px solid #ff69b4; /* Blue line */
  width: 50%; /* Adjust width as needed */
  margin: 0 auto 20px; /* Center the line and add spacing below */
}
.decorative-divider {
  width: 50px;
  height: 2px;
  background-color: #ff69b4; /* Match your brand color */
  margin: 15px auto; /* Center the divider */
  border-radius: 2px; /* Rounded edges */
}


/* Scroll-to-Top Button */
.scroll-to-top {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-links a.active {
  color: #ff69b4;
  font-weight: bold;
  border-bottom: 2px solid #ff69b4;
}

/* Logo in Get a Free Quote Section */
.quote-logo {
  text-align: center; /* Center the logo */
}

.quote-logo img {
  height: 200px; /* Adjust the height of the logo */
  width: auto; /* Maintain aspect ratio */
}


/* Footer */
.footer {
  background-color: #ff69b4;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}