* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #020202;
  overflow-x: hidden;
}

/* Styling for the Navigation Bar */
#main-navbar {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  padding: 15px 25px;
}

/* Container for navbar items */
#main-navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

/* Styling for the Logo Section */
#main-navbar .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

#main-navbar .logo img {
  height: 25px;
  margin-right: 10px;
}

#main-navbar .logo span {
  font-size: 1rem;
  letter-spacing: 1.5px;
  color: #333;
  white-space: nowrap;
}

/* Styling for the Order Button */
#main-navbar .order-button a {
  font-size: 1rem;
  text-transform: uppercase;
  color: white;
  background-color: #f59e0b;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

#main-navbar .order-button a:hover {
  background-color: #fbbf24;
}

/* Responsive Design */
@media (max-width: 768px) {
  #main-navbar {
    position: static; /* Allow navbar to scroll */
    box-shadow: none;
  }
  #main-navbar .logo {
    margin-right: auto;
  }

  /* Hide the order button */
  #main-navbar .order-button {
    display: none; /* Hide in responsive mode */
  }

  /* Adjust padding and alignment for smaller screens */
  #main-navbar .container {
    padding: 0 20px;
    flex-direction: column; /* Stack items vertically */
  }
}

.containe {
  width: 90%;
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  border-radius: 10px;
}

.content {
  padding: 20px;
}

.content .sub-heading,
.content .main-heading {
  text-align: center;
  color: #1a1a1a;
}

p {
  margin-top: 20px;
}

.main-heading {
  font-weight: 800;
  font-size: 41px;
  margin-bottom: 0;
}

.sub-heading {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 0;
}

.second-eading {
  text-align: start;
  font-size: 20px;
}

.first {
  margin-top: 5em;
}

p {
  font-size: 18px;
  color: #1e1d1d;
  line-height: 1.6;
}

ul,
ol {
  margin-left: 2em;
  font-size: 16px;
  color: #1e1d1d;
  line-height: 1.6;
}

li {
  margin-top: 10px;
  margin-bottom: 13px;
}

.size {
  font-size: 20px;
  font-weight: 800;
  color: rgb(6, 124, 6);
  line-height: 1.6;
}

.question {
  font-size: 18px;
  font-weight: 500;
  color: #1e1d1d;
}

.bold {
    font-size:18px;
  font-weight: bold;
  color: #000;
}

.bolderr {
  font-weight: 800;
  color: #000;
}


/* responsiveness */
/* Responsive Styles */
@media (max-width: 768px) {
  .containe {
    width: 95%;
    margin: 30px auto;
    padding: 15px;
  }

  .main-heading {
    font-size: 34px;
  }

  .sub-heading {
    font-size: 20px;
  }

  .second-heading {
    font-size: 18px;
  }

  .size {
    font-size: 20px;
    font-weight: 800;
  }

}

@media (max-width: 480px) {
  .containe {
    width: 100%;
    padding: 10px;
  }

  .main-heading {
    font-size: 28px;
  }

  .sub-heading {
    font-size: 18px;
  }

  .second-heading {
    font-size: 16px;
  }

  .size {
    font-size: 20px;
    font-weight:800;
  }
}






/* Section Styling */
#showcase-section {
  background-color: #f3f4fe;
  padding: 10em 2em;
}

/* Container Styling */
#showcase-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Content Styling */
#showcase-section .content {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* Images Styling */
#showcase-section .images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

#showcase-section .images div {
  flex: 1 1 45%;
  max-width: 500px;
}

#showcase-section .images img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #showcase-section .content {
    flex-direction: column;
    padding: 25px;
  }

  #showcase-section .images {
    display: block;
  }
}

/* Order Button Styling */
#showcase-section .order-button {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

#showcase-section .order-button a {
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  background-color: #16a34a;
  padding: 10px 20px;
  font-size: 1.2rem;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s ease-in-out;
}

#showcase-section .order-button a:hover {
  background-color: #22c55e;
}


/* General Section Styling */
.bg-custom {
  background-color: #f3f4fe;
  padding: 5rem 1rem;
  display: flex;
  justify-content: center;
}

/* Container to center the grid */
.container {
  max-width: 1100px;
  width: 100%;
  margin: auto;
}

/* Grid Layout */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  justify-content: center;
}

@media (min-width: 768px) {
  .image-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Inner Grid */
.image-column {
  display: grid;
  gap: 16px;
}

/* Image Styling */
.image-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* testonials */
/* General styling */
#testimonials {
  background-color: #ffffff;
}

/* Title and subtitle */
#testimonials .bold {
  font-size: 15px;
  font-weight: 700;
  color: #181717;
  text-align: center;
}

.section-title {
  font-size: 45px;
  font-weight: 800;
  color: #090e34;
  margin-bottom: 1em;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* Individual testimonial box */
.card {
  background: #f3f4f6;
  padding: 20px;
  border-radius: 2px;
  width: 300px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Testimonial content */
.ud-testimonial-content p {
  font-size: 16px;
  line-height: 1.4;
  color: #333;
  text-align: start;
}

/* Meta details */
.ud-testimonial-meta h4 {
  text-align: start;
  font-size: 11px;
  font-weight: bold;
  color: #000;
  margin-top: 8px;
}

/* Centering the Order Now button */
.order-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.order-btn {
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  background-color: #16a34a;
  padding: 10px 20px;
  font-size: 1.2rem;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.order-btn:hover {
  background-color: #22c55e;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 25px;
    text-align: center;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    max-width: 350px;
    height: auto;
    padding: 20px;
  }
}

@media screen and (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }

  .card {
    width: 95%;
    padding: 15px;
  }

  .order-btn {
    font-size: 1rem;
    padding: 8px 16px;
  }
}



/* FAQ */
/* FAQ Section */
.faq {
  background-color: #eceef1;
  padding: 5px;
}

h2 {
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  color: #1a202c;
  margin-bottom: 30px;
}

.gridd {
  display: flex;
  gap: 40px;
  border-top: 1px solid #e2e8f0;
  padding-top: 30px;
}

.faq-column {
  flex: 1;
}

@media (max-width: 768px) {
  .gridd {
    display: block;
  }
}

h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 10px;
}

p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
}

.faq-item {
  margin-bottom: 20px;
}



/* form */
#orderNow {
  background-color: white;
  padding: 20px;
}

#orderNow .container {
  width: 500px;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  background: #fff;
  height: auto;
}

/* Header Styles */
#orderNow h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  text-align: start;
}

/* Label Styles */
label {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #555;
}

/* Input and Select Styles */
input[type="text"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #f9f9f9;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border: 2px solid#090e34;
}

/* Name Input Full Width */
.sm\:col-span-2 input[type="text"]#name {
  width: 100%;
}

/* Two-Column Layout for Email and Phone */
.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.grid .sm\:col-span-2 {
  grid-column: span 2;
}

select#bedsize,
select#state {
  width: 100%;
}

/* Delivery Address Height */
textarea#address {
  min-height: 150px;
}

/* Button Full Width */
button {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  background-color: #ffa500;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
}

button:hover {
  background-color: #e69500;
}
/* Responsive Design */
@media (max-width: 768px) {
  #orderNow .container {
    width: 90%;
    padding: 15px;
  }

  button {
    font-size: 0.9rem;
  }
}

/* Minimal Contact Section */
.contact-section {
  background-color: #f2f4f7;
  padding: 30px 14em;
  margin: auto;
}

  .contact-section .section-title{
    text-align: start;
    font-size: 25px;
  }


/* Responsive Design */
@media screen and (max-width: 1200px) {
  .contact-section {
    padding: 30px 8em;
  }

  .contact-section .section-title{
    text-align: start;
    font-size: 25px;
  }
}

@media screen and (max-width: 992px) {
  .contact-section {
    padding: 30px 4em;
  }
}

@media screen and (max-width: 768px) {
  .contact-section {
    padding: 30px 2em;
  }

  .contact-section .section-title {
    font-size: 22px;
  }
}

@media screen and (max-width: 480px) {
  .contact-section {
    padding: 20px 1em;
  }

  .contact-section .section-title {
    font-size: 20px;
  }

  .text, .bold {
    font-size: 14px;
  }
}



/* footer */
.footer {
  background-color: #f9fafb;
  padding: 30px 15px;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;  padding: 0 15px;
}

.logoo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 16px;
  color: #1a202c;
  margin-bottom: 0;
}

.logoo img {
  width: 30px;
  height: auto;
  margin-right: 10px;
  border-radius: 5px;
}

.footer-text {
  font-size: 12px;
  color: #4a5568;
  line-height: 1.6;
  margin: 20px 0;
  margin-bottom: 10px;
}

.footer-note {
  font-size: 10px;
  color: #6b7280;
}

.footer-link {
  text-decoration: none;
  color: #6b7280;
  font-size: 10px;
}

.footer-link:hover {
  text-decoration: underline;
}
