@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Andika&display=swap');

   /* CSS Variables for easy customization */
:root {
  --icon-size: 140px;
  --icon-size-mobile: 100px;
  --icon-size-small: 80px;
  --announcement-height: 40px;
  --announcement-height-mobile: 100px;
  --announcement-height-small: 80px;
}

   /* Body Background Sticky */
  body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: Arial, sans-serif;

  /* Background settings */
  background: url("assets/img/back.webp") no-repeat center center fixed;
  background-size: cover;
  /* width: 1080px;   or 100% of container */
  height: auto;  
  /* Prevent unwanted scroll */
  overflow-x: hidden;
  /* Ensure proper document flow */
  position: relative;
}

/* Pink Transparent Overlay */
body::before {
  content: "";
  /* position: fixed; pure viewport cover karega */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/* background-color: rgba(255, 216, 222, 0.75); Light Pink + transparency */
  /* z-index: -1; Content overlay ke upar rahega */
}
.top-bar {
  background: linear-gradient(to right,
      #CD0E6E,
      #971B59,
      #971B59,
      #CD0E6E,
      #CD0E6E,
      #971B59);
  color: white;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001 !important; /* Above main header */
}

/* Pause animation on hover anywhere on top bar */
.top-bar:hover .scrolling-message {
  animation-play-state: paused;
}

.announcement-container {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  height: var(--announcement-height); /* Using CSS variable for easy adjustment */
}

/* Fixed center icon - sits above text */
.center-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 30; /* Much higher z-index to sit above text */
  display: flex;
  align-items: center;
  justify-content: center;
  /* No background or blur - clean transparent icon */
}

.scroll-icon {
  height: 140px;
  width: auto;
  opacity: 1;
  filter: brightness(1.4) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  transition: transform 0.3s ease;
  /* Ensure icon has transparent background */
  background: transparent;
}

.scroll-icon:hover {
  transform: scale(1.15);
  filter: brightness(1.6) drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

/* Single scrolling text - goes behind icon */
.single-scroll-text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 5; /* Much lower than icon so text goes behind it */
}

.single-scroll-text .scrolling-message {
  white-space: nowrap;
  animation: scroll-right-to-left 40s linear infinite;
  animation-fill-mode: none;
  animation-direction: normal;
  font-weight: 600;
  font-size: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  transform: translateX(100%); /* Ensure it starts from right */
}

/* Single text scrolls from right to left, goes behind icon */
@keyframes scroll-right-to-left {
  0% {
    transform: translateX(100%); /* Start from right edge */
  }
  100% {
    transform: translateX(-100%); /* Scroll completely off to the left */
  }
}

.main-header {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 15px 40px;
  gap: 32px;
  flex-wrap: nowrap;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  background: transparent; /* Transparent to show blurred background */
}

.logo {
  flex-shrink: 0;
  flex-basis: auto;
  min-width: fit-content;
}

.logo img {
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
}

.nav-links {
  display: flex;
  gap: clamp(18px, 3vw, 90px);
  font-family: 'Amatic SC', cursive;
  flex: 1;
  justify-content: center;
  align-items: center;
}

/* Desktop: Move navigation items to the left */
@media (min-width: 769px) {
  .nav-links {
    justify-content: flex-start;
    margin-left: -30px; /* Move navigation items a bit more to the left */
  }
}

.social-icons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.nav-links a {
  text-decoration: none;
  color: #971B59;
  font-size: 36px;
  letter-spacing: 2px;
  font-weight: bold;
  text-shadow: 0px 4px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-links a:hover {
  color: #c81f66;
  transform: scale(1.1);
  text-shadow: 0px 6px 4px rgba(0, 0, 0, 0.4);
}

.social-icons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.social-icons img {
  width: 18px;
  height: 18px;
  filter: invert(20%) sepia(70%) saturate(400%) hue-rotate(310deg);
  transition: all 0.3s ease;
  display: inline-block;
}

.social-icons img:hover {
  transform: scale(1.2);
  filter: invert(20%) sepia(70%) saturate(400%) hue-rotate(310deg) brightness(1.2);
}

/* Mobile Menu Button - Hidden on Desktop */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 35px;
  height: 35px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  z-index: 10001;
  position: absolute;
  right: 25px; /* Moved left from 15px */
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-btn span {
  width: 100%;
  height: 3px;
  background: #c81f66;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
  display: block;
  margin: 2px 0;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay - Hidden on Desktop */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95); /* White transparent background */
  backdrop-filter: blur(10px);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease; 
  pointer-events: none;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  max-width: 80vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98); /* White background for drawer */
  backdrop-filter: blur(10px);
  padding: 80px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 9999;
  box-shadow: -5px 0 30px rgba(151, 27, 89, 0.3);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-nav-links {
  right: 0;
}

.mobile-nav-links a {
  font-size: 28px;
  padding: 15px 20px;
  border-radius: 12px;
  color: #971B59;
  text-decoration: none;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Amatic SC', cursive;
  font-weight: bold;
}

.mobile-nav-links a:hover {
  background: rgba(151, 27, 89, 0.1);
  border-left-color: #c81f66;
  transform: translateX(5px);
  color: #c81f66;
}

.mobile-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid rgba(151, 27, 89, 0.2);
  justify-content: center;
}

.mobile-social-icons img {
  width: 24px;
  height: 24px;
  filter: invert(20%) sepia(70%) saturate(400%) hue-rotate(310deg);
  transition: all 0.3s ease;
}

.mobile-social-icons img:hover {
  transform: scale(1.2);
  filter: invert(20%) sepia(70%) saturate(400%) hue-rotate(310deg) brightness(1.2);
}

/* Mobile Menu Close Button */
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close span {
  position: absolute;
  width: 25px;
  height: 3px;
  background: #971B59;
  border-radius: 2px;
  transition: all 0.3s ease;
  pointer-events: none; /* Allow clicks to pass through to button */
}

.mobile-menu-close span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-menu-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.mobile-menu-close:hover span {
  background: #c81f66;
  transform: scale(1.1);
}

.mobile-menu-close:hover span:nth-child(1) {
  transform: rotate(45deg) scale(1.1);
}

.mobile-menu-close:hover span:nth-child(2) {
  transform: rotate(-45deg) scale(1.1);
}


/* Hero Section
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
} */


/* Ensure header container is above hero and takes up space */
#header-placeholder {
  position: relative !important;
  z-index: 1000 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  width: 100% !important;
  display: block !important;
  /* Ensure header container takes up space */
  min-height: auto;
  /* Prevent hero from overlapping - contain all header content */
  overflow: hidden !important; /* Hide any overflow from header */
}

header,
.main-header {
  position: relative !important;
  z-index: 1000 !important;
  margin-bottom: 0 !important;
  width: 100% !important;
  /* Keep flex display for horizontal layout */
  /* Ensure header takes up space */
  min-height: auto;
}

/* Hero Wave - Must start AFTER header in document flow */
.hero {
  position: relative !important; /* Keep in normal document flow */
  width: 100%;
  height: 750px; /* Fixed height to match 1920x750 images */
  min-height: 750px;
  max-height: 750px; /* Prevent it from growing larger */
  overflow: hidden;
  /* Smooth continuous wave curve - smooth transition on right side, matches the red line */
  clip-path: path("M0,0 H1920 V750 Q1440,800 960,750 Q480,670 0,750 Z");  
        z-index: 1 !important; /* Below header - use !important to ensure it stays below */
  margin-top: 0 !important; /* No top margin - header is above */
  margin-bottom: 0 !important;
  clear: both; /* Clear any floats */
  /* Ensure hero starts below header in normal flow */
  top: auto !important; /* Reset any absolute positioning */
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  /* Ensure hero is positioned below header, not behind */
  position: relative;
}

.hero img {
  width: 100%;
  height: 100%; /* Use full height of container */
  object-fit: cover; /* Fill the container width */
  object-position: center center; /* Center to minimize top/bottom cropping */
  background-color: transparent; /* Remove white background */
  transform: translateY(0); /* Reset any transforms */
  z-index: 1; /* Ensure images stay below header */
  position: relative;
}



/* Responsive - Mobile devices */
@media (max-width: 768px) {
  .main-header {
    height: 72px;
    max-height: 72px;
    padding: 10px 14px;
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: space-between;
    background: transparent !important; /* Transparent background */
    backdrop-filter: none !important; /* Remove blur effect */
    z-index: 1000 !important;
    position: relative !important;
  }
  
  .top-bar {
    z-index: 1001 !important;
    position: relative !important;
  }

  .logo {
    margin-left: 0 !important;
    z-index: 1001;
    position: relative !important; /* For absolute positioning of menu button */
    width: 100%; /* Take full width to position button */
  }

  .logo img {
    height: 150px; /* Increased from 120px for better visibility on mobile */
    width: auto;
    max-width: 380px; /* Increased from 320px for better visibility on mobile */
  }
  
  /* Show mobile menu button on mobile - make it visible */
  .mobile-menu-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10001 !important;
    right: 25px !important; /* Moved left from 15px to 25px */
  }
  
  /* Hide regular nav links on mobile */
  .nav-links {
    display: none !important;
  }
  
  /* Hide desktop social icons on mobile */
  .social-icons {
    display: none !important;
  }
  
  /* Services section mobile */
  .services-section {
    padding: 0 15px;
  }
  
  .services-grid {
    gap: 20px;
  }

  /* Mobile announcement bar adjustments */
  .top-bar {
    padding: 8px 0;
  }

  .announcement-container {
    height: var(--announcement-height-mobile); /* Slightly smaller for mobile */
  }

  .scroll-icon {
    height: var(--icon-size-mobile); /* Smaller but still prominent on mobile */
  }

  /* Hero section mobile adjustments */
  .hero {
    height: 500px; /* Proportional to 750px desktop height */
    min-height: 400px;
    max-height: 500px; /* Limit maximum height */
    margin-top: 0; /* No margin - header is above */
  }

  .hero img {
    object-position: left center; /* Move image left to show model's face clearly */
  }

  /* Slide content mobile adjustments */
  .slide-content {
    top: 35%; /* Adjust vertical position */
    left: 5%; /* Left align on mobile */
    transform: translateY(-50%);
    width: 90%; /* Responsive width */
    max-width: 100%;
  }

  .slide-title {
    font-size: 42px; /* Responsive font size */
    width: 100%; /* Full width on mobile */
    max-width: 95vw; /* Don't exceed viewport width */
    line-height: 1.2; /* Better line spacing */
    margin: 0; /* Remove default margins */
    padding: 0 10px; /* Add padding for readability */
  }
}


@media (max-width: 480px) {
  .announcement-container {
    height: var(--announcement-height-small);
  }

  .scroll-icon {
    height: var(--icon-size-small); /* Still visible but smaller on very small screens */
  }

  /* Hero section small mobile adjustments */
  .hero {
    height: 400px; /* Proportional to 750px desktop height */
    min-height: 350px;
    max-height: 400px; /* Limit maximum height */
    margin-top: 0; /* No margin - header is above */
  }

  .hero img {
    object-position: left center; /* Move image left to show model's face clearly */
  }

  /* Slide content small mobile adjustments */
  .slide-content {
    top: 30%; /* Adjust vertical position */
    left: 5%; /* Left align on small mobile */
    transform: translateY(-50%);
    width: 90%; /* Responsive width */
    max-width: 100%;
  }

  .slide-title {
    font-size: 32px; /* Responsive font size for small mobile */
    width: 100%; /* Full width on small mobile */
    max-width: 90vw; /* Don't exceed viewport width */
    line-height: 1.2; /* Better line spacing */
    margin: 0; /* Remove default margins */
    padding: 0 10px; /* Add padding for readability */
  }

  .slide-content .btn {
    width: 130px; /* Smaller button on small mobile */
    height: 45px;
  }

  .single-scroll-text .scrolling-message {
    font-size: 12px;
  }
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slides {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fill the container without white space */
  object-position: center center; /* Center the image to minimize cropping */
  border-radius: 0;
  background-color: transparent; /* No white background */
}

/* Fade Effect */
.fade {
  animation: fadeEffect 5s;
}

@keyframes fadeEffect {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}



/* Arrows */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  /* bottom: 20px; */
  padding: 8px 12px;
  color: #c81f66;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
  transition: 0.3s;
  z-index: 10;
  display: inline-block;






}



.prev {
  left: 45%;
}

.next {
  right: 45%;
}

@media (max-width: 768px) {
  .prev { left: 38%; }
  .next { right: 38%; }
}

@media (max-width: 480px) {
  .prev { left: 30%; }
  .next { right: 30%; }
}

/* Testimonial arrows - positioned below testimonial text */
.testimonial-prev,
.testimonial-next {
  cursor: pointer;
  position: relative;
  padding: 8px 12px;
  color: #c81f66;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
  transition: 0.3s;
  margin: 0 20px;
  z-index: 10;
  display: inline-block;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  transform: scale(1.1);
}


/* HERO OVERLAY CONTENT - Individual slide content */
.slide-content {
  position: absolute;
  top: 65%; /* Moved down from 45% to show more image */
  /* width: 100px; */
  /* left: 32%; */
  transform: translateY(-50%);
  text-align: left;
  color: white;
  z-index: 5;
  opacity: 0;
  animation: fadeIn 2s ease forwards;
}

.slide-title {
  color: #ffffff;
  font-size: 60px;
  font-weight: 900;
  width: 700px;
  font-family: 'Amatic SC', cursive;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  margin-left: 30px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}








.slide-content .btn  {
  position: relative;
  width: 155px;
  height: 50px;
  margin: 30px 0 0 0; /* top margin for spacing from heading */
  /* ✅ directly visible */
}

.slide-content .btn a {
  position: absolute;
  top: 0;
  left: 15%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  color: #fff;
  z-index: 1;
  font-weight: 400;
  letter-spacing: 1px;
  text-decoration: none;
  overflow: hidden;
  transition: 0.5s;
  backdrop-filter: blur(15px);
}


.slide-content .btn a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(135deg, rgba(221, 20, 121, 0.9), rgba(151, 27, 89, 0.8));
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease-out;
  z-index: -1;
}

.slide-content .btn:hover a {
  letter-spacing: 3px;
  transition: 0.5s;
  box-shadow: 0 20px 40px rgba(221, 20, 121, 0.3), 
              0 0 20px rgba(221, 20, 121, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.slide-content .btn:hover a::before {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(221, 20, 121, 0.9), rgba(151, 27, 89, 0.8));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}


/* .hero-content .btn a {
  background: #971B59;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 20px;
  text-decoration: none;
  color: #fff;
  transition: background 0.3s;
}

.hero-content .btn a:hover {
  background: #CD0E6E;
} */

/* services */
.services-section {
  text-align: center;
  padding: 0px 20px;
  max-width: 1400px;
  margin: auto;
  content-visibility: auto; /* Improve scroll performance */
  contain-intrinsic-size: 2000px; /* Estimated height to prevent layout shift */
}
/* ========================================
   CUSTOM SHAPE CONTAINER WITH SLIDING IMAGES
   ========================================
   
   HOW TO CUSTOMIZE:
   
   1. CHANGE SHAPE FILE:
      - Currently using: 'assets/img/shape.png' (your custom shape)
      - Supported formats: PNG, SVG, JPG
      - Make sure the shape has transparent background for best results
      - The shape itself defines the boundaries - no clip-path needed
   
   2. ADJUST CONTAINER SIZE:
      - Change .custom-shape-container width/height (lines 536-537)
      - Adjust responsive breakpoints (lines 603-620)
   
   3. CHANGE NUMBER OF IMAGES:
      - Add/remove images in HTML (each service needs 9 images total - 3 sets of 3)
      - Add corresponding CSS rules for new images (copy the nth-child pattern)
      - Update animation delays: 0s, 4s, 8s for 3 images (adjust for more images)
      - First image stays fixed, others slide from right and become fixed (stacking effect)
   
   4. ADJUST SLIDER SPEED:
      - Change animation duration (line 624): total seconds for one complete cycle
      - Adjust individual image delays: 0s, 4s, 8s (for 3 images)
      - Modify timing in @keyframes slideFromRight/Left (lines 661-706)
      - Or use JavaScript: setSliderSpeed(12) for 12 seconds per cycle
   
   5. CUSTOMIZE SHAPE MASK:
      - Adjust clip-path (line 564) to match your shape
      - Options: circle(), polygon(), or custom path
      - Example: clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
   
   6. STYLING OPTIONS:
      - Add borders, shadows, or effects to .custom-shape-container
      - Modify image transitions or add filters
      - Change hover effects or add click animations
   
   ======================================== */


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */


/* ========================================
   CUSTOM SHAPE CONTAINER STYLES
   ======================================== */

/* Main container for custom shape */
.custom-shape-container {
  position: relative;
  width: 320px;  /* Adjusted for 3+2 layout */
  height: 320px; /* Adjusted for 3+2 layout */
  margin: 0 auto;
  transform: translateZ(0); /* GPU acceleration */
  will-change: transform; /* Optimize for animations */
}

/* Custom shape background - stays fixed */
.shape-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Maintains aspect ratio */
  z-index: 1;
  pointer-events: none; /* Allows clicks to pass through */
  aspect-ratio: 1 / 1; /* Prevent layout shift */
}

/* Container for sliding images */
.sliding-images-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; /* Hide images outside the shape */
  z-index: 2;
  transform: translateZ(0); /* GPU acceleration */
  /* Use your shape.png as a mask to contain images within the exact blob shape */
  mask: url('assets/img/shape.png') no-repeat center center;
  mask-size: contain;
  -webkit-mask: url('assets/img/shape.png') no-repeat center center;
  -webkit-mask-size: contain;
}

/* Track that holds all images - stacked on top of each other */
.sliding-images-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateZ(0); /* GPU acceleration */
  will-change: transform; /* Optimize for animations */
}

/* Individual images - all positioned absolutely on top of each other */
.service-slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fills the container without distortion */
  opacity: 0; /* Start hidden */
  will-change: opacity; /* GPU acceleration */
  transform: translateZ(0); /* Force GPU layer */
  backface-visibility: hidden; /* Prevent flickering */
  content-visibility: auto; /* Improve scroll performance */
}

/* First image stays fixed and visible (no animation) */
.service-slide-image:nth-child(1) {
  opacity: 1; /* Always visible */
  transform: translateZ(0); /* GPU acceleration */
  z-index: 1; /* Bottom layer */
}

/* Second image fades in and out */
.service-slide-image:nth-child(2) {
  animation: serviceFadeEffect 15s infinite 5s; /* Fade in/out effect - 5 sec transition */
  z-index: 2; /* Above first image */
}

/* Third image fades in and out */
.service-slide-image:nth-child(3) {
  animation: serviceFadeEffect 15s infinite 10s; /* Fade in/out effect - 5 sec transition */
  z-index: 3; /* Above second image */
}

/* Service fade in/out animation - GPU optimized */
@keyframes serviceFadeEffect {
  0% {
    opacity: 0;
    transform: translateZ(0);
  }
  10% {
    opacity: 1;
    transform: translateZ(0);
  }
  33% {
    opacity: 1;
    transform: translateZ(0);
  }
  43% {
    opacity: 0;
    transform: translateZ(0);
  }
  100% {
    opacity: 0;
    transform: translateZ(0);
  }
}

/* Pause animation on hover for better user experience */
.custom-shape-container:hover .sliding-images-track {
  animation-play-state: paused;
}

/* Responsive adjustments for custom shape container */
@media (max-width: 768px) {
  .services-row.first-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .services-row.second-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .custom-shape-container {
    width: 280px;  /* Smaller on tablets */
    height: 280px;
  }
  
  .service-item {
    max-width: 280px;
  }
  
  .service-item::after {
    font-size: 2rem; /* Smaller text on tablet */
  }
}

@media (max-width: 480px) {
  .services-row.first-row,
  .services-row.second-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .custom-shape-container {
    width: 250px;  /* Even smaller on mobile */
    height: 250px;
  }
  
  .service-item {
    max-width: 250px;
  }
  
  .service-item::after {
    font-size: 1.8rem; /* Even smaller text on mobile */
  }
}



.services-heading {
  font-size: 65px;
  font-family: 'Amatic SC', cursive;
  font-weight: 900;
  color: #c81f66;
  margin-bottom: 6px;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s ease;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-subheading {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 40px;
  font-family: 'Andika', sans-serif;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* On very wide screens, let the content breathe a bit more */
@media (min-width: 1440px) {
  .services-section,
  .services-grid {
    max-width: 1600px;
  }
}

.services-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
  content-visibility: auto; /* Improve scroll performance */
}

.services-row.first-row {
  justify-content: center;
  gap: 150px; /* Increased spacing between the 3 service cards */
}

.services-row.second-row {
  justify-content: center;
  gap: 100px;
}

.service-item {
  width: 100%;
  max-width: 320px;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Service items in rows */
.service-item {
  flex: 0 0 auto;
}

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

/* Glass effect overlay on hover */
.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  
  width: 120%;
  height: 110%;
  left: -10%;
  margin-bottom: 30px;
  /* top: -10%; */
  background: rgba(222, 161, 147, 0.3);
  backdrop-filter: blur(3px);
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  pointer-events: none;
}

.service-item:hover::before {
  opacity: 1;
}

/* "See More" text overlay */
.service-item::after {
  content: 'See More';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-family: 'Amatic SC', cursive;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 11;
  pointer-events: none;
  white-space: nowrap;
}

.service-item:hover::after {
  opacity: 1;
}

/* Make service items clickable when hovering (when See More is visible) */
.service-item:hover {
  cursor: pointer;
}

svg {
  width: 300px;
  height: auto;
}

.service-title {
  font-size: 35px;
  font-weight: bolder;
  margin-bottom: 8px;
  color: #DD1479;
  font-family: 'Amatic SC', cursive;
}

.service-text {
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.5;
  font-family: 'Andika', sans-serif;
  text-align: justify;
  text-justify: inter-word;
}
/* Google Font Import (Amatic SC Bold) */
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&display=swap');

/* Global heading styles - stroke, bold, and text shadow for all headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 900 !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.curved-bottom {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  /* margin-top: 55px; */
  border-radius: 50px;
}

.curved-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  clip-path: url(#curveClip);
}

/* Overlay Layer */
.curved-bottom::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(151, 27, 89, 0.15); /* #971B59 at 15% */
  clip-path: url(#curveClip);
  pointer-events: none;
}






.curved-bottomC {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-top: 60px;
  border-radius: 50px;
}

.curved-bottomC img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  clip-path: url(#curveClip);
}

/* Overlay Layer */
.curved-bottomC::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(151, 27, 89, 0.15); /* #971B59 at 15% */
  clip-path: url(#curveClip);
  pointer-events: none;
}




/* Text styling */
.curved-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Amatic SC', cursive;
  font-size: 80px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5); /* soft bottom shadow */
}


/* Customer Section */
.customer-section {
  text-align: center;
}

.customer-section h2 {
  color: #c81f66;
  font-family: 'Amatic SC', cursive;
  font-size: 65px;
  font-weight: 900;
  margin-bottom: 20px;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.testimonial-container {
  position: relative;
  height: 300px;
  max-width: 900px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Reduce/disable large decorative absolute elements on small screens to prevent overflow */
@media (max-width: 768px) {
  .dots-wrapper,
  .dots-wrapper2,
  .dots-wrapper3,
  .circle-wrapper,
  .circle-wrapper2,
  .dots-wrapperAboutLeft,
  .dots-wrapperAboutRight,
  .circle-AboutRight {
    display: none !important;
  }
}

/* Mobile spacing for testimonial section (avoid text touching screen edge) */
@media (max-width: 768px) {
  .customer-section {
    padding: 20px 16px;
    box-sizing: border-box;
    overflow: hidden; /* Prevent content from mixing */
  }

  .customer-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
    padding: 0 10px;
  }

  .testimonial-container {
    max-width: 100%;
    height: auto;
    min-height: 250px;
    padding: 0 10px;
    box-sizing: border-box;
    position: relative;
  }

  .testimonial {
    position: relative !important; /* Change from absolute to relative on mobile */
    padding: 20px 15px;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
  }

  .testimonial-text {
    margin-bottom: 15px;
    text-align: left;
    padding: 0;
    font-style: italic;
  }

  .testimonial-author {
    text-align: right;
    margin-top: 15px;
    padding-right: 10px;
  }

  .about-arrows {
    margin: 15px 0;
    text-align: center;
  }

  .about-arrows img {
    max-width: 150px;
    height: auto;
  }

  .testimonial-arrows {
    margin-top: 20px;
    padding: 0 10px;
  }

  .testimonial-arrows img {
    width: 200px;
    max-width: 80%;
  }
}

@media (max-width: 480px) {
  .customer-section {
    padding: 15px 12px;
  }

  .customer-section h2 {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .testimonial-container {
    min-height: 200px;
    padding: 0 8px;
  }

  .testimonial {
    padding: 15px 12px;
    font-size: 15px;
    line-height: 1.5;
  }

  .testimonial-text {
    font-size: 15px;
    margin-bottom: 12px;
    font-style: italic;
  }

  .testimonial-author {
    font-size: 14px;
    margin-top: 12px;
  }

  .about-arrows img {
    max-width: 120px;
  }

  .testimonial-arrows img {
    width: 180px;
  }
}

.testimonial {
  position: absolute;
  width: 100%;
  font-family: 'Andika', sans-serif;
  font-size: 18px;
  color: #000;
  line-height: 1.5;
  display: none; /* Hidden by default, shown by JavaScript */
  opacity: 1; /* Remove animation opacity */
  animation: none; /* Remove CSS animation, using JavaScript instead */
  padding: 0 20px;
  text-align: center;
}

.testimonial-text {
  margin-bottom: 15px;
  text-align: center;
  font-style: italic;
}

.testimonial-author {
  text-align: right;
  font-style: italic;
  font-weight: bold;
  color: #c81f66;
  margin-top: 10px;
}

.testimonial-arrows {
  margin-top: 10px; 
  text-align: center;
  position: relative;
  z-index: 10;
}

.testimonial-arrows img {
  width: 250px;
  height: auto;
  
}

.about-arrows img{
  height: 90px;
  margin-top: -0px;

}
/* About Section */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  padding: 3rem;
  flex-wrap: wrap;
  margin-top: 40px;
}

.about-image {
  flex: 1 1 60%;
  max-width: 700px;
  height: 450px; /* 👈 add this */
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 100px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* 👈 important */
  display: block;
  transition: transform 0.4s ease;
}


.about-image img:hover {
  transform: none;
}

.about-content {
  flex: 1 1 40%;
  max-width: 500px;
}

.about-content h2 {
  font-family: 'Amatic SC', cursive;
  font-weight: 900;
  font-size: 50px;
  color: #c81f66;
  margin-bottom: 1rem;
  margin-top: -10px;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-content p {
  font-family: 'Segoe UI', sans-serif;
  font-size: 1rem;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 350px;
  text-align: justify;
}

.btnthird {
  box-sizing: border-box;
  appearance: none;
  background-color: #000000;
  border: 2px solid #971B59;
  border-radius: 30px;
  cursor: pointer;
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  margin-top: 10px;
  padding: 15px 40px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  color: #fafafa;
  transition: all 0.3s ease;
}

/* Simple hover with zoom effect */
.btnthird:hover {
  background-color: #971B59;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(151, 27, 89, 0.3);
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-image,
  .about-content {
    max-width: 100%;
    border-radius: 20px;
  }
}

/* About Us Page Styles */
.about-page-heading {
  font-size: 4rem;
  font-family: 'Amatic SC', cursive;
  font-weight: 900;
  color: #c81f66;
  margin: 40px 0 20px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-page-subheading {
  font-size: 1.2rem;
  color: #333;
  font-family: 'Andika', sans-serif;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.about-section {
  padding: 80px 40px;
  /* background: linear-gradient(135deg, rgba(255, 182, 193, 0.05), rgba(255, 192, 203, 0.02)); */
  position: relative;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 80px;
}

.about-images {
  flex: 1;
  position: relative;
  max-width: 600px;
}

.about-images img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 20px;
  /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15); */
  /* transition: transform 0.3s ease; */
}

/* .about-images img:hover {
  transform: translateY(-5px);
} */

.about-text {
  flex: 1;
  padding: 40px;
  /* background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px); */
}

.about-text h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #971B59;
  font-family: 'Andika', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text h2 {
  font-family: 'Amatic SC', cursive;
  font-size: 3rem;
  color: #c81f66;
  margin-bottom: 30px;
  line-height: 1.3;
  font-weight: 900;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
  font-family: 'Andika', sans-serif;
  text-align: justify;
}

/* Responsive Design for About Us for desktop*/
@media (max-width: 1024px) {
  .about-container {
    gap: 60px;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
  }
  
  .about-images img {
    max-height: 460px;
  }
}

@media (max-width: 768px) {
  .about-page-heading {
    font-size: 3rem;
    margin: 30px 0 15px 0;
  }
  
  .about-page-subheading {
    font-size: 1.1rem;
    margin-bottom: 40px;
    padding: 0 20px;
  }
  
  .about-section {
    padding: 60px 20px;
  }
  
  .about-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-text {
    padding: 30px;
  }
  
  .about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
  
  .about-text p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .about-images img {
    width: 100%;
    max-height: 380px;
  }
}

@media (max-width: 480px) {
  .about-page-heading {
    font-size: 2.5rem;
  }
  
  .about-page-subheading {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  .about-section {
    padding: 40px 15px;
  }
  
  .about-text {
    padding: 25px;
  }
  
  .about-text h2 {
    font-size: 1.8rem;
  }
  
  .about-text p {
    font-size: 0.95rem;
  }
  
  .about-images img {
    height: 400px;
  }
}

/* Larger desktop screens (e.g., 1920x1080) */
@media (min-width: 1600px) {
  /* Slightly scale up global text */
  html {
    font-size: 18px;
  }

  /* Make hero heading more prominent */
  .slide-title {
    font-size: 72px;
  }

  /* Widen main content sections so they don't look tiny in the center */
  .services-section,
  .services-grid,
  .customer-section,
  .about-section,
  .contact-section,
  .service-info-section {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Testimonials: wider and more readable on big screens */
  .customer-section h2 {
    font-size: 80px;
  }

  .testimonial-container {
    max-width: 1200px;
  }

  .testimonial {
    font-size: 20px;
    line-height: 1.7;
  }

  /* About snippet under testimonials */
  .about-section .about-content h2,
  .about-section .about-text h2 {
    font-size: 3rem;
  }

  .about-section .about-content p,
  .about-section .about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  /* Slightly enlarge nav text for better readability on big screens */
  .nav-links a {
    font-size: 42px;
  }

  /* Ensure navbar is properly centered with equal spacing */
  .main-header {
    max-width: 1800px;
    padding: 10px 60px;
    height: 120px;        /* keep header fixed height */
    max-height: 120px;
  }
  
  /* Increase logo size on large screens */
  .main-header .logo img,
  header .logo img,
  .logo img,
  div.logo img,
  .logo > a > img {
    height: 300px !important;
    max-width: min(1000px, 85vw) !important;
    width: auto !important;
  }
}

/* Footer */
.footer {
  background-color: #e0529c;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 20px 10px;
}

.footer-container {
  display: flex;
  justify-content: flex-start;
  gap: 80px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 0 0;
}

.footer-col {
  flex: 1;
  min-width: 250px;
  padding: 0;
}

.footer-col:first-child {
  padding-left: 0 !important;
  margin-left: -30px !important;
  padding-right: 0;
  transform: translateX(-30px);
}

.footer-col:nth-child(2) {
  margin-left: 20px;
}

.footer-col h3 {
  font-family: 'Amatic SC', cursive;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 15px;
  color: #fff;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
}

.footer-col p {
  font-size: 15px;
  line-height: 1.6;
  color: #f8f8f8;
  margin-bottom: 10px;
}

.footer-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-icons a {
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-icons img {
  width: 24px;
  height: 24px;
  filter: invert(1);
  transition: all 0.3s ease;
}

.footer-icons img:hover {
  transform: scale(1.2);
  filter: invert(20%) sepia(70%) saturate(400%) hue-rotate(310deg) brightness(1.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  margin-top: 40px;
  padding-top: 10px;
  padding-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
  padding: 0;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-container {
    gap: 40px;
    padding: 0 15px 0 0;
  }
  
  .footer-col {
    min-width: 200px;
  }
  
  .footer-col:first-child {
    margin-left: -30px !important;
    transform: translateX(-30px);
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 15px 15px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 10px;
  }
  
  .footer-col {
    min-width: 100%;
    margin-left: 0 !important;
    padding: 0;
  }
  
  .footer-col:nth-child(2) {
    margin-left: 0;
  }
  
  .footer-col h3 {
    font-size: 22px;
  }
  
  .footer-col p {
    font-size: 14px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 12px;
    margin-top: 30px;
    padding-top: 10px;
    padding-bottom: 5px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 25px 10px 5px;
  }
  
  .footer-container {
    gap: 25px;
  }
  
  .footer-col h3 {
    font-size: 20px;
  }
  
  .footer-col p {
    font-size: 13px;
  }
  
  .footer-icons {
    gap: 10px;
  }
  
  .footer-icons img {
    width: 20px;
    height: 20px;
  }
}

/* Tablet Breakpoint (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .main-header {
    padding: 10px 30px;
    gap: 24px;
    background: rgba(255, 255, 255, 0.95); /* Ensure background is visible */
    z-index: 1000;
  }
  
  .logo img {
    height: 250px !important;
    max-width: min(800px, 75vw) !important;
  }
  
  .logo {
    margin-left: -60px; /* Slightly less negative margin on tablet */
    z-index: 1001;
  }
  
  .social-icons {
    z-index: 1001;
  }
  
  .nav-links {
    z-index: 1001;
  }
  
  .nav-links {
    gap: clamp(15px, 2.5vw, 60px);
  }
  
  .nav-links a {
    font-size: 32px;
  }
  
  .hero {
    height: 70vh;
    min-height: 500px;
  }
  
  .slide-title {
    font-size: 55px;
    width: min(85vw, 600px);
  }
  
  .footer-container {
    gap: 50px;
  }
}

.dots-wrapper {
  position: relative;
  width: 100%;
  /* spacing between hero and services */
}

.dots-wrapper img {
  position: absolute;/* control size */
  height: 600px;
  opacity: 0.8;
  pointer-events: none;
  left: -10px;  
}





.dots-wrapper2 {
  position: relative;
  width: 100%;
  /* spacing between hero and services */
}

.dots-wrapper2 img {
  position: absolute;/* control size */
  height: 600px;
  opacity: 0.8;
  pointer-events: none;
  right: -10px;   /* move image to the right side */
}





.dots-wrapper3 {
  position: relative;
  width: 100%;
  /* spacing between hero and services */
}

.dots-wrapper3 img {
  position: absolute;/* control size */
  height: 500px;
  opacity: 0.8;
  pointer-events: none;
  right: -10px;
  top: 600px;   /* move image to the right side */
}





.circle-wrapper {
  position: relative;
  width: 100%;
  margin-top: 50px; /* spacing after dots section */
}

.circle-wrapper img {
  position: absolute;
  right: -250px;   /* move image to the right side */
  top: 400px;        /* adjust vertical position */
  width: 500px;  /* control circle size */
  height: auto;
  opacity: 0.8;
  pointer-events: none;
}


.circle-wrapper2 {
  position: relative;
  width: 100%;
  margin-top: 40px; /* spacing after dots section */
}

.circle-wrapper2 img {
  position: absolute;
     /* move image to the right side */
  top: 450px;        /* adjust vertical position */
  width: 650px;  /* control circle size */
  height: 600px;
  left: -350px;
}

.dots-wrapperAboutLeft {
  position: relative;
  width: 100%;
  /* spacing between hero and services */
}

.dots-wrapperAboutLeft img {
  position: absolute;/* control size */
  height: 500px;
  opacity: 0.8;
  pointer-events: none;
  left: -10px;  
}

 .dots-wrapperAboutRight {
  position: relative;
  width: 100%;
}

.dots-wrapperAboutRight img {
  position: absolute;
  height: 500px;
  opacity: 0.8;
  pointer-events: none;
  right: -10px;  
} 


.circle-AboutRight {
  position: relative;
  width: 100%;
  margin-top: 40px; /* spacing after dots section */
}

.circle-AboutRight img {
  position: absolute;
     /* move image to the right side */
  top: 700px;        /* adjust vertical position */
  width: 650px;  /* control circle size */
  height: 400px;
  left: -180px;
  z-index: 10; /* Bring circle to front of image */
}









.service-section.expanded .service-content {
  max-height: 2000px;
}

.service-description {
  /* padding: 2rem 2rem 1rem; */
  padding-right: 5px;

}

/* .service-description p {
  font-family: 'Andika', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
  text-align: justify;
} */

/* .service-tabs {
  display: flex;
  gap: 1rem;
  padding: 0 2rem 1rem;
  flex-wrap: wrap;
} */

/* .tab-btn {
  background: white;
  border: 2px solid #971B59;
  color: #971B59;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-family: 'Amatic SC', cursive;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 120px;
} */

.tab-btn:hover {
  background: #971B59;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(151, 27, 89, 0.3);
}

.tab-btn.active {
  background: #971B59;
  color: white;
  box-shadow: 0 5px 15px rgba(151, 27, 89, 0.3);
}

.tab-content {
  display: none;
  padding: 0 2rem 2rem;
}

.tab-content.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



















.service-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-name {
  font-family: 'Amatic SC', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: #971B59;
}

.service-description {
  font-family: 'Andika', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #000000;
  margin-top: 0.25rem;
}

.service-price-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.price-arrow {
  font-size: 1.2rem;
  color: #971B59;
  font-weight: bold;
}

.service-price {
  font-family: 'Amatic SC', cursive;
  font-size: 1.8rem;
  font-weight: 900;
  color: #DD1479;
  min-width: 80px;
  text-align: right;
}

/* Contact Page Styles */
.contact-section {
  position: relative;
  padding: 80px 0;
  background: 
    linear-gradient(135deg, rgba(255, 182, 193, 0.1), rgba(255, 192, 203, 0.05)),
    url('assets/img/about-images/salon-interior-blurred.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Contact Form Section */
.contact-form-section {
  padding: 50px;
  border-radius: 20px;
}

.contact-heading {
  font-family: 'Amatic SC', cursive;
  font-size: 3rem;
  font-weight: 900;
  color: #c81f66;
  margin: 0 0 30px 0;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Simple Thank You Popup - Pink Themed */
.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
}

.popup-box {
  position: relative;
  background: linear-gradient(135deg, #fce4ec, #ffffff);
  border: 3px solid #DD1479;
  border-radius: 20px;
  padding: 50px 60px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 15px 50px rgba(221, 20, 121, 0.4);
  animation: popupSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.popup-title {
  font-family: 'Amatic SC', cursive;
  font-size: 3.5rem;
  font-weight: 900;
  color: #DD1479;
  margin: 0 0 20px 0;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.popup-message {
  font-family: 'Andika', sans-serif;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .popup-box {
    padding: 40px 30px;
    max-width: 85%;
  }
  
  .popup-title {
    font-size: 2.8rem;
  }
  
  .popup-message {
    font-size: 1rem;
  }
}

/* Error Message */
.error-message {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  animation: slideDown 0.5s ease-out;
  display: flex;
  align-items: center;
  gap: 12px;
}

.error-icon {
  font-size: 22px;
  font-weight: bold;
}

.error-text {
  font-family: 'Andika', sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row.single-field {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea {
  padding: 15px 20px;
  border: 2px solid #971B59;
  border-radius: 10px;
  font-family: 'Andika', sans-serif;
  font-size: 1rem;
  color: #c81f66;
  
  transition: all 0.3s ease;
  outline: none;
  background-color: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #DD1479;
  box-shadow: 0 0 0 3px rgba(221, 20, 121, 0.1);
  transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #c81f66;
  font-family: 'Andika', sans-serif;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Custom scrollbar for textarea to match pink theme */
.form-group textarea::-webkit-scrollbar {
  width: 8px;
}

.form-group textarea::-webkit-scrollbar-track {
  background: rgba(221, 20, 121, 0.1);
  border-radius: 4px;
}

.form-group textarea::-webkit-scrollbar-thumb {
  background: #DD1479;
  border-radius: 4px;
  border: 1px solid rgba(221, 20, 121, 0.3);
}

.form-group textarea::-webkit-scrollbar-thumb:hover {
  background: #DD1479;
  border: 1px solid rgba(151, 27, 89, 0.5);
}

/* Firefox scrollbar styling */
.form-group textarea {
  scrollbar-width: thin;
  scrollbar-color: #DD1479 rgba(221, 20, 121, 0.1);
}

/* Custom validation styling with pink theme */
.form-group input:invalid,
.form-group textarea:invalid {
  border-color: #DD1479;
  box-shadow: 0 0 0 3px rgba(221, 20, 121, 0.1);
}

.form-group input:invalid:focus,
.form-group textarea:invalid:focus {
  border-color: #DD1479;
  box-shadow: 0 0 0 3px rgba(221, 20, 121, 0.2);
}

/* Hide custom validation messages below fields */
.validation-message {
  display: none !important;
}

/* Custom pink validation tooltip */
.custom-tooltip {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: #DD1479;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: 'Andika', sans-serif;
  white-space: nowrap;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(221, 20, 121, 0.4);
  border: 2px solid #971B59;
  display: none;
  animation: tooltipFadeIn 0.3s ease-out;
  min-width: 200px;
  text-align: center;
}

.custom-tooltip::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #DD1479;
}

.custom-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #971B59;
  z-index: -1;
}

@keyframes tooltipFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Completely hide default browser validation */
.form-group input:invalid,
.form-group textarea:invalid {
  border-color: #DD1479;
  box-shadow: 0 0 0 3px rgba(221, 20, 121, 0.1);
  outline: none;
}

/* Hide default browser validation tooltips */
.form-group input:invalid::-webkit-validation-bubble,
.form-group textarea:invalid::-webkit-validation-bubble {
  display: none !important;
}

/* Disable default validation styling */
.form-group input:invalid::-webkit-validation-bubble-message,
.form-group textarea:invalid::-webkit-validation-bubble-message {
  display: none !important;
}

/* Additional CSS to prevent default validation UI */
.form-group input:invalid::-webkit-validation-bubble-arrow,
.form-group textarea:invalid::-webkit-validation-bubble-arrow {
  display: none !important;
}

/* Force hide all default validation elements */
input:invalid::-webkit-validation-bubble,
textarea:invalid::-webkit-validation-bubble,
input:invalid::-webkit-validation-bubble-message,
textarea:invalid::-webkit-validation-bubble-message,
input:invalid::-webkit-validation-bubble-arrow,
textarea:invalid::-webkit-validation-bubble-arrow {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Prevent default validation styling */
input:invalid,
textarea:invalid {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Additional overrides to completely disable browser validation */
input, textarea {
  -webkit-validation-bubble: none !important;
  -webkit-validation-bubble-message: none !important;
  -webkit-validation-bubble-arrow: none !important;
}

/* Force hide any remaining validation elements */
*::-webkit-validation-bubble,
*::-webkit-validation-bubble-message,
*::-webkit-validation-bubble-arrow {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
}

/* Hide default browser validation completely */
input:invalid::-webkit-validation-bubble,
textarea:invalid::-webkit-validation-bubble {
  display: none !important;
}

/* Make sure our custom tooltips are visible when shown */
.custom-tooltip.show {
  display: block !important;
}

/* Position relative for tooltip positioning */
.form-group {
  position: relative;
}

/* Custom required field indicator */
.form-group input[required]::after,
.form-group textarea[required]::after {
  content: " *";
  color: #DD1479;
  font-weight: bold;
}

/* Invalid field styling */
.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #DD1479;
  box-shadow: 0 0 0 3px rgba(221, 20, 121, 0.2);
  background-color: rgba(221, 20, 121, 0.05);
}

.form-group input.invalid:focus,
.form-group textarea.invalid:focus {
  border-color: #DD1479;
  box-shadow: 0 0 0 3px rgba(221, 20, 121, 0.3);
}

.send-message-btn {
  background-color: #000000;
  color: #fafafa;
  border: 2px solid #971B59;
  border-radius: 30px;
  font-size: 20px;
  padding: 15px 40px;
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 10px;
}

.send-message-btn:hover {
  background-color: #971B59;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(151, 27, 89, 0.3);
}

/* Map Section */
.map-section {
  height: 500px;
}

.map-container {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Contact Form Responsive */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-form {
    gap: 15px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .send-message-btn {
    width: 100%;
    padding: 12px 30px;
    font-size: 18px;
  }
  
  .map-section {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .send-message-btn {
    padding: 10px 25px;
    font-size: 16px;
  }
  
  .map-section {
    height: 300px;
  }
}

/* General Responsive Fixes */
@media (max-width: 768px) {
  /* Prevent horizontal overflow */
  body {
    overflow-x: hidden;
    width: 100%;
  }
  
  /* Fix dots wrapper on mobile */
  .dots-wrapper img,
  .dots-wrapper2 img {
    height: 400px;
    opacity: 0.6;
  }
  
  /* Services section improvements */
  .services-section {
    padding: 0 10px;
  }
  
  .services-grid {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .dots-wrapper img,
  .dots-wrapper2 img {
    height: 300px;
    opacity: 0.5;
  }
  
  .services-section {
    padding: 0 8px;
  }
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Error Message */
.error-message {
  background-color: rgba(221, 20, 121, 0.1);
  border: 2px solid #DD1479;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideDown 0.3s ease-out;
}

.error-icon {
  font-size: 1.5rem;
  color: #DD1479;
}

.error-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #DD1479;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-section {
    padding: 30px;
  }
  
  .contact-heading {
    font-size: 2.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .map-section {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-form-section {
    padding: 25px;
  }
  
  .contact-heading {
    font-size: 2rem;
  }
  
  /* Thank You Popup - Mobile Responsive */
  .popup-box {
    padding: 30px 25px;
    max-width: 90%;
  }
  
  .popup-title {
    font-size: 2.5rem;
  }
  
  .popup-message {
    font-size: 1rem;
  }
  
  /* Form Success Notification - Mobile Responsive */
  .form-success-notification {
    padding: 20px 20px;
  }
  
  .success-content {
    gap: 15px;
  }
  
  .success-icon-circle {
    width: 45px;
    height: 45px;
  }
  
  .success-icon-circle svg {
    width: 20px;
    height: 20px;
  }
  
  .success-title {
    font-size: 1.7rem;
  }
  
  .success-message {
    font-size: 0.95rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  
  .send-message-btn {
    font-size: 18px;
    padding: 12px 30px;
  }
}

