/* The entire content of your style.css file goes here. */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #e91e63;
  --primary-dark: #c2185b;
  --secondary-color: #ff9800;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --bg-primary: #ffffff;
  --bg-secondary: #fdf2f8;
  --border-color: #e5e7eb;
}
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1000;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.nav-brand h2 {
  font-family: 'Playfair Display', serif;
}
.nav-menu {
  display: flex;
  gap: 1rem;
}
.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: 999px;
}
.nav-link:hover {
  color: white;
  background-color: var(--primary-color);
}
.nav-link.active {
  color: white;
  background-color: var(--primary-color);
}
.nav-toggle { display: none; }
/* ... (all other styles from your original style.css) ... */


/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #e91e63;
  --primary-dark: #c2185b;
  --secondary-color: #ff9800;
  --accent-color: #673ab7;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-primary: #ffffff;
  --bg-secondary: #fdf2f8;
  --bg-accent: #f3f4f6;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-brand h2 {
  /*background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));*/
  background-color: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.nav-menu {
  display: flex;
  gap: 1rem; /* Adjusted gap for new padding */
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 999px; /* Creates a pill shape */
}

.nav-link:hover {
  color: white;
  background-color: var(--primary-color);
}

.nav-link.active {
  color: white;
  background-color: var(--primary-color);
  font-weight: 600;
}

/* Remove the old underline effect by hiding its pseudo-element */
.nav-link::after {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
}

/* Service Page Header */
.servive-page-header {
  background-image: url('/mudra-laravel/public/images/Servicesbanner2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 180px 0; /* Increased height */
  color: white;
  text-align: center;
  position: relative;
}

 /* About Page Header */
.about-page-header {
  background-image: url('/mudra-laravel/public/images/About_us_banner.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 180px 0; 
  color: #ddd;
  text-align: center;
  position: relative;
}

/*.about-page-header {*/
/*  position: relative;*/
/*  background-image: url('/mudra-laravel/public/images/About_us_banner.webp');*/
/*  background-size: cover;*/
/*  background-position: center;*/
/*  background-repeat: no-repeat;*/
/*  padding: 165px 0; */
/*  text-align: center;*/
/*  color: white;*/
/*}*/


/* gallery Page Header */
.gallery-page-header {
  background-image: url('/mudra-laravel/public/images/Gallray_banner.webp');
  background-size: cover;
  /*background-position: center;*/
  background-repeat: no-repeat;
  padding: 180px 0;
  color: white;
  text-align: center;
  position: relative;
}



/*contact Page Header */
.contact-page-header {
  background-image: url('/mudra-laravel/public/images/Contact_banner.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 180px 0; 
  color: #ddd;
  text-align: center;
  position: relative;
}


/* Page Header */
.page-header {
  padding: 120px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-secondary), #fff5f8);
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 80px 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

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

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Page */
.services-preview,
.services-detailed {
  padding: 6rem 0;
}

.services-preview {
  background-color: var(--bg-secondary);
}

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

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(233, 30, 99, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
   /*height: 100%;*/
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.service-content {
  padding: 2rem;
}

.service-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.service-features li::before {
  content: '♡';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.service-pricing {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.service-pricing h4 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-pricing p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}



/*service section*/
.services-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.services-swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* Renamed with "swiper-" prefix */
.swiper-service-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.swiper-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.swiper-service-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.swiper-service-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #222;
  font-family: 'Playfair Display', serif;
}

.swiper-service-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: auto;
}

.swiper-service-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  width: 100%;
}

.swiper-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

/* Optional button styling */
.swiper-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.swiper-btn-primary {
  background-color: #e91e63;
  color: #fff;
}
/* Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #e91e63; /* Set arrow color */
}

/* Optional: Make buttons more visible with background */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 40px;
  font-weight: bold;
  background-color: rgba(233, 30, 99, 0.1); /* Light pink background */
  padding: 10px;
  border-radius: 50%;
}

/* Swiper Pagination Bullets */
.swiper-pagination-bullet {
  background-color: rgba(233, 30, 99, 0.3); /* Light pink for inactive bullets */
  opacity: 1;
  transition: background-color 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: #e91e63; /* Solid pink for active bullet */
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
} 

/* .swiper-pagination {
  bottom: var(--swiper-pagination-bottom, 0px);
} */
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 0px);
  }


/* Why Choose Us Section */

/*.why-choose-us {*/
/*  padding: 6rem 0;*/
/*  background-color: var(--bg-accent);*/
/*}*/


.why-choose-us {
  padding: 6rem 0;
  background: url('/mudra-laravel/public/images/why-choose-us-background.webp') no-repeat center center;
  background-size: cover;
}

/*.why-choose-us-section-header p {*/
/*  font-size: 1.125rem;*/
/*  color: #fff;*/
/*  max-width: 600px;*/
/*  margin: 0 auto;*/
/*}*/


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  /*filter: brightness(0) invert(1); */
}

/* Process Section */
.process-section {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.process-step p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* About Section */
.about-main {
  padding: 6rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.about-intro {
  font-size: 1.25rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.about-description p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}

/* Values Section */
.values-section {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
}

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

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 6rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.member-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
}

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

.member-info h3 {
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.member-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-info p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Mission Section */
.mission-section {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

.mission-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.mission-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.mission-text h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  margin: 2rem 0 1rem;
}

.mission-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.mission-points {
  list-style: none;
}

.mission-points li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.mission-points li::before {
  content: '♡';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary-color);
}

.testimonial-content p {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author h4 {
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}


/*.swiper-service-image-testimonials img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: cover;*/
/*  display: block;*/
/*  transition: transform 0.3s ease;*/
/*}*/

.swiper-service-image-testimonials img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 20%; /* Adjusts the crop from the bottom */
    display: block;
    transition: transform 0.3s ease;
}



/* Gallery Section */
.gallery-filter {
  padding: 2rem 0;
  background-color: var(--bg-secondary);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--border-color);
  background: white;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

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

.gallery-showcase {
  padding: 4rem 0;
}

.gallery-grid-expanded {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.gallery-category {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
}

.gallery-stats {
  padding: 4rem 0;
  background-color: var(--bg-secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

/* Contact Section */
.contact-main {
  padding: 6rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.contact-info > p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.contact-details {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.contact-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.contact-item small {
  color: var(--text-light);
  font-size: 0.875rem;
}

.social-contact h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.social-links-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Form Styles */
.contact-form-section {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(233, 30, 99, 0.1);
}

.contact-form-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.contact-form-section > p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

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

.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 400;
}

.checkbox-container input[type="checkbox"] {
  width: auto;
  margin-right: 0.75rem;
}

.form-note {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 1rem;
  text-align: center;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.faq-item h3 {
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Map Section */
.map-section {
  padding: 6rem 0;
}

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

.map-placeholder {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  border: 2px dashed var(--border-color);
}

.map-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.map-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  /*background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));*/
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: white;
  color: var(--primary-color);
}

.cta-section .btn-primary:hover {
  background: var(--bg-accent);
}

.cta-section .btn-secondary {
  border-color: white;
  color: white;
}

.cta-section .btn-secondary:hover {
  background: white;
  color: var(--primary-color);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--text-primary), #374151);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: white;
}

.footer-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--secondary-color), #ffc107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section p {
  color: var(--text-light);
  line-height: 1.6;
}

.footer-contact {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--secondary-color);
}

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

.social-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
}

.social-links a:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .contact-content,
  .about-content,
  .mission-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image {
    order: -1;
  }

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-md);
    padding: 2rem 0;
    gap: 1rem; /* Gap for mobile menu items */
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 100px 1rem 2rem;
  }

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

  .page-header h1 {
    font-size: 2.5rem;
  }

  .hero-buttons,
  .cta-buttons {
    justify-content: center;
  }

  .services-grid,
  .gallery-grid-expanded,
  .features-grid,
  .values-grid,
  .team-grid,
  .process-steps,
  .testimonials-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .filter-buttons {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .mission-stats {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

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

  .section-header h2 {
    font-size: 2rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
  }

  .contact-form-section {
    padding: 1.5rem;
  }

  .service-card,
  .gallery-item {
    margin: 0 0.5rem;
  }

  .mission-stats,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Loading and Animation States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.form-submitted {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.form-submitted:hover {
  background: linear-gradient(135deg, #059669, #047857);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Animation for scroll reveal */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  animation: fadeInUp 0.6s ease forwards;
}

/* Heart animation for service features */
@keyframes heartBeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.service-features li::before {
  animation: heartBeat 2s ease-in-out infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/* Gallery filter functionality */
.gallery-item.hidden {
  display: none;
}

.gallery-item {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.contact-link {
  color: #9ca3af;
  text-decoration: none; /* Optional: removes underline */
  transition: color 0.3s ease; /* Smooth hover effect */
}

.contact-link:hover {
  color: #ff9800;
}

address {
  font-style: normal; /* Removes default italic */
  color: #9ca3af;     /* Light grey */
  line-height: 1.6;
}


.availability {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
}

.availability small {
  font-weight: bold;
  color: #ff9800; /* Highlight 'Available' if you want */
}


/* WhatsApp Floating Button (Shown Only on Desktop & Tablet) */
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    border-radius: 50px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    z-index: 1000;
  }

  .whatsapp-float img {
    width: 30px;
    height: 30px;
  }

  .whatsapp-float span {
    margin-left: 10px;
    color: #25D366;
    font-weight: bold;
    font-family: Arial, sans-serif;
  }

  /* Hide WhatsApp button on small screens (mobile) */
  @media screen and (max-width: 767px) {
    .whatsapp-float {
      display: none;
    }
  }


/* Full Hero Section with Video Background */

  .hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
  }

  @media (min-width: 1024px) {
    .hero-section {
      height: 90vh;
    }
  }

  /*@media (max-width: 768px) {*/
  /*  .hero-section {*/
  /*    min-height: 100vh;*/
  /*  }*/
  /*}*/


/* Mobile View */
@media (max-width: 768px) {
  .hero-section {
    height: calc(70vh - 125px); /* Full height minus 20px top and bottom */
    padding: 20px 0;            /* Add 20px space top and bottom */
  }

  .hero-bg-video {
    top: 20px;
    height: calc(100% - 40px); /* Shrink video height to match padded space */
  }
}



/* Hide by default */
.mobile-fixed-buttons {
  display: none;
}

/* Base hidden state (in case used outside mobile media query) */
.mobile-fixed-buttons {
  display: none;
}

/*Show and style for mobile screens */
@media (max-width: 768px) {
  .mobile-fixed-buttons {
    position: fixed;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 9999;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .mobile-fixed-buttons a {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s;
  }

  .call-btn {
    background-color: #007bff;
  }

  .whatsapp-btn {
    background-color: #25d366;
  }

  .mobile-fixed-buttons a:hover {
    opacity: 0.9;
  }
}


/*this is use form location dropdown menu */

.nav-menu .dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-menu .dropdown-toggle::after {
  content: ' ▼';
  font-size: 0.7em;
  margin-left: 3px;
}

.nav-menu .dropdown-menu {
  position: absolute;
  top: 100%;
  /* left: 0; */
  /* right: 20px; */
  display: none;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  min-width: 160px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1001;
}

.nav-menu .dropdown:hover .dropdown-menu {
  display: block;
}

.nav-menu .dropdown-menu li {
  list-style-type: none;
}

.nav-menu .dropdown-item {
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  display: block;
}

.nav-menu .dropdown-item:hover {
  background-color: #f1f1f1;
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
  .nav-menu .dropdown {
    width: 100%;
    justify-content: center; /* Center the dropdown in mobile view */
    text-align: center;
  }
  
  .nav-menu .dropdown-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* .nav-menu .dropdown-menu {
    position: static;
    width: 100%;
    text-align: center;
    margin: 0.5rem 0;
    border: none;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background-color: #f9f9f9;
  } */
  
  .nav-menu .dropdown-item {
    padding: 10px;
    text-align: center;
  }
}







