body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Navbar Styling */
.navbar {
    padding: 10px 0;
    background: white;
    height: 80px;
    position: relative;
    z-index: 1000;
}

.navbar-brand img {
    height: 80px;
    width: auto;
}

.navbar-toggler {
    border: none;
    font-size: 24px;
    color: #333;
}

.navbar-nav {
    align-items: center;
    justify-content: flex-end;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    margin: 0 10px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #6dbd45;
}

/* Responsive styling */
@media (max-width: 768px) {
    .navbar {
        height: auto;
        padding: 10px;
    }

    .navbar-collapse {
        background-color: white;
        padding: 15px 10px;
        border-top: 1px solid #ccc;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .navbar-nav .nav-link {
        width: 100%;
        padding: 10px 15px;
        margin: 0;
        border-radius: 5px;
        
    }

    .navbar-nav .nav-link:hover {
        background-color:#4cae4c;
        color: white;
    }
}

/* Hero Section */
.banner-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .banner-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('/assets/images/banner.jpg') no-repeat center center/cover;
    z-index: 1;
  }

  .banner-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    width: 90%;
    text-align: left;
  }

  .banner-caption {
    max-width: 600px;
  }

  .banner-caption span {
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
  }

  .banner-caption h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .banner-caption p {
    font-size: 16px;
    margin-bottom: 20px;
    
  }

  .banner-caption .btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    background-color: #5cb85c;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-right: 15px;
  }

  .btn:hover {
    background-color: #4cae4c;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .banner-content {
      top: auto;
      bottom: 20%;
      transform: none;
      left: 5%;
      width: 90%;
    }

    .banner-caption h2 {
      font-size: 24px;
    }

    .banner-caption p {
      font-size: 14px;
    }

    .banner-caption .btn {
      display: block;
      width: fit-content;
      margin-bottom: 10px;
    }
  }
  /* Feature Section */

.card-section .card {
    background: white;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: transform 0.3s ease-in-out;
    margin-top: 20px;
}
.card-section h3{
    font-size: 20px;
  
}
.card-section p{
    font-size: 15px;
    color: #666;
    margin-top: 15px;
  
}

.card-section .card:hover {
    transform: translateY(-5px);
}

.card-section .icon-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin: 0 auto; /* Center in card */
}

.card-section .icon-wrapper img {
    width: 70px;
    height: 70px;
    position: absolute;
    z-index: 2;
   

}

.card-section .icon-border {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px dashed #6BBE5B;
    border-radius: 50%;
    z-index: 1;
    animation: rotate 4s linear infinite; /* Rotates always */
}
.card-section .icon-border2 {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid #6BBE5B;
    border-radius: 50%;
    z-index: 1;
    animation: rotate 4s linear infinite; /* Rotates always */
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.highlight-text {
    color: #71A22F;
    font-style: italic;
    font-weight: bold;
  }

  .product-section {
    display: flex;
    align-items: center;
  }

  .product-text {
    flex: 1;
  }

  .vertical-text-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 20px;
    height: 100%;
  }

  .vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: bold;
    letter-spacing: 2px;
    color: #555;
  }

  .underline {
    width: 60px;
    height: 4px;
    background-color: #6BBE5B;
    margin-top: 5px;
    margin-bottom: 15px;
  }

  .read-more {
    display: flex;
    align-items: center;
    color: #6BBE5B;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
  }

  .read-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #6BBE5B;
    color: white;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    justify-content: center;
    font-size: 30px;
  }

  .product-image {
    position: relative;
  }

  .image-wrapper {
    position: relative;
    display: inline-block;
  }

  .background {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: #f0f8f0;
    border-radius: 50%;
    top: 60%;
    left: 30%;
    transform: translate(-50%, -50%);
    z-index: -1;
    background-size: cover;
  }

  .leaf {
    position: absolute;
    top: 80%; 
    left: 25%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .leaf-image {
    width: 200px;
    height: auto;
    display: block;
    transform:rotate(180deg);
   
  }

.brand-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.brand-box img {
    max-width: 80%;
    max-height: 60%;
}

.brand-box:hover {
    transform: scale(1.05);
}

.shipping-section {
    /* background: url('https://i.imgur.com/vH2i9r8.png') no-repeat center center; */
    background-size: contain;
    padding: 80px 20px;
    background-color: #ececec; /* Grey background */
}

.shipping-number {
    font-size: 80px;
    color: #6BBE5B;
    font-weight: 500;
}

.shipping-section h3 {
    color: #333;
}

.shipping-section p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}
.testimonial-section {
    padding: 2px 0;
}
.carousel-item{
    height: auto !important;
    min-height: 70vh !important;

}
.testimonial-section{
    background: rgb(248, 246, 246);

}
.testimonial {
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: white;
}
.quote {
    font-size: 30px;
    color: #8bc34a;
}
.testimonial-text {
    font-style: italic;
    color: #666;
}
.author {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}
.author-info {
    font-weight: bold;
}
.role {
    font-size: 14px;
    color: gray;
}
.shop-section {
    background-color: #71A22F; /* Green background */
    color: white;
    padding: 60px 0;
    text-align: center;

}

.shop-section h2 {
    font-size: 20px;
    margin-bottom: 30px;
}

.shop-section p {
    font-size: 16px;
    margin-bottom: 30px;
}

.shop-button {
    background-color: white;
    color: #71A22F; /* Green text */
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.shop-button:hover {
    background-color: #f0f0f0; /* Light grey on hover */
}
.footer {
    background-color: #8bc34a;
    padding: 20px 0;
    color: white;
}
.footer-logo img {
    max-width: 150px;
    height:100px;
}
.footer a {
    color: white;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
.social-icons a {
    font-size: 20px;
    margin-right: 15px;
}
.footer-bottom {
    background-color: #6b9b37;
    padding: 10px 0;
    text-align: center;
    margin-top: 50px;
}



/* ..................about page......................... */
.about-header {
    background-color: #71A22F; /* Green background */
    color: white;
    padding: 50px 0;
}
.about-header p a{
    text-decoration: none;
    color:white;
}
.section-title {
    color: #333;
    margin-bottom: 30px;
}
.section-content {
    background-color: #f8f9fa;
    padding: 50px 0;
}
.story-section, .vision-section, .mission-section {
    margin-bottom: 40px;
}
.story-section p, .vision-section p, .mission-section p {
    color: #666;
    line-height: 1.6;
}
.image-grid {
    margin-top: 40px;
}
.image-grid img {
    width: 100%;
    height: auto;
    border: 10px solid white;
}
.divider {
    border-top: 2px dashed #ddd;
    margin: 10px 0;
}
.wavy-divider {
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2371A22F' fill-opacity='1' d='M0,160L48,138.7C96,117,192,75,288,80C384,85,480,139,576,149.3C672,160,768,128,864,117.3C960,107,1056,117,1152,133.3C1248,149,1344,171,1392,181.3L1440,192L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E"); */
 
}

.quality-section {
    padding: 80px 0;
}
.quality-section h2 {
    font-size: 28px;

}
.quality-section p {
    font-size: 16px;
    color: #666;
  
}
.vision-section{
    background-color: white;
    padding: 10px;
}
.mission-section{
    background-color: white;
    padding: 10px;
}
.progress-bar {
    background-color: #71A22F; /* Green progress bar color */
    animation: progressBar 3s ease-in-out;
    animation-fill-mode:both;
}
@keyframes progressBar {
    0% { width: 0; }
    100% {  }
  }
.progress-container {
    margin-bottom: 20px;
}
.progress-label {
    font-weight: bold;
    margin-bottom: 5px;
}
.plant-image img {
    max-width: 100%;
    height: auto;
   
}
.history{
    width:100%;
    height:auto;
    overflow:hidden;
}
.history h2{
    font-size: 25px;
}
.history p{
    color:#666;
    text-align: justify;
}
.timeline {
    position: relative;
    padding: 10px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #6b9b37;
    left: 50%;
    margin-left: -2px;
}
.timeline-item {
    position: relative;
    margin-bottom: 10px;
}
.timeline-item:nth-child(even) {
    left: 50%;
    text-align: right;
    padding-right: 30px;
    margin-left: 50px;
}
.timeline-item:nth-child(odd) {
    left: 0;
    padding-left: 30px;
}



.timeline-content {
    background: #6b9b37;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}
.timeline-content h3 {
    margin-bottom: 10px;
    color: white;
    font-size: 20px;
    text-align: left;
}
.timeline-content p {
    color: white;
    text-align: left;
    font-size: 15px;
}

/* Animation */
.timeline-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}


/*.................... gallery page.......................... */
.gallery-container {
    max-width: 900px;
    margin: 50px auto;
    text-align: center;
}
.btn-category {
    margin: 5px;
    background-color: #6BBE5B !important;
    border-color: #6BBE5B !important;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
    gap: 15px;
    padding: 20px;
}
.grid-item {
    position: relative;
    overflow: hidden;
}
.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
}
.grid-item:hover img {
    transform: scale(1.1);
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}
.grid-item:hover .overlay {
    opacity: 1;
}


/* contact-page */

.contact-section .card {
    background: white;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: transform 0.3s ease-in-out;
    margin-top: 20px;
    height:100%;
}
.contact-section h3{
    font-size: 20px;
  
}
.contact-section p{
    font-size: 15px;
    color: #666;
    margin-top: 55px;
  
}

.contact-section .card:hover {
    transform: translateY(-5px);
}

.contact-section .icon-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin: 0 auto; /* Center in card */
}

.contact-section .icon-wrapper img {
    width: 60px;
    height: 60px;
    position: absolute;
    z-index: 2;
   

}

.contact-section .icon-border {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px dashed #6BBE5B;
    border-radius: 50%;
    z-index: 1;
    animation: rotate 4s linear infinite; /* Rotates always */
}
.contact-section .icon-border2 {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid #6BBE5B;
    border-radius: 50%;
    z-index: 1;
    animation: rotate 4s linear infinite; /* Rotates always */
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 50px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.contact-form, .contact-map {
    flex: 1;
    padding: 30px;
    min-width: 400px;
}
.contact-form h2 {
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}
.contact-form p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 25px;
    text-align: center;
}
.contact-form .form-control {
    margin-bottom: 15px;
    height: 50px;
}
.contact-form textarea {
    height: 120px;
    resize: none;
}
.contact-form button {
    background-color: #8bc34a;
    border: none;
    height: 50px;
    font-weight: bold;
    color: white;
    width: 100%;
}
.contact-form button:hover {
    background-color: #7cb342;
}
.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* product page */
.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 20px;
}
.product-item {
    position: relative;
    overflow: hidden;
    width: calc(25% - 15px);
    min-width: 250px;
}
.product-item img {
    width: 100%;
    height:100%;

    display: block;
    transition: transform 0.3s ease;
}
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-item:hover img {
    transform: scale(1.1);
}
.product-item:hover .product-overlay {
    opacity: 1;
}
.shop-btn {
    background:#6b9b37;
    color: white;
    padding: 10px 15px;
    border: none;
    margin-top: 10px;
    text-decoration: none;
    display: inline-block;
}
.shop-btn:hover {
    background:#6b9b37;
}
@media (max-width: 992px) {
    .product-item {
        width: calc(50% - 15px);
    }
}
@media (max-width: 576px) {
    .product-item {
        width: 100%;
    }
}

.main-content {
    min-height: calc(100vh - 80px); /* Adjust 80px based on footer height */
    display: flex;
    align-items: center;
}

.image-section img {
    width: 100%;
    display: block;
}

.text-section {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.badge {
    background-color: #e8f5e9; /* Light green background */
    color: #4caf50; /* Green text */
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
}



.btn-outline-primary {
    border-color: #4caf50;
    color: #4caf50;
    display: flex;
    justify-content: center;
}

.btn-outline-primary:hover {
    background-color: #e8f5e9;
    border-color: #4caf50;
    color: #4caf50;
}
.main-content .icon-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin: 0 auto; /* Center in card */
}

.main-content .icon-wrapper img {
    width: 70px;
    height: 70px;
    position: absolute;
    z-index: 2;
   

}

.main-content .icon-border {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px dashed #6BBE5B;
    border-radius: 50%;
    z-index: 1;
    animation: rotate 4s linear infinite; /* Rotates always */
}
.main-content .icon-border2 {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid #6BBE5B;
    border-radius: 50%;
    z-index: 1;
    animation: rotate 4s linear infinite; /* Rotates always */
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.video-glass {
  position: relative;
  padding-bottom: 56.25%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-glass video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.video-glass:hover {
  box-shadow: 0 0 25px rgba(0, 123, 255, 0.5);
  transform: scale(1.02);
}
.video-gallery h6{
    color:#4caf50;
}