body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: "Roboto", sans-serif;

}

      .logo img {
          height: 50px;
          width: auto
      }

      nav ul {
          list-style-type: none;
          display: flex;
          margin: 0;
          padding: 0
      }

      nav ul li {
          margin-left: 20px
      }

      nav ul li a {
          color: #fff;
          text-decoration: none;
          font-weight: 700
      }
      h4 {
         color: #0f96ea;
      }

      #menu-icon {
          display: none;
          cursor: pointer
      }

      @media (max-width:768px) {
          nav ul {
              display: none;
              flex-direction: column;
              background-color: white;
              color: white;
              position: absolute;
              top: 50px;
              right: 20px;
              width: 200px;
              border-radius: 5px;
          }
          nav ul li {
              margin-left: 0;
              margin-bottom: 10px
          }
          nav ul li a {
              padding: 10px 20px;
              display: block
          }
          #menu-icon {
              display: block
          }
      }


   

:root {
  --primary-color: #007bff; /* Primary Color */
  --secondary-color: #0fea6a;/* Secondary Color */
  --accent-color: #ff6f61; /* Accent Color */
  --background-color: #f0f8ff; /* Background Color */
  --text-color: #333333; /* Text Color */
  --border-color: #add8e6; /* Border Color */
}
iframe {
  width: 100%;
}

#logo {
  font-size: 24px;
  font-weight: bold;
}
nav ul {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
}
nav ul li {
  margin-left: 20px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
#menu-icon {
  display: none;
  cursor: pointer;
  color: #00264d;
}


.hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  transition: background-image 1s ease-in-out;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(56, 61, 64, 0.5); /* Black overlay with 50% opacity */
  z-index: 1; /* Ensure the overlay is above the background but below the content */
}

.hero-content {
  position: relative; /* Ensure content is above the overlay */
  z-index: 2;
  max-width: 80%;
}

.hero-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.hero-heading {
  font-size: 2.5rem;
  margin: 0.5rem 0 1rem;
}

.hero-description {
  font-size: 1rem;
  margin-bottom: 2rem;
}

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

.hero-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.order-btn {
  background-color: #00BFFF; /* Cyan */
  color: white;
}

.estimate-btn {
  background-color: #1E90FF; /* Blue */
  color: white;
}

.hero-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 2;
}

.arrow-left,
.arrow-right {
  cursor: pointer;
  font-size: 2rem;
  color: white;
  padding: 0 1rem;
}

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

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}


@media (max-width: 768px) {
  nav ul {
      display: none;
      flex-direction: column;
      background-color: #00264d;
      position: absolute;
      top: 50px;
      right: 20px;
      width: 200px;
      border-radius: 5px;
  }
  nav ul li {
      margin-left: 0;
      margin-bottom: 10px;
  }
  nav ul li a {
      padding: 10px 20px;
      display: block;
  }
  #menu-icon {
      display: block;
  }
  .hero {
      flex-direction: column;
  }
  
}



.bowl-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background: #f0f8ff;
  position: relative;
}

.bowl-heading {
  position: absolute;
  top: -2rem; /* Adjust based on heading size */
  font-size: 2.5rem;
  background: #ffffff;
  padding: 0 1rem;
  z-index: 1;
}

.bowl-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  background: #ffffff;
  border-radius: 16% 50% 0 0;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 0;
}

.about-content {
  flex: 1;
  padding-right: 1rem;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0 1800px 20px 0; /* Rounded top-right corner */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.why-us {
  width: 100%;
  max-width: 1200px;
  background: #ffffff;
  border-radius: 0 0 50% 50%;
  text-align: center;
  padding: 1rem;
  margin-top: -1rem; /* Adjust overlap */
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

.why-us h3 {
  margin-bottom: 1rem;
}

.why-us ul {
  list-style-type: none;
  padding: 0;
}

.why-us li {
  margin: 0.5rem 0;
}

@media (max-width: 768px) {
  .bowl-heading {
    font-size: 2rem;
    top: -1.5rem;
  }

  .bowl-body {
    flex-direction: column;
    align-items: center;
  }

  .about-content {
    padding-right: 0;
    text-align: center;
  }

  .about-image img {
    max-width: 80%;
  }

  .why-us {
    padding: 1rem;
    margin-top: 0;
  }
}

.products-section {
  padding: 2rem;
  color: #00264d;
  background-color: #f0f8ff;
  text-align: center; /* Center the heading and content */
}
  
.products-section {
  padding: 2rem;
  background-color: #f0f8ff;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  justify-items: center;
}

.product-card {
  background-color: #f1f5f7;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon svg {
  fill: #00BFFF; /* Light blue color */
  
}

.product-card h4 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  color: #333;
}

.product-card p {
  font-size: 1rem;
  color: #666;
}

@media (max-width: 768px) {
  .product-card {
    padding: 1rem;
  }

  .product-icon {
    width: 50px;
    height: 50px;
  }
}


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

.services-section {
  padding: 2rem;
  background-image: url('../img/theatre-room.webp'); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center; 
}

.services-heading {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 2rem;
  font-family: 'Roboto', sans-serif; 
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  padding: 0 1rem;
}

.service-card {
  background-color:  #f1f5f7;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  height: 300px; /* Adjust as needed */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-content {
  padding: 1rem;
  height: 100%;
  overflow-y: auto; 
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card h4 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  color: #333;
  font-family: 'Roboto', sans-serif; 
}

.service-card p {
  font-size: 1rem;
  color: #666;
  font-family: 'Roboto', sans-serif; 
}

@media (max-width: 768px) {
  .service-card {
    height: auto; 
  }
}
