/********** Template CSS **********/
:root {
    --primary: #737c57;
    --secondary: #FB9F38;
    --light: #F5F8F2;
    --dark: #252C30;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: absolute;
    padding: 0;
    width: 170px;
    height: 135px;
    top: 0;
    left: 0;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        width: 126px;
        height: 100px;
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 75px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(255, 255, 255, 0.411), rgba(109, 109, 109, 0.5)), url(../images/sp.png) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    bottom: -13px;
    left: calc(25% - 13px);
    background: var(--dark);
    border: 10px solid #FFFFFF;
    border-radius: 28px;
}

.section-title.text-center::before {
    left: 25%;
}

.section-title.text-center::after {
    left: calc(50% - 13px);
}


/*** Products ***/
.product {
    background: linear-gradient(rgba(136, 180, 78, .1), rgba(136, 180, 78, .1)), url(../img/Spices-BG-removebg-preview.png) left bottom no-repeat;
    background-size: auto;
}

.product-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    margin: 0 10px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    background: #FFFFFF;
    color: var(--primary);
}


/*** About ***/
.video {
    background: linear-gradient(rgba(136, 180, 78, .85), rgba(136, 180, 78, .85)), url(../images/spices-bg.png) center center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 65px;
    height: 75px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 28px 30px 30px 38px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 13px;
    border-left: 40px solid var(--primary);
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Store ***/
.store-item .store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(138, 180, 78, .3);
    opacity: 0;
    transition: .5s;
}

.store-item:hover .store-overlay {
    opacity: 1;
}


/*** Contact ***/
.contact .btn-square {
    width: 100px;
    height: 100px;
    border: 20px solid var(--light);
    background: var(--primary);
    border-radius: 50px;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(136, 180, 78, .85), rgba(136, 180, 78, .85)), url(../images/spices-bg.png) center center no-repeat;
    background-size: cover;
}

.testimonial-item {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    background: #FFFFFF;
    border: 30px solid var(--primary);
}

.testimonial-item img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 60px;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--dark);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #252525;
}

.copyright a:hover {
    color: #FFFFFF !important;
}
.marquee-wrapper {
    white-space: nowrap;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 15s linear infinite;
    font-weight: 600;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* For WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: #737c57;   /* Green scroll thumb */
  border-radius: 10px;
  border: 2px solid #f1f1f1;   /* Optional border around thumb */
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #737c57 #f1f1f1;  /* thumb color | track color */
}
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px; 
  z-index: 999;
  background-color: #25D366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.whatsapp-button img {
  width: 40px;
  height: 40px;
}
.social-toggle {
  position: fixed;
  top: 40%;
  right: 0;
  background: #737c57;
  color: white;
  padding: 12px 15px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  cursor: pointer;
  z-index: 999;
  box-shadow: -2px 2px 12px rgba(0, 0, 0, 0.2);
}

.social-bar {
  position: fixed;
  top: 47%;
  right: -180px;
  width: 80px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px 0 0 10px;
  box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease-in-out;
  z-index: 998;
}

.social-bar a {
  color: #fff;
  background-color: #737c57;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  transition: all 0.3s;
}

.social-bar a:hover {
  background-color: #5c6645;
}
/* Preloader styling */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.preloader-content {
  text-align: center;
  perspective: 1000px;
}

.preloader-logo {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  animation: spin 2s linear infinite;
}

/* 3D Typing Text Effect */
.typing-text {
  font-family: 'Courier New', Courier, monospace;
  color: #737c57;
  font-size: 24px;
  transform: rotateX(15deg);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #737c57;
  width: 0;
  animation: typing 3s steps(30, end) forwards, blink 0.75s step-end infinite;
}

/* Animations */
@keyframes spin {
  0% { transform: rotateY(0); }
  100% { transform: rotateY(360deg); }
}

@keyframes typing {
  from { width: 0; }
  to { width: 300px; }
}

@keyframes blink {
  from, to { border-color: transparent; }
  50% { border-color: #737c57; }
}
/* Popup Form Container */
.popup-form {
  position: absolute;
  bottom: 50px;
  right: 50px;
  width: 320px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  z-index: 9999;
  padding: 20px;
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

/* Form Inner Styling */
.popup-content {
  position: relative;
}

.popup-content h4 {
  margin-bottom: 15px;
  color: #737c57;
  font-weight: 600;
}

.form-group {
  margin-bottom: 10px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  background-color: #737c57;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-submit:hover {
  background-color: #5c6645;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #737c57;
  color: white;
  border-radius: 50%;
  padding: 4px 9px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Fade In Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.countries-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffff;
    color: #333;
  }

  .countries-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #2e7d32;
  }

  .countries-section p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
  }

  .region {
    margin-bottom: 40px;
  }

  .region h3 {
    font-size: 1.6rem;
    color: #2e7d32;
    margin-bottom: 15px;
    border-left: 5px solid #2e7d32;
    padding-left: 10px;
  }

  .country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
  }

  .country {
    background: white;
    border-radius: 12px;
    padding: 10px 15px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
  }

  .country:hover {
    transform: scale(1.03);
  }

  .country img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    object-fit: cover;
  }

  .seo-text {
    margin-top: 60px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
  }

  .cta-button {
    display: block;
    margin: 40px auto 0;
    background-color: #2e7d32;
    color: white;
    padding: 12px 25px;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .cta-button:hover {
    background-color: #2e7d32;
  }

  .counter-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #fff, #fff);
  font-family: 'Segoe UI', sans-serif;
}

.counter-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #00796b;
}

.counters {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.counter-box {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  transition: transform 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-10px);
}

.counter {
  font-size: 2.5rem;
  color: #004d40;
  font-weight: bold;
  display: block;
}

.counter-box p {
  font-size: 1.1rem;
  margin-top: 10px;
  color: #333;
}

#scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: #00796b;
  width: 0%;
  z-index: 9999;
}
.flip-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}

.flip-card {
  background: transparent;
  width: 250px;
  height: 180px;
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.flip-front {
  background: #737c57;
  color: #fff;
}

.flip-back {
  background: #004d40;
  color: white;
  transform: rotateY(180deg);
}

/* Responsive */
@media (max-width: 1024px) {
  .flip-card-container {
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .flip-card {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .flip-card {
    width: 100%;
  }
}
.popup-form {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: white;
  border: 1px solid #ccc;
  padding: 20px;
  z-index: 999;
  display: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  border-radius: 10px;
}
.cta-banner {
  background: linear-gradient(90deg, #737c57, #004d40);
  color: white;
  padding: 12px 20px;
  text-align: center;
  font-size: 1.1rem;
  animation: slide-in 1s ease-out;
}

@keyframes slide-in {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Section background and layout */
.about-us {
  background: linear-gradient(to bottom right, #f9f9f9, #eef5e9);
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.about-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

/* Shine effect on heading */
.shine-heading {
  font-size: 36px;
  font-weight: bold;
  color: #0f1a2d;
  background: linear-gradient(90deg, #2c3e50, #4caf50, #2c3e50);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
  margin-bottom: 20px;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* Animation classes */
.animate-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlide 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.4s;
}

.delay-2 {
  animation-delay: 0.8s;
}

@keyframes fadeSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-text,
  .about-image {
    text-align: center;
  }

  .about-text {
    padding: 0 10px;
  }
}
.contrast-section {
  background: #ffffff;
  padding: 80px 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.contrast-container {
  max-width: 1200px;
  margin: auto;
  color: #0f1a2d;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.7;
}

.contrast-heading {
  font-size: 32px;
  color: #2ba619;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

/* Scroll Motion Animations */
.animate-scroll {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}
.delay-2 {
  animation-delay: 0.6s;
}
.delay-3 {
  animation-delay: 0.9s;
}
.delay-4 {
  animation-delay: 1.2s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.store-item-custom {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.store-item-custom:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.img-container {
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.store-item-custom img {
  transition: transform 0.5s ease;
}

.store-item-custom:hover img {
  transform: scale(1.08);
}

.product-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
}

.store-item-custom:hover .product-title {
  color: #198754;
}

.product-category {
  font-style: italic;
  color: #888;
  margin-bottom: 10px;
}


/* Responsive */
@media screen and (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-img {
    width: 70px;
  }

  .left-img, .right-img {
    bottom: 10px;
  }
}
.blog-section {
  background: #f8f9fa;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h4 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.blog-content p {
  color: #666;
  font-size: 15px;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color:  rgb(3, 94, 3);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #1a9c1a;
}
.accordion-button {
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color:  rgb(3, 94, 3);
  color: #fff;
}

.accordion-body {
  background: #fefefe;
  color: #333;
}

.image-banner {
  width: 100%;
  overflow: hidden;
}

.image-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.vora-footer {
  background: #002222;
  color: #fff;
  font-family: 'Arial', sans-serif;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px;
  border-bottom: 5px solid rgb(3, 94, 3);
  position: relative;
}

.footer-column {
  flex: 1 1 220px;
  margin: 20px;
}

.footer-column h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  color: #fff;
}

.footer-column p {
  color: #fff;
  line-height: 1.5;
  font-size: 14px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 20px;
}

.social-icons a {
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
}

.footer-bottom {
  background: rgb(3, 94, 3);
  color: #000;
  text-align: center;
  padding: 15px;
  font-weight: bold;
}

.footer-bottom a {
  color: #000;
  text-decoration: underline;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  right: 10px;
  bottom: 60px;
  z-index: 999;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.about-exporter {
  background: #fff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #333;
}

.about-exporter .container {
  max-width: 1100px;
  margin: auto;
}

.about-exporter h2 {
  font-size: 32px;
  color: rgb(3, 94, 3);
  margin-bottom: 20px;
  text-align: center;
}

.about-exporter p {
  font-size: 18px;
  margin-bottom: 20px;
}

.about-exporter ul {
  list-style: none;
  padding-left: 0;
  margin: 30px 0;
}

.about-exporter ul li {
  padding: 10px 0;
  font-weight: 500;
  font-size: 17px;
  position: relative;
  padding-left: 28px;
}

.about-exporter ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: green;
  font-weight: bold;
}

.why-choose-us {
  background-color: #fff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.why-choose-us .container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 32px;
  color: rgb(3, 94, 3);
  margin-bottom: 40px;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-box {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.feature-box:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 36px;
  color: rgb(3, 94, 3);
  margin-bottom: 15px;
}

.feature-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: rgb(3, 94, 3);
  font-weight: 600;
}

.feature-box p {
  font-size: 16px;
  color: #555;
}
/* Banner Style */
.about-banner {
  background: url('../images/about-page-banner.png') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.about-banner::after {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.about-banner h1 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: bold;
}

.about-banner p {
  font-size: 20px;
}

/* About Us Section */
.about-us {
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.about-us .container {
  max-width: 1100px;
  margin: auto;
}

.about-us h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: rgb(3, 94, 3);
  text-align: center;
}

.about-us p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Stats Section */
.about-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stat-box {
  text-align: center;
  margin: 15px;
  flex: 1 1 250px;
  padding: 20px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.stat-box i {
  font-size: 36px;
  color: rgb(3, 94, 3);
  margin-bottom: 10px;
}

.stat-box h3 {
  font-size: 22px;
  margin: 10px 0 5px;
}

.stat-box p {
  font-size: 16px;
  color: #666;
}









