/* Reset and Base */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
     position: fixed;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-weight: 600;
  font-size: 1.5rem;
}
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #555;
}
.btn-consult {
  padding: 8px 15px;
  border: none;
  background: #333;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  padding-top: 100px;
  background: url('image/living/4.jpeg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.hero-text {
  position: relative;
  text-align: center;
  color: #fff;
}
.hero-text h1 {
  font-size: 3rem;
  font-weight: 600;
}
.hero-text p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Sections */
.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: #222;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.service-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-weight: 500;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
}

/* Gallery */
.filter-btns {
  text-align: center;
  margin-bottom: 20px;
}
.filter-btns button {
  margin: 5px;
  padding: 10px 20px;
  background: #ddd;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
}
.filter-btns button:hover {
  background: #999;
  color: white;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 15px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.img-text {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  width: 100%;
  padding: 10px;
  text-align: center;
  font-weight: 500;
}

/* About */
.about p {
  max-width: 800px;
  margin: auto;
  text-align: center;
  font-size: 1.1rem;
  color: #444;
}

/* Contact */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: auto;
}
.contact input,
.contact textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.contact button {
  background: #333;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
}
.map-container {
  margin-top: 30px;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  line-height: 1.6;
  background: #fff;
  color: #333;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  align-items: center;
}

.logo {
  font-weight: 600;
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.btn-consult {
  padding: 8px 16px;
  background: #333;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-text {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.hero-text h1 {
  font-size: 3rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  text-align: center;
}

.service-card {
  padding: 2rem;
  background: #f4f4f4;
  border-radius: 10px;
  font-weight: 600;
}

.filter-btns {
  text-align: center;
  margin-bottom: 2rem;
}

.filter-btns button {
  margin: 0 10px;
  padding: 8px 16px;
  border: none;
  background: #333;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.img-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  text-align: center;
  padding: 10px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: auto;
}

form input,
form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

form button {
  padding: 10px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.map-container {
  margin-top: 2rem;
}

footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

/* Base styles */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin: 40px 0 20px;
}

.hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.bottom-images {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.bottom-img-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 22%;
  min-width: 220px;
  transition: transform 0.4s;
}

.bottom-img-card img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 12px;
}

.bottom-img-card:hover img {
  transform: scale(1.1);
}

.overlay-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 6px;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
}

.bottom-img-card:hover .overlay-text {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .bottom-images {
    flex-direction: column;
    align-items: stretch;
  }

  .bottom-img-card {
    width: 90%;
  }
}

/* bottom images */
.bottom-images {
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      flex-wrap: wrap;
      padding: 20px;
      gap: 15px;
    }

    .bottom-img-card {
      position: relative;
      width: 180px;
      height: 120px;
      overflow: hidden;
      border-radius: 10px;
      transition: transform 0.3s ease-in-out;
    }

    .bottom-img-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .overlay-text {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 10px;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      text-align: center;
      font-size: 14px;
      font-weight: 500;
      opacity: 0;
      transform: translateY(100%);
      transition: all 0.3s ease-in-out;
    }

    .bottom-img-card:hover .overlay-text {
      opacity: 1;
      transform: translateY(0);
    }

    .bottom-img-card:hover {
      transform: scale(1.05);
    }
    /*hero slider*/

     .slider-arrows {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      z-index: 10;
    }

    .arrow {
      background-color: rgba(255, 255, 255, 0.6);
      color: white;
      font-size: 24px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      margin: 0 15px;
      transition: background-color 0.3s;
    }

    .arrow:hover {
      background-color: rgba(255, 255, 255, 0.9);
    }

    /*testimonial slider */
    .testimonial-slider {
      width: 90%;
      max-width: 1000px;
      margin: auto;
      padding: 30px 0;
    }

    .swiper-slide {
      background: #f3f3f3;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease-in-out;
    }

    .swiper-slide:hover {
      transform: translateY(-5px);
    }

    .swiper-slide p {
      font-size: 16px;
      margin-bottom: 10px;
    }

    .swiper-slide h4 {
      margin: 0;
      font-weight: 600;
      color: #333;
    }

    .stars {
      color: gold;
      margin-top: 10px;
    }
    .testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: auto;
}

.testimonial-slide {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
}

.testimonial {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  width: 45%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.testimonial:hover {
  transform: scale(1.03);
}

.testimonial p {
  font-size: 16px;
  font-style: italic;
  color: #333;
}

.testimonial h4 {
  margin-top: 10px;
  text-align: right;
  font-weight: 600;
  color: #666;
}

/* intro section */
.intro-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.intro-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 32px;
  color: #6c4ed1; /* light purple */
  margin-bottom: 10px;
}

.intro-heading {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #111;
  margin-bottom: 20px;
}

.intro-desc {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #444;
  max-width: 800px;
  margin: 0 auto 15px auto;
  line-height: 1.6;
}

.intro-subtext {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #666;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.6;
}

.intro-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 80px 5%;
  background-color: #fff;
}

.intro-left {
  flex: 1 1 50%;
  max-width: 600px;
}

.intro-right {
  flex: 1 1 40%;
  min-height: 300px;
}

/* Reuse the fonts and styles */
.intro-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 32px;
  color: #6c4ed1;
  margin-bottom: 10px;
}

.intro-heading {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.intro-desc,
.intro-subtext {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .intro-wrapper {
    flex-direction: column;
    padding: 40px 20px;
  }

  .intro-left,
  .intro-right {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-right {
    min-height: 0;
  }
}
.intro-wrapper {
  display: flex;
  padding: 80px 50px;
  background-color: #f6f6f6;
}

.intro-left {
  flex: 1;
}

.intro-right {
  flex: 1;
}

/* Animation base */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* Delays */
.animate-delay-1 { transition-delay: 0.2s; }
.animate-delay-2 { transition-delay: 0.4s; }
.animate-delay-3 { transition-delay: 0.6s; }
.animate-delay-4 { transition-delay: 0.8s; }


/* Calculator Section Styles */
#calculator {
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa;
}

.calculator-box {
  background: #ffffff;
  border-radius: 12px;
  max-width: 1000px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.calculator-box:hover {
  transform: translateY(-4px);
}

#calculator h2 {
  font-weight: 700;
  font-size: 2rem;
  color: #333;
  position: relative;
}

#calculator h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #007bff;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.form-control,
.form-select {
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ced4da;
  transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #007bff;
  box-shadow: none;
}

.btn-primary,
.btn-success {
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-success:hover {
  background-color: #218838;
}

#result {
  font-size: 1.2rem;
  color: #28a745;
}

@media (max-width: 767.98px) {
  .calculator-box .row > div {
    margin-bottom: 15px;
  }
}

/* Import the same cursive font used on RayDecore */
/* Import Dancing Script font */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap');

/* Home Decor Banner */
#home-decor-banner {
  background-image: url('image/hero/decore.webp'); /* Replace with your banner image */
  background-size: cover;
  background-position: center;
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.decor-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.decor-text h2,
.decor-text p {
  font-family: 'Dancing Script', cursive;
  color: #fff;
  margin: 0.3em 0;
}

.decor-text h2 {
  font-size: 4rem;
  animation: fadeInUp 1s ease forwards;
}

.decor-text p {
  font-size: 2rem;
  animation: fadeIn 2s ease forwards;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .decor-text h2 {
    font-size: 2.5rem;
  }

  .decor-text p {
    font-size: 1.5rem;
  }
}

/* Navbar Container */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  background-color: #fff;
  height: 80px; /* Controls navbar height */
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Logo Image */
.logo img {
  height: 50px; /* adjust as needed */
  margin-right: 6px; /* reduce this value to bring text closer */
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

/* Navigation links */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Active/hover effect */
.nav-links a:hover {
  color: #007BFF;
}

/* Responsive (Mobile) */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    padding-top: 10px;
  }

  .logo img {
    height: 50px;
  }
}


.navbar-brand .brand-text {
  font-weight: 600;
  font-size: 1.25rem;
  color: #333;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #444;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #007bff;
}

.navbar {
  padding: 0.8rem 1rem;
  transition: all 0.3s ease-in-out;
}



/* ✅ Tablets and below: 2 items per row */
@media screen and (max-width: 1024px) {
  .bottom-img-card {
    width: 48%;
  }
}

/* ✅ Mobile devices: still 2 items per row */
@media screen and (max-width: 600px) {
  .bottom-img-card {
    width: 48%;
  }
}


/*looking for gallary*/







/* About Us Section */
#about {
  background-color: #f5f5f5;
  color: #333;
}

#about .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
}

#about .about-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

#about img {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/*contact us*/
/* Contact Us */
#contact {
  background-color: #f5f5f5;
  color: #333;
}

#contact .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
}

#contact .form-control {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 12px;
}

#contact .btn {
  background-color: #556B2F; /* Deep olive */
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  padding: 10px 20px;
}

#contact .map-container iframe {
  border-radius: 12px;
  width: 100%;
  height: 250px;
}

#contact .contact-info {
  font-size: 16px;
  color: #444;
}

#contact .contact-info a {
  color: #333;
  text-decoration: none;
}

#contact .social-icons a {
  color: #333;
  transition: 0.3s;
}

#contact .social-icons a:hover {
  color: #556B2F;
}
