/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif;
  scroll-behavior: smooth;
  background: #fff;
  overflow:x:hidden;
  max-width:100vw;
}

.section {
  padding: 80px;
  text-align: center;
  font-size: 24px;
  background-color: #f9f9f9;
  border-top: 1px solid #eee;
}

.hidden {
  display: none !important;
}

.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-in-out;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.logo img {
  height: 100px;
}

nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 17px;
  position: relative;
}

nav ul li a:hover,
.nav-link.active {
  color: #b40098;
}

nav ul li a::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #b40098;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}

nav ul li a:hover::after,
.nav-link.active::after {
  width: 100%;
}

.get-quote-btn {
  background-color: #b40098;
  color: white;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.get-quote-btn:hover {
  background-color: #93007b;
  transform: scale(1.05);
}






/* Hero Section */
.hero {
  height: 100vh;
  background: url('https://lh3.googleusercontent.com/p/AF1QipPUOgFQwQXbrlWQee55HrySfBNP7ublZMU9Izri=s1360-w1360-h1020-rw') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 50px;
  color: white;
  width: 100%;
}

.overlay h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.overlay h1 {
  font-size: 45px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 30px;
}

.hero-buttons .btn {
  background-color: #ff2d75;
  color: white;
  padding: 12px 30px;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}

.hero-buttons .btn:hover {
  background-color: #d02664;
  transform: scale(1.05);
}


/* Section Styling */
/* Section Styling */
#services-overview {
  padding: 80px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

#services-overview h2 {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

#services-overview h2 span {
  color: #f50057; /* Pink color for 'EVERY OCCASION!' */
  font-size: 38px;
}

.overview-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
  gap: 30px;
  margin-top: 20px;
}

.card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px); /* Lift card on hover */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.card p {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.card:hover p {
  color: #f50057; /* Change text color on hover */
}

@media (max-width: 1024px) {
  .overview-cards {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row for medium screens */
  }
}

@media (max-width: 768px) {
  .overview-cards {
    grid-template-columns: 1fr; /* 1 card per row for small screens */
  }
}




// section about 


.section_about {
  display: flex;
  flex-wrap: wrap;
  padding: 100px 40px 40px;
  gap: 30px;
  background: url('./C:\Users\Atharva\Desktop\Bhawati_Lawns\BHAGAWATI LAWNS@2.png') no-repeat center/cover;
  background-size: cover;
  color: #333;
}

.gallery {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1; /* Ensures square images */
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.about-content {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px 30px;
  border-radius: 10px;
  min-width: 300px;
}

.about-content h2 {
  font-size: 28px;
  color: #b40098;
  border-bottom: 3px solid #b40098;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-btn {
  background-color: #ff2d87;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox img {
  max-width: 80%;
  max-height: 80%;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 6fr);
  }
}


/// aboutt 

/* About Section */
#about {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
  background-color: #f9f9f9;
  background-image: url('https://i.pinimg.com/originals/59/2e/76/592e76b0cb1706eeaa3de2daf0bbfa68.png'); /* Replace with your background image URL */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  position: relative;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 50%;
}

.about-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
  width: 50%;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent background to make text readable */
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 1; /* Ensure the content stays on top of the image */
}

.about-content h2 {
  font-size: 32px;
  color: #b40098;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: #f50057; /* Pink color */
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-content ul {
  list-style-type: none;
  padding: 0;
  font-size: 16px;
}

.about-content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.about-content ul li span {
  margin-right: 10px;
}

.get-quote-btn {
  display: inline-block;
  background-color: #b40098;
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.get-quote-btn:hover {
  background-color: #93007b;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-gallery {
    grid-template-columns: 1fr;
    width: 100%;
    margin-bottom: 20px;
  }

  .about-content {
    width: 100%;
  }
}






/* Packages Section */
.packages-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #b40098;
}




.packages-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.package-card {
  background-color: white; /* Set default background color to white */
  padding: 25px;
  width: 300px;
  border-radius: 20px;
  color: black; /* Default text color */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, background-color 0.3s ease; /* Transition for smooth color change */
}

.package-card:hover {
  transform: translateY(-10px);
  background-color:rgb(189, 79, 173); /* Dark pink color on hover */
}

.package-card h4 {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 20px;
}

.package-card ul {
  list-style: none;
  padding: 0;
  font-size: 14px;
  text-align: left;
}

.package-card ul li {
  margin-bottom: 8px;
  line-height: 1.4;
}

.price-tag {
  background-color: white;
  color: #b40098;
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
}

.price-tag del {
  color: gray;
  font-size: 14px;
  margin-right: 10px;
}

.learn-btn {
  margin-top: 20px;
  display: inline-block;
  background: white;
  color: black;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.learn-btn:hover {
  background: #ffb3dd;
}

/* Responsive */
@media (max-width: 991px) {
  .section_about {
    flex-direction: column;
  }
  .galleryy {
    grid-template-columns: repeat(3, 1fr);
  }
  .package_card {
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  .galleryy {
    grid-template-columns: repeat(2, 1fr);
  }
}






// services 

 .body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.services_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}



.service_card .card-front {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color:rgb(187, 39, 98);
  color: white;
  border-radius: 10px;
  padding: 20px;
} 

.service_card .card-back {
  background-size: cover;
  background-position: center;
  color: white;
  transform: rotateY(180deg); 
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
} */

 .service_card h2 {
  margin: 0;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.service_card p {
  font-size: 1rem;
  margin-top: 10px;
}

.service_card:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .services_container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services_container {
    grid-template-columns: 1fr;
  }
}   */
     
//General Section Styling
.section {
  padding: 50px 20px;
}

/* Container for the service card */
.service_card {
  width: 100%;
  height: 300px; /* Set the height for the cards */
  perspective: 1000px; /* Enable the 3D effect */
  margin: 20px;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s; /* Smooth flip transition */
}

.service_card:hover .card-inner {
  transform: rotateY(180deg); /* Flip the card on hover */
}

/* Front of the card */
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; /* Hide the back when flipped */
}

.card-front {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white; /* Background color for the front */
  color: #333;
  padding: 20px;
  text-align: center;
}

.card-back {
  background-size: cover;
  background-position: center;
  transform: rotateY(180deg); /* Initially hidden behind the front */
}

/* Optional: Add an image as the background for the back of the card */
.card-back {
  background-image: url('https://example.com/your-image.jpg'); /* Replace with actual images */
}

.card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the entire back */
  border-radius: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services_container {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row on smaller screens */
  }
}

@media (max-width: 768px) {
  .services_container {
    grid-template-columns: 1fr; /* 1 card per row on mobile */
  }
}


  
  


/* Contact Page Styles */
   /* General Styles */
#contact {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form {
    flex: 1;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #f9f9f9;
}

.contact-form h2 {
    font-size: 28px;
    color: #b40098;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 12px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form button {
    background-color: #b40098; /* Purple color for the button */
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #93007b; /* Darker shade on hover */
}

/* Contact Information */
.contact-info {
    flex: 1;
    padding: 20px;
}

.contact-info h2 {
    font-size: 28px;
    color: #b40098;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Map Section */
#map {
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 20px;
    }

    /* Adjust form for smaller screens */
    .contact-form {
        flex: none;
        width: 100%;
    }
}

/* Submit Button (Alternate for WhatsApp) */
.submit-btn {
    background-color: #25d366; /* WhatsApp green color */
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    border: none;
}

.submit-btn:hover {
    background-color: #128c7e; /* Hover effect for WhatsApp button */
}




/* Footer Styling */
 /* Footer Styling */
  /* ✅ Roman Font Style + Icons Big */
.footer {
    background: linear-gradient(to right,rgb(16, 11, 14),rgb(22, 21, 21));
    color: #fff;
    padding: 60px 40px;
    font-family: 'Times New Roman', Times, serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
  
  .footer-left {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-logo {
    width: 160px;
    margin-bottom: 20px;
    font-size: 20px;
  }
  
  .footer-left p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #f5f5f5;
    font-family:Georgia, 'Times New Roman', Times, serif;
  }
  
  .footer-right {
    flex: 1;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .footer-links,
  .footer-address {
    width: 45%;
  }
  
  .footer-links h3,
  .footer-address h3,
  .footer-social h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a {
    color: #f8f8f8;
    text-decoration: none;
    font-size: 20px;
  }
  
  .footer-links ul li a:hover {
    color: #ffd700;
  }
  
  .footer-address p {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  #map {
    margin-top: 40px;
  }
  
  #map iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    border: none;
  }
  
  /* ✅ Social Icons Style - Big & Clear */
  .footer-social {
    margin-top: 40px;
  }
  
  .social-icons {
    display: flex;
    gap: 18px;
    margin-top: 12px;
  }
  
  .social-icons a {
    display: inline-block;
    background: #fff;
    //color:rgb(188, 23, 147);
    padding: 14px;
    border-radius: 50%;
    transition: transform 0.3s, background 0.3s, color 0.3s;
  }
  
  .social-icons a:hover {
    transform: scale(1.15);
    background:rgb(210, 16, 162);
    color: #000;
  }
  
  .social-icons a i {
    font-size: 32px; /* ✅ Icon Size Increased */
  }
  
  .trustpilot {
    margin-top: 20px;
    display: flex;
    align-items: center;
    font-size: 20px;
  }
  
  .trustpilot img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-left,
    .footer-right,
    .footer-social {
      width: 100%;
      text-align: center;
    }
  
    .footer-right {
      flex-direction: column;
      gap: 30px;
      margin-top: 30px;
    }
  
    .footer-links,
    .footer-address {
      width: 100%;
    }
  
    
    #map iframe {
      height: 220px;
    }
  }



         /* responsive */

         /* ============================= */
/* Responsive Navbar Styles      */
/* ============================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  margin-left: 18px;
}
.hamburger span {
  width: 32px;
  height: 4px;
  background: #b40098;
  border-radius: 2px;
  display: block;
  transition: 0.3s;
}

@media (max-width: 950px) {
  .navbar {
    padding: 12px 18px;
  }
  .logo img {
    height: 68px;
  }
  .get-quote-btn {
    padding: 8px 14px;
    font-size: 15px;
  }
}

@media (max-width: 700px) {
  .navbar {
    flex-wrap: wrap;
    padding: 8px 4vw;
    position: relative;
  }
  .logo img {
    height: 45px;
  }
  .get-quote-btn {
    display: none;
  }
  nav {
    width: 100%;
  }
  nav ul {
    flex-direction: column;
    position: absolute;
    top: 58px;
    left: 0;
    width: 100vw;
    background: #fff;
    box-shadow: 0 6px 18px rgba(180,0,152,0.10);
    border-top: 1px solid #eee;
    display: none;
    gap: 0;
    padding: 0;
    z-index: 20;
  }
  nav ul li {
    width: 100%;
    border-bottom: 1px solid #f2f2f2;
  }
  nav ul li:last-child {
    border-bottom: none;
  }
  nav ul li a {
    display: block;
    width: 100%;
    padding: 14px 26px;
    font-size: 16px;
  }
  nav ul.show {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}

/* ============================= */
/* Responsive Sections/Cards     */
/* ============================= */
@media (max-width: 1024px) {
  .overview-cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .services_container {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .overview-cards,
  .gallery,
  .about-gallery,
  .services_container {
    grid-template-columns: 1fr !important;
  }
  .about-container,
  .section_about,
  .contact-container,
  .footer-container {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 0 5vw;
  }
  .about-content,
  .about-gallery,
  .gallery,
  .contact-form,
  .contact-info,
  .footer-left,
  .footer-right {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
  .hero {
    height: 400px !important;
    padding: 0 10px !important;
  }
  .footer-logo {
    width: 100px !important;
  }
  #map iframe {
    width: 100vw !important;
    max-width: 98vw !important;
    height: 180px !important;
  }
}

/* ============================= */
/* Responsive Cards (Packages)   */
/* ============================= */
@media (max-width: 600px) {
  .package-card {
    width: 98vw !important;
    min-width: unset !important;
    margin: 0 auto 20px auto !important;
  }
}

/* ============================= */
/* Responsive Footer             */
/* ============================= */
@media (max-width: 768px) {
  .footer-left,
  .footer-right,
  .footer-social,
  .footer-links,
  .footer-address {
    width: 100% !important;
    text-align: center !important;
    min-width: 0 !important;
  }
  .footer-logo {
    margin: 0 auto 20px auto !important;
    display: block !important;
  }
  #map iframe {
    width: 98vw !important;
    max-width: 360px !important;
    height: 150px !important;
  }
}

/* ============================= */
/* Optional: Utility Responsive  */
/* ============================= */
@media (max-width: 450px) {
  .navbar {
    padding: 4px 2vw !important;
  }
  .hero {
    height: 280px !important;
  }
  .footer {
    padding: 15px 5px !important;
    font-size: 14px !important;
  }
}

  html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Responsive containers */
.contact-container,
.about-container,
.footer-container,
.packages-container,
.services_container {
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Make all iframes, images, and grids responsive */
img, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Remove unwanted padding/margin on small screens */
@media (max-width: 700px) {
  .navbar,
  .section,
  .footer {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}



  