/* ----------------------------------------
       Globals & Resets
    ---------------------------------------- */
@font-face {
  font-family: "MyFont";
  src: url("../fonts/LobsterTwo-BoldItalic.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
::-webkit-scrollbar {
  width: 10px;
}

/* Track (background) */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle (scroll thumb) */
::-webkit-scrollbar-thumb {
  background: #388e3c;
  border-radius: 6px;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
  background: #388e3c;
}
@font-face {
  font-family: "MyFont";
  src: url();
  src: url("../fonts/LobsterTwo-BoldItalic.otf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

body {
  font-family: "Poppins", sans-serif;
}
a {
  text-decoration: none;
}

/* ----------------------------------------
       Header / Navbar
    ---------------------------------------- */
.top-bar {
  background-color: #010f1c;
  color: #f9f9f7;
  font-size: 14px;
  padding: 5px 0;
  font-weight: 400;
  font-family: "Poppins", sans-serif !important;
}
.top-bar i {
  color: #d4af37;
  margin-right: 5px;
}

/* --- Navbar --- */
.navbar {
  padding: 5px 0;
  background-color: #fff;
}
.navbar-brand img {
  height: 95px;
}
.nav-link {
  color: #000 !important;
  font-weight: 400;
  font-size: 14px;
  margin-right: 15px;
  padding-left: 12px;
  transition: 0.3s;
  font-family: "Poppins", sans-serif !important;
}
.nav-link.active {
  background: #388e3c;
  color: white !important;
  border-radius: 23px;
  font-weight: 500;
  padding: 3px 15px !important;
}
.search-icon {
  font-size: 18px;
  margin-right: 15px;
  color: #000;
  cursor: pointer;
}
.get-in-touch {
  background-color: #001024;
  color: #fff;
  border-radius: 20px;
  padding: 9px 15px;
  font-size: 14px;
  border: none;
  transition: 0.3s;
}
.get-in-touch:hover {
  background-color: #388e3c;
}

/* ----------------------------------------
       Hero Section
    ---------------------------------------- */
.hero-slider {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("../images/") no-repeat center center;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.tagline-pill {
  display: inline-block;
  background-color: #e8f5e9;
  color: #388e3c;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-slider h1 {
  font-size: 47px;
  color: #010f1c;
  font-weight: 600 !important;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}
.hero-slider h1 .highlight {
  color: white;
  font-weight: 600;
}

.hero-slider p {
  max-width: 400px;
  margin: 1.5rem 0;
  color: #333;
  font-weight: 500;
  font-size: 17px;
}
.hero-slider .btn-shop {
  background-color: #388e3c;
  border: none;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  margin-right: 1rem;
}
.hero-slider .btn-shop:hover {
  background-color: #388e3c;
}

/* ----------------------------------------
       Zoom-in Circles & Connector Lines
       (you'll need to adjust top/left & angle)
    ---------------------------------------- */
.zoom-circle {
  position: absolute;
  width: 120px;
  height: 120px;
  display: none;
  border: 4px solid white;
  border-radius: 50%;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.zoom-circle.small {
  width: 80px;
  height: 80px;
  display: none;
}
.zoom-circle::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  z-index: 2;
}
.zoom-circle.one {
  top: 10%;
  right: 25%;
  background-image: url("https://images.pexels.com/photos/2339907/pexels-photo-2339907.jpeg");
  /* crop via background-position */
  background-position: 75% 25%;
}
.zoom-circle.one::after {
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
}
.zoom-circle.two {
  top: 60%;
  right: 18%;
  background-image: url("https://images.pexels.com/photos/2339907/pexels-photo-2339907.jpeg");
  background-position: 80% 80%;
}
.zoom-circle.two::after {
  top: 50%;
  left: -10%;
  transform: translate(-50%, -50%);
}
/* Connector lines */
.connector {
  position: absolute;
  width: 2px;
  display: none;
  background: white;
  transform-origin: top left;
}
.connector.one {
  top: calc(10% + 60px);
  right: calc(25% + 60px);
  height: 80px;
  transform: rotate(25deg);
}
.connector.two {
  top: calc(60% + 40px);
  right: calc(18% + 40px);
  height: 80px;
  transform: rotate(-20deg);
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .hero-bg {
    display: none;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .zoom-circle,
  .connector {
    display: none;
  }
  .side-nav {
    display: none;
  }
}

/* why choose us */
/* ===== Section Wrapper & Background Pattern ===== */
.why-us-section {
  position: relative;
  padding: 5rem 0;
  background: #fff;
  overflow: hidden;
}
/* top-right pattern */
.why-us-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 40%;
  background: url("..//images/why-ab.png") no-repeat center;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
/* bottom-left pattern */
.why-us-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35%;
  height: 35%;
  background: url("../images/why-ab-2.png") no-repeat center;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

/* ===== Section Header ===== */
.why-us-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0d1b2a;
  /* margin-right: auto; */
  text-align: start;
}
.why-us-section .section-title .highlight {
  color: #d4af37;
  font-weight: 800;
}
.why-us-section .section-desc {
  color: #333333;
  font-weight: 500;
  font-size: 16px;
  max-width: 500px;
}

/* ===== Cards Grid ===== */
.why-us-cards .card {
  position: relative;
  z-index: 1;
  border: 2px solid #e8f5e9;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  background: #fff;
}

/* Active card styling */
.why-us-cards .card.active {
  background: #0059b2;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 40px rgba(0, 89, 178, 0.25);
}

/* icon wrapper */
.why-us-cards .icon-wrap {
  width: 80px;
  height: 80px;
  background: #e8f5e9;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
/* white icon on active card */
.why-us-cards .card.active .icon-wrap {
  background: rgba(255, 255, 255, 0.15);
}
.icon-wrap img {
  height: 50px;
  /* width: 30px; */
}
/* Icon (font-awesome or img) */
.why-us-cards .icon-wrap i,
.why-us-cards .icon-wrap img {
  font-size: 1.25rem;
  color: #d4af37;
}
.why-us-cards .card.active .icon-wrap i {
  color: #fff;
}
.footer-links li.active a .why-us-cards .card-body {
  padding: 3rem 1.75em;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}

.why-us-cards .card-title {
  font-size: 1.185rem;
  font-weight: 600;
  margin: 5px 0px;
  margin-bottom: 0.5rem;
  color: #010f1c;
}
.why-us-cards .card-text {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: #333333;
  margin-bottom: 1rem;
  color: inherit;
}

/* Learn More link */
.why-us-cards .btn-learn {
  font-size: 0.9rem;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s;
  background-color: #03538e; /* same hover color */
  color: #fff;
}
.why-us-cards .btn-learn i {
  margin-left: 0.4rem;
}
.why-us-cards .card.active .btn-learn {
  color: #fff;
}
.why-us-cards .btn-learn:hover {
  opacity: 0.8;
  text-decoration: none;
}
.why-us-cards .card {
  transition: all 0.3s ease;
}

.why-us-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* when hovering over the card, also change button and icon background */
.why-us-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 62.2px 93.52px -41.32px #0068b433;
}

/* icon background change on card hover */
.why-us-cards .card:hover .icon-wrap {
  background-color: #03538e; /* your desired hover color */
  rotate: calc(15deg);
  transition: 0.5s;
}

/* make icon white if needed */
.why-us-cards .card:hover .icon-wrap img {
  filter: brightness(0) invert(1);
}

/* button background and text color change on card hover */
.why-us-cards .card:hover .btn-learn {
  background-color: #03538e; /* same hover color */
  color: #fff;
}

/*  */
.about-section {
  /* background-color: #fffaf6; */
  font-family: "Poppins", sans-serif;
  position: relative;
  background: #f4f9f4;
}

/* Decorative faint background illustrations */
.about-bg-top {
  position: absolute;
  top: 55%;
  right: 0;
  width: 254px;
  opacity: 0.1;
}

.about-bg-bottom {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 250px;
  opacity: 0.1;
}

.section-label {
  letter-spacing: 2px;
  color: #388e3c;
  font-size: 0.9rem;
  /* border-left: 4px solid #EA6607; */
  padding-left: 10px;
}

.text-orange {
  color: #d4af37;
}

.about-content h2 {
  font-size: 2rem;
  line-height: 1.3;
  color: #222;
}

.about-content p {
  font-size: 0.95rem;
  font-weight: 500;
  max-width: 688px;
  text-align: justify;
}

.btn-orange {
  background-color: #388e3c;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-orange:hover {
  background-color: #2e7d32;
}

/* Slight separation for image and content */
.about-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* product section */
.products-section {
  background-color: #f4f9f4 !important;
  font-family: "Poppins", sans-serif;
  position: relative;
}

/* Decorative faint background */
.products-bg-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  opacity: 0.1;
}

.products-bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  opacity: 0.1;
}

/* Section heading styles */
.section-label {
  color: #388e3c;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  font-weight: 600;
  /* border-left: 4px solid #e05a00; */
  padding-left: 8px;
}

.text-orange {
  color: #d4af37;
}

/* Tabs styles */
.nav-tabs .nav-link-1 {
  color: #777;
  border: none !important;
  background: transparent;
  font-weight: 500;
  transition: color 0.3s;
  padding-left: 0;
  padding-right: 1.2rem;
}
button#whole-spices-tab,
button#ground-spices-tab,
button#dehydrated-tab,
button#sweeteners-tab,
button#millets-tab {
  border: none;
  background: #f4f9f4;
  font-weight: 500;
  padding-top: 10px;
  color: #797575;
  transition: color 0.3s ease;
}

button.active {
  color: red;
}

.nav-tabs .nav-link-1.active {
  color: #388e3c;
  font-weight: 600;
}

.nav-tabs .nav-link-1:hover {
  color: #388e3c;
}

/* Product cards */
.product-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  padding: 20px 10px;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.product-card img {
  max-height: 100px;
  object-fit: contain;
  transition: 0.3s;
  margin: 0 auto;
  display: block;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h6 {
  font-size: 0.9rem;
  color: #222;
  margin-top: 10px;
  margin-bottom: 0;
}
#products {
  position: relative;
  overflow: hidden;
}
.decor-img {
  position: absolute;
  z-index: 1;
  pointer-events: none; /* ensures it doesn’t block clicks */
}

.decor-img.top-right {
  top: 0;
  right: 0;
  width: 180px; /* adjust size */
  opacity: 0.9; /* optional for soft effect */
}

.decor-img.bottom-right {
  bottom: 0;
  right: 0;
  width: 220px; /* adjust size */
  opacity: 0.9;
}
/*  */
section {
  padding: 60px 0;
}

/* Top heading section */
.heading-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.heading-left p {
  color: #d4af37;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 5px;
}

.heading-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

.heading-left h2 span {
  color: #d4af37;
}

/* Tabs on right side */
.heading-right .nav {
  border: none;
  gap: 20px;
}

.heading-right .nav-link {
  color: #777;
  font-weight: 500;
  border: none;
  background: none;
  font-size: 1.05rem;
  padding: 5px 0;
  position: relative;
}

.heading-right .nav-link.active {
  color: #388e3c !important;
  font-weight: 600;
}

.heading-right .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #388e3c;
}

/* Product Cards */
.product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 25px 15px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  height: 120px;
  object-fit: contain;
  margin-bottom: 12px;
  width: 100%;
}

.product-name {
  font-weight: 500;
  font-size: 1rem;
}

.product-desc {
  font-size: 0.9rem;
  color: #555;
}

@media (max-width: 768px) {
  .heading-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .heading-right .nav {
    justify-content: flex-start;
  }
}
/*vision */
.vision-mission-section {
  background: url("../images/vision-banner.webp") center/cover no-repeat;
  padding: 80px 0;
  color: #fff;
  position: relative;
}

.vision-mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.glass-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  min-height: 340px;
  padding: 30px;
  text-align: left;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.card-icon img {
  width: 40px;
  height: 40px;
}

.card-title {
  font-size: 21px;
  font-weight: 700;

  color: #fff;
}

.card-text {
  color: #e6e6e6;
  font-size: 14px;
  text-align: justify;
  font-weight: 400;
  line-height: 1.6;
}

/* what we serve */
.what-we-serve {
  background-color: #fff;
  background-image: url(""); /* optional light spice illustration */
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}

.text-orange {
  color: #d4af37; /* gold shade */
}

.feature-img {
  /* width: 180px; */
  /* height: 167px; */
  max-width: 130px;
  max-height: 120px;
  display: block;
  margin: 0 auto 15px;
  transition: transform 0.3s ease;
}

.feature-img:hover {
  transform: translateY(-5px);
}

.what-we-serve-h2 {
  font-size: 2rem;
  color: #111;
}
.what-we-serve-h5 {
  font-size: 1.1rem;
  color: #111;
}

.what-we-serve-p {
  font-size: 0.95rem;
}
.overlay-images-3 {
  position: absolute;
  right: 0px;

  max-width: 250px;
  opacity: 0.1;
}
/*  */

:root {
  --dark-blue: #1c2a39;
  --orange: #388e3c;
  --light-gray: #f8f9fa;
  --text-gray: #adb5bd;
  --body-bg: #ffffff;
  --footer-text: #ced4da;
}

/* --- Header / Contact Section --- */
.contact-section {
  /* background-image: url('..//images/comtact-bg.jpg'); */
  background-size: cover;
  background-position: center;
  padding: 2rem 0 4rem 0;

  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(3px);
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-section .representative-img {
  max-width: 136%;
  /* height: 429px; */
  height: 642px;
  transform: scaleX(-1);
}

.contact-form-wrap {
  background-color: #010f1c;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-wrap h4 {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-form-wrap h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-form-wrap h2 .highlight {
  color: var(--orange);
}

.contact-form-wrap .form-label {
  font-size: 15px;
  font-weight: 400;
  color: white;
}

.contact-form-wrap .form-control,
.contact-form-wrap .input-group-text {
  background-color: #2b3a4a;
  border: 1px solid #3e4d5c;
  color: white;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.contact-form-wrap .form-control::placeholder {
  color: #7a8a99;
}

.contact-form-wrap .form-control:focus {
  background-color: #2b3a4a;
  color: white;
  border-color: var(--orange);
  box-shadow: none;
}

.contact-form-wrap .input-group-text {
  border-right: 0;
}

.contact-form-wrap .form-select {
  background-color: #2b3a4a;
  color: white;
  border: 1px solid #3e4d5c;
  border-radius: 8px;
}

.contact-h1 {
  font-size: 35px;
  font-weight: 700;
  color: black;
}
.contact-highlight {
  color: #d4af37;
}

.btn-submit {
  background-color: #388e3c;
  color: white;
  font-weight: 600;
  padding: 0.8rem;
  border-radius: 30px !important;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #2e7d32;
  color: white;
}

/* --- Bridge Section --- */
.bridge-section {
  margin-top: -92px;
  position: absolute;
  z-index: 10;
  width: 100%;
}

.bridge-content {
  background-color: white;
  border-radius: 15px;
  padding: 15px 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bridge-logo img {
  height: 75px;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #e9ecef;
  border-radius: 8px;
  color: var(--dark-blue);
  margin-left: 0.5rem;
  text-decoration: none;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.social-icons a:hover {
  background-color: var(--dark-blue);
  color: white;
}

@media (max-width: 375px) {
  .social-icons a {
    width: 29px;
    height:  29px;
  }
}
/* --- Footer --- */
.site-footer {
  background-color: #010f1c;
  color: var(--footer-text);
  padding-top: 8rem; /* Space for the bridge section */
  padding-bottom: 2rem;
  font-size: 0.9rem;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 30px;
  background-color: #d4af37;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 400;
  font-size: 14px;
}

.footer-links a:hover {
  color: #d4af37;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-info i {
  margin-right: 1rem;
  margin-top: 5px;
  color: #d4af37;
}

.newsletter-form .form-control {
  background-color: #2b3a4a;
  border: 1px solid #3e4d5c;
  color: white;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}
.newsletter-form .form-control:focus {
  background-color: #2b3a4a;
  border-color: var(--orange);
  box-shadow: none;
  color: white;
}

.newsletter-disclaimer {
  font-size: 0.65rem;
  color: #7a8a99;
  margin-top: 1rem;
  font-weight: 400;
}

.btn-subscribe {
  background-color: #388e3c !important;
  color: white;
  font-weight: 600;
  padding: 0.75rem;
  border: none;
  border-radius: 30px;
  width: 100%;
}
.contact-address {
  font-weight: 300;
  font-size: 14px;
  color: white;
}

.footer-bottom {
  /* border-top: 1px solid #3e4d5c; */
  padding: 1.2rem 10px;
  border-radius: 10px;

  background-color: #42464a;
  margin-top: 3rem;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--footer-text);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .contact-section {
    padding: 4rem 0;
  }
  .representative-img {
    display: none; /* Hide image on medium screens and below for a cleaner look */
  }
  .site-footer {
    padding-top: 7rem;
  }
}

@media (max-width: 767.98px) {
  .bridge-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .footer-bottom div:last-child {
    margin-top: 0.5rem;
  }
}

.form-control ::placeholder {
  color: white;
}
.vision-section {
  display: flex;
}
@media (max-width: 768px) {
  .why-us-section .section-title {
    text-align: start;
    font-size: 1.6rem;
  }
  .why-us-section {
    padding: 1rem 0px;
  }
  section {
    padding: 30px 0px;
  }
  .vision-section {
    display: flex;
    flex-direction: column;
    padding: 10px 0 0 0;
  }
  .woman-img {
    height: auto;
  }
  .top-bar {
    display: none;
  }
}
.nav-link-1 {
  position: relative;
  color: #000;
  text-decoration: none;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

/* the animated underline */
.nav-link-1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: width 0.3s ease;
}

/* when link is active */
.nav-link-1.active {
  color: #000 !important;
}

.nav-link-1.active::after {
  width: 100%;
  background-color: #000;
}
input::placeholder {
  color: var(--placeholder-color);
}
.form-control::placeholder {
  color: white !important;
}

.container {
  padding: 0px 100px;
}
.global-section {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.global-section h2 {
  font-weight: 700;
  font-size: 2rem;
  color: #0d0d0d;
}

.global-section h2 span {
  color: #d4af37;
}

.global-section p {
  color: #333333;
  max-width: 700px;
  margin: 10px auto 20px;
  font-weight: 500;
}

.map-container {
  position: relative;
  width: 81%;
  /* display: flex
; */
  margin: 0 auto;
}

.map-container img {
  width: 100%;
  max-width: 1100px;
  height: auto;
}

/* Labels */
.label {
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.label.orange {
  border-color: #388e3c;
  color: #388e3c;
}

.label.blue {
  border-color: #3c8dbc;
  color: #3c8dbc;
}

/* Position the labels */
.americas {
  top: 55%;
  left: 18%;
}
.europe {
  top: 36%;
  left: 47%;
}
.asia {
  top: 45%;
  left: 68%;
}
.middle-east {
  top: 50%;
  left: 57%;
}
.africa {
  top: 65%;
  left: 49%;
}

/* Happy clients box */
.clients-box {
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.clients-box i {
  color: red;
  font-size: 18px;
}

.clients-box img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-left: -8px;
  border: 2px solid #fff;
}

.clients-box span {
  font-weight: 600;
  color: #333;
}
@media (max-width: 768px) {
  .container {
    padding: 0px 15px;
  }
  .container-fluid {
    padding: 0px 15px !important;
  }
}
.form-control::placeholder {
  color: #ffffff !important;
  font-size: 16px; /* change this to your desired color */
  font-weight: 400; /* ensures color shows clearly */
}
@media (max-width: 425px) {
  .hero-slider h1 {
    font-size: 29px !important;
    color: #010f1c;
    font-weight: 700;
    line-height: 1.2;
  }
}
@media (max-width: 321px) {
  .hero-slider .btn-shop {
    font-size: 14px;
  }
  .watch-video {
    font-size: 14px;
  }
}
@media (max-width: 1025px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 10px 10px;
  }
}

/* ================= MOBILE NAVBAR FIX ================= */

@media (max-width: 991px) {
  /* Fix navbar on top */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #fff;
  }

  /* Prevent hero from hiding behind navbar */

  /* Mobile menu overlay */
  .navbar-collapse {
    position: fixed;
    top: 135px; /* same as navbar height */
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px 20px;
  }

  /* Vertical menu */
  .navbar-nav {
    align-items: flex-start !important;
    gap: 10px;
  }

  .navbar-nav .nav-link {
    padding: 8px 0;
  }
}

/* Hide top bar on mobile */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .page-header {
    background:
      linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
      url(assets/images/banner.webp) center / cover no-repeat;
    padding: 159px 0 33px !important;
    color: white;
    text-align: start;
  }
  .page-header h1 {
    font-size: 35px !important;
    font-weight: 600 !important;
  }
}
