/* Momsy Care Colors */
/* Custom Dropdown Styling */
.dropdown-menu-custom {
  border: 2px solid #ffe44d;
  border-radius: 15px;
  padding: 15px 0;
  margin-top: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  padding: 12px 25px;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.dropdown-item:hover {
  background: #fff6d5;
  color: #333;
  transform: translateX(10px);
}

.dropdown-item:active {
  background: #ffe44d;
}

/* Animation for dropdown */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

/* Icon styling */
.dropdown-item i {
  color: #ffc107;
  width: 25px;
  text-align: center;
}
:root {
  --momsy-yellow: #f7d002 !important;
  --momsy-light-yellow: #fdeb99;
  --momsy-dark: #202020;
  --momsy-gray: #222222;
  --momsy-light-gray: #f5f5f5;
  --momsy-white: #ffffff;
}
h1 {
  font-size: 2.5rem !important;
}
h2 {
  font-size: 2rem !important;
}
h3 {
  font-size: 2rem !important;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  font-size: 16px;
}

/* Basic Navbar Styling */
.navbar {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: "Arial", sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
}

.navbar .navbar-nav .nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease-in-out;
}

.navbar .navbar-nav .nav-link:hover {
  color: #ee6730; /* Adjust to your brand's hover color */
}

/* Active link color */
.navbar .navbar-nav .nav-link.active {
  color: #ee6730; /* Adjust to your brand's active link color */
  font-weight: 600;
}

/* Navbar Toggler Icon */
.navbar-toggler-icon {
  background-color: #ffffff;
}

/* For smaller screens (Mobile view) */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-item {
    margin-bottom: 10px;
  }

  .navbar .btn-momsy {
    width: 100%;
  }
}

/* Sticky navbar */
.navbar-momsy {
  position: sticky;
  top: 0;
  z-index: 1030;
}

/* Customizing the background color of the active link in mobile view */
@media (max-width: 767px) {
  .navbar-nav .nav-link.active {
    background-color: #ee6730;
    color: #fff;
  }
}

/* Basic Hero Section Styling */
.hero-section {
  background-image: url("images/bg.jpg");
  padding: 50px 0;
  background-color: #f8f9fa; /* Light background for contrast */
}

.hero-section h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

.hero-section .lead {
  font-size: 1.2rem;
}

/* Service Cards Layout */
.service-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 107%;
  object-fit: cover;
}

.service-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Responsive Grid */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section .lead {
    font-size: 1rem;
  }

  .service-card .card-body {
    padding: 15px;
  }

  .col-12 {
    margin-bottom: 15px;
  }

  /* For mobile screens, we want each card to stack on top of each other */
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .btn-momsy {
    width: 60%;
    padding: 12px;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section .lead {
    font-size: 0.9rem;
  }

  .btn-momsy {
    font-size: 1rem;
  }
}

.lead {
  font-size: 15px !important;
}
/* Custom Styles */
.bg-momsy-yellow {
  background-color: var(--momsy-yellow);
}

.text-momsy-yellow {
  color: var(--momsy-yellow);
}

.border-momsy-yellow {
  border-color: var(--momsy-yellow);
}

.btn-momsy {
  background-color: var(--momsy-yellow);
  color: var(--momsy-dark);
  font-weight: 600;
  border: none;
  padding: 10px 25px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-momsy:hover {
  background-color: var(--momsy-dark);
  color: var(--momsy-white);
}

.service-card {
  border-radius: 8px;
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.team-card {
  border-radius: 8px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-5px);
}

.backed-banner {
  background-color: var(--momsy-yellow);
  padding: 10px 0;
  text-align: center;
  color: var(--momsy-dark);
  font-weight: 600;
}

.navbar-momsy {
  background-color: var(--momsy-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-section {
  padding: 80px 0px 60px;
}

.services-section {
  padding: 60px 0;
}

.team-section {
  padding: 60px 0;
  background-color: var(--momsy-light-gray);
}

.why-choose-section {
  padding: 60px 0;
}

.footer-section {
  padding: 60px 0 30px;
  background-color: var(--momsy-dark);
  color: var(--momsy-white);
}

.footer-link {
  color: var(--momsy-white);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 10px;
}

.footer-link:hover {
  color: var(--momsy-yellow);
}

.stars-container {
  display: inline-block;
  color: var(--momsy-yellow);
  font-size: 16px;
}

.team-pink {
  background-color: #f9a8d4;
}

.team-yellow {
  background-color: #fde68a;
}

.team-purple {
  background-color: #c4b5fd;
}

.team-teal {
  background-color: #99f6e4;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 60px 0 40px;
  }

  .hero-section h1 {
    font-size: 2.8rem !important;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 40px 0 30px;
  }

  .hero-section h1 {
    font-size: 2.2rem !important;
  }

  .service-card .card-body {
    padding: 15px 10px;
  }

  .service-card h5 {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 1.8rem !important;
  }
}

:root {
  --maidvy-primary: #f6cf02;
  --maidvy-dark: #2c3e50;
  --maidvy-white: #ffffff;
  --maidvy-light: #f8f9fa;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  color: #333;
}

.btn-maidvy {
  background-color: var(--maidvy-primary);
  color: var(--maidvy-dark);
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.lead {
  font-size: 1rem;
  font-weight: 500;
}

.btn-maidvy:hover {
  background-color: #e5c000;
  color: var(--maidvy-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(246, 207, 2, 0.3);
}

.text-maidvy-primary {
  color: var(--maidvy-primary);
}

.text-maidvy-dark {
  color: var(--maidvy-dark);
}

.text-maidvy-white {
  color: var(--maidvy-white);
}

/* Navbar */
.navbar-maidvy {
  background-color: #ffffff;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-maidvy.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.5px;
}

.nav-link {
  font-weight: 500;
  padding: 8px 15px !important;
  color: var(--maidvy-dark) !important;
  position: relative;
}

.nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 15px;
  background-color: var(--maidvy-primary);
  transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: calc(100% - 30px);
}

/* Hero Section */
.hero-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #f6cf02 100%);
  position: relative;
  overflow: hidden;
}



/* Contact Form */
.contact-form-container {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
  color: var(--maidvy-dark);
  margin-bottom: 20px;
  font-weight: 600;
}

.form-control {
  border-radius: 8px;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  margin-bottom: 15px;
}

.form-control:focus {
  border-color: var(--maidvy-primary);
  box-shadow: 0 0 0 0.25rem rgba(246, 207, 2, 0.25);
}

.submit-btn {
  background-color: var(--maidvy-primary);
  color: var(--maidvy-dark);
  border: none;
  width: 100%;
  padding: 12px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #e5c000;
  transform: translateY(-2px);
}

/* Service Cards */
.service-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  background-color: white;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

/* Team Cards */
.team-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: none;
  background-color: white;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-card img {
  border-radius: 50%;
  object-fit: cover;
  height: 80px;
  width: 80px;
  border: 3px solid var(--maidvy-primary);
  transition: all 0.3s ease;
}

.team-card:hover img {
  transform: scale(1.1);
}

.team-pink {
  border-top: 4px solid #ff6b6b;
}

.team-yellow {
  border-top: 4px solid #feca57;
}

.team-purple {
  border-top: 4px solid #5f27cd;
}

.team-teal {
  border-top: 4px solid #1dd1a1;
}

/* Why Choose Us */
.why-choose-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

/* How It Works */
.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--maidvy-primary);
  color: var(--maidvy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0 auto;
}

/* Testimonials */
.testimonials-section {
  padding: 80px 0;
  background-color: white;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--maidvy-primary) 0%, #f1c40f 100%);
  position: relative;
  overflow: hidden;
}

.cta-section:before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.cta-section:after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

/* Footer */
.footer-section {
  padding: 80px 0 30px;
  background-color: var(--maidvy-dark);
  color: var(--maidvy-white);
  position: relative;
}

.footer-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--maidvy-primary);
}

.footer-logo {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-about {
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--maidvy-primary);
}

.footer-link {
  color: var(--maidvy-white);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 12px;
  opacity: 0.8;
}

.footer-link:hover {
  color: var(--maidvy-primary);
  opacity: 1;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--maidvy-white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--maidvy-primary);
  color: var(--maidvy-dark);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--maidvy-primary);
  color: var(--maidvy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--maidvy-dark);
  color: var(--maidvy-white);
  transform: translateY(-5px);
}

/* Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Mobile specific adjustments */
@media (max-width: 767.98px) {
  .service-card .row {
    flex-direction: column !important;
  }

  .service-card .col-md-4,
  .service-card .col-md-8 {
    width: 100%;
    max-width: 100%;
  }

  .service-image {
    height: 200px;
    width: 100%;
  }

  .card-body {
    padding: 1.25rem;
  }

  .hero-section {
    padding: 60px 0;
  }

  h1.display-4 {
    font-size: 2.5rem !important;
  }

  .contact-form-container {
    margin-top: 30px;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
  .service-image {
    height: 180px;
  }
}

/* Contact Form */
.contact-form-container {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
  color: var(--maidvy-dark);
  margin-bottom: 20px;
  font-weight: 600;
}

.form-control {
  border-radius: 8px;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  margin-bottom: 15px;
}

.form-control:focus {
  border-color: var(--maidvy-primary);
  box-shadow: 0 0 0 0.25rem rgba(246, 207, 2, 0.25);
}

.submit-btn {
  background-color: var(--maidvy-primary);
  color: var(--maidvy-dark);
  border: none;
  width: 100%;
  padding: 12px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #e5c000;
  transform: translateY(-2px);
}

/* Service Cards */
.service-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  background-color: white;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

/* Team Cards */
.team-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: none;
  background-color: white;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-card img {
  border-radius: 50%;
  object-fit: cover;
  height: 80px;
  width: 80px;
  border: 3px solid var(--maidvy-primary);
  transition: all 0.3s ease;
}

.team-card:hover img {
  transform: scale(1.1);
}

.team-pink {
  border-top: 4px solid #ff6b6b;
}

.team-yellow {
  border-top: 4px solid #feca57;
}

.team-purple {
  border-top: 4px solid #5f27cd;
}

.team-teal {
  border-top: 4px solid #1dd1a1;
}

/* Why Choose Us */
.why-choose-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

/* How It Works */
.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--maidvy-primary);
  color: var(--maidvy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0 auto;
}

/* Testimonials */
.testimonials-section {
  padding: 80px 0;
  background-color: white;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--maidvy-primary) 0%, #f1c40f 100%);
  position: relative;
  overflow: hidden;
}

.cta-section:before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.cta-section:after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

/* Footer */
.footer-section {
  padding: 80px 0 30px;
  background-color: var(--maidvy-dark);
  color: var(--maidvy-white);
  position: relative;
}

.footer-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--maidvy-primary);
}

.footer-logo {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-about {
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--maidvy-primary);
}

.footer-link {
  color: var(--maidvy-white);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 12px;
  opacity: 0.8;
}

.footer-link:hover {
  color: var(--maidvy-primary);
  opacity: 1;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--maidvy-white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--maidvy-primary);
  color: var(--maidvy-dark);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--maidvy-primary);
  color: var(--maidvy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--maidvy-dark);
  color: var(--maidvy-white);
  transform: translateY(-5px);
}

/* Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Mobile specific adjustments */
@media (max-width: 767.98px) {
  .service-card .row {
    flex-direction: column !important;
  }

  .service-card .col-md-4,
  .service-card .col-md-8 {
    width: 100%;
    max-width: 100%;
  }

  .service-image {
    height: 200px;
    width: 100%;
  }

  .card-body {
    padding: 1.25rem;
  }

  .hero-section {
    padding: 60px 0;
  }

  h1.display-4 {
    font-size: 2.5rem !important;
  }

  .contact-form-container {
    margin-top: 30px;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
  .service-image {
    height: 180px;
  }
}

/* Animation Classes */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animate__fadeIn {
  animation-name: fadeIn;
}

.animate__fadeInDown {
  animation-name: fadeInDown;
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

.animate__fadeInLeft {
  animation-name: fadeInLeft;
}

.animate__fadeInRight {
  animation-name: fadeInRight;
}

.animate__delay-1s {
  animation-delay: 1s;
}

.animate__delay-2s {
  animation-delay: 2s;
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.min-vh-60 {
  min-height: 60vh;
}

/* Service Cards */
.service-card {
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hover-effect:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.service-icon img {
  transition: transform 0.3s ease;
}

.hover-effect:hover .service-icon img {
  transform: scale(1.1);
}

/* Testimonials */
.testimonial-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 5px solid white;
}

.rating {
  color: #ffc107;
}

/* Image Cards */
.image-card {
  overflow: hidden;
  transition: all 0.3s ease;
}

.image-card img {
  transition: transform 0.5s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}
