


/* Base Styles */
:root {
  --primary: #e08e6d;
  /* --primary:#FFA343; */
  /* --primary-dark: #d17a57; */
  --primary-dark: #ffa343;
  --primary-light: #f5d7c6;
  --secondary: #7d5a50;
  --secondary-light: #b4a19a;
  --accent: #f9a392;
  --dark: #222222;
  --gray-dark: #333333;
  --gray: #555555;
  /* --gray-light: #e5e7eb;
  --gray-lighter: #f8f8f8;
  --white: #ffffff; */
  /* --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); */
  --shadow: #ffa343 0px 2px 2px;

  /* --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); */
  --shadow-lg: #ffa343 0px 10px 36px, #ffa343 0px 0px 0px 1px;
  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
  --background-img: url("under\ 1.png");
  --background: #fdf6f0;
  /* --font-body: 'Work Sans', sans-serif; */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Ensures scrolling stops below fixed header */
}


section h1, article h1, nav h1, aside h1 {
  font-size: 2rem; /* or whatever size fits your design */
  line-height: 1.2;
  font-weight: 700;
}


/* Change the nav styles to make it fixed when scrolling */
nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 99;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 80px; /* Fixed height for consistency */
}

/* Remove any extra spacing or gaps in the layout by adding these rules */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  /* line-height: 1.6; */
  color: var(--gray-dark);
  background-color: var(--white);
}

/* Old - deprecated */
@media (-ms-high-contrast: active) {
  body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  /* line-height: 1.6; */
  color: var(--gray-dark);
  background-color: var(--white);
}
}

/* New - preferred */
@media (forced-colors: active) {
  body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  /* line-height: 1.6; */
  color: var(--gray-dark);
  background-color: var(--white);
}
}

@font-face {
  font-family: var(--font-body);
  font-display: swap;
  src: url('yourfont.woff2') format('woff2');
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Fix any potential spacing issues in sections */
section {
  padding: 4rem 0;
  margin: 0;
}

/* Adjust the hero section to account for fixed navbar */
.hero {
  padding-top: 80px;
}

/* Ensure proper spacing between sections */
/* .services,
.gallery,
.about,
.testimonials,
.contact,
.specialties,
.featured-decoration,
.faq,
.social-media {
  padding: 4rem 0;
  margin: 0;
} */

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* Preloader */
/* Enhanced preloader styles */
#preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #fff8f0 0%, #fff2e6 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: "Segoe UI", sans-serif;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}

/* Background pattern effect */
#preloader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(255, 163, 67, 0.05) 2%, transparent 10%),
    radial-gradient(circle at 75% 75%, rgba(255, 163, 67, 0.05) 2%, transparent 10%),
    radial-gradient(circle at 50% 50%, rgba(255, 163, 67, 0.08) 2%, transparent 10%);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  z-index: -1;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% {
    background-position: 0 0, 30px 30px;
  }
  100% {
    background-position: 60px 60px, 90px 90px;
  }
}

/* Animated particles */
.particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: rgba(255, 163, 67, 0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: float-particle 8s infinite ease-in-out;
}

@keyframes float-particle {
  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-100px) translateX(50px) scale(1.5);
    opacity: 0.5;
  }
}

.svg-container {
  width: 220px;
  height: 220px;
  position: relative;
  animation: pulse 2s infinite ease-in-out;
  filter: drop-shadow(0 5px 15px rgba(255, 163, 67, 0.3));
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

#spinner {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  filter: drop-shadow(0 0 12px #ff8c00);
}

circle {
  transition: stroke-dashoffset 0.5s ease-out;
}

.logo-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.preloader-logo {
  width: 160px;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 99, 71, 0.8));
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.progress-text {
  margin-top: 28px;
  font-weight: bold;
  font-size: 30px;
  color: #ff7b00;
  text-shadow: 0 0 15px rgba(255, 123, 0, 0.6);
  animation: glow 2s infinite alternate;
  letter-spacing: 0.5px;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px rgba(255, 123, 0, 0.5);
  }
  to {
    text-shadow: 0 0 20px rgba(255, 123, 0, 0.9);
  }
}

.percentage {
  margin-top: 10px;
  font-size: 24px;
  color: #fa0404;
  opacity: 0.9;
  font-weight: bold;
  letter-spacing: 1.5px;
  position: relative;
  padding: 0 15px;
}

.percentage::before,
.percentage::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 30px;
  background: linear-gradient(90deg, transparent, #fa0404, transparent);
  top: 50%;
}

.percentage::before {
  left: -35px;
}

.percentage::after {
  right: -35px;
}

.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .svg-container {
    width: 180px;
    height: 180px;
  }

  .preloader-logo {
    width: 140px;
  }

  .progress-text {
    font-size: 26px;
  }

  .percentage {
    font-size: 20px;
  }

  .percentage::before,
  .percentage::after {
    width: 20px;
  }

  .percentage::before {
    left: -25px;
  }

  .percentage::after {
    right: -25px;
  }
}

@media (max-width: 480px) {
  .svg-container {
    width: 150px;
    height: 150px;
  }

  .preloader-logo {
    width: 120px;
  }

  .progress-text {
    font-size: 22px;
  }

  .percentage {
    font-size: 18px;
  }

  .percentage::before,
  .percentage::after {
    width: 15px;
  }

  .percentage::before {
    left: -20px;
  }

  .percentage::after {
    right: -20px;
  }
}

@media (max-width: 320px) {
  .svg-container {
    width: 130px;
    height: 130px;
  }

  .preloader-logo {
    width: 100px;
  }

  .progress-text {
    font-size: 20px;
    margin-top: 20px;
  }

  .percentage {
    font-size: 16px;
  }

  .percentage::before,
  .percentage::after {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(255, 163, 67, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 163, 67, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-dark); /* Was var(--gray) */
  max-width: 48rem;
  margin: 0 auto;
  font-weight: 500; /* Add font weight for better readability */
}

/* Navigation */
nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 99;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 80px; /* Fixed height for consistency */
}

nav.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 60px; /* Reduced height when scrolled */
}

.nav__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 100%; /* Make content fill the nav height */
}

.corner-img {
  width: 23px;
  height: auto;
  transition: all 0.3s ease;
}

.left-img {
  margin-right: 10px;
}

nav.scrolled .corner-img {
  width: 17px; /* Smaller corner images when scrolled */
}

.logo img {
  height: 80px;
  width: auto;
  transition: all 0.3s ease;
  padding-top: 10px;
}

nav.scrolled .logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 1rem;
  transition: all 0.3s ease;
}

nav.scrolled .nav-links {
  gap: 1.5rem; /* Reduced gap when scrolled */
}

#style-2 {
  position: relative;
  transition: color 0.3s ease-in-out;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--dark);
  padding: 0.5rem 0;
}

nav.scrolled #style-2 {
  font-size: 1rem; /* Smaller font size when scrolled */
}

#style-2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-in-out;
}

#style-2:hover {
  color: var(--primary);
}

#style-2:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Active nav link styles */
/* .nav-link.active {
  color: #ff0404;
}

.nav-link.active::before {
  transform: scaleX(1);
} */

nav .checkbox {
  display: none;
}

nav input {
  display: none;
}

nav .checkbox i {
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--dark);
}

/* Animation classes */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animate__backInLeft {
  animation-name: backInLeft;
}

.animate__backInDown {
  animation-name: backInDown;
}

@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Hero Section */
.hero {
  position: relative;
  /* min-height: 100vh; */
  max-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  padding-top: 70px;
  
  /* background-image: linear-gradient(40deg, orange 50%, orangered 55%, orange 55%); */
  /* background-image: linear-gradient(40deg, #fca505 50%, rgb(253, 73, 8) 55%, #ffa705 55%);
  background-size: 2em 2em;
  background-repeat: round;
  background-color: orange; */
  /* background-image: url("about.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; */
}

.hero-content {
  text-align: center;
  position: relative;
  /* max-width: 64rem; */
  z-index: 2;
  padding-bottom: 1rem;
  padding-top: 1rem;
  /* font-size: clamp(1rem, 2vw, 2rem); */
}

.slideshow-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Remove background-attachment: fixed; */
  animation: slideshow 16s infinite ease-in-out;
  transition: background-image 0.3s ease-in-out;
}

/* Slideshow Animation */
@keyframes slideshow {
  0% {
    background-image: url("about.jpg");
  }
  25% {
    background-image: url("nali.jpg");
  }
  50% {
    background-image: url("peck.jpg");
  }
  75% {
    background-image: url("vinayagar\ 1.jpg");
  }
  100% {
    background-image: url("about.jpg");
  }
}

/* Optional: Overlay for contrast */
.slideshow-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-logo {
  max-width: 100%;
  width: 400px;
  height: auto;
  margin: 1rem auto 0.5rem;
  display: block;
  /* filter: drop-shadow(0 0 25px rgba(250, 1, 1, 0.7)); */
  /* filter: drop-shadow(20px 20px 20px rgba(255, 255, 255, 0.9)); */
 /* background-color: ; */
  filter:contrast(1);
   background-color: rgba(255, 255, 255, 0.4);
  padding: 10px 15px;
  border-radius: 20px;
}

.hero-title {
  font-weight: 900;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-family: "Work Sans", sans-serif;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
  /* background-color: rgba(0, 0, 0, 0.3); */
  padding: 10px;
  border-radius: 8px;
  display: inline-block;
}
/* @media screen and (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
} */

.hero-subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  /* max-width: 48rem; */
  margin-left: auto;
  margin-right: auto;
  /* background-color: rgba(0, 0, 0, 0.3); */
  padding: 10px 15px;
  border-radius: 8px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.highlight {
  /* color: rgb(253, 64, 6); */
  color: #ff8400;

  /* font-size: 60px; */
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  z-index: 1;
  animation: bounce 1.5s infinite;
}

.scroll-indicator span {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  50% {
    transform: translateY(10px) translateX(-50%);
  }
}

/* Services Section */
.services {
  /* padding: 6rem 0; */
  /* background-color: var(--gray-lighter); */
  position: relative;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 2rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background-color: var(--primary-light);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(--primary-dark);
  transform: rotateY(180deg);
}

.service-icon i {
  color: var(--primary-dark);
  width: 2rem;
  height: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-description {
  color: var(--gray-dark); /* Was var(--gray) */
  font-weight: 500; /* Add font weight for better readability */
}

/* Gallery Section */
.gallery {
  /* padding: 6rem 0; */
  /* background-color: var(--white); */
  /* background-color: #e5e5f7;
opacity: 1;
background-image:  repeating-radial-gradient( circle at 0 0, transparent 0, #e5e5f7 60px ), repeating-linear-gradient( #fce99e55,#ffce0b, #ffce0b ); */
  position: relative;
  z-index: 2;
  background-color: var(--white);
  /* box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05); */
  overflow: visible !important;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  background-color: transparent;
  border: 1px solid var(--gray-light);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  grid-auto-rows: auto;
  align-items: start;
}

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  height: auto; /* Allow height to adjust to content */
  min-height: 250px; /* Minimum height to maintain consistency */
  transition: all 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  text-align: left;
  color: var(--white);
}

.gallery-category {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: white;
}

.gallery-desc {
  font-size: 0.875rem;
  opacity: 0.9;
  color: white;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow-y: auto;
}

.lightbox-content {
  position: relative;
  margin: 3rem auto 1rem auto;
  padding: 1rem;
  width: 90%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Align to top */
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.lightbox-image,
.lightbox-video {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  margin-top: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1101;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}


/* About Section */
.about {
  /* padding: 6rem 0; */
  background-color: var(--gray-lighter);
  position: relative;
  z-index: 2;
  background-color: var(--white);
  /* box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05); */
  overflow: visible !important;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -2rem;
  right: 2rem;
  background-color: var(--primary);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-badge-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about-badge-text {
  font-size: 0.875rem;
}

.about-content h2 {
  text-align: left;
}

.about-content {
  margin: 0.5rem 0 2rem;
}

.about-text {
  margin-bottom: 1.5rem;
  color: var(--gray-dark); /* Was var(--gray) */
  font-size: 1.05rem;
  font-weight: 500; /* Add font weight for better readability */
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-feature {
  display: flex;
  align-items: center;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-light);
  border-radius: 50%;
  margin-right: 1rem;
}

.feature-icon i {
  color: var(--primary);
}

.feature-text {
  font-weight: 500;
  color: var(--dark);
}

/* Testimonials Section - Enhanced border visibility and responsiveness */
.testimonials {
  padding: 6rem 0;
  background-color: var(--gray-lighter);
  position: relative;
  z-index: 2;
  overflow: visible !important;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.testimonial-slide.active {
  display: block;
}

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

/* Enhanced testimonial content with better border visibility */
.testimonial-content {
 
  background-color: var(--white);
  border-radius: 2rem;
  padding: 3rem;
  text-align: center;
  position: relative;
  border: 2px solid black; /* Enhanced border visibility */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-content:hover {
  transform: translateY(-5px);
  /* box-shadow: var(--shadow-lg); */
  /* Border changes color on hover */
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
}

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

.author-name {
  font-size: 1.125rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.author-event {
  font-size: 0.875rem;
  color: var(--primary);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0.5rem;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  color: var(--primary);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  margin: 0 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--primary);
  transform: scale(1.3);
}

/* Contact Section */
.contact {
  /* background-color: var(--gray-lighter); */
  /* background-color: #ffa343; */
  position: relative;
  z-index: 2;
  /* background-color: var(--white); */
  /* box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05); */
  overflow: visible !important;
  /* background-color: var(--background); */
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-form-container {
  /* background-color: var(--white); */
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--dark);
  transition: color 0.3s ease;
}

.form-group label.required::after {
  content: " *";
  color: #dc2626;
  font-weight: bold;
}

.form-group label.optional::after {
  content: " (optional)";
  color: #6b7280;
  font-size: 0.85em;
  font-weight: normal;
}

.form-group input,
.form-group textarea {
  padding: 0.875rem;
  border: 1px solid var(--gray-light);
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.8);
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(255, 163, 67, 0.2);
  background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 163, 67, 0.3);
  background-color: #fff;
}

.error-message {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.info-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  margin-top: 0.15rem;
  margin-right: 1rem;
}

.info-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.map-container {
  background-color: var(--gray-light);
  border-radius: 1rem;
  overflow: hidden;
  height: 300px;
}

/* @media (max-width: 320px) {
  .map-container {
    height: 20px;
    width: 20px;
  }
} */

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-light);
  color: var(--gray);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--white);
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 20rem;
  z-index: 1050;
  transform: translateY(150%);
  transition: transform 0.3s ease;
}

.toast.show {
  transform: translateY(0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.toast-icon {
  color: var(--primary);
  font-size: 1.5rem;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.toast-message {
  color: var(--gray);
  font-size: 0.875rem;
}

.toast-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--gray);
  margin-left: 1rem;
}

/* Footer */
.footer {
  /* background-color: var(--dark); */
  /* background-color: #ffa55d; */
  background-color: #ffa343;
  /* color: var(--white); */
  color: black;
  /* padding: 5rem 0 2rem; */
  position: relative;
}

.footer-flower {
  text-align: center;
  margin-top: 0px; /* Adjust if needed to pull it above the footer slightly */
}

.footer-flower img {
  width: 690px; /* Resize as per your design */
  height: auto;
}

@media (max-width: 768px) {
  .footer-flower img {
    max-width: 100%;
  }
  /* .button::before{
    width: 100%;
    height: 100%;
  } */
  .button:hover::before {
    scale: 10;
  }
}

@media (max-width: 480px) {
  .footer-flower img {
    max-width: 100%;
  }
}

/* .footer::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: var(--dark);
  clip-path: polygon(0 100%, 100% 100%, 50% 0);
} */

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about {
  max-width: 25rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  max-height: 80px;
  /* filter: brightness(0) invert(1); */
}

.footer-description {
  color: #000000; /* Was black with opacity */
  margin-bottom: 1.5rem;
  font-weight: 500; /* Add font weight for better readability */
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-menu a {
  color: #000000; /* Was var(--gray-light) with opacity */
  transition: all 0.3s ease;
  font-weight: 500; /* Add font weight for better readability */
}

.footer-menu a:hover {
  color: var(--primary);
  opacity: 1;
  transform: translateX(5px);
}

.footer-newsletter-text {
  color: #000000; /* Was var(--gray-light) with opacity */
  margin-bottom: 1.5rem;
  font-weight: 500; /* Add font weight for better readability */
}

.footer-form-group {
  display: flex;
  position: relative;
}

.footer-form-group input {
  width: 100%;
  padding: 0.875rem;
  padding-right: 3.5rem;
  border: none;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: inherit;
}

.footer-form-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-form-group input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
}

.btn-subscribe {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary);
  color: var(--white);
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-subscribe:hover {
  background-color: var(--primary-dark);
}

.newsletter-success {
  color: var(--primary-light);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.newsletter-success.show {
  display: block;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  /* padding-bottom: 5rem; */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 600px) {
  .footer-bottom {
    padding-bottom: 5rem;
  }
}
.copyright {
  color: var(--gray-light);
  opacity: 0.7;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--gray-light);
  font-size: 0.875rem;
  opacity: 0.7;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary);
  opacity: 1;
}

/* Mobile menu styles */
@media (max-width: 768px) {
  nav {
    height: 70px; /* Slightly smaller on mobile by default */
  }

  nav.scrolled {
    height: 55px; /* Even smaller when scrolled on mobile */
  }

  .logo img {
    height: 70px; /* Slightly smaller logo on mobile */
  }

  nav.scrolled .logo img {
    height: 50px; /* Smaller logo when scrolled on mobile */
  }

  .corner-img {
    width: 20px;
  }

  nav .checkbox {
    display: block;
    transition: all 0.3s ease;
  }

  nav.scrolled .checkbox i {
    font-size: 1.5rem; /* Smaller menu icon when scrolled */
  }

  ul.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    height: calc(100vh - 70px);
    top: 70px; /* Match the nav height */
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    text-align: center;
    justify-content: center;
    padding: 2rem 0;
    gap: 2rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: all 0.3s ease;
  }

  nav.scrolled ul.nav-links {
    top: 55px; /* Match the scrolled nav height */
    height: calc(100vh - 55px);
  }

  nav input:checked ~ ul {
    display: flex;
  }

  ul li a {
    font-size: 1.25rem;
  }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* Specialties Section */
.specialties {
  padding: 5rem 0;
  background-color: var(--white);
  position: relative;
  z-index: 2;
  background-color: var(--white);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
  overflow: visible !important;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

.specialty-card {
  background-color: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.specialty-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.specialty-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.specialty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.specialty-card:hover .specialty-image img {
  transform: scale(1.05);
}

.specialty-content {
  padding: 1.5rem;
}

.specialty-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.specialty-content p {
  color: var(--gray-dark); /* Was var(--gray) */
  font-size: 0.95rem;
  font-weight: 500; /* Add font weight for better readability */
}

/* Featured Decoration */
.featured-decoration {
  padding: 5rem 0;
  position: relative;
  z-index: 2;
  background-color: var(--white);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
  overflow: visible !important;

  background-color: var(--white);
}

.featured-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.featured-image {
  flex: 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.featured-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.featured-image:hover .featured-img {
  transform: scale(1.05);
}

.featured-text {
  flex: 1;
  padding: 1rem;
}

.featured-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.featured-text p {
  margin-bottom: 1.5rem;
  color: var(--gray-dark); /* Was var(--gray) */
  font-size: 1.05rem;
  font-weight: 500; /* Add font weight for better readability */
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.featured-item {
  background-color: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.featured-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.featured-item-img-container {
  height: 250px;
  overflow: hidden;
}

.featured-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-item:hover img {
  transform: scale(1.05);
}

.featured-item h3 {
  font-size: 1.25rem;
  margin: 1.25rem 1.25rem 0.5rem;
  color: var(--dark);
}

.featured-item p {
  font-size: 0.95rem;
  color: var(--gray);
  margin: 0 1.25rem 1.25rem;
}

.fixed-img {
  width: 100px;
  height: auto;
  position: fixed;
  bottom: 0;
  z-index: 999;
}

.bottom-left {
  left: 0;
}

.bottom-right {
  right: 0;
}

.under-image {
  width: 300px;
  height: 90px;
  background-image: var(--background-img);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: -14px auto 0px auto;
  display: block;
}

.main {
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Work Sans", sans-serif;
}

.roller-wrapper {
  text-align: center;
  text-transform: uppercase;
  font-size: 2rem;
}

.roller-text {
  text-align: center;
  text-transform: uppercase;
  color: #da0707;
  font-size: 2rem;
  font-weight: 800;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
  /* padding-bottom: 20px; */
}

.roller {
  height: 4.125rem;
  line-height: 4rem;
  font-weight: 450;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}

#spare-time {
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: 1rem;
  font-weight: bold;
  margin-top: 0;
  /* color: #05ebf3; */
  color: #f30519;
}

.roller #rolltext {
  position: absolute;
  top: 0;
  animation: slide 5s infinite;
}

@keyframes slide {
  0% {
    top: 0;
  }
  25% {
    top: -4rem;
  }
  50% {
    top: -8rem;
  }
  72.5% {
    top: -12.25rem;
  }
}

/* Social Media Section */
.social-media {
  /* padding: 6rem 0; */
  /* background-color: var(--gray-lighter); */
  position: relative;
  z-index: 2;
  background-color: var(--white);
  /* box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05); */
  overflow: visible !important;
}

.social-media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.social-embed {
  background-color: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-embed:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.social-embed-title {
  padding: 1.5rem;
  margin: 0;
  font-size: 1.5rem;
  color: var(--dark);
  border-bottom: 1px solid var(--gray-light);
}

.social-embed-title i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.responsive-embed {
  position: relative;
  padding-bottom: 20.25%;
  height: 0;
  overflow: hidden;
}

.responsive-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.social-follow-btn {
  display: block;
  margin: 1.5rem;
  text-align: center;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 2rem;
  left: 2rem;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
}

/* NEW RESPONSIVE MEDIA QUERIES */

/* Mobile Small (320px) */
@media (max-width: 320px) {
  .section-title {
    font-size: 1.75rem;
  }
  .under-image {
    width: 200px;
    height: 90px;
    background-image: var(--background-img);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: -30px auto 0px auto;
    display: block;
  }

  .corner-img {
    width: 18px;
  }

  nav.scrolled .corner-img {
    width: 13px;
  }

  .hero-logo {
    width: 200px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }
  /* 
  .btn {
    padding: 0.6rem 2rem;
    font-size: 0.9rem;
  } */

  .btn-lg {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
  }

  .testimonial-content {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .contact-form-container,
  .contact-info {
    padding: 1.25rem;
  }

  .contact-title {
    font-size: 1.4rem;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.7rem;
    font-size: 0.9rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .whatsapp-float {
    width: 35px;
    height: 35px;
    font-size: 22px;
    bottom: 1rem;
    left: 1rem;
  }

  .back-to-top {
    width: 2.5rem;
    height: 2.5rem;
    bottom: 1rem;
    right: 1rem;
  }

  .roller {
    height: 2rem;
    line-height: 2rem;
    font-size: 1.2rem;
  }

  .roller-text {
    font-size: 1.5rem;
  }

  #spare-time {
    font-size: 0.8rem;
    letter-spacing: 0.5rem;
  }

  .contact-image {
    width: 220px;
    height: 65px;
    margin: -25px auto 0px auto;
  }

  .toast {
    min-width: auto;
    width: calc(100% - 2rem);
    left: 1rem;
    right: 1rem;
  }
}

/* Mobile Medium (375px) */
@media (min-width: 321px) and (max-width: 375px) {
  .section-title {
    font-size: 1.9rem;
  }
  .under-image {
    width: 200px;
    height: 90px;
    background-image: var(--background-img);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: -30px auto 0px auto;
    display: block;
  }

  .hero-logo {
    width: 220px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  /* .btn {
    padding: 0.65rem 2rem;
  } */

  .testimonial-content {
    padding: 1.75rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .contact-form-container,
  .contact-info {
    padding: 1.5rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .roller {
    height: 2.25rem;
    line-height: 2.25rem;
  }

  .roller-text {
    font-size: 1.7rem;
  }

  .contact-image {
    width: 250px;
    height: 70px;
    margin: -28px auto 0px auto;
  }
}

.responsive-embed {
  padding-bottom: 28% !important;
}

/* Mobile Large (425px) */
@media (min-width: 376px) and (max-width: 425px) {
  .section-title {
    font-size: 2rem;
  }
  .under-image {
    width: 200px;
    height: 90px;
    background-image: var(--background-img);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: -30px auto 0px auto;
    display: block;
  }

  .hero-logo {
    width: 240px;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  /* .btn {
    padding: 0.7rem 2rem;
  } */

  .testimonial-content {
    padding: 2rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .roller {
    height: 2.5rem;
    line-height: 2.5rem;
  }

  .roller-text {
    font-size: 1.8rem;
  }

  .contact-image {
    width: 270px;
    height: 75px;
    margin: -30px auto 0px auto;
  }
}

/* Tablet (768px) */
@media (min-width: 426px) and (max-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
  .under-image {
    width: 230px;
    height: 90px;
    background-image: var(--background-img);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: -26px auto 0px auto;
    display: block;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-media-grid {
    grid-template-columns: 1fr;
  }

  /* .responsive-embed {
    padding-bottom: 56.25%;
  } */

  .responsive-embed {
    padding-bottom: 28% !important;
  }
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roller {
    height: 3rem;
    line-height: 3rem;
  }

  .roller-text {
    font-size: 2rem;
  }

  #spare-time {
    font-size: 1rem;
    letter-spacing: 0.8rem;
  }
}

/* Laptop (1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specialties-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .social-media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-content {
    flex-direction: row;
    align-items: center;
  }

  .featured-text {
    padding: 0 0 0 2rem;
  }
}

/* Desktop (1025px and above) */
@media (min-width: 1025px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .specialties-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .social-media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-content {
    flex-direction: row;
    align-items: center;
  }

  .featured-text {
    padding: 0 0 0 2rem;
  }
}

/* Fix for roller animation on different screen sizes */
@media screen and (max-width: 600px) {
  .roller-wrapper {
    font-size: 2.125rem;
  }

  .roller {
    height: 2.0rem;
    line-height: 2.125rem;
    font-size: 25px;
    font-weight: 500;
  }

  #spare-time {
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
  }

  .roller #rolltext {
    animation: slide-mob 5s infinite;
  }

  @keyframes slide-mob {
    0% {
      top: 0;
    }
    25% {
      top: -2.125rem;
    }
    50% {
      top: -4.25rem;
    }
    72.5% {
      top: -6.375rem;
    }
  }
}

/* Fix for contact section on mobile */
@media (max-width: 480px) {
  .contact-form-container,
  .contact-info {
    padding: 1.5rem;
    width: 100%; /* Add this to ensure full width */
    max-width: 100%; /* Add this to prevent overflow */
    box-sizing: border-box; /* Add this to include padding in width calculation */
  }

  .contact-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    word-wrap: break-word; /* Add this to handle long text */
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem;
    font-size: 0.95rem;
    width: 100%; /* Add this to ensure full width */
    max-width: 100%; /* Add this to prevent overflow */
    box-sizing: border-box; /* Add this to include padding in width calculation */
  }

  .form-group textarea {
    min-height: 6rem;
  }

  .contact-form {
    gap: 1rem;
    width: 100%; /* Add this to ensure full width */
  }

  .form-row {
    gap: 1rem;
    width: 100%; /* Add this to ensure full width */
  }

  .info-item {
    margin-bottom: 1rem;
    flex-wrap: wrap; /* Add this to allow wrapping on small screens */
  }

  .info-label {
    font-size: 0.9rem;
  }

  .info-text {
    font-size: 0.85rem;
    width: 100%; /* Add this to ensure full width */
    word-break: break-word; /* Add this to handle long text */
  }

  .btn-full {
    padding: 0.75rem 1rem;
    width: 100%; /* Add this to ensure full width */
  }

  .info-item {
    align-items: flex-start;
  }
/* 
  .info-icon {
    min-width: 10px;
  } */

  .info-content {
    flex: 1;
    width: calc(100% - 30px); /* Add this to ensure proper width accounting for icon */
  }

  /* Fix for map container */
  .map-container {
    width: 100%;
    overflow: hidden;
  }

  /* Fix for contact grid */
  .contact-grid {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  /* Fix for container in contact section */
  .contact .container {
    padding: 0 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* Add specific fix for problematic devices */
@media screen and (min-width: 360px) and (max-width: 420px) {
  .contact-form-container,
  .contact-info,
  .form-group input,
  .form-group textarea,
  .btn-full,
  .map-container {
    transform: translateX(0); /* Force no horizontal shift */
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }

  /* .contact .container {
    overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Ensure form inputs are properly sized on all devices */
@media (max-width: 768px) {
  /* input[type="date"] {
    min-height: 45px;               
  } */

  .btn-full {
    margin-top: 0.5rem;
  }
}

.shine-button {
  position: relative;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  /* padding-block: 0.5rem; */
  /* padding-inline: 1.25rem; */
  /* background-color: rgb(252, 123, 3); */
  background-color: #fa6d35;
  border-radius: 9999px;
  display: flex;
  /* align-items: center;
  justify-content: center; */
  color: #ffffff;
  /* gap: 10px; */
  /* font-weight: bold; */
  border: 3px solid rgba(255, 255, 255, 0.3);
  /* outline: none;
  overflow: hidden; */
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  /* text-decoration: none; */
  /* margin: 1.5rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto; */
}
@media screen and (max-width: 450px) {
  .shine-button {
    /* padding-block: 0.5rem;
    padding-inline: 1.25rem; */
    font-size: 13px;
    /* margin: 1.5rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto; */
  }
}

.shine-button:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.6);
}

.shine-button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
  animation: shine 1.5s ease-out infinite;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

/* Media Query for 432px width */
@media (max-width: 432px) {
  /* General typography adjustments */
  .section-title {
    font-size: 1.85rem;
  }
  .under-image {
    width: 200px;
    height: 90px;
    background-image: var(--background-img);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: -30px auto 0px auto;
    display: block;
  }

  .section-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }

  /* Hero section adjustments */
  .hero-logo {
    width: 230px;
  }

  .hero-title {
    font-size: 1.75rem;
    padding: 0 10px;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }

  .hero-buttons {
    gap: 1rem;
  }

  /* .btn {
    padding: 0.65rem 2rem;
    font-size: 0.95rem;
  } */

  /* Roller text adjustments */
  .roller-wrapper {
    font-size: 1.8rem;
  }

  .roller {
    height: 2.2rem;
    line-height: 2.2rem;
  }

  .roller-text {
    font-size: 1.6rem;
  }

  #spare-time {
    font-size: 0.9rem;
    letter-spacing: 0.5rem;
  }

  /* Section adjustments */
  .services-grid,
  .gallery-grid,
  .featured-grid,
  .specialties-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card,
  .gallery-item,
  .featured-item,
  .specialty-card {
    margin: 0 10px;
  }

  /* Gallery adjustments */
  .gallery-filter {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 5px 2rem;
  }

  .filter-btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  /* About section adjustments */
  .about-badge {
    right: 50%;
    transform: translateX(50%);
    padding: 1.2rem;
  }

  .about-badge-number {
    font-size: 2rem;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Testimonials adjustments */
  .testimonial-content {
    padding: 1.8rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  /* Contact form adjustments */
  .contact-form-container,
  .contact-info {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem;
  }

  .map-container {
    height: 250px;
  }

  /* Social media section */
  .responsive-embed {
    padding-bottom: 35% !important;
  }

  .social-follow-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }

  /* Footer adjustments */
  .footer-grid {
    gap: 2rem;
  }

  .footer-logo-img {
    max-height: 70px;
  }

  .footer-bottom {
    text-align: center;
  }

  /* Navigation adjustments */
  .logo img {
    height: 60px;
  }

  .corner-img {
    width: 19px;
  }

  /* Contact image */
  .contact-image {
    width: 260px;
    height: 70px;
    margin: -28px auto 0px auto;
  }
}

/* Media Query for 300px width */
@media (max-width: 300px) {
  /* General typography adjustments */
  .section-title {
    font-size: 1.5rem;
  }
  .under-image {
    width: 200px;
    height: 90px;
    background-image: var(--background-img);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: -30px auto 0px auto;
    display: block;
  }

  .section-subtitle {
    font-size: 0.85rem;
    padding: 0 5px;
  }

  /* Navigation adjustments */
  .logo img {
    height: 50px;
  }

  .corner-img {
    width: 19px;
  }

  /* Hero section adjustments */
  .hero-logo {
    width: 180px;
  }

  .hero-title {
    font-size: 1.4rem;
    padding: 0 5px;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    padding: 0 10px;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    gap: 0.75rem;
    flex-direction: column;
    align-items: center;
  }

  /* .btn {
    padding: 0.6rem 2rem;
    font-size: 0.85rem;
    width: 90%;
  } */

  /* Roller text adjustments */
  .roller-wrapper {
    font-size: 1.5rem;
  }

  .roller {
    height: 1.8rem;
    line-height: 1.8rem;
  }

  .roller-text {
    font-size: 1.3rem;
  }

  #spare-time {
    font-size: 0.8rem;
    letter-spacing: 0.3rem;
  }

  /* Section adjustments */
  .services,
  .gallery,
  .about,
  .testimonials,
  .contact,
  .specialties,
  .featured-decoration {
    padding: 3rem 0;
  }

  .service-card,
  .gallery-item,
  .featured-item,
  .specialty-card {
    margin: 0 5px;
    padding: 1.25rem;
  }

  .service-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
  }

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

  .service-description {
    font-size: 0.85rem;
  }

  /* Gallery adjustments */
  .gallery-filter {
    gap: 0.3rem;
    margin: 0 2px 1.5rem;
  }

  .filter-btn {
    padding: 0.35rem 0.8rem;
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
  }

  /* About section adjustments */
  .about-badge {
    padding: 1rem;
    right: 50%;
    transform: translateX(50%);
  }

  .about-badge-number {
    font-size: 1.8rem;
  }

  .about-badge-text {
    font-size: 0.75rem;
  }

  .about-text {
    font-size: 0.9rem;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 0.75rem;
  }

  /* Testimonials adjustments */
  .testimonial-content {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .author-image {
    width: 45px;
    height: 45px;
  }

  .author-name {
    font-size: 1rem;
  }

  /* Contact form adjustments */
  .contact-form-container,
  .contact-info {
    padding: 1.25rem;
  }

  .contact-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }

  .form-group label {
    font-size: 0.8rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.65rem;
    font-size: 0.85rem;
  }

  .form-group textarea {
    min-height: 5rem;
  }

  .map-container {
    height: 200px;
  }

  /* Social media section */
  .responsive-embed {
    padding-bottom: 45% !important;
  }

  .social-follow-btn {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    margin: 1rem;
  }

  /* Footer adjustments */
  .footer-flower img {
    width: 100%;
  }

  .footer-logo-img {
    max-height: 60px;
  }

  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .footer-description,
  .footer-menu a,
  .footer-newsletter-text {
    font-size: 0.85rem;
  }

  .social-link {
    width: 35px;
    height: 35px;
  }

  .footer-form-group input {
    padding: 0.7rem;
    font-size: 0.85rem;
  }

  .btn-subscribe {
    width: 2.2rem;
    height: 2.2rem;
  }

  /* Floating buttons */
  .whatsapp-float {
    width: 35px;
    height: 35px;
    font-size: 20px;
    bottom: 1rem;
    left: 1rem;
  }

  .back-to-top {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
    bottom: 1rem;
    right: 1rem;
  }

  /* Contact image */
  .contact-image {
    width: 200px;
    height: 60px;
    margin: -20px auto 0px auto;
  }

  /* Toast notification */
  .toast {
    min-width: auto;
    width: calc(100% - 1rem);
    left: 0.5rem;
    right: 0.5rem;
    padding: 0.75rem;
  }

  .toast-icon {
    font-size: 1.2rem;
  }

  .toast-title {
    font-size: 0.9rem;
  }

  .toast-message {
    font-size: 0.75rem;
  }
}

/* Breadcrumb Navigation */
.breadcrumb-container {
  background-color: var(--gray-lighter);
  padding: 0.5rem 0;
  margin-top: 70px;
}

.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 0.5rem;
  color: var(--gray);
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq {
  /* padding: 5rem 0; */
  padding-top: -10px;
  background-color: var(--white);
  position: relative;
  z-index: 2;
  background-color: var(--white);
  /* box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05); */
  overflow: visible !important;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid var(--gray-light);
  border-radius: 0.5rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem;
  background-color: var(--gray-lighter);
  font-size: 1.125rem;
  margin: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
  transition: background-color 0.3s ease;
  
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary);
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.25rem;
  max-height: 500px;
}

.faq-answer p {
  margin: 0;
  color: var(--gray-dark); /* Was var(--gray) */
  font-weight: 500; /* Add font weight for better readability */
}

/* Improve contact form container color for better contrast */
.contact-form-container {
  background-color: var(--white);
}

/* Add styles for image lazy loading */
.lazy-load {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy-load.loaded {
  opacity: 1;
}

/* Improve accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Add focus styles for better accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Improve mobile responsiveness */
@media (max-width: 768px) {
  .faq-question {
    font-size: 1rem;
    padding: 1rem;
  }

  .faq-answer {
    padding: 0 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 1rem;
  }
}

/* Extra small devices (phones, 433px and down) */
@media (max-width: 433px) {
  nav {
    height: 65px; /* Even smaller on very small devices */
  }

  nav.scrolled {
    height: 50px; /* Smaller when scrolled on very small devices */
  }

  .logo img {
    height: 65px;
  }

  nav.scrolled .logo img {
    height: 45px;
  }

  .corner-img {
    width: 19px;
  }

  nav.scrolled .corner-img {
    width: 15px;
  }

  nav.scrolled .checkbox i {
    font-size: 1.4rem;
  }

  nav.scrolled ul.nav-links {
    top: 50px;
    height: calc(100vh - 50px);
  }
}

/* Improved mobile navigation for screen sizes between 767px and 320px */
@media (max-width: 767px) and (min-width: 321px) {
  nav {
    height: 65px;
  }

  nav.scrolled {
    height: 50px;
  }

  .logo img {
    height: 65px;
    padding-top: 5px;
  }

  nav.scrolled .logo img {
    height: 45px;
  }

  .nav__content {
    /* padding: 0 10px; */
  }

  nav .checkbox {
    margin-right: 5px;
  }

  nav .checkbox i {
    font-size: 1.5rem;
  }

  ul.nav-links {
    top: 65px;
    height: calc(100vh - 65px);
    padding: 1.5rem 0;
    gap: 1.5rem;
  }

  nav.scrolled ul.nav-links {
    top: 50px;
    height: calc(100vh - 50px);
  }

  ul.nav-links li a {
    font-size: 1.1rem;
  }
}

/* Extra small devices (phones, 320px and down) */
@media (max-width: 320px) {
  nav {
    height: 60px;
  }

  nav.scrolled {
    height: 45px;
  }

  .logo img {
    height: 55px;
    padding-top: 5px;
  }

  nav.scrolled .logo img {
    height: 40px;
  }

  /* .nav__content {
    padding: 0 8px;
  } */

  nav .checkbox {
    margin-right: 3px;
  }

  nav .checkbox i {
    font-size: 1.3rem;
  }

  ul.nav-links {
    top: 60px;
    height: calc(100vh - 60px);
    padding: 1rem 0;
    gap: 1.2rem;
  }

  nav.scrolled ul.nav-links {
    top: 45px;
    height: calc(100vh - 45px);
  }

  ul.nav-links li a {
    font-size: 1rem;
  }
}

.icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.icon-img:hover {
  transform: scale(1.1);
}

/* Ensure YouTube Shorts display correctly */
/* .youtube-shorts-wrapper {
  position: relative;
  width: 100%;
 
  max-width: 360px;
  margin: auto;
  padding-bottom: 177.78%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background-color: #000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
} */

.youtube-shorts-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
  /* aspect-ratio: 2 / 5; */
  border: 0;
  border-radius: 12px;
  /* pointer-events: auto; */
  z-index: 1;
}

.gallery-overlay {
  pointer-events: none; /* Prevent blocking iframe clicks */
}

/* Ensure gallery items with videos maintain proper sizing */
.gallery-item[data-category="Video"] {
  /* aspect-ratio: 9 / 16; */
}

/* Responsive adjustments for gallery grid on different screen sizes */
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* @media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .gallery-item[data-category="Video"] {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
} */

/* Fix for active navigation links */
.nav-links a.active {
  color: var(--primary-dark) !important;
  font-weight: bold;
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-dark);
  transform: scaleX(1) !important; /* Force the underline to show */
}

/* Fix for gallery video alignment */

.youtube-shorts-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.youtube-shorts-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 6; /* Maintain aspect ratio */
  top: 0;
  left: 0;
  border: none;
  border-radius: 1rem;
  object-fit: cover;
}

/* Fix for social media embeds to prevent dark mode color changes */
.social-embed {
  background-color: #ffffff !important; /* Force white background */
  color: #000000 !important; /* Force black text */
  color-scheme: light !important; /* Force light color scheme */
}

.social-embed .iframely-embed,
.social-embed .iframely-responsive,
.social-embed iframe {
  background-color: #ffffff !important;
  color: #000000 !important;
  color-scheme: light !important;
  forced-color-adjust: none !important;
}

/* Add this to ensure all iframe content uses light mode */
.responsive-embed iframe {
  color-scheme: light !important;
  forced-color-adjust: none !important;
}

/* Override any dark mode styles that might be applied */
.social-embed-title {
  color: var(--dark) !important;
  background-color: #ffffff !important;
}

/* Ensure the social embed container has proper styling */
.social-embed {
  border: 1px solid var(--gray-light);
  overflow: hidden;
}

/* Fix for gallery items with few images */
.gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-auto-rows: auto; /* Allow rows to size based on content */
  align-items: start; /* Align items to the start of the grid cell */
}

/* Fix for content below gallery */
.gallery-item {
  margin-bottom: 1rem;
  height: auto; /* Allow height to adjust to content */
  min-height: 250px; /* Minimum height to maintain consistency */
  transition: all 0.3s ease;
}

/* Fix for More Section button content */
.btn {
  position: relative;
  z-index: 5; /* Ensure buttons appear above other content */
}

/* Improve scroll-based animations */
/* [data-aos] {
  visibility: hidden;
}

[data-aos].aos-animate {
  visibility: visible;
} */

iframe {
  color-scheme: light !important;
  transition: all 0.3s ease;
}
iframe:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* Additional styles to enhance the website */

/* Add a subtle animation to service cards */
.service-card {
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(255, 163, 67, 0.15);
  border-color: rgba(255, 163, 67, 0.3);
}

/* Enhance gallery items */
.gallery-item {
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.gallery-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
  transition: opacity 0.4s ease;
}

/* Improve form styling */
.form-group.input-focused label {
  color: var(--primary);
  transform: translateY(-2px);
}

.input-error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2) !important;
}

/* Add a subtle animation to the submit button */
.btn-primary {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 163, 67, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(255, 163, 67, 0.2);
}

/* Enhance testimonial cards */
.testimonial-content {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-content:hover {
  transform: translateY(-5px);
  /* box-shadow: var(--shadow-lg); */
}

/* Improve navigation active state */
.nav-links a.active {
  position: relative;
  font-weight: 600;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  /* background-color: var(--primary); */
  border-radius: 3px;
  transform: scaleX(1) !important;
}

/* Add a subtle animation to the back-to-top button */
.back-to-top {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, opacity 0.3s ease,
    visibility 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-8px);
  background-color: var(--primary-dark);
}

/* Enhance mobile menu */
@media (max-width: 768px) {
  ul.nav-links {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  ul.nav-links li a {
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
  }

  ul.nav-links li a:hover {
    transform: translateX(5px);
  }
}

.footer-top-img {
  position: relative;
  text-align: center;
  margin-top: -10px;
}

.footer-top-img img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* Duplicate image using ::before and ::after on large screens */
@media (min-width: 992px) {
  .footer-top-img {
    display: flex;
    justify-content: center;
    /* align-items: center; */
  }

  .footer-top-img::before,
  .footer-top-img::after {
    content: "";
    display: block;
    /* padding-top: -10px; */
    width: 400px; /* Match center image width */
    /* height: auto; */
    background-image: url("footer.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    /* background-position: center; */
  }

  .footer-top-img img {
    max-width: 400px;
    height: auto;
    display: block;
  }
}

/* From Uiverse.io by gharsh11032000 */
.button {
  cursor: pointer;
  position: relative;
  padding: 0.875rem 2rem;
  font-size: 18px;
  color: rgb(252, 251, 250);
  border: 2px solid rgb(193, 163, 98);
  border-radius: 34px;
  background-color: transparent;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: var(--primary-dark);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.button:hover::before {
  scale: 3;
}

.button:hover {
  color: #212121;
  scale: 1.1;
  box-shadow: 0 0px 20px rgba(193, 163, 98, 0.4);
}

.button:active {
  scale: 1;
}

.call-now-btn {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  margin-left: 1rem;
}

.call-now-btn:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
}

.call-now-btn i {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .call-now-btn {
    margin-left: 0;
  }
}

/* Enhanced Footer Styles */
.footer {
  background-color: #ffa343;
  color: #000000;
  position: relative;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about {
  max-width: 100%;
  grid-column: 1 / 2;
}

.footer-links {
  grid-column: 2 / 3;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  max-height: 80px;
}

.footer-description {
  color: #222222;
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #e08e6d;
  transform: translateY(-3px) rotate(8deg);
  box-shadow: 0 5px 15px rgba(224, 142, 109, 0.3);
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  color: #222222;
  font-weight: 600;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #e08e6d;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-menu a {
  color: #333333;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  padding-left: 0;
}

.footer-menu a::before {
  content: "→";
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  color: #e08e6d;
  transform: translateX(15px);
  padding-left: 5px;
}

.footer-menu a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.copyright {
  color: #333333;
  font-weight: 500;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #333333;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  position: relative;
}

.footer-legal a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e08e6d;
  transition: width 0.3s ease;
}

.footer-legal a:hover {
  color: #e08e6d;
}

.footer-legal a:hover::after {
  width: 100%;
}

/* Enhanced Gallery Filter Buttons */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  background-color: #ffffff;
  border: 2px solid #f0f0f0;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #555555;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s;
  z-index: -1;
}

.filter-btn:hover::before {
  left: 100%;
}

.filter-btn:hover {
  background-color: #ffa343;
  color: #ffffff;
  border-color: #ffa343;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 163, 67, 0.3);
}

.filter-btn.active {
  background-color: #ffa343;
  color: #ffffff;
  border-color: #ffa343;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(255, 163, 67, 0.3);
}

.filter-btn.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-about,
  .footer-links {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* Responsive adjustments for gallery filter buttons */
@media (max-width: 480px) {
  .filter-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }

  .gallery-filter {
    gap: 0.5rem;
  }
}

/* Enhanced Footer Styles for large screens */
@media (min-width: 992px) {
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-about {
    max-width: 100%;
  }

  .footer-links {
    display: flex;
    justify-content: space-between;
  }

  .footer-section {
    margin-top: 0 !important;
    flex: 1;
    padding-right: 2rem;
  }
}

/* Fix for gallery items closing tags and structure */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  height: auto;
  min-height: 250px;
  transition: all 0.3s ease;
}

/* Fix for Wedding & Engagement category */
.gallery-item[data-category="Wedding & Engagement"] {
  display: block;
}

.text-high {
  color: #fd8300;
  /* font-weight: 900; */
  /* font-size: 1.2rem; */
  font-weight: bold;
}
.text-brand {
  color: #fd0000;
  /* font-weight: 900; */
  /* font-size: 1.2rem; */
  font-weight: bold;
}




.nav-link.active {
  color: #ff8400;
  font-weight: 600;
}




.dot {
  background-color: #ccc;
  border: none;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background-color: #3f3d3d;
}

.dot:hover {
  background-color: #ff8400;
}





/* Enhanced "Our Specialties" heading */
/* #our-specialty .section-title {
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 1rem;
  position: relative;
  font-weight: 800;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

#our-specialty .section-header {
  margin-bottom: 3rem;
}

#our-specialty .section-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #555;
}

#our-specialty .under-image {
  margin-top: -10px;
  margin-bottom: 15px;
  opacity: 0.9;
} */



/* star  */
.section-title-star::before,
.section-title-star::after {
  content: "★";
  color: #ffa343;
  font-size: 1em; /* Responsive */
  margin: 0 0.5em;
  padding-bottom: 15px;
  vertical-align: middle;
  display: inline-block;
}

@media (max-width: 480px) {
  .section-title-star::before,
  .section-title-star::after {
    font-size: 1em;
    margin: 0 0.3em;
  }
}

