* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f0f2f5;
  color: #333;
}


/*home*/


.hero-section {
  padding: 60px 20px;
  background: #f5f5f5;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.hero-text {
  text-align: center;
}

.hero-text h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hero-button {
  background-color: #4285f4;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
}

.hero-swiper .swiper-container {
  width: 100%;
  max-width: 300px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  
}

.swiper-border {
  position: relative;
  padding: 20px;
  border: 2px solid #aaa;
  border-radius: 30px;
  background: linear-gradient(to top right, #ffffff, #f8f8f8);
  box-shadow: 0 0 30px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* Decorative Lines like Luxe Design */
.swiper-border::before,
.swiper-border::after {
  content: "";
  position: absolute;
  border: 1px solid #999;
}

.swiper-border::before {
  top: 10px;
  left: -30px;
  width: 200px;
  height: 1px;
  transform: rotate(15deg);
}

.swiper-border::after {
  bottom: -30px;
  right: 30px;
  height: 400px;
  width: 1px;
  transform: rotate(-45deg);
}

.swiper-border::after {
  /* Existing styles... */
  box-shadow: 0 0 60px 40px rgba(233, 100, 121, 0.2); /* soft pink glow */
}





/* Large devices - horizontal layout */
@media (min-width: 992px) {
  .hero-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
  }

  .hero-text {
    flex: 1;
    text-align: left;
  }

  .hero-swiper {
    flex: 1;
  }

  .hero-swiper .swiper-container {
    height: 400px;
    width: 400px;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text p {
    font-size: 1.25rem;
  }
}





/*nav*/
header {
    background-color: #333;
    color: white;
    padding: 1rem;
}



.nav-links {
    list-style: none;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}



.food-munch-logo {
    width: 80px;
    height: 70px;
}

.navvv{
  color: #323f4b;
    font-family: "Roboto";
}

#navItem1 {
    color: #323f4b;
    font-family: "Roboto";
}

#navItem2 {
    color: #323f4b;
    font-family: "Roboto";
}

#navItem3 {
    color: #323f4b;
    font-family: "Roboto";
}

#navItem4 {
    color: #323f4b;
    font-family: "Roboto";
}


#navItem5 {
    color: #323f4b;
    font-family: "Roboto";
}


.section {
    padding: 20px;
    padding-top: 90px;
}

.hidden {
    display: none;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  background: #eee;
  padding: 10px;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content li {
  
  margin: 5px 0;
}



/* About Section */


.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 40px;
}
.about-text {
  text-align: left;
  flex: 1;
}
.about-img {
   width: 100%;
  max-width: 400px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  
}
.hidden {
  display: none;
}

.read-btn{
  margin-top: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  
}



@media (min-width: 992px) {

  .about-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    flex: 1;
  }
  
  .about-img{
     flex: 1;
    height: 400px;
  }
}


/* Services */
.services {
  background: #f4f4f4;
  padding: 40px;
}

.service-img {
  max-width: 90%;
  height: auto;
  margin: 10px auto;
  display: block;
  border-radius: 8px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.service {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  text-align: center;
  box-shadow: 7px 7px;
  border-radius: 8px;
}
.service button {
  background: maroon;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

/* Dynamic Service Info */


.service-detail {
  padding: 40px;
  background-color: #f9f9f9;
  text-align: center;
}

.service-title {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #333;
}

.service-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.service-image {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-description {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}


container { position: relative; width: 80%; max-width: 800px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); background-color: #fff; overflow: hidden; border-radius: 8px; }

.image-section { position: relative; }

.image-section img { width: 100%; height: auto; }

.overlay { position: absolute; bottom: 0; left: 0; background: rgba(255, 255, 255, 0.9); width: 100%; padding: 20px; box-sizing: border-box; }

.overlay h1 { margin: 0; font-size: 24px; color: #333; }

.overlay p { font-size: 14px; color: #666; margin: 10px 0; }

.overlay .button { display: inline-block; padding: 10px 20px; color: #fff; background-color: #007bff; text-decoration: none; border-radius: 4px; font-size: 14px; }

.overlay .button:hover { background-color: #0056b3; }








/*ceiling*/



.elevator-section {
  padding: 60px 20px;
  background: #f9f9f9;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.feature-box {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-5px);
}
.feature-box img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}
.feature-list {
  padding-left: 20px;
}
.feature-list li {
  margin-bottom: 10px;
  color: #333;
  font-weight: 500;
}

/*Gallaery*/




.gallery-box {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-img {
  width: 50%;
  height: 50%;
  object-fit: cover;
}

.photho{
  border-radius: 10px;
  margin: 20px;
}

.back{
  background-color: white;
}


/*testi*/

.testimonials-section {
  text-align: center;
  padding: 60px 20px;
  background: #f5f5f5;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.section-subtitle {
  font-weight: 500;
  color: #aa6644;
  margin-bottom: 8px;
}



.testimonial-card {
  position: relative;
  background: white;
  border-radius: 12px;
  padding: 20px;
  padding-top: 40px; /* extra space for image and quote */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 350px;
  margin: auto;
}

.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin: -50px auto 10px;
  border: 4px solid #fff;
  background: #fff;
  position: relative;
  z-index: 2;
}

.testimonial-content {
  margin-top: 10px;
}
.quote-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #d4a373;
  color: white;
  font-size: 1rem;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  z-index: 5;
}

.testimonial-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.position {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 10px;
}

.message {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
}

.stars {
  color: #f4b400;
  font-size: 1rem;
}

/* Swiper responsive */
@media (min-width: 768px) {
  .testimonialSwiper .swiper-wrapper {
    padding: 20px 0;
  }
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: white;
  padding: 2rem 1rem 0;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-map {
  flex: 1 1 200px;
}

.footer h3 {
  margin-bottom: 1rem;
  border-bottom: 2px solid crimson;
  display: inline-block;
}

.footer-about p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.social-icons a img {
  width: 24px;
  margin-right: 10px;
  vertical-align: middle;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-contact p {
  margin: 8px 0;
}

.footer-bottom {
  text-align: center;
  background-color: #0f0f0f;
  padding: 1rem;
  margin-top: 2rem;
}


/* Responsive styles for small devices (mobile) */
@media (max-width: 768px) {

  
.top-bar {
  background-color: black;
  text-align: center;
  padding: 5px 0;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  width: 100%;
}


  .dropdown-content {
    position: static;
    padding-left: 20px;
  }

  /* About Section */

  /* Services */
  .service-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-map iframe {
    height: 200px;
  }
}




/* Large devices (desktops) */
@media (min-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    
  }

  .about-section {
    padding: 60px 80px;
  }

  .footer-container {
    padding: 0 60px;
  }

  .service-detail {
    padding: 60px 80px;
  }
  
  
}





















* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #CAE4F1;
  color: #333;
}


/*home*/


.hero-section {
  padding: 60px 20px;
  background: #CAE4F1;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.hero-text {
  text-align: center;
}


.hero-text h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

          

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hero-button {
  background-color: #CA278C;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
}

.hero-swiper .swiper-container {
  width: 100%;
  max-width: 400px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  
}

.swiper-border {
  position: relative;
  padding: 20px;
  border: 2px solid #aaa;
  border-radius: 30px;
  background: linear-gradient(to top right, #ffffff, #f8f8f8);
  box-shadow: 0 0 30px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* Decorative Lines like Luxe Design */
.swiper-border::before,
.swiper-border::after {
  content: "";
  position: absolute;
  border: 1px solid #999;
}

.swiper-border::before {
  top: 10px;
  left: -30px;
  width: 200px;
  height: 1px;
  transform: rotate(15deg);
}

.swiper-border::after {
  bottom: -30px;
  right: 30px;
  height: 400px;
  width: 1px;
  transform: rotate(-45deg);
}

.swiper-border::after {
  /* Existing styles... */
  box-shadow: 0 0 60px 40px rgba(233, 100, 121, 0.2); /* soft pink glow */
}





/* Large devices - horizontal layout */
@media (min-width: 992px) {
  .hero-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
  }

  .hero-text {
    flex: 1;
    text-align: left;
  }

  .hero-swiper {
    flex: 1;
  }

  .hero-swiper .swiper-container {
    height: 400px;
    width: 400px;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text p {
    font-size: 1.25rem;
  }
}





/*nav*/
header {
    background-color: #333;
    color: white;
    padding: 1rem;
}



.nav-links {
    list-style: none;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}



.food-munch-logo {
    width: 80px;
    height: 70px;
}

.navvv{
  color: #323f4b;
    font-family: "Roboto";
}

#navItem1 {
    color: #323f4b;
    font-family: "Roboto";
}

#navItem2 {
    color: #323f4b;
    font-family: "Roboto";
}

#navItem3 {
    color: #323f4b;
    font-family: "Roboto";
}

#navItem4 {
    color: #323f4b;
    font-family: "Roboto";
}


#navItem5 {
    color: #323f4b;
    font-family: "Roboto";
}


.section {
    padding: 20px;
    padding-top: 90px;
}

.hidden {
    display: none;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  background: #eee;
  padding: 10px;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content li {
  
  margin: 5px 0;
}



/* About Section */


.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 40px;
}
.about-text {
  text-align: left;
  flex: 1;
}
.about-img {
   width: 100%;
  max-width: 400px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  
}
.hidden {
  display: none;
}

.read-btn{
  margin-top: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  
}



@media (min-width: 992px) {

  .about-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    flex: 1;
  }
  
  .about-img{
     flex: 1;
    height: 400px;
  }
}


/* Services */
.services {
  background: #CAE4F1;
  padding: 40px;
}

.service-img {
  max-width: 90%;
  height: auto;
  margin: 10px auto;
  display: block;
  border-radius: 8px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}
.service {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  text-align: center;
  box-shadow: 7px 7px;
  border-radius: 8px;
}
.service button {
  background: #CA278C;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

/* Dynamic Service Info */


.service-detail {
  padding: 40px;
  background-color: #f9f9f9;
  text-align: center;
}

.service-title {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #333;
}

.service-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.service-image {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-description {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}


container { position: relative; width: 80%; max-width: 800px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); background-color: #fff; overflow: hidden; border-radius: 8px; }

.image-section { position: relative; }

.image-section img { width: 100%; height: auto; }

.overlay { position: absolute; bottom: 0; left: 0; background: rgba(255, 255, 255, 0.9); width: 100%; padding: 20px; box-sizing: border-box; }

.overlay h1 { margin: 0; font-size: 24px; color: #333; }

.overlay p { font-size: 14px; color: #666; margin: 10px 0; }

.overlay .button { display: inline-block; padding: 10px 20px; color: #fff; background-color: #007bff; text-decoration: none; border-radius: 4px; font-size: 14px; }

.overlay .button:hover { background-color: #0056b3; }








/*ceiling*/



.elevator-section {
  padding: 60px 20px;
  background: #f9f9f9;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.feature-box {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-5px);
}
.feature-box img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}
.feature-list {
  padding-left: 20px;
}
.feature-list li {
  margin-bottom: 10px;
  color: #333;
  font-weight: 500;
}

/*Gallaery*/


.gallery{
  background-color: #CAE4F1;
}

.gallery-box {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #CBC3E3;
}

.gallery-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photho{
  border-radius: 10px;
  margin: 20px;
}

.back{
  background-color: white;
}


/*testi*/

.testimonials-section {
  text-align: center;
  padding: 60px 20px;
  background: #f5f5f5;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.section-subtitle {
  font-weight: 500;
  color: #aa6644;
  margin-bottom: 8px;
}



.testimonial-card {
  position: relative;
  background: white;
  border-radius: 12px;
  padding: 20px;
  padding-top: 40px; /* extra space for image and quote */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 350px;
  margin: auto;
}

.testimonial-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin: -50px auto 10px;
  border: 4px solid #fff;
  background: #fff;
  position: relative;
  z-index: 2;
}

.testimonial-content {
  margin-top: 10px;
}
.quote-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #d4a373;
  color: white;
  font-size: 1rem;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  z-index: 5;
}

.testimonial-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.position {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 10px;
}

.message {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
}

.stars {
  color: #f4b400;
  font-size: 1rem;
}

/* Swiper responsive */
@media (min-width: 768px) {
  .testimonialSwiper .swiper-wrapper {
    padding: 20px 0;
  }
}

/* Footer */
.footer {
  background-color:  #CAE4F1;
  padding: 2rem 1rem 0;
  font-size: 0.2rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-map {
  flex: 1 1 200px;
}

.footer h5 {
  margin-bottom: 1rem;
  border-bottom: 2px solid crimson;
  display: inline-block;
  color: #800000;
}

.footer-about p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: white;
}

.social-icons a img {
  width: 24px;
  margin-right: 10px;
  vertical-align: middle;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-contact p {
  margin: 8px 0;
  color: white;
}

h5{
  color: #800000;
}
.footer-bottom {
  text-align: center;
  background-color: #0f0f0f;
  padding: 1rem;
  margin-top: 2rem;
}


/* Responsive styles for small devices (mobile) */
@media (max-width: 768px) {

  
.top-bar {
  background-color: black;
  text-align: center;
  padding: 5px 0;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  width: 100%;
}


  .dropdown-content {
    position: static;
    padding-left: 20px;
  }

  /* About Section */

  /* Services */
  .service-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-map iframe {
    height: 200px;
  }
}




/* Large devices (desktops) */
@media (min-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    
  }

  .about-section {
    padding: 60px 80px;
  }

  .footer-container {
    padding: 0 60px;
  }

  .service-detail {
    padding: 60px 80px;
  }
  
  
}
