* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
}

  header {
        background-color: #000;
        z-index: 10;
        position: sticky;
        top: 0;
    }

    .navbar-toggler {
        background-color: #ededed;
        font-size: 16px;
    }

    ul>li {
        padding-right: 15px;
    }

    .nav-link {
        font-size: 16px;
    }

    .nav-link:hover {
        background-color: gray;
    }

.spice-promise {
  background-color: #f8f8f8;
  padding: 80px 0;
  min-height: 100vh;
}

.vission-mission {
  background-color: #898989;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.text-content {
  max-width: 580px;
}

.tagline {
  color: #c8a876;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.main-heading {
  font-size: 48px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 24px;
  line-height: 1.2;
}

.description {
  font-size: 16px;
  color: #666;
  margin-bottom: 48px;
  line-height: 1.7;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  background-color: #c8a876;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.feature-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.image-content {
  position: relative;
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
  .spice-promise {
    padding: 60px 0;
  }
  
  .content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .main-heading {
    font-size: 36px;
  }
  
  .features {
    gap: 24px;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .feature-icon {
    width: 56px;
    height: 56px;
  }
  
  .feature-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .main-heading {
    font-size: 28px;
  }
  
  .tagline {
    font-size: 12px;
  }
  
  .description {
    font-size: 14px;
  }
  
  .feature-content h3 {
    font-size: 16px;
  }
  
  .feature-content p {
    font-size: 13px;
  }
}


/* image section styles */
        body>section:nth-child(3) {
            background-image: url('../../images/aboutUs.png');
            background-size: cover;
            background-attachment: fixed;
            width: 100%;
            background-position: center;
        }

        body>section:nth-child(3)>div>div {
            text-align: center;
        }

        body>section:nth-child(3)>div>div>img {
            width: 20rem;
            margin: 20px;
            padding: 20px;
        }

        body>section:nth-child(3)>div>div>h1 {
            color: #000;
            padding: 12px;
            font-weight: bold;
            font-family: 'Shojumaru';
            font-size: 3rem;
            margin-bottom: 20px;
        }

        /* second section styles */
        body>section:nth-child(4) {
            padding: 40px;
        }

        body>section:nth-child(4)>div>div:nth-child(2)>img {
            width: 75%;
            margin-top: 15px;
        }

        body>section:nth-child(4)>div>div.col-8>h1 {
            color: #e6b000;
        }

        /* third section styles */
        body>section:nth-child(5) {
            background: #ebe9e9;
        }

        body>section:nth-child(5)>div:nth-child(1)>div {
            text-align: center;
            margin: 30px 0px 60px 0px;
        }

        body>section:nth-child(5)>div {
            padding: 15px;
            margin-bottom: 15px;
        }

        body>section:nth-child(5)>div:nth-child(1)>div>h1 {
            color: #e6b000;
        }

        .stars {
            color: #ffd700;
        }

        body>section:nth-child(5)>div:nth-child(2)>div:nth-child(1) {
            text-align: end;
        }

        body>section:nth-child(5)>div:nth-child(3)>div:nth-child(1) {
            text-align: end;
        }

        body>section:nth-child(5)>div>div>img {
            width: 90%;
            padding: 10px;
        }

        /* our team section stles */
        body>section:nth-child(6)>div {
            text-align: center;
            padding-top: 20px;
        }

        body>section:nth-child(6)>div>div:nth-child(1)>h1 {
            color: #e6b000;
        }

        body>section:nth-child(6)>div>div.col-12.row {
            margin: 0px 0px 30px 0px;
        }

        body>section:nth-child(6)>div>div>div>div>h2 {
            margin-top: 15px;
            margin-bottom: 0;
        }

        .image {
            width: auto;
            height: 50%;
        }

        /* mobile size responsive design styles */
        @media  all and (max-width: 768px) {
            body>section:nth-child(3)>div {
                padding: 0rem ! important;
            }

            body>section:nth-child(3)>div>div>img {
                width: 16rem;
                padding: 20px;
                margin-top: 15px;
                margin-bottom: 15px;
            }

            body>section:nth-child(3)>div>div>h1 {
                font-size: 2rem;
            }

            body>section:nth-child(4)>div {
                padding: 1rem ! important;
                margin: 10px 0px 10px 0px;
            }

            body>section:nth-child(4) {
                padding: 0;
            }

            body>section:nth-child(4)>div>div:nth-child(1)>h1 {
                padding: 10px 0px 10px 0px;
            }

            body>section:nth-child(4)>div>div:nth-child(1)>p {
                text-align: justify;
            }

            body>section:nth-child(4)>div>div:nth-child(2) {
                text-align: center;
            }

            body>section:nth-child(5)>div:nth-child(1) {
                padding: 1rem ! important;
                margin-bottom: 0;
            }

            body>section:nth-child(5)>div:nth-child(1)>div {
                margin: 20px 0px 25px 0px;
            }

            body>section:nth-child(5)>div:nth-child(2) {
                padding: 1rem ! important;
            }

            body>section:nth-child(5)>div:nth-child(2)>div:nth-child(1) {
                text-align: center;
            }

            body>section:nth-child(5)>div:nth-child(2)>div:nth-child(2) {
                text-align: justify;
            }

            body>section:nth-child(5)>div:nth-child(3) {
                padding: 1rem ! important;
            }

            body>section:nth-child(5)>div:nth-child(3)>div:nth-child(1) {
                text-align: justify;
            }

            body>section:nth-child(5)>div:nth-child(3)>div:nth-child(2) {
                text-align: center;
            }

            body>section:nth-child(6)>div {
                padding: 1rem ! important;
            }

            body>section:nth-child(6)>div>div:nth-child(1)>div {
                margin-bottom: 1rem !important;
                margin-top: 1rem !important;
            }

            body>section:nth-child(6)>div>div {
                padding: 0rem ! important;
            }

            body>section:nth-child(6)>div>div {
                margin: 20px 0px 30px 0px;
            }
        }

        /* mobile size responsive design styles */
        @media  all and (min-width: 768px) and (max-width: 992px) {
            body>section:nth-child(3)>div {
                padding: 0rem ! important;
            }

            body>section:nth-child(3)>div>div>img {
                width: 16rem;
                padding: 20px;
                margin-top: 15px;
                margin-bottom: 15px;
            }

            body>section:nth-child(3)>div>div>h1 {
                font-size: 2rem;
            }

            body>section:nth-child(4)>div {
                padding: 1rem ! important;
                margin: 10px 0px 10px 0px;
            }

            body>section:nth-child(4) {
                padding: 0;
            }


            body>section:nth-child(4)>div>div:nth-child(1)>h1 {
                padding: 10px 0px 10px 0px;
            }

            body>section:nth-child(4)>div>div:nth-child(1)>p {
                text-align: justify;
            }

            body>section:nth-child(4)>div>div:nth-child(2) {
                text-align: center;
            }

            body>section:nth-child(4)>div>div:nth-child(2)>img {
                width: 30%;
                margin-top: 15px;
            }

            body>section:nth-child(5)>div:nth-child(1) {
                padding: 1rem ! important;
                margin-bottom: 0;
            }

            body>section:nth-child(5)>div:nth-child(1)>div {
                margin: 20px 0px 25px 0px;
            }

            body>section:nth-child(5)>div:nth-child(2) {
                padding: 1rem ! important;
            }

            body>section:nth-child(5)>div:nth-child(2)>div:nth-child(1) {
                text-align: center;
            }

            body>section:nth-child(5)>div:nth-child(2)>div:nth-child(2) {
                text-align: justify;
            }

            body>section:nth-child(5)>div:nth-child(3) {
                padding: 1rem ! important;
            }

            body>section:nth-child(5)>div:nth-child(3)>div:nth-child(1) {
                text-align: justify;
            }

            body>section:nth-child(5)>div:nth-child(3)>div:nth-child(2) {
                text-align: center;
            }

            body>section:nth-child(6)>div {
                padding: 1rem ! important;
            }

            body>section:nth-child(6)>div>div:nth-child(1)>div {
                margin-bottom: 1rem !important;
                margin-top: 1rem !important;
            }

            body>section:nth-child(6)>div>div {
                padding: 0rem ! important;
            }

            body>section:nth-child(6)>div>div {
                margin: 20px 0px 30px 0px;
            }
        }