

body {
    margin: 0  !important;
    padding: 0 !important;
    overflow-x: hidden;
}
/* Floating buttons wrapper */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Button Style */
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: 0.3s;
}

/* WhatsApp */
.float-btn.whatsapp {
    background-color: #25D366;
}

/* Call */
.float-btn.call {
    background-color: #1A7C79;
}

/* Hover effect */
.float-btn:hover {
    transform: scale(1.12);
}

* {
  font-family: 'Poppins', sans-serif;
}

.header, .navbar {
  background: #ffffff !important;
}

.logo {
  width: 200px;
}

.nav-link {
  font-weight: 500;
  font-size: 15px;
  color: #333 !important;
}

.nav-link:hover {
  color: #118182 !important;
}

.btn-contact {
  padding: 8px 18px;
  background: #118182;
  color: white !important;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 70px;
}

/* banner css end  */

/* Desktop Image Show */
.banner-desktop {
  width: 100%;
  display: block;
}

/* Mobile Image Hidden Default */
.banner-mobile {
  width: 100%;
  display: none;
}

/* Mobile View */
@media (max-width: 768px) {
  .banner-desktop {
    display: none;
  }
  .banner-mobile {
    display: block;
  }
  .btn-contact{
    margin: 0;
  }
}


.stats-icon {
  width: 40px;
  filter: brightness(0) saturate(100%) invert(37%) sepia(61%) saturate(470%) hue-rotate(128deg);
}

.stats-number {
  font-size: 40px;
  font-weight: 700;
  color: #000; /* screenshot black */
  display: inline-block;
  position: relative;
}

.stats-number.plus::after {
  content: "+";
  font-size: 30px;
  font-weight: 700;
  color: #000;
  margin-left: 2px;
}

.stats-number.percent::after {
  content: "%";
  font-size: 30px;
  font-weight: 700;
  color: #000;
  margin-left: 2px;
}

.stats-title {
  margin-top: 6px;
  font-size: 15px;
  color: #444;
}

#counter img {
  display: block;
  margin: 0 auto;
}

/* counter :end */
.category-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  transition: 0.3s;
  border: 1px solid #edf3ee;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 22px rgba(0,0,0,0.08);
}

.cat-img {
  background: linear-gradient(135deg, #E8FFF1, #DFFFF0);
  /* padding: 35px; */
  border-radius: 12px;
  text-align: center;
  margin-bottom: 18px;
}

.cat-img img {
    width: 100%;
    border-radius: 12px;
}
.cat-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cat-sub {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.cat-link {
  color: #009873;
  font-weight: 600;
  text-decoration: none;
}

.cat-link:hover {
  text-decoration: underline;
}
/* catagry :end */


.product-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-img {
  width: 90%;
  margin: auto;
}

.product-title {
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
}

.product-rating {
  font-size: 13px;
  margin-top: 8px;
  color: #444;
}
/* Move dots downward */
.mySwiper {
    padding-bottom: 50px !important;
}

/* Position dots properly */
.swiper-pagination {
    bottom: 20px !important;
}

/* Pagination styling */
.swiper-pagination-bullet {
  width: 25px;
  height: 6px;
  background: #a4d0c7;
  border-radius: 10px;
  opacity: 1;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  background: #118182;
  width: 32px;
}

/* best seller proldeuct */

.marquee-section {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}
.track {
    margin: 10px 0;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Box design */
.cert-box {
  background: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  margin: 0 15px;
  box-shadow: 0px 0px 12px rgba(0,0,0,0.08);
  min-width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-box img {
  width: 100%;
  height: 55px;
  object-fit: contain;
}

/* certifacetion end  */


.info-box {
  padding-right: 10px;
}

.info-icon {
  font-size: 28px;
  margin-bottom: 10px;
  color: #000;
}

.info-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 5px;
}

.info-text {
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
}

.info-link {
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: #000;
}

.feature-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
/* about us  */


.about-title {
  font-size: 32px;
  font-weight: 700;
}

.about-line {
  width: 70px;
  height: 3px;
  background: #000;
  margin: 10px 0 20px 0;
}

.about-text {
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
}

.about-list {
  margin-bottom: 25px;
}

.about-item {
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-item i {
  font-size: 18px;
  color: #118182;
}

.about-btn {
  background: #118182;
  color: #fff;
  padding: 10px 22px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.about-btn:hover {
  background: #f49911;
}

.video-wrapper {
  border-radius: 10px;
  overflow: hidden;
}

.about-video {
  width: 100%;
  border-radius: 10px;
}

/* bread- comparing  */
.logo-slider {
  overflow: hidden;
  padding: 20px 0;
  background: #fff;
}

.logo-track {
  display: flex;
  gap: 50px;
  width: calc(200px * 14); /* Number of logos * width */
  animation: scroll 25s linear infinite;
}

.logo-item {
  background: #ffffff;
  padding: 15px 30px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}

.logo-item img {
  width: 140px;
  height: auto;
  object-fit: contain;
}

/* Marquee Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* Adjust spacing mobile */
@media (max-width: 768px) {
  .info-box {
            text-align: left;
        box-shadow: #0000000f 0px 0px 3px 2px;
        padding: 15px 15px;
        border-radius: 12px;
  }
}


/* testamonial */
.testimonial-box {
  background: #fff;
  border-radius: 14px;
  min-height: 230px;
  border: 1px solid #eee;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    max-width: 60px;
    height: 60px;
    object-fit: cover;
}
.testimonial-box p {
  font-size: 14px;
  color: #444;
}

.stars {
  letter-spacing: 2px;
  font-size: 18px;
}
.testimonial-box {
    background: #fff;
    border-radius: 12px;
    min-height: 250px;
}

.owl-nav button {
    font-size: 35px !important;
    color: #118182 !important;
    background: none !important;
    position: absolute;
    top: 40%;
}

.owl-nav .owl-prev { left: -40px; }
.owl-nav .owl-next { right: -40px; }
.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dots .owl-dot span {
    width: 30px;
    height: 6px;
    display: block;
    background: #b9d8d3;
    margin: 0 4px;
    border-radius: 10px;
    transition: .3s;
}

.owl-dots .owl-dot.active span {
    background: #1a7c79;
    width: 40px;
}
@media (max-width: 768px) {
    .owl-nav {
        display: none !important;
    }
}

/* half -slider */
.factory-slider .slide-box img {
    width: 100%;
    max-width: 608px;
    height: 328px;
    transition: width 2s;
    border-radius: 10px;
}
/* .owl-item.cloned.active {
    margin-left: -80px;
} */
.factory-slider .owl-stage-outer {
    max-height: 335px;
}
.factory-tour-section .owl-nav button {
  position: absolute;
  top: 50%;
  /* transform: translateY(-50%); */
  background: #118182 !important;
  color: #fff !important;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 24px !important;
}

/* Prev & Next Positions */
.factory-tour-section .owl-nav .owl-prev {
  left: -50px;
}

.factory-tour-section .owl-nav .owl-next {
  right: -50px;
}
/* .owl-item.active.center {
    max-width: 600px !important;
    width: 720px !important;
    transition: width 2s;
} */

/* Mobile Responsive */
@media (max-width: 768px) {
    .small-img {
        display: none;
    }
    .main-img {
        width: 100%;
    }
}

.feature-img {
  height: 400px !important;
}

@media screen and (max-width: 580px) {

 .nav-link {
    font-weight: 500;
    font-size: 18px;
    color: #333 !important;
    padding: 5px 0;
}
}
.carousel-item img {
  width: 100%;
}
.custom-width{
  max-width: 980px !important;
  margin: 0 auto;
}


/* footer css */
.footer-section {
    background: #1a7c79;     /* Updated Background */
    color: #ffffff;          /* White Text */
    font-family: 'Poppins', sans-serif;
}

.footer-text {
    font-size: 14px;
    color: #e8f6f5;          /* Soft white for paragraph */
    line-height: 22px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #ffffff;          /* White links */
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #f49911;          /* Brand highlight on hover */
}

.copyright-text {
    font-size: 14px;
    color: #e8f6f5;          /* Light white */
}
.footer-logo img {
    width: 140px !important;
}
hr {
    border-top: 1px solid rgba(255, 255, 255, 0.3); /* Soft white line */
}
.Export-Manufacturing{
  background-color: #fff;
}

/* boss img */

.team-section {
    font-family: 'Poppins', sans-serif;
}

.team-card {
    padding: 30px 20px;
    background: #f8fdfb;
    border-radius: 12px;
}
.team-img {
    width: 100%;
    max-width: 320px;
    border-radius: 8px;
    object-fit: cover;
}

.team-role {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.team-desc {
    font-size: 14px;
    color: #555;
    line-height: 24px;
    max-width: 450px;
    margin: auto;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .team-img {
        max-width: 260px;
    }
}

/* form */

.partner-section {
    font-family: 'Poppins', sans-serif;
}

/* Input box styling */
.form-input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: all .3s ease;
}

/* Icons inside input */
.form-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    font-size: 17px;
    color: #1a7c79;
    z-index: 10;
}

/* Focus styling */
.form-input:focus {
    border-color: #1a7c79;
    box-shadow: 0 0 4px rgba(26, 124, 121, 0.3);
}

/* Submit Button */
.btn-submit {
    background: #1a7c79;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}

.btn-submit:hover {
    background: #155d56;
}

/* Dropdown arrow fix */
.form-select {
    padding-left: 40px !important;
}
.form-partner{
  max-width: 1000px !important;
}


.cert-box img{
  max-width: 100px ;
}

.last-number .stats-title {
    /* margin-top: -10px; */
    font-size: 15px;
    color: #444;
}
.last-number img{
  max-height: 40px;
  object-fit: contain;
}
.contact-page {
  font-family: 'Poppins', sans-serif;
}

.contact-page h2 {
  font-size: 32px;
  color: #222;
}

.office-block h5 {
  font-size: 18px;
  color: #000;
  margin-bottom: 4px;
}

.office-block p {
  font-size: 14.5px;
  color: #444;
}

.contact-map iframe {
  border-radius: 12px;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.08);
}

.contact-box {
  background: #fff;
  border-radius: 12px;
  border-left: 5px solid #1a7c79;
}

.contact-box p {
  font-size: 15px;
}

.contact-box i {
  font-size: 18px;
}

@media(max-width: 768px) {
  .contact-page h2 {
    font-size: 26px;
  }
}
