:root {
  --green:      #1a7a3c;
  --green-dark: #125c2c;
  --green-bg:   #e8f5ee;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
}
body {
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
}

main, #main-content, .section {
  flex: 1 0 auto;
}

section {
  overflow-x: hidden;
  width: 100%;
}

/* ════════════ TOPBAR ════════════ */
.topbar {
  background: var(--green);
  color: #cce8d6;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar a { color: #cce8d6; text-decoration: none; font-size: 14px; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar .divider { width: 1px; height: 14px; background: rgba(255,255,255,.25); }

/* Mobile optimization */
@media (max-width: 768px) {
  .topbar { text-align: center; }
  .topbar .container { justify-content: center; }
  .topbar .divider { display: none; }

  .hero {
    min-height: 55vh !important;
  }
  .hero-inner {
    padding: 2rem 0;
    max-width: 100%;
    text-align: center;
  }
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .hero-desc {
    font-size: 14px;
    margin: 0 auto 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 45vh !important;
  }
}

/* ════════════ NAVBAR ════════════ */
/* Navbar er width control korar jonno updated styles */
.navbar { 
    background: #fff; 
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    border-radius: 50px;
    width: 85%;      
    max-width: 1100px; 
    margin: 15px auto; 
    
    /* Navbar padding ekdom komiye deya holo */
    padding: 2px 25px !important; 
    min-height: 45px !important; /* Ekta fixed minimum height */
}

/* Logo choto korar jonno code */
.navbar-brand img {
    height: auto; /* Logo-r height choto kora hoyeche */
    width: 75px;
    object-fit: contain;
    padding: 5px 0;
}

/* Baki existing CSS niche roilo */
.logo-wrap { display: flex; flex-direction: column; line-height: 1; padding: 10px 0; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 26px; color: #1a1a1a; font-weight: 700; }
.logo-main span { color: var(--green); }
.logo-group { font-size: 10px; font-weight: 700; letter-spacing: 3.5px; color: var(--green); }
.logo-tagline { font-size: 9px; color: #aaa; letter-spacing: 1px; font-style: italic; }

.navbar-nav .nav-link {
    padding-top: 8px !important;   /* Age hoyto 28px chilo, oita height barachilo */
    padding-bottom: 8px !important;
    font-size: 14px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 18px; right: 18px;
    height: 3px;
    background: var(--green);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform .25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--green) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }




.dropdown-menu {
  border: none;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  padding: 10px 0;
  min-width: 220px;
  margin-top: 0 !important;
}
.dropdown-item {
  font-size: 14px;
  color: #333;
  padding: 10px 22px;
  font-weight: 400;
  transition: all .2s;
  border-left: 3px solid transparent;
}
.dropdown-item:hover {
  background: var(--green-bg);
  color: var(--green);
  border-left-color: var(--green);
  padding-left: 28px;
}
@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu { display: block; }
  .nav-item.dropdown > .dropdown-toggle::after { display: none; }
}

.mobile-nav-arrow {
  display: inline-block;
  font-size: 11px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.nav-item.dropdown.show .mobile-nav-arrow,
.nav-item.dropdown:hover .mobile-nav-arrow {
  transform: rotate(180deg);
}

@media (max-width: 991px) {
  .dropdown-toggle::after {
    display: none;
  }
}

/* ════════════ HERO ════════════ */
.hero {
  min-height: 85vh !important;
  position: relative;
  overflow: hidden;
  margin-top: -15px; 
}
.hero-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease-in-out;
  z-index: 0;
}
.hero-item.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,55,22,.88) 38%, rgba(10,55,22,.40));
}
.hero-inner { position: relative; z-index: 2; max-width: 620px; padding: 3rem 0; }
.hero-eyebrow {
  display: inline-block;
  color: #7de0a0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff;
  font-weight: 500;
  line-height: 1.18;
  margin-bottom: 13px;
}
.hero-desc {
  color: #b8ddc6;
  font-size: 16px;
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.btn-hero-primary {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  padding: 13px 30px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: all .25s;
  display: inline-block;
}
.btn-hero-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}
/* ════════════ SCROLL TO TOP ════════════ */
.scroll-top {
  position: fixed;
  bottom: 15px; right: 15px;
  width: 44px; height: 44px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s;
  box-shadow: 0 4px 14px rgba(26,122,60,.45);
}
.scroll-top.show { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--green-dark); }
.hero-dots {
  position: absolute;
  right: 40px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px;
  z-index: 1;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none; cursor: pointer;
  transition: background .2s;
}
.hero-dot.active { background: #fff; }

.hero-arrows {
  position: absolute;
  bottom: 32px; right: 40px;
  display: flex; gap: 10px;
  z-index: 1;
}
.hero-arrow {
  width: 46px; height: 46px;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s;
}
.hero-arrow:hover { background: rgba(255,255,255,.15); border-color: #fff; }


/* ════════════ JOURNEY SECTION ════════════ */
.journey-section {
  padding: 50px 0;
  background: #fff;
}


/* ── Left image layout ── */
.journey-img-wrap {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  gap: 0;
}

.journey-img-top {
  width: 75%;
  height: 220px;
  object-fit: cover;
  border: 3px solid var(--green);
  border-radius: 4px;
  display: block;
}

.journey-img-bottom-wrap {
  display: flex;
  align-items: flex-end;
  margin-top: -30px;
  padding-left: 30px;
  position: relative;
  z-index: 1;
}

.journey-img-bottom {
  width: 55%;
  height: 170px;
  object-fit: cover;
  border: 3px solid var(--green);
  border-radius: 4px;
}

.journey-logo-box {
  width: 180px;
  height: 120px;
  background: #fff;
  border: 3px solid var(--green);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  margin-left: -3px;
}

.journey-logo-box img {
  width: 100%;
  object-fit: contain;
}

/* Green vertical divider line */
.journey-divider {
  position: absolute;
  top: 20px;
  right: 18%;
  width: 4px;
  height: 120px;
  background: var(--green);
  border-radius: 4px;
}

/* ── Right content ── */
.journey-content {
  padding-left: 20px;
}

.journey-icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.journey-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.journey-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.journey-text {
  font-size: 14.5px;
  color: #444;
  line-height: 1.9;
  text-align: justify;
}

/* ════════════ PRODUCT SECTION ════════════ */
.product-section {
  background: var(--green);
  padding: 80px 0;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}


/* ── Header ── */
.product-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.product-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-leaf {
  margin-right: 4px;
}

.product-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

/* ── Nav Buttons ── */
.product-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.product-nav-btn {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.product-nav-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* ── Slider ── */
.product-slider-outer {
  overflow: hidden;
}

.product-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* ── Card ── */
.product-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #fff;
  border-radius: 8px;
  overflow: visible;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.product-card-img {
  position: relative;
  background: #f5f5f5;
  border-radius: 6px 6px 0 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.product-card-img img:first-child {
  width: 100%;
  height: 140px;
  object-fit: contain;
}

/* Logo badge overlapping image and body */
.product-card-logo {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.product-card-logo img {
  width: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Card body */
.product-card-body {
  padding: 36px 20px 20px;
  text-align: center;
}

.product-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.4;
}

.product-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--green);
  border: 1.5px solid var(--green);
  padding: 7px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.product-card-btn:hover {
  background: var(--green);
  color: #fff;
}


/* ════════════ TESTIMONIAL SECTION ════════════ */
.testimonial-section {
  padding: 80px 0;
  background: #fff;
}



/* Left title */
.testi-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.testi-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.25;
  margin-bottom: 24px;
}

.testi-gear {
  font-size: 22px;
  opacity: 0.4;
}

/* Slider */
.testi-slider-outer {
  overflow: hidden;
}

.testi-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Card */
.testi-card {
  flex: 0 0 calc((100% - 20px) / 2);
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 24px 22px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.testi-stars {
  color: var(--green);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 13.5px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testi-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
}

.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

/* Green grass bottom decoration */
.testi-grass {
  height: 18px;
  background: var(--green);
  margin: 0 -22px;
  border-radius: 0 0 10px 10px;
  position: relative;
  overflow: hidden;
}

.testi-grass::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 18px;
  background: radial-gradient(ellipse 8px 10px at 8px 100%, var(--green) 100%, transparent 100%),
              radial-gradient(ellipse 8px 10px at 24px 100%, var(--green) 100%, transparent 100%);
  background-size: 16px 18px;
  background-repeat: repeat-x;
  filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.1));
}

/* ════════════ CLIENTS SECTION ════════════ */
.clients-section {
  padding: 50px 0 70px;
  background: #fff;
}



.clients-divider {
  border-top: 1.5px dashed #ddd;
  margin-bottom: 50px;
}

.clients-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.client-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.client-logo img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.2s, transform 0.2s;
}

.client-logo:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* ════════════ CONTACT SECTION ════════════ */
.contact-section {
  background: var(--green);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Background leaf pattern */
.contact-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(ellipse at 10% 50%, rgba(255,255,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 20%, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Label */
.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Title */
.contact-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 36px;
}

/* Form inputs */
.contact-input {
  width: 100%;
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: box-shadow 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.contact-input::placeholder {
  color: #999;
}

.contact-input:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.4);
}

/* Select */
.contact-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

/* Submit button */
.contact-btn {
  background: #2ecc71;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.contact-btn:hover {
  background: #27ae60;
  transform: translateY(-1px);
}

/* Right image */
.contact-img {
  max-height: 380px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

/* ════════════ CTA BANNER SECTION ════════════ */
.cta-banner-section {
  padding: 0 0 60px;
  background: #fff;
}

.cta-banner {
  background: var(--green);
  border-radius: 10px;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 110px;
  margin: 45px auto 0;   /* 👈 এটা change করো */
  max-width: 90%;
}

/* Bubble pattern background */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 40px at 70% 30%, rgba(255,255,255,0.08) 100%, transparent 100%),
    radial-gradient(circle 25px at 80% 70%, rgba(255,255,255,0.06) 100%, transparent 100%),
    radial-gradient(circle 50px at 85% 20%, rgba(255,255,255,0.06) 100%, transparent 100%),
    radial-gradient(circle 30px at 90% 60%, rgba(255,255,255,0.08) 100%, transparent 100%),
    radial-gradient(circle 20px at 95% 40%, rgba(255,255,255,0.05) 100%, transparent 100%),
    radial-gradient(circle 45px at 75% 80%, rgba(255,255,255,0.05) 100%, transparent 100%);
  pointer-events: none;
}

/* Left person image */
.cta-person {
  position: relative;
  z-index: 1;
  margin-bottom: -4px;
  flex-shrink: 0;
}

.cta-person img {
  height: 180px;
  object-fit: contain;
  display: block;
}

/* Middle content */
.cta-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  padding: 0 40px;
  z-index: 1;
}

.cta-icon {
  width: 54px;
  height: 54px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-icon i {
  font-size: 24px;
  color: var(--green);
}

.cta-text {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* Right button */
.cta-contact-btn {
  background: var(--green-dark);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
  z-index: 1;
}

.cta-contact-btn:hover {
  background: #0a3d1a;
  color: #fff;
  transform: translateY(-1px);
}







/* ════════════ FOOTER ════════════ */
.footer {
  background: #0d3a1c;
  color: #92b89e;
  padding: 70px 0 0;
}
.footer-logo-img img {
  height: 70px;
  object-fit: contain;
  margin-bottom: 16px;
}
.footer-desc { font-size: 13.5px; line-height: 1.75; color: #7a9e87; margin-top: 14px; }

.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #92b89e;
  font-size: 15px;
  text-decoration: none;
  transition: all .2s;
}
.footer-socials a:hover { background: var(--green); border-color: var(--green); color: #fff; }

.footer-heading {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: #7a9e87;
  text-decoration: none;
  font-size: 14px;
  transition: all .2s;
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity .2s;
}
.footer-links a:hover { color: #4ecb74; padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }

.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
  display: flex; gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: #7a9e87;
  margin-bottom: 14px;
  line-height: 1.5;
}
.footer-contact i { color: #4ecb74; font-size: 15px; margin-top: 2px; flex-shrink: 0; }

.footer-product-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 6px; 
}

@media (max-width: 576px) {
  .footer-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer-thumb {
  height: 64px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  opacity: .75;
  transition: opacity .2s;
  cursor: pointer;
}
.footer-thumb:hover { opacity: 1; }

.footer-bottom {
  background: #081f0f;
  text-align: center;
  padding: 18px;
  margin-top: 60px;
  margin-bottom: 0;
  border: none;
  outline: none;
  font-size: 13px;
  color: #4a6e55;
}

/* Fix for thin white line at the bottom */
body::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #081f0f;
  z-index: 9999;
}


/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 991px) {
  .navbar-nav .nav-link { padding-top: 10px !important;
        padding-bottom: 10px !important;
        border-bottom: 1px solid #f0f0f0; }
  .navbar-nav .nav-link::after { display: none; }
  .navbar {
        width: 95%; /* Mobile e ektu beshi jayga nibe */
        margin: 10px auto;
        border-radius: 15px; /* Mobile e beshi round thakle bhalo lage na */
        padding: 5px 15px !important;
    }
}
.navbar-collapse {
        padding-bottom: 15px; /* Mobile menu khulle jeno nicher diker padding thake */
    }

@media (max-width: 991px) {
  .journey-content {
    padding-left: 0;
  }
  .journey-img-top {
    width: 100%;
  }
}

@media (max-width: 767px) {
    .hero {
        /* Mobile screen choto thakay 50vh theke 60vh deya best */
        min-height: 50vh; 
        
        /* Jodi hero-r bhitore onek text ba boro image thake, 
           tobe padding-top diye dile navbar er niche thikmoto fit hobe */
        padding-top: 80px; 
        padding-bottom: 40px;
    }
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .product-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
  .product-card-img {
    min-height: 120px;
    padding: 15px;
  }
  .product-card-img img:first-child {
    height: 100px;
  }
}

@media (max-width: 576px) {
  .product-card {
    flex: 0 0 100%;
  }
  .product-card-img {
    min-height: 100px;
    padding: 13px;
  }
  .product-card-img img:first-child {
    height: 85px;
  }
}
/* ── Responsive ── */
@media (max-width: 991px) {
  

  .testi-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 576px) {
  .testi-card {
    flex: 0 0 100%;
  }

  .clients-track {
    justify-content: center;
  }

  .client-logo img {
    width: 70px;
    height: 70px;
  }
}
/* ── Responsive ── */
@media (max-width: 991px) {
  .contact-img {
    max-height: 260px;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 60px 0;
  }
  .contact-img {
    max-height: 220px;
  }
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .cta-banner {
    padding: 24px 24px;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    text-align: center;
     margin: 20px auto 0;
  }

  .cta-person {
    display: none;
  }

  .cta-content {
    padding: 0;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .contact-img {
    max-height: 220px;
    display: block;
    margin: 0 auto;
  }
}

/* Modern responsive navbar */
.navbar.sticky-top {
  top: 12px;
  z-index: 1030;
}

.navbar {
  width: min(1140px, calc(100% - 32px));
  max-width: none;
  min-height: 66px !important;
  margin: 14px auto;
  padding: 8px 18px !important;
  border: 1px solid rgba(26, 122, 60, 0.10);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 35px rgba(16, 54, 29, 0.12);
  backdrop-filter: blur(14px);
}

.navbar > .container {
  gap: 14px;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  min-width: 82px;
  margin-right: 22px;
  padding: 0;
}

.navbar-brand img {
  width: 78px;
  max-height: 52px;
  padding: 0;
  object-fit: contain;
}

.navbar-nav {
  align-items: center;
  gap: 4px;
}

.navbar-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px !important;
  border-radius: 10px;
  color: #1f2b22 !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.navbar-nav .nav-link::after {
  display: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .show > .nav-link {
  background: var(--green-bg);
  color: var(--green) !important;
}

.navbar-toggler {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(26, 122, 60, 0.18);
  border-radius: 10px;
  background: var(--green-bg);
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(26, 122, 60, 0.16) !important;
}

.navbar-toggler-icon {
  width: 20px;
  height: 20px;
}

.dropdown-menu {
  min-width: 270px;
  margin-top: 10px !important;
  padding: 8px;
  border: 1px solid rgba(26, 122, 60, 0.10);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(16, 54, 29, 0.14);
}

.dropdown-item {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  border-left: 0;
  border-radius: 8px;
  color: #243328;
  font-size: 14px;
  font-weight: 500;
  white-space: normal;
}

.dropdown-item:hover,
.dropdown-item:focus {
  padding-left: 12px;
  background: var(--green-bg);
  color: var(--green);
}

.mobile-nav-arrow {
  flex: 0 0 auto;
  color: currentColor;
}

@media (min-width: 992px) {
  .navbar-collapse {
    padding-bottom: 0;
  }

  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }
}

@media (max-width: 991px) {
  .navbar.sticky-top {
    top: 8px;
  }

  .navbar {
    width: calc(100% - 20px);
    min-height: 58px !important;
    margin: 10px auto;
    padding: 8px 12px !important;
    border-radius: 12px;
  }

  .navbar-brand img {
    width: 68px;
    max-height: 46px;
  }

  .navbar-collapse {
    max-height: calc(100vh - 120px);
    margin-top: 10px;
    padding: 10px 0 4px;
    overflow-y: auto;
    border-top: 1px solid rgba(26, 122, 60, 0.10);
  }

  .navbar-nav {
    align-items: stretch;
    gap: 6px;
  }

  .navbar-nav .nav-link {
    width: 100%;
    min-height: 44px;
    padding: 11px 12px !important;
    border-bottom: 0;
    border-radius: 9px;
  }

  .dropdown-menu {
    width: 100%;
    max-height: 310px;
    margin: 4px 0 0 !important;
    padding: 6px;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: none;
    background: #f8fbf9;
  }

  .dropdown-item {
    min-height: 42px;
    font-size: 13.5px;
  }
}

@media (max-width: 420px) {
  .navbar {
    width: calc(100% - 12px);
    padding: 7px 10px !important;
  }

  .navbar-brand {
    min-width: 70px;
    margin-right: 8px;
  }

  .navbar-brand img {
    width: 62px;
  }

  .navbar-toggler {
    width: 39px;
    height: 39px;
  }
}

/* Polished navigation refresh */
.navbar.sticky-top {
  top: 10px;
}

.navbar {
  width: min(1180px, calc(100% - 40px));
  min-height: 72px !important;
  padding: 10px 16px !important;
  border: 1px solid rgba(18, 92, 44, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,253,251,0.95));
  box-shadow: 0 18px 45px rgba(13, 58, 28, 0.14);
}

.navbar > .container {
  max-width: 1120px;
}

.navbar-brand {
  min-width: 88px;
}

.navbar-brand img {
  width: 82px;
  max-height: 54px;
  filter: drop-shadow(0 6px 10px rgba(13, 58, 28, 0.10));
}

.navbar-nav {
  gap: 6px;
}

.navbar-nav .nav-link {
  min-height: 44px;
  padding: 10px 15px !important;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #203126 !important;
  font-size: 14px;
  font-weight: 700;
}

.navbar-nav .nav-link:hover {
  border-color: rgba(26, 122, 60, 0.12);
  background: rgba(232, 245, 238, 0.70);
}

.navbar-nav .nav-link.active,
.navbar-nav .show > .nav-link {
  border-color: rgba(26, 122, 60, 0.18);
  background: var(--green);
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(26, 122, 60, 0.22);
}

.navbar-nav .nav-link.active .mobile-nav-arrow,
.navbar-nav .show > .nav-link .mobile-nav-arrow {
  color: #fff;
}

.dropdown-menu {
  min-width: 292px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(18, 92, 44, 0.12);
  box-shadow: 0 24px 50px rgba(13, 58, 28, 0.18);
}

.dropdown-item {
  position: relative;
  min-height: 42px;
  padding: 10px 14px 10px 36px;
  border-radius: 11px;
}

.dropdown-item::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(26, 122, 60, 0.28);
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  padding-left: 36px;
  background: linear-gradient(90deg, var(--green-bg), #fff);
}

.dropdown-item:hover::before,
.dropdown-item:focus::before {
  background: var(--green);
  transform: translateY(-50%) scale(1.15);
}

.navbar-toggler {
  border-radius: 12px;
  background: #fff;
}

@media (max-width: 991px) {
  .navbar.sticky-top {
    top: 6px;
  }

  .navbar {
    width: calc(100% - 18px);
    min-height: 62px !important;
    padding: 8px 12px !important;
    border-radius: 16px;
  }

  .navbar > .container {
    padding-left: 6px;
    padding-right: 6px;
  }

  .navbar-brand img {
    width: 70px;
    max-height: 48px;
  }

  .navbar-collapse {
    margin-top: 12px;
    padding: 12px;
    border: 1px solid rgba(18, 92, 44, 0.10);
    border-radius: 14px;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  }

  .navbar-nav .nav-link {
    justify-content: space-between;
    min-height: 46px;
    border-radius: 12px;
  }

  .dropdown-menu {
    min-width: 100%;
    max-height: 300px;
    margin-top: 6px !important;
    border-radius: 12px;
    background: #f7fbf8;
  }

  .dropdown-item {
    padding-left: 34px;
  }

  .dropdown-item:hover,
  .dropdown-item:focus {
    padding-left: 34px;
  }
}

@media (max-width: 420px) {
  .navbar {
    width: calc(100% - 10px);
    border-radius: 14px;
  }

  .navbar-brand img {
    width: 64px;
  }

  .navbar-collapse {
    padding: 10px;
  }

  .navbar-nav .nav-link,
  .dropdown-item {
    font-size: 13.5px;
  }
}

/* Icon navigation redesign */
.navbar {
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(8, 31, 15, 0.13);
}

.navbar-nav .nav-link {
  gap: 8px;
  padding: 9px 13px !important;
  border-radius: 14px;
}

.navbar-nav .nav-link > span,
.navbar-nav .nav-link.dropdown-toggle > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-link-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(26, 122, 60, 0.08);
  color: var(--green);
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.navbar-nav .nav-link:hover .nav-link-icon {
  transform: translateY(-1px);
}

.navbar-nav .nav-link.active .nav-link-icon,
.navbar-nav .show > .nav-link .nav-link-icon {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.dropdown-menu {
  min-width: 330px;
  margin-top: 2px !important;
}

@media (min-width: 992px) {
  .nav-item.dropdown {
    position: relative;
  }

  .nav-item.dropdown::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 8px;
  }

  .nav-item.dropdown:hover > .dropdown-menu {
    margin-top: 2px !important;
  }
}

.dropdown-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px 12px;
}

.dropdown-item::before {
  display: none;
}

.dropdown-item i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(26, 122, 60, 0.08);
  color: var(--green);
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-item span {
  min-width: 0;
  line-height: 1.35;
}

.dropdown-item:hover,
.dropdown-item:focus {
  padding-left: 12px;
  background: #f0f8f3;
}

.dropdown-item:hover i,
.dropdown-item:focus i {
  background: var(--green);
  color: #fff;
}

@media (max-width: 991px) {
  .navbar {
    border-radius: 18px;
  }

  .navbar-nav .nav-link {
    display: flex;
    gap: 10px;
    padding: 9px 10px !important;
    border-radius: 13px;
  }

  .navbar-nav .nav-link > span,
  .navbar-nav .nav-link.dropdown-toggle > span {
    flex: 1 1 auto;
  }

  .nav-link-icon {
    width: 32px;
    height: 32px;
  }

  .dropdown-menu {
    min-width: 100%;
    margin-top: 4px !important;
  }
}
