* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
 
  overflow-x: hidden;
}



/* ————————————————————— */
/* GLOBAL OVERFLOW & BOX-SIZING FIXES */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;      /* hide horizontal overflow on mobile */
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

span{
  color: #007bff;
}


/*=== topbar ===*/
.topbar {
  background:black;
  position: sticky;
  top: 0;
  z-index: 1000;  
  width: 100%;
}


/*=== header ===*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background:pink ;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 50px;
  
}
.header .logo img {
  height: 40px;
  width: auto;
}
.header .logo h2 {
  margin: 0;
  font-size: 1.5rem;
  color:white;
}
.header .contact {
  text-align: right;
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.header .contact .contact1{
    display: flex;
    flex-direction: row;
    gap: 30px;
}
.header .contact .contact1>p{
    margin: 0;
    line-height:1px;
    color: #555;
    font-weight: bold;
}
.header .contact .time>p{
    margin: 0;
    font-size:11px;
    line-height:1px;
    font-weight: bold;
    cursor: pointer;
    /* color:white; */
    color:white;
     /* Animation */
    animation: pulse-effect 2s ease-in-out infinite;
}
@keyframes pulse-effect {
  0% {
    transform: scale(1.10);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.header .contact a {
  color: rgb(36, 4, 4);
  text-decoration: none;
  transition: color 0.2s;
}
.header .contact a:hover {
  color:black;
}
.header .contact .time>p:hover{
    color: black;
}


/*=== navbar ===*/
.navBar {
  display: block;
  background: whitesmoke;
  border-top: 1px solid gold;
  padding: 10px;
  
}
.navBar .navLinks {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 80px;
}
.navBar .linkRight {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0.5rem 1.5rem;
  gap: 1.5rem;
}
.linkRight li {
  position: relative;
}
.linkRight li a {
  text-decoration: none;
  font-size: 1.03rem;
  color:black;
  font-weight: bold;
  padding: 0.5rem 0.75rem;
  transition: background 0.3s, color 0.3s;
}
.linkRight li a:hover {
  /* background:white; */
  color:rgb(175, 6, 102);
}
.linkRight li.sign button {
  background: rgb(180, 7, 145);
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: black;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-weight: bold;
  box-sizing: border-box;
    /* Pulse animation */
  animation: pulse-btn 2s ease-in-out infinite;
}
/* @keyframes for pulse */
@keyframes pulse-btn {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.linkRight li.sign button:hover {
    background-color: yellowgreen;
    color: whitesmoke;
}


/*=== Dropdown menu ===*/
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  min-width: 180px;
  padding: 0.5rem 0;
  list-style: none;
}
.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(-5);
}
.dropdown-menu li a {
  display: block;
  color:black;
  margin-top:-22px;
  font-size:1rem;
}
/* Hamburger button styling */
.hamburger {
  display: none;
  font-size:2rem;
  color:black;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s;
}

/* Mobile / small-screen styles */
@media (max-width: 450px) {
  .header{
    height: 150px;
  }
  .header .contact {
    text-align: center;
    /* font-size: 0.8rem; */
    /* margin-top: 0.5rem; */
    display: flex;
    flex-direction: column;
  }
  .header .contact .contact1{
    display: flex;
    flex-direction: column;
  }
  .navBar {
    display: none;
    width: 100%;
  }
  .navBar.active {
    display: block;
    background:rgb(208, 205, 205);
  }
  .navBar .navLinks {
    padding: 1rem;
  }
  .navBar .linkRight {
    flex-direction: column;
    gap: 0;
  }
  .linkRight li {
    width: 100%;
    margin: 0;
    padding: 0.5rem 0;
  }
  .linkRight li a {
    display: block;
    width: 100%;
    color:#007bff;
    padding: 0.75rem 1rem;
    background: transparent;
  }
  .linkRight li.sign button {
    width: 100%;
    text-align: center;
    background: #ffffff;
    color: #007bff;
    margin-top: 0.5rem;
  }
    /* Ensure last items appear correctly */
  .linkRight li.sign,
  .linkRight li:last-child {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* Make Contact Us button visible and spaced */
  .linkRight li.sign button {
    background: red;
    color: white;
    margin: 10px 0;
    width: 90%;
  }

  /* Style Log In link for better visibility */
  .linkRight li a[href*='Log In'] {
    color: white;
    display: block;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.3);
  }

  /* Allow scrolling if list is long */
  .navBar.active .linkRight {
    overflow-y: auto;
    max-height: 80vh;
    padding-bottom: 100px; /* space for button visibility */
  }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
  }
   /* .dropdown:hover .dropdown-menu {
    visibility: visible;
  }  */
  .dropdown-menu li a {
    color:black;
    padding-left: 2rem;
  }
  .hamburger{
    display: block;
  }
}








































































































/* ========== Zoom In / Zoom Out Animation ========== */

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.6s ease;  /* smooth zoom */
}

/* Zoom In + Zoom Out on hover */
.service-card:hover img {
  transform: scale(1.1);      /* zoom in */
}

.service-card img:active {
  transform: scale(0.9);      /* zoom out when clicked */
}

/* Card Styling (optional if not included earlier) */
.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

/* Fade-Up Animation */
.animate {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





/* MAIN SECTION */
.services-pricing {
  padding: 60px 20px;
  background: #fff7fb;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.title {
  font-size: 36px;
  color: #d63384;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 40px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* SERVICE CARD */
.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  border: 2px solid transparent;
  transform: translateY(20px);
  opacity: 0;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #ffb3d9;
}

.service-card img {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
}

.price {
  font-size: 22px;
  color: #d63384;
  font-weight: bold;
  margin: 10px 0;
}

/* BUTTON */
.book-btn {
  background: #d63384;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
}

.book-btn:hover {
  background: #e85a9c;
}

/* =============== ANIMATIONS =============== */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease-in-out;
}

/* Trigger after scroll */
.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* Delay classes */
.delay-1 { transition-delay: .2s; }
.delay-2 { transition-delay: .4s; }
.delay-3 { transition-delay: .6s; }

/* Ripple Button Animation */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple:after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.6);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: scale(1);
  opacity: 0;
  transition: 0.6s;
}

.ripple:active:after {
  transform: scale(18);
  opacity: 1;
  top: var(--y);
  left: var(--x);
}

/* Mobile */
@media (max-width: 768px) {
  .title { font-size: 28px; }
  .service-card img { height: 160px; }
}













































footer{
  background: #f9f3fa;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
  border-top: 3px solid #ff9ed8;
}

.footer-container{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* Logo Section */
.footer-logo h2{
  color: #e35aa8;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-logo p{
  color: #555;
  line-height: 26px;
}

/* Links */
.footer-links h3{
  color: #d63c92;
  margin-bottom: 18px;
  font-size: 20px;
}

.footer-links ul{
  list-style: none;
  padding: 0;
}

.footer-links ul li{
  margin-bottom: 12px;
}

.footer-links ul li a{
  text-decoration: none;
  color: #444;
  transition: 0.3s;
}

.footer-links ul li a:hover{
  color: #d63c92;
  padding-left: 5px;
}

/* Newsletter */
.newsletter h3{
  color: #d63c92;
  margin-bottom: 18px;
}

.newsletter input{
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

.newsletter button{
  width: 100%;
  padding: 12px;
  background: #e35aa8;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.newsletter button:hover{
  background: #d63c92;
}

/* Social Icons */
.social{
  margin-top: 15px;
}

.social a{
  display: inline-block;
  margin-right: 12px;
  color: #e35aa8;
  font-size: 22px;
  transition: 0.3s;
}

.social a:hover{
  color: #d63c92;
}

/* Bottom Bar */
.bottom-footer{
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  color: #777;
  font-size: 15px;
}

