body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: url('../img/multi-color-bags-cloth.jpg') center/cover no-repeat fixed;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  color: #fff; /* ensure text is white */
  z-index: 1; /* keep hero above the pseudo element */
}
@media (min-width: 768px) and (max-width: 991px) {
    .hero {
        min-height: 40vh;
    }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background: rgba(0, 0, 0, 0.4); /* adjust transparency here */
  z-index: -1; /* sit behind content but above background */
}
.bg-primary-1{
 background-color: #0d8a46 !important;
}
.bg-light-head{
  background-color: rgb(248 249 250 / 42%) !important;
}
.text-primary{
  color: #0d8a46!important;
}
.logo-bar{
  height: 80px;
}
.logo{
  position: relative;
    bottom: -33px;
    z-index: 99;
    left: 35px;
}

.logo img{
  height: 140px;
}
.logo-menu img{
  height: 80px;
}
/* --- navbar background and shadow --- */
.custom-navbar {
  background: linear-gradient(90deg, #0d8a46 0%, #1cb161 100%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* nav link underline effect */
.custom-navbar .nav-link {
  position: relative;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
}
.custom-navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 0;
  background: #fff;
  transition: width .28s ease;
}
.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
  width: 100%;
}

/* --- custom hamburger --- */
.navbar-toggler {
  border: none;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.toggler-icon {
  width: 26px;
  height: 18px;
  position: relative;
  display: inline-block;
}
.toggler-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  transition: transform .32s ease, top .32s ease, opacity .32s ease;
  border-radius: 2px;
}
.line1 { top: 0; }
.line2 { top: 8px; }
.line3 { top: 16px; }
.navbar-toggler.open .line1 {
  transform: translateY(8px) rotate(45deg);
  top: 8px;
}
.navbar-toggler.open .line2 {
  opacity: 0;
}
.navbar-toggler.open .line3 {
  transform: translateY(-8px) rotate(-45deg);
  top: 8px;
}

/* --- mobile slide menu --- */
@media (max-width: 991.98px) {
  .custom-navbar .navbar-collapse {
    position: fixed;
    top: 0;
    right: -110%;
    width: 75%;
    max-width: 420px;
    height: 100vh;
    background: linear-gradient(180deg, #0d8a46 0%, #1cb161 100%);
    padding-top: 4.6rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    transition: right 0.38s cubic-bezier(.22,.9,.35,1);
    z-index: 9999;
    overflow-y: auto;
  }
  .custom-navbar .navbar-collapse.show {
    right: 0;
  }
  .custom-navbar .navbar-nav {
    flex-direction: column;
  }
  .custom-navbar .nav-link {
    color: #fff;
    padding: 1rem 0;
    font-size: 1.075rem;
  }
  body.nav-open {
    overflow: hidden;
  }
}

/* --- close button inside slide panel --- */
.nav-close-btn {
  font-size: 1.5rem;
  text-align: right;
  width: 100%;
  background: none;
  border: none;
  color: #fff;
}
.nav-close-btn:hover {
  opacity: .8;
}

/* --- top bar call/email buttons --- */
.topbar .btn-outline-primary {
  border-color: #0d8a46;
  color: #0d8a46;
}
.topbar .btn-outline-primary:hover {
  background-color: #0d8a46;
  color: #fff;
}
.topbar .btn-primary {
  background-color: #1cb161;
  border-color: #1cb161;
}
.topbar .btn-primary:hover {
  background-color: #0d8a46;
  border-color: #0d8a46;
}
.topbar .btn-primary-2 {
  background-color: #0f954d;
  border-color: #0f954d;
  color: #fff;
}
.topbar .btn-primary-2:hover {
  background-color: #0d8a46;
  border-color: #0d8a46;
}
.whatsapp-btn-py{
  padding-top:.9rem ;
  padding-bottom:.9rem ;
}
/* You can also override .btn-primary globally: */
.btn-primary {
  background-color: #0d8a46;
  border-color: #0d8a46;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #1cb161;
  border-color: #1cb161;
}

.btn-outline-primary {
  border-color: #0d8a46;
  color: #0d8a46;
}
.btn-outline-primary:hover {
  background-color: #0d8a46;
  color: #fff;
}



/* Bigger width rainbow */
.semicircle-wrapper {
  position: relative;
  width: 800px; /* increased width */
  height: 400px; /* half height of circle */
  overflow: hidden;
}

.semicircle-rotator {
  position: absolute;
  width: 800px;
  height: 800px; /* full circle */
  top: 0;
  left: 0;
  border-radius: 50%;
}

.semicircle-rotator img {
  position: absolute;
  width: 120px; /* bigger square */
  height: 120px;
  object-fit: cover;
  /* no border-radius for square shape */
  border: 3px solid white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.semicircle-rotator img:hover {
  transform: scale(1.1);
}

.card img {
  height: 220px;
  object-fit: cover;
}

.quote textarea {
  resize: none;
}

footer {
  font-size: 0.9rem;
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 991px) {
  .semicircle-wrapper {
    width: 600px;
    height: 300px;
  }
  .semicircle-rotator {
    width: 600px;
    height: 600px;
  }
  .semicircle-rotator img {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 767px) {
  .hero{
    min-height: 42vh;
  }
  .logo img{
  height: 70px;
}
  .semicircle-wrapper {
    width: 400px;
    height: 200px;
  }
  .semicircle-rotator {
    width: 400px;
    height: 400px;
  }
  .semicircle-rotator img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .semicircle-wrapper {
    width: 300px;
    height: 150px;
  }
  .semicircle-rotator {
    width: 300px;
    height: 300px;
  }
  .semicircle-rotator img {
    width: 60px;
    height: 60px;
  }
}
/*products*/

/* Section title */
.products-section .section-title, .services .section-title {
  color: #0d8a46;
  position: relative;
  display: inline-block;
}
.products-section .section-title::after, .services .section-title::after {
  content: '';
  display: block;
  margin: 0.5rem auto 0;
  width: 60px;
  height: 3px;
  background: #1cb161;
  border-radius: 3px;
}

/* Product card */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  position: relative;
}
.product-image img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* Overlay hidden by default */
.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  border-radius: 10px;
  text-align: center;
}
.product-overlay .btn {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.3s ease;
}

/* Show overlay and button on hover */
.product-card:hover .product-overlay {
  opacity: 1;
  visibility: visible;
}
.product-card:hover .product-overlay .btn {
  opacity: 1;
  transform: translateY(0);
}

/* optional: enlarge image slightly on hover */
.product-card:hover img {
  transform: scale(1.05);
  transition: transform 0.4s ease;
}


/* Info */
.product-info {
  padding: 1rem;
}
.product-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  color: #333;
}

/* Classic View All button */
.btn-classic {
  background: linear-gradient(90deg, #0d8a46, #1cb161);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.btn-classic:hover {
  background: linear-gradient(90deg, #1cb161, #0d8a46);
  transform: translateY(-2px);
  color: #fff;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .product-title {
    font-size: 1rem;
  }
  .btn-classic {
    font-size: 1rem;
    padding: 0.75rem 2.5rem;
  }
}
/*quote*/
/* Background with gradient + subtle pattern */
.quote-section {
  background: linear-gradient(135deg, #0d8a46 0%, #1cb161 100%);
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: rotate(25deg);
  z-index: 0;
}
.quote-section .container {
  position: relative;
  z-index: 1;
}

/* Headings */
.quote-section h2 {
  font-size: 2rem;
  color: #fff;
}
.quote-section p {
  color: rgba(255,255,255,0.9);
}
/* Parallax and Section Styles */
  .quote-section {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .parallax-overlay {
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for contrast */
  }

  /* Custom button styles */
  .btn-quote {
    background-color: #ff6f61; /* Bright, attention-grabbing color */
    border: none;
    transition: background-color 0.3s ease;
  }
  
  .btn-quote:hover {
    background-color: #e65c4f; /* Darker shade for hover effect */
  }

  /* Animation for the form and text */
  .wow {
    visibility: hidden;
  }

  .wow.fadeInUp {
    animation: fadeInUp 1s forwards;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* Form */
.quote-form .form-control {
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.quote-form .form-control:focus {
  border-color: #1cb161;
  box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.25);
}

/* Button */
.btn-quote {
  background-color: #fff;
  color: #0d8a46;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.btn-quote:hover {
  background-color: #f4f4f4;
  transform: translateY(-2px);
  color: #0d8a46;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .quote-section h2 {
    font-size: 1.6rem;
  }
  .quote-form .form-control {
    font-size: 1rem;
  }
}
/*ratings*/

.reviews-section {
  background: #f9f9f9;
}
.reviews-section h2{
  color: #0d8a46;
}

.rating-score h1 {
  color: #0d8a46; /* your primary */
}

.stars i {
  font-size: 1.4rem;
}

.progress {
  height: 10px;
  background-color: #e9ecef;
  border-radius: 50px;
}

.progress-bar {
  border-radius: 50px;
  transition: width 1.2s ease-in-out;
}

.btn-outline-success {
  color: #0d8a46;
  border-color: #0d8a46;
  border-radius: 50px;
  font-weight: 500;
  transition: background-color .3s ease, color .3s ease;
}
.btn-outline-success:hover {
  background-color: #0d8a46;
  color: #fff;
}

/* animate bars when scrolled into view */
.animate-bar {
  width: 0;
}
.animate-bar.animated {
  transition: width 1.2s ease-in-out;
}
.recent-reviews .review-item:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  transition: all .2s ease;
}
.rating-score .progress-bar {
  font-size: 0.75rem;
  text-align: right;
  padding-right: 4px;
}
/* --- Reach Us Section --- */


.reach-us-section {
  position: relative;
  background-image: url('../img/banner.jpg'); /* large image */
  background-attachment: fixed; /* parallax */
  background-size: cover;
  background-position: center;
  color: #fff;
}

.reach-us-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,138,70,0.65); /* green overlay */
  z-index: 0;
}

.reach-us-section .container {
  position: relative;
  z-index: 1;
}
.reach-us-section .contact-menu , .reach-us-section .contact-info {
  background: #fff; /* white card */
  color: #333;
  border-radius: 0.75rem;
}

.reach-us-section .contact-menu h2 , .reach-us-section .contact-info h2 {
  color: #0d8a46 !important; /* primary */
}

.reach-us-section .social-links .btn {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.reach-us-section .social-links .btn:hover {
  transform: translateY(-2px);
  background-color: #0d8a46;
  color: #fff;
}

.reach-us-section .map-box iframe {
  min-height: 320px;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* responsive tweaks */
@media (max-width: 767.98px) {
  .reach-us-section .contact-info {
    text-align: center;
  }
  .reach-us-section .social-links .btn {
    margin-bottom: 0.5rem;
  }
}

/*About page*/

/* Banner Section */
.about-banner {
  position: relative;
  min-height: 300px;
  background: url('../img/about-banner.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-banner .overlay {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55);
}
.about-banner .container {
  position: relative;
  z-index: 1;
}

/* Team Section */
.team-section {
  background: #f8f9fa;
}
.team-card {
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.team-photo img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 4px solid #0d8a46;
}
.team-social a {
  color: #0d8a46;
  transition: color 0.3s ease;
}
.team-social a:hover {
  color: #1cb161;
}
.client-logo {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s, box-shadow 0.3s;
}
.client-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
/* Center logos for screens below 480px */
@media (max-width: 480px) {
  .clients-swiper .swiper-slide {
    display: flex;
    justify-content: center;
  }
  .client-logo {
    max-height: 60px;
  }
}



/* Banner */
    .services-banner {
      position: relative;
      height: 300px;
      background: url('../img/about-banner.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
    }
    .services-banner::before {
      content: "";
      position: absolute;
      top:0; left:0; width:100%; height:100%;
      background: rgba(0,0,0,0.5);
    }
    .services-banner .banner-content {
      position: relative;
      z-index: 1;
    }
    .services .section-title{
      display: block;
    }

    /* Service Cards */
    .service-card {
      transition: transform 0.3s, box-shadow 0.3s;
      background: #fff;
      border-radius: 12px;
      padding: 2rem 1rem;
      text-align: center;
      height: 100%;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    .service-icon {
      font-size: 3rem;
      color: #28a745;
      margin-bottom: 1rem;
    }
    .service-card h5 {
      font-weight: 600;
      margin-bottom: 0.75rem;
    }
    .service-card p {
      color: #555;
      font-size: 0.95rem;
    }

    /* Why Choose Us Section */
    .advantages-card {
      text-align: center;
      padding: 2rem 1rem;
      border-radius: 12px;
      background: #e9f7ef;
      transition: transform 0.3s, box-shadow 0.3s;
      height: 100%;
    }
    .advantages-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .advantages-card i {
      font-size: 2.5rem;
      color: #28a745;
      margin-bottom: 1rem;
    }
    .advantages-card h6 {
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    .advantages-card p {
      font-size: 0.95rem;
      color: #555;
    }

    /* CTA Button */
    .services-cta {
      text-align: center;
      margin-top: 3rem;
    }
    .services-cta a {
      font-size: 1.1rem;
      padding: 0.75rem 2rem;
      border-radius: 50px;
    }

    /* Client Logos */
    .client-logo {
      max-height: 80px;
      object-fit: contain;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .client-logo:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    }
    .parallax-cta {
  position: relative;
  height: 350px;
  background: url('../img/banner.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.parallax-cta .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.parallax-cta .container {
  position: relative;
  z-index: 2;
}

.parallax-cta h2 {
  font-size: 2.5rem;
}

.parallax-cta p {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .parallax-cta { height: 300px; }
  .parallax-cta h2 { font-size: 2rem; }
}
@media (max-width: 480px) {
  .parallax-cta { height: 250px; }
  .parallax-cta h2 { font-size: 1.6rem; }
  .parallax-cta p { font-size: 0.95rem; }
}


    @media (max-width: 768px) {
      .service-card, .advantages-card { padding: 1.5rem 1rem; }
      .client-logo { max-height: 60px; }
    }
    @media (max-width: 480px) {
      .client-logo { max-height: 50px; }
      .swiper-slide { display: flex; justify-content: center; }
    }



    .reviews-parallax {
  position: relative;
  height: 300px;
  background: url('../img/rating-banner.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.reviews-parallax .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.reviews-parallax .container {
  position: relative;
  z-index: 2;
}

.reviews-parallax h1 {
  font-size: 2.5rem;
}

.reviews-parallax p {
  font-size: 1.1rem;
}

@media (max-width: 768px){
  .reviews-parallax { height: 250px; }
  .reviews-parallax h1 { font-size: 2rem; }
  .reviews-parallax p { font-size: 1rem; }
}

@media (max-width: 480px){
  .reviews-parallax { height: 200px; }
  .reviews-parallax h1 { font-size: 1.6rem; }
  .reviews-parallax p { font-size: 0.9rem; }
}
.breadcrumb-nav {
  position: relative;
  z-index: 2; /* ensures it appears above the overlay */
}

.breadcrumb {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #28a745; /* your accent color */
}

.breadcrumb-item.active {
  color: #f8f9fa;
  font-weight: 500;
}
 /* Modal styling */
    .modal-content {
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
      border: none;
    }
    .modal-header {
      background: linear-gradient(135deg, #0d8a46, #085a2d);
      color: #fff;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }
    .modal-header .btn-close {
      filter: brightness(0) invert(1);
    }
    .form-control:focus {
      box-shadow: none;
      border-color: #007bff;
    }
    .whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  text-decoration: none;
  color: #fff;
}

/* Loader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    position: relative;
    width: 150px;
    height: 150px;
}

.loader .logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.loader-ring {
    width: 120px;
    height: 120px;
    border: 5px solid transparent;
    border-top: 5px solid #28a745;
    border-right: 5px solid #28a745;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
