html,body{
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    transition: background-color 0.4s ease, transform 0.3s ease;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled {
    background-color: #ff9100 !important;
}
#hero-slider .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    animation: zoomSlide 10s ease-in-out infinite;
}

.nav-link{
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(45deg, #ff7a00, #ffbb33);
  border: none;
  color: #fff;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(255, 122, 0, 0.5);
}


.navbar-nav{
    font-size: 16px;
}

@keyframes zoomSlide {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
#hero-slider .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
}
#hero-slider .carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 600px;
    animation: fadeInUp 1.5s ease;
    
}
#hero-slider .btn.btn-warning {
    text-transform: capitalize;
    font-size: 18px; /* Increased text size */
     padding: 15px 20px/* Adjust padding proportionally */
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(-50%); }
}
.gradient-text {
    background: linear-gradient(to right, #ffcc00, #ff9100);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gradient-text1 {
    background: linear-gradient(to right, #ffcc00, #055a13);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
#hero-slider .carousel-caption h1,
#hero-slider .carousel-caption p {
    color: white;
    animation: fadeIn 2s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
#hero-slider .btn {
    border-radius: 30px;
    padding: 0.7rem 2rem;
    animation: fadeIn 2.5s ease;
}

.about-section{
    padding: 120px 0;
}

.section-title {
    font-weight: bold;
    margin-bottom: 20px;
    color: #2e7d32;
}
.product-section {
    background: linear-gradient(135deg, #f8fff4, #e8f5e9);
    border-radius: 20px;
}

.all-products{
    text-align: center;
    justify-content: center;
}

.buy-now-btn{
    font-size: 18px;
    font-weight: 600;
    padding: 7px 20px 7px 20px;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
.product-image-wrapper img {
    transition: transform 0.6s ease;
}
.product-image-wrapper:hover img {
    transform: scale(1.05);
}
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff9100;
    color: #fff;
    padding: 8px 15px;
    font-size: 0.85rem;
    border-radius: 20px;
    font-weight: bold;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: left;
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.feature-icon {
    font-size: 1.5rem;
    color: #2e7d32;
    margin-right: 10px;
}

.review-card {
    border-radius: 15px;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.contact-section {
    background: linear-gradient(135deg, #f8fff4, #e8f5e9);
    padding: 60px 0;
    color: #000;
}
 @media (min-width: 768px) {
      #about .container {
        grid-template-columns: 1fr 1fr;
      }
      #about .section-title {
        font-size: 2.5rem !important;
      }
    }
    
  @media (min-width: 768px) {
    #about .text-col { order: 1; }
    #about .img-col { order: 2; }
  }
  @media (max-width: 767px) {
    #about .text-col { order: 2; }
    #about .img-col { order: 1; }
  }

.contact-info li {
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}
.contact-info i {
    font-size: 1.2rem;
    margin-right: 10px;
    color: #ffcc00;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(12px);
}

.contact-form-wrapper .form-control {
    border-radius: 10px;
    border: none;
    padding: 15px;
}

.footer{
    font-weight: 600;
}

.contact-form-wrapper .form-control:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.footer{
    background-color: #ff9100;
}