/* CSS Reset - Minimal Version */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Bahij-Helvetica-Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* ====== Hero Section ====== */
.hero {
  background-color: #c9872a;
  background-image: url(../img/hero/elements-1.svg);
  background-repeat: repeat;
  background-size: auto;
  background-blend-mode: multiply;
  overflow: hidden;
}

/* Right Side Image */
.hero-img img {
  object-fit: contain;
  height: 100%;
  position: relative;
}

.hero-flower-img {
  width: 20%;
  position: absolute;
  right: 43%;
  top: 40%;
}

@media (max-width: 1200px) {
  .hero-flower-img {
    top: 50%;
  }
}

@media (max-width: 896px) {
  .hero-flower-img {
    top: 55%;
  }
}

@media (max-width: 767px) {
  .hero-flower-img {
    display: none;
  }
}

.hero-content h1 {
  font-size: 5rem;
}

@media (max-width: 659px) {
  .hero-content h1 {
    display: none;
  }
}

.hero-content p {
  font-size: 1.4rem;
  font-weight: 600;
}

/* ====== Navigation Bar Section ====== */
.navigation-bar {
  background-color: #fef0da;
}

@media (max-width: 1199px) {
  .navigation-bar .container {
    gap: 2rem !important;
  }
}

.navigation-bar a {
  font-size: 1.4rem;
  padding: 0 20px 8px 0;
  text-align: left;
}

/* Navigation Button Style */
.nav-btn {
  font-weight: bold;
  color: #443367;
  text-decoration: none;
  position: relative;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

/* Underline with corner */
.nav-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 12px);
  height: 2px;
  background-color: #443367;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.nav-btn::before {
  content: "";
  position: absolute;
  right: -9.5px;
  bottom: 10px;
  width: 27px;
  height: 0px;
  border-bottom: 2px solid #443367;
  transform: rotate(130deg);
  transition: right 0.3s ease, border-color 0.3s ease;
}

/* Hover Effects */
.nav-btn:hover {
  color: #bb7e28;
}

.nav-btn:hover::after {
  width: 100%;
  background-color: #bb7e28;
}

.nav-btn:hover::before {
  border-bottom-color: #bb7e28;
  right: -21.7px;
}

/* ====== Fruits Products Section ====== */
.fruits-products {
  background-color: #fff1dc;
}

/* Product Images */
.fruit-img {
  max-width: 130px;
  height: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.fruit-img:hover {
  transform: scale(1.1);
}

/* ====== Kangina info Section ====== */
/* Kangina Info Section */
.kangina-info {
  background-color: #fef0da;
  color: #975623;
}

/* Kangina Info Content */
.kangina-info-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;

  background-image: url(../img/kangina-info/pattern.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 10%;
  background-blend-mode: multiply;
  overflow: hidden;
}

.kangina-info-sub-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.kangina-info-sub-content h3 {
  color: #443367;
  font-weight: bold;
  font-size: 2rem;
  text-align: left;
}

.kangina-info-sub-content p {
  color: #975623;
  font-size: 1.3rem;
  width: 60%;
  text-align: left;
}

/* For screens less than or equal to 991px */
@media (max-width: 991px) {
  .kangina-info-sub-content p {
    width: 100%;
  }
}

/* Section Title */
.kangina-info-title {
  font-size: 4rem;
  font-weight: bold;
  color: #2f1b53;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  letter-spacing: 4px;
}

/* Title Underline + Corner */
.kangina-info-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 4px);
  height: 2px;
  background-color: #443367;
}

.kangina-info-title::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: 0;
  width: 45px;
  height: 30px;
  border-bottom: 2px solid #443367;
  transform: rotate(116deg);
}

@media (max-width: 600px) {
  .kangina-info-title {
    font-size: 3rem;
    line-height: 1;
    padding-bottom: 20px;
    letter-spacing: 0;
  }

  .kangina-info-title::after {
    margin: 0 auto;
    width: 100%;
  }

  .kangina-info-title::before {
    display: none;
  }
}

.kangina-info-p {
  text-align: center;
  font-size: 1.4rem;
  color: #9b5d2b;
  width: 75%;
}

@media (max-width: 767px) {
  .kangina-info-p {
    width: 100%;
  }
}

/* Highlight Text */
.text-highlight {
  color: #443367;
  font-size: 1.2rem;
}

/* Product Image */
.kangina-info img {
  max-width: 350px;
}

/* ====== Premium Slider Section ====== */
.premium-slider {
  background-color: #fef1db;
  padding: 90px 0;
  position: relative;
  overflow: hidden; /* Prevents cut-off issues */
}

.slider-title {
  font-size: 3rem;
  font-weight: bold;
  color: #2f1b53;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  letter-spacing: 3px;
}

.slider-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 4px);
  height: 2px;
  background-color: #443367;
}

.slider-title::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: 0;
  width: 45px;
  height: 30px;
  border-bottom: 2px solid #443367;
  transform: rotate(116deg);
}

@media (max-width: 600px) {
  .slider-title {
    font-size: 3rem;
    line-height: 1;
    padding-bottom: 20px;
    letter-spacing: 0;
  }

  .slider-title::after {
    margin: 0 auto;
    width: 100%;
  }

  .slider-title::before {
    display: none;
  }
}

.slider-product-card {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 200px;
  width: 200px;
  border-radius: 0;
  padding: 20px;
  color: #fff;
  background-color: #443367;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px auto;
}

.slider-product-card h5 {
  text-align: justify;
}

.slider-product-card h5 small {
  font-size: 1rem;
  color: #f4f3f6;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  text-decoration: underline;
}

.product-img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  position: relative;
  align-self: center;
  margin-top: 5rem;

  transition: filter 0.3s ease, box-shadow 0.3s ease;
  filter: drop-shadow(-2px -8px 10px #b66df28a);
}

/* Ensure the carousel container does not overflow */
.owl-carousel {
  width: 100%;
  overflow: hidden;
}

/* Custom navigation arrows */
/* buttons */
.custom-prev,
.custom-next {
  position: absolute;
  top: 60%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease; /* ← smooth */
  z-index: 10;
}

/* hover effect */
.custom-prev:hover,
.custom-next:hover {
  transform: scale(1.2); /* grows smoothly to 60 px */
  /* optional colour change */
  /* background:rgba(255,255,255,.2); */
}

/* Position Arrows Properly */
.custom-prev {
  left: 0;
  margin-left: -15px;
}
.custom-next {
  right: 0;
  margin-right: -65px;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .custom-prev {
    margin-left: 20px;
  }
  .custom-next {
    margin-right: 20px;
  }
}

/* ====== End/ Premium Slider Section ====== */

/* ====== Crocus Sativus Saffron Section ====== */
.cs-saffron {
  background-color: #fef0da;
}

.cs-saffro-title {
  font-size: 3rem;
  font-weight: bold;
  color: #2f1b53;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  letter-spacing: 3px;
}

.cs-saffro-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 4px);
  height: 2px;
  background-color: #443367;
}

.cs-saffro-title::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: 0;
  width: 45px;
  height: 30px;
  border-bottom: 2px solid #443367;
  transform: rotate(116deg);
}

@media (max-width: 600px) {
  .cs-saffro-title {
    font-size: 3rem;
    line-height: 1;
    padding-bottom: 20px;
    letter-spacing: 0;
  }

  .cs-saffro-title::after {
    margin: 0 auto;
    width: 100%;
  }

  .cs-saffro-title::before {
    display: none;
  }
}

/* Image Responsiveness */
.saffron-img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}

/* ====== Kangina family Section ====== */
.kangina-family {
  background: #fef0da;
}
.kangina-wrap {
  position: relative;
}

/* ribbon */
.family-ribbon {
  display: flex;
  gap: 76px;
  align-items: center;
}

@media (max-width: 767px) {
  .family-ribbon {
    display: flex;
    gap: 35px;
    align-items: stretch;
    flex-direction: column;
  }
}

.thumbs {
  position: relative;
  width: 170px;
  height: 200px;
  flex: 0 0 170px;
}
.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumbs .front {
  z-index: 2;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.12);
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f9a923;
  width: 100%;
  padding: 22px;
}
.thumbs .back {
  position: absolute;
  top: 25px;
  left: 7rem;
  width: 80%;
  height: 80%;
  filter: brightness(0.9);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
  background-color: #ca8a30;
  padding: 22px;
}
.ribbon-title {
  flex: 1;
  background: #975623;
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  padding: 1rem 2.5rem;
  letter-spacing: 2px;
}

/* slide text */
.family-name {
  color: #443367;
  font-weight: 700;
  font-size: 3rem;
}
.family-sub {
  color: #443367;
  font-weight: 700;
  font-size: 1.6rem;
  margin-top: 1.5rem;
}
.family-txt {
  color: #9a5a28;
  font-size: 1.5rem;
  line-height: 1.6;
}

/* Custom navigation arrows */
/* buttons */
.fam-custom-prev,
.fam-custom-next {
  position: absolute;
  top: 75%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease; /* ← smooth */
  z-index: 10;
}

/* hover effect */
.fam-custom-prev:hover,
.fam-custom-next:hover {
  transform: scale(1.2); /* grows smoothly to 60 px */
  /* optional colour change */
  /* background:rgba(255,255,255,.2); */
}

/* Position Arrows Properly */
.fam-custom-prev {
  left: 0;
  margin-left: -6rem;
}
.fam-custom-next {
  right: 0;
  margin-right: -6rem;
}

/* Responsive Adjustments */
@media (max-width: 1590px) {
  .fam-custom-prev {
    margin-left: -4.5rem;
  }
  .fam-custom-next {
    margin-right: -4.5rem;
  }
}
/* Responsive Adjustments */
@media (max-width: 1510px) {
  .fam-custom-prev {
    margin-left: -2rem;
  }
  .fam-custom-next {
    margin-right: -1rem;
  }
}

@media (max-width: 1510px) {
  .fam-custom-prev,
  .fam-custom-next {
    display: none;
  }
}

/* ====== Afghanistan Dry Fruits Export Section ====== */
.dryfruit-ex {
  background-color: #fef0da;
}

.dryfruit-ex-title {
  font-size: 3rem;
  font-weight: bold;
  color: #2f1b53;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  letter-spacing: 3px;
}

.dryfruit-ex-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 4px);
  height: 2px;
  background-color: #443367;
}

.dryfruit-ex-title::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: 0;
  width: 45px;
  height: 30px;
  border-bottom: 2px solid #443367;
  transform: rotate(116deg);
}

@media (max-width: 600px) {
  .dryfruit-ex-title {
    font-size: 3rem;
    line-height: 1;
    padding-bottom: 20px;
    letter-spacing: 0;
  }

  .dryfruit-ex-title::after {
    margin: 0 auto;
    width: 100%;
  }

  .dryfruit-ex-title::before {
    display: none;
  }
}

/* Image Responsiveness */
.dryfruit-ex-img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}

/* ====== Export Fruits Products Section ====== */
/* wrapper */
.ex-fruits-products {
  background: #fff1dc;
}

/* card link */
.ex-card {
  width: 140px; /* equal width for all */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

/* thumbnail */
.ex-img {
  width: 120px;
  height: 120px; /* equal box */
  object-fit: contain;
  transition: transform 0.3s;
  cursor: pointer;
}
.ex-img:hover {
  transform: scale(1.1);
}

/* label */
.ex-card h5 {
  margin-top: 1rem;
  color: #453468;
  font-size: 1.25rem;
  text-align: center;
}

/* footer line */
.ex-footer {
  color: #975623;
  font-size: 2rem;
}

/* ====== About Us Section ====== */
/* === section === */
.about-us {
  background: #fff2dd;
}

/* === heading === */
.about-title {
  font-size: 3rem;
  font-weight: bold;
  color: #2f1b53;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  letter-spacing: 3px;
}

.about-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 4px);
  height: 2px;
  background-color: #443367;
}

.about-title::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: 0;
  width: 45px;
  height: 30px;
  border-bottom: 2px solid #443367;
  transform: rotate(116deg);
}

@media (max-width: 600px) {
  .about-title {
    font-size: 3rem;
    line-height: 1;
    padding-bottom: 20px;
    letter-spacing: 0;
  }

  .about-title::after {
    margin: 0 auto;
    width: 100%;
  }

  .about-title::before {
    display: none;
  }
}

/* === image === */
.about-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.25rem;
}

/* === text blocks === */
.about-sub {
  color: #443367;
  font-weight: 700;
  font-size: 2rem;
}
.about-txt {
  color: #975623;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: justify;
}

/* === responsive tweaks === */
@media (max-width: 991.98px) {
  .about-title {
    display: block;
    text-align: center;
    margin: 0 auto 2rem;
  }
  .about-img {
    max-width: 315px;
    margin: 0 auto;
  }
  .about-sub {
    font-size: 1.8rem;
  }
  .about-txt {
    font-size: 1.5rem;
  }
}

/* ====== Contact Us Section ====== */
.contact-us {
  background: #fef0da;
}

.cu-title {
  color: #443367;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 1px;
}

.cu-icons a {
  background: #bb7e28;
  color: #443367;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.6rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cu-icons a:hover {
  background: #d89c23;
}

.cu-email {
  background: #c78124;
  color: #2f1b53;
  font-size: 1.8rem;
  padding: 0.4rem 4rem;
  border-radius: 30px;
  display: inline-block;
}

@media (max-width: 567px) {
  .cu-email {
    font-size: 1.2rem;
    padding: 0.4rem 1.5rem;
  }
}

/* ====== Navigation Bar Section ====== */
.bottom-navigation-bar {
  background-color: #443367;
}

@media (max-width: 1199px) {
  .bottom-navigation-bar .container {
    gap: 2rem !important;
  }
}

.bottom-navigation-bar a {
  font-size: 1.4rem;
  padding: 0 20px 8px 0;
  text-align: left;
}

/* Navigation Button Style */
.bottom-nav-btn {
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

/* Underline with corner */
.bottom-nav-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 12px);
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.bottom-nav-btn::before {
  content: "";
  position: absolute;
  right: -9.5px;
  bottom: 10px;
  width: 27px;
  height: 0px;
  border-bottom: 2px solid #ffffff;
  transform: rotate(130deg);
  transition: right 0.3s ease, border-color 0.3s ease;
}

/* Hover Effects */
.bottom-nav-btn:hover {
  color: #bb7e28;
}

.bottom-nav-btn:hover::after {
  width: 100%;
  background-color: #bb7e28;
}

.bottom-nav-btn:hover::before {
  border-bottom-color: #bb7e28;
  right: -21.7px;
}

/* ====== Footer Image Section ====== */
.footer-image {
  background: #fef0da; /* match your site background if needed */
  padding: 0;
  margin: 0;
  text-align: center;
}

.footer-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ======= main section ====== */

/* Section */
.uk-shop {
  background-color: #f7e7d6;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  background-image: url(../img/uk-shop/logo-1.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 15%;
  background-blend-mode: overlay;
  overflow: hidden;
}

.uk-shop-header {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo + Title */
.uk-logo {
  width: 80px;
}
.uk-shop-title {
  font-size: 6rem;
  font-weight: 700;
  color: #73553c;
  letter-spacing: 2px;
  padding-left: 2rem;
}

/* Card */
.uk-shop-card {
  background: #fff6ec;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border-radius: 22px;
  height: 100%;
}

.uk-shop-card:hover {
  transform: translateY(-1px);
}

/* Image */
.uk-product-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  transition: filter 0.3s ease, box-shadow 0.3s ease;
  border-radius: 22px;
}

/* Title */
.uk-product-title {
  font-size: 1.6rem;
  color: #352216;
  font-weight: 500;
  line-height: 0;
}

/* Button */
.uk-buy-btn {
  background-color: #f6e6d6;
  color: #552e1a;
  font-weight: 600;
  padding: 0.5rem 1.4rem;
  border-radius: 1.5rem;
  font-size: 1rem;
  transition: background 0.3s ease;
  border: none;
}

.uk-buy-btn:hover {
  background-color: #dfc9b5;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .uk-logo {
    width: 70px;
  }
  .uk-shop-title {
    font-size: 4rem;
  }
}

@media (max-width: 576px) {
  .uk-shop-title {
    font-size: 2rem;
  }
  .uk-product-title {
    font-size: 1.1rem;
  }
}

.uk-product-footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
}
