* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "poppins";
  overflow-x: hidden;
}


/* General Styling for Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  /* Slim width for the scrollbar */
  height: 6px;
  /* Slim height for horizontal scrollbar */
}

::-webkit-scrollbar-track {
  background: rgb(0, 0, 0);
  /* Light background for the track */
  border-radius: 10px;
  /* Rounded corners */
}

::-webkit-scrollbar-thumb {
  background: beige;
  /* Grey for the thumb */
  border-radius: 10px;
  /* Rounded corners for the thumb */
  transition: background-color 0.3s ease;
  /* Smooth transition effect */
}

::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
  /* Darker shade on hover for better visibility */
}

/* Scrollbar style for specific sections */
.social-section,
.corporate-section {
  overflow-y: scroll;
  /* Enable vertical scrolling */
  height: 100vh;
}



/* Preloader Styling */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background:linear-gradient(to top, #505c54,#505c54, #d8e9df);
  z-index: 9999;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Parallax Effect */
.split-screen {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.left-screen,
.right-screen {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0;
  transform: translateY(0);
  will-change: transform, opacity;
}

/* Background Images with Parallax */
.left-screen {
  background: url('image/sld1.webp') no-repeat center center / cover;
}

.right-screen {
  background: url('assets/images/c1.webp') no-repeat center center / cover;
}

/* Create an overlay with black background and transparency */
.left-screen .overlay,
.right-screen .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* 40% opacity for darkening effect */
  z-index: 5;
  /* Positioning the overlay behind the text */
}

/* Animate Background Movement */
.left-screen,
.right-screen {
  background-position: center;
  background-size: cover;
  transform: translateY(0);
}

.left-screen h1,
.right-screen h1 {
  font-size: 3rem;
  color: beige;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
  z-index: 10;
  /* Keep text above the overlay */
  text-shadow: 4px 4px 20px black;
}

.logo-reveal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.logo-reveal img {
  width: 250px;
  height: auto;
  filter: drop-shadow(0 0 30px beige);
  transform: scale(0.5);
  will-change: transform, opacity;
}

/* Creative Background Animation */
@keyframes parallax {
  0% {
    background-position: center;
  }

  100% {
    background-position: 50% 50%;
  }
}

.left-screen {
  animation: parallax 10s infinite linear;
}

.right-screen {
  animation: parallax 10s infinite linear;
}


@media (max-width: 1010px) {
  .left-screen, .right-screen {
    flex: none;
    width: 100%;
    height: 50vh; /* Stack screens vertically */
  }

  .split-screen {
    flex-direction: column; /* Stack elements on small screens */
  }

  .left-screen h1, .right-screen h1 {
    font-size: 2rem; /* Reduce text size for readability */
  }

  .logo-reveal img {
    width: 120px; /* Adjust logo size */
  }
}



/* 🔹 Responsive Adjustments for Tablets (768px and below) */
@media (max-width: 768px) {
  .left-screen, .right-screen {
    flex: none;
    width: 100%;
    height: 50vh; /* Stack screens vertically */
  }

  .split-screen {
    flex-direction: column; /* Stack elements on small screens */
  }

  .left-screen h1, .right-screen h1 {
    font-size: 2rem; /* Reduce text size for readability */
  }

  .logo-reveal img {
    width: 120px; /* Adjust logo size */
  }
}

/* 🔹 Responsive Adjustments for Mobile (480px and below) */
@media (max-width: 480px) {
  .left-screen, .right-screen {
    height: 50vh; /* Keep the stacked effect */
  }

  .left-screen h1, .right-screen h1 {
    font-size: 1.5rem; /* Make text even smaller */
    letter-spacing: 2px;
  }

  .logo-reveal img {
    width: 100px; /* Further reduce logo size */
  }

  /* Reduce padding and margins for better fit */
  .logo-reveal {
    top: 45%;
  }
}











/* navbar section  */
/* Reset some basic styling */

/* Body */

.header {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
}


/* .navbar {
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    position: fixed;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(7px);
    background: #00000041;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.281);
    transition: all 0.3s ease;
}


.navbar .logo img {
    width: 60px;
    height: auto;
}

.navbar .logo img:hover{
  scale: 1.1;
  cursor: pointer;
  transition: .5s ease-in-out;
}


.nav-links {
    list-style-type: none;
    display: flex;
    gap: 40px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
    color: #962e2a; 
    transform: translateY(-5px);
}


.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: white;
    bottom: -5px;
    left: 0;
    transition: width 0.4s ease;
}

.nav-links a:hover::after {
    width: 100%;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bar {
    width: 35px;
    height: 4px;
    background-color: white;
    border-radius: 10px;
}

.bar-top, .bar-middle, .bar-bottom {
    transition: all 0.3s ease;
}


@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 20px;
        position: absolute;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0.7);
        width: 100%;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    
    .menu-toggle.active .bar-top {
        transform: rotate(45deg) translateY(8px);
    }

    .menu-toggle.active .bar-middle {
        opacity: 0;
    }

    .menu-toggle.active .bar-bottom {
        transform: rotate(-45deg) translateY(-8px);
}
} */










/* Fixed Navbar */
#nav {
  height: 60px;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

#nav img {
  height: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#nav img:hover {
  scale: 1.1;
}

/* Navigation Links */
#nav-part2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: auto;
}

#nav .nav-link {
  text-decoration: none;
  color: #fff;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

#nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

#nav .nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.bar {
  width: 30px;
  height: 3px;
  background: white;
  transition: all 0.3s ease-in-out;
}

/* Mobile Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  z-index: 999;
  backdrop-filter: blur(20px);
}

/* Show Links when Menu is Active */
.menu-overlay.active nav {
  opacity: 1;
}

/* Nav Links in Menu */
.menu-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.menu-link {
  font-size: 24px;
  color: #eee;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.menu-link:hover {
  color: #fff;
  opacity: 1;
}

/* Disable Scrolling When Menu is Open */
.no-scroll {
  overflow: hidden;
}

/* Open Animation for Hamburger */
.hamburger.open .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  #nav-part2 {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}













/* hero section  */
.hero {
  position: relative;
  height: 100vh;
  max-width: 100%;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: left;
}

.content h1 {
  font-size: 2.5rem;
  margin: 0;
}

.content h2 {
  font-size: 2rem;
  margin: 10px 0;
  border-right: 2px solid white;
  /* Cursor effect */
  white-space: nowrap;
  overflow: hidden;
}

.social-icons {
  margin-top: 20px;
}

.social-icon {
  color: white;
  font-size: 1.5rem;
  margin-right: 15px;
  text-decoration: none;
}

.social-icon:hover {
  color: #962e2a;
  /* Change color on hover */
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 400%;
  /* 4 images, each 100% of the width */
  height: 100%;
  transition: transform 1.5s ease-in-out;
  /* Smooth transition */
}

.slide {
  position: relative;
  width: 100vw;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slide video {
  position: relative;
  width: 100%;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Black with 50% opacity */
  z-index: 1;
}

/* #animated-text {
    color: #962e2a;
    font-size: 2vw;
    backdrop-filter: blur(100px);
} */

#animated-text-wrapper {
  color: beige;
  font-size: 1.7vw;
  position: relative;
  padding: 10px 20px;
  /* background: rgba(0, 0, 0, 0.2);  */
  backdrop-filter: blur(100px);
  border-radius: 8px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
}

#animated-text {
  border-right: 2px solid #962e2a6f;
  /* Cursor effect */
  display: inline-block;
  /* Ensure proper alignment */
}

@media (max-width: 768px) {
  body {
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
  }

  .hero {
    height: 100vh;
  }

  .slide video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
  }

  #animated-text-wrapper {
    padding: 15px 30px;
    font-size: 1.5rem;
  }
}

@media (max-width: 1024px) {
  /* body {
    width: 100vw;
    height: 100vh;
  } */

  .hero {
    height: 100vh;
  }

  .slide video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
  }

  #animated-text-wrapper {
    padding: 15px 30px;
    font-size: 1.5rem;
  }
}






.dream-wedding-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px;
  background-color: #ffffff;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  flex: 1 1 50%;
  max-width: 50%;
  padding: 20px;
}

.image-grid img {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 3px 4px 10px gray;
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.05);
}

.text-content {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 20px;
}

.text-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #000000d2;
}

@media (max-width: 768px) {
  .dream-wedding-section {
    flex-direction: column;
  }

  .image-grid,
  .text-content {
    max-width: 100%;
    padding: 10px;
  }

  .image-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .text-content h2 {
    font-size: 2rem;
  }

  .text-content p {
    font-size: 1rem;
  }
}




.content-video-section {
  padding: 60px 20px;
}

.container2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.text-content {
  flex: 1 1 45%;
  max-width: 45%;
  padding: 20px;
}

.text-content h2 {
  font-size: 2.3rem;
  color: #962e2a;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: black;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #000000d2;
}

.video-content {
  flex: 1 1 45%;
  max-width: 45%;
  padding: 20px;
}

.video-content video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 4px 4px 10px gray;
  border: 6px solid #962e2a4c;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .text-content,
  .video-content {
    max-width: 100%;
    padding: 10px;
  }

  .text-content h2 {
    font-size: 2rem;
  }

  .text-content p {
    font-size: 1rem;
  }
}








.owner-container {
  margin: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding: 20px;
  height: auto;
}

.owner-photo {
  flex: 1;
  position: relative;
  /* border-radius: 15px; */
  overflow: hidden;
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
}

.owner-photo img {
  margin-left: 50px;
  border-radius: 15px;
  width: 75%;
  height: 70%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.8s ease;
}

.owner-details {
  flex: 1.2;
  padding: 20px;
}

.owner-details h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #962e2a;
  position: relative;
}

.owner-details h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #962e2a0a, #962e2a);
  margin-top: 10px;
}

.owner-details p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
  text-align: justify;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments for screens less than 768px */
@media (max-width: 768px) {
  .owner-container {
    flex-direction: column;
    /* Stack items vertically */
    gap: 20px;
    /* Adjust gap for better spacing */
    padding: 10px;
  }

  .owner-photo {
    flex: 1;
    width: 80%;
    /* Image takes full width */
    display: flex;
    justify-content: center;
  }

  .owner-photo img {
    margin-left: 0;
    /* Remove margin */
    width: 80%;
    /* Image width takes up full container */
    height: auto;
    /* Adjust height to maintain aspect ratio */
  }

  .owner-details {
    flex: 1;
    width: 100%;
    padding: 10px;
  }

  .owner-details h1 {
    font-size: 1.8rem;
    /* Adjust font size */
    margin-bottom: 10px;
  }

  .owner-details p {
    font-size: 0.9rem;
    /* Adjust font size */
    line-height: 1.5;
    /* Adjust line height */
  }
}






.events-section {
  margin-top: 10vh;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.event {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 400px;
}

.image-container {
  position: relative;
  width: 80%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.image-container img.active {
  opacity: 1;
  transform: scale(1);
}

.content-box {
  position: absolute;
  top: 60%;
  right: 10%;
  width: 50%;
  padding: 20px;
  width: 300px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border-radius: 8px;
  z-index: 1;
}

.content-box ul {
  list-style: none;
  /* Remove default white dots */
  padding: 0;
  margin: 0;
}

.content-box ul li {
  font-size: 1rem;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  /* Maintain space for yellow dots */
  cursor: pointer;
}

.content-box ul li:before {
  content: "•";
  /* Yellow dots remain */
  position: absolute;
  left: 0;
  color: #ff9800;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .events-section {
    flex-direction: column;
    padding: 10px;
    max-width: 100vw;
  }

  .event {
    flex-direction: column;
    margin: 100px 0px;
    /* border: 2px solid blue; */
    max-width: 100vw;
  }

  /* .image-container img.active {
    width: 400px;
    height: 300px;
    right: 30%;
    position: relative;
  } */

  .image-container img {
    max-width: 100%;
    /* Makes the image responsive */
    height: 250px;
    /* Maintains aspect ratio */
    right: 0;
  }

  .content-box {
    position: relative;
    top: 195px;
    right: -25%;
    width: 180px;
  }
}










@import url('https://fonts.googleapis.com/css2?family=Luxurious+Roman&display=swap');


#slide {
  height: 70vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #fff;
  color: white;
  overflow: hidden;
}

#service-heading {
  font-size: 3vw;
  margin-bottom: 5vh;
  color: #962e2a;
}

#moving-div {
  background-color: white;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
  padding: 2vw 0;
}

#moving-div .move {
  display: flex;
  align-items: center;
  /* animation: mobe 2s ease-in-out infinite; */
  animation-name: mobe;
  animation-duration: 12s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

#moving-div .icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 3vw;
}

#moving-div .icon-item img {
  height: 7vw;
  margin-bottom: 0.5vw;
}

#moving-div .icon-item p {
  font-size: 1.2vw;
  color: #333;
  margin: 0;
}

@keyframes mobe {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

#blur-left,
#blur-right {
  height: 100%;
  width: 10%;
  position: absolute;
  top: 0;
  z-index: 2;
}

#blur-left {
  left: 0;
  /* background: linear-gradient(to right, #acabab, transparent); */
}

#blur-right {
  right: 0;
  /* background: linear-gradient(to left, #acabab, transparent); */
}


/* 🔹 Medium Screens (Between 769px and 1024px) */
@media (max-width: 1024px) {
  #service-heading {
    font-size: 4vw;
  }

  #moving-div {
    padding: 3vw 0;
  }

  #moving-div .icon-item {
    margin: 0 4vw;
  }

  #moving-div .icon-item img {
    height: 9vw;
  }

  #moving-div .icon-item p {
    font-size: 1.5vw;
  }
}

/* 🔹 Tablets (Between 601px and 768px) */
@media (max-width: 768px) {
  #service-heading {
    font-size: 5vw;
  }

  #moving-div {
    padding: 4vw 0;
  }

  #moving-div .icon-item {
    margin: 0 5vw;
  }

  #moving-div .icon-item img {
    height: 10vw;
  }

  #moving-div .icon-item p {
    font-size: 2vw;
  }

  #blur-left,
  #blur-right {
    width: 15%;
  }
}

/* 🔹 Mobile (Between 481px and 600px) */
@media (max-width: 600px) {
  #service-heading {
    font-size: 6vw;
    text-align: center;
  }

  #moving-div {
    padding: 5vw 0;
  }

  #moving-div .icon-item {
    margin: 0 6vw;
  }

  #moving-div .icon-item img {
    height: 12vw;
  }

  #moving-div .icon-item p {
    font-size: 2.5vw;
  }

  #blur-left,
  #blur-right {
    width: 18%;
  }
}

/* 🔹 Small Mobile (Below 480px) */
@media (max-width: 480px) {
  #service-heading {
    font-size: 7vw;
  }

  #moving-div {
    padding: 6vw 0;
  }

  #moving-div .icon-item {
    margin: 0 7vw;
  }

  #moving-div .icon-item img {
    height: 14vw;
  }

  #moving-div .icon-item p {
    font-size: 3vw;
  }

  #blur-left,
  #blur-right {
    width: 20%;
  }
}







/* Base Styles - Slider and Testimonial Layout */
.testimonial-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  transition: all 0.3s ease;
}

.testimonial {
  flex-shrink: 0;
  width: 500px; /* Default width for desktop */
  padding: 25px;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 15px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.stars {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.name {
  font-size: 1.1rem;
  font-weight: bold;
  color: #962e2a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.role {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(128, 128, 128, 0.708);
}

/* Hover effect */
.testimonial:hover {
  scale: 1.02;
  transition: all linear .2s;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* ⭐ Blur effect */
.testimonial-container:hover .testimonial {
  opacity: 0.4;
}

.testimonial-container:hover .testimonial:hover {
  opacity: 1;
}

/* Responsive Styles */

/* For screens 768px and below */
@media (max-width: 768px) {
  .testimonial-container {
    height: auto; /* Let height adjust for smaller content */
  }

  .testimonial {
    width: 90%; /* Adjust width to fit on smaller screens */
    padding: 15px; /* Reduce padding */
    font-size: 0.95rem; /* Adjust font size for better readability */
  }

  .testimonial-slider {
    gap: 20px; /* Adjust spacing between items for smaller screens */
  }

  .stars {
    font-size: 1.3rem; /* Slightly smaller star size */
  }

  .description {
    font-size: 0.95rem; /* Adjust description font size */
  }

  .name {
    font-size: 1rem; /* Adjust name font size */
  }
}

/* For screens 480px and below */
@media (max-width: 480px) {
  .testimonial {
    width: 100%; /* Full width for very small screens */
    padding: 10px; /* Further reduce padding */
    font-size: 0.85rem; /* Adjust font size */
  }

  .stars {
    font-size: 1.2rem; /* Adjust star size */
  }

  .description {
    font-size: 0.85rem; /* Adjust description font size */
  }

  .name {
    font-size: 0.9rem; /* Adjust name font size */
  }

  .testimonial-slider {
    gap: 15px; /* Reduce the gap for very small screens */
  }
}










.footer {
  position: relative;
  padding: 40px 20px;
  color: #ffffff;
  overflow: hidden;
  background-color: #0000007d;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('img/rose-petals-cover-green-garden-ready-traditional-hindu-weddi.webp') no-repeat center/cover;
  background-size: cover;
  filter: blur(2px);
  z-index: -1;
}

.footer-content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-section,
.links-section,
.contact-section {
  flex: 1 1 30%;
  margin-bottom: 20px;
}

.logo-section img {
  width: 100px;
  margin-bottom: 10px;
  margin-left: 50px;
}

.tagline {
  font-size: 16px;
  color: #fff;
  font-weight: 900;
}

.links-section h4,
.contact-section h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: white;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.links-section ul {
  list-style: none;
  padding: 0;
}

.links-section li {
  margin-bottom: 8px;
}

.links-section a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.links-section a:hover {
  color: #ffcc00;
}

.contact-section p {
  margin: 5px 0;
}

.contact-section a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-section a:hover {
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.541);
  margin-top: 20px;
  padding-top: 10px;
  font-size: 14px;
  color: #cfd8dc;
}

.footer-bottom a {
  text-decoration: none;
  color: #fa4817;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .logo-section,
  .links-section,
  .contact-section {
    flex: 1 1 100%;
    text-align: center;
  }

  .footer-bottom {
    margin-top: 20px;
  }
}