/********** Template CSS **********/
:root {
  --primary: #06918d;
  --secondary: #fb9f38;
  --light: #f5f8f2;
  --dark: #252c30;
}
* {
  padding: 0;
  margin: 0;
}
a:hover{
  color: #06918d!important;
}
.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

.fw-medium {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-black {
  font-weight: 900;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
  color: var(--dark);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/

.navbar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 5px;
}
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #767876, #737473);
  padding: 5px 0;
}

.marquee-inner {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
  color: white !important;
  font-weight: bolder;
  font-size: 1rem;
  padding-left: 100%;
  text-transform: uppercase;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive Text */
@media (max-width: 768px) {
  .marquee-inner {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .marquee-inner {
    font-size: 0.8rem;
  }
}

/* Responsive text sizing */
@media (max-width: 768px) {
  .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
  }
  .navbar-toggler {
    margin-right: 105px;
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 4px;
    transition: box-shadow 0.15s ease-in-out;
  }
}

@media (max-width: 480px) {
  .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
  }
}

.waves-effect {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  vertical-align: middle;
  z-index: 1;
  will-change: opacity, transform;
  transition: 0.3s ease-out;
  color: #0a0a0a;
}
a {
  color: #0a0a0a !important;
  text-decoration: none;
  color: #ffffff;
  text-shadow: 1px 1px 10px rgba(249, 244, 244, 0.7);
  font-weight: bold;
}
/* === GENERAL NAV STYLE === */
.navbar-nav .nav-item {
  margin: 0 6px;
  position: relative;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  padding: 10px 18px;
  font-weight: 600;
  font-size: 18px;
  border-radius: 10px;
  color: #333;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 10px #ffffff;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
  background: #f1f9f8;
  color: #050606;
  box-shadow: 0 6px 18px rgba(46, 139, 87, 0.2);
}

/* === CUSTOM DROPDOWN MENU === */
.custom-dropdown {
  position: relative;
}
.dropdown-item img {
  pointer-events: none;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.custom-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #deebea;
  min-width: 270px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  z-index: 1000;
  animation: fadeSlide 0.3s ease;
}

/* Show on hover */
.custom-dropdown:hover .dropdown-menu {
  display: block;
}

/* Animate dropdown */
@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === DROPDOWN ITEMS === */
.dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-item:hover {
  background-color: #f5f5f5;
  color: #06918d;
}

.dropdown-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* === RESPONSIVE STYLE === */
@media (max-width: 768px) {
  .custom-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    margin-top: 10px;
  }
  .dropdown-menu .dropdown-item img {
    background-color: #f5f5f5 !important;
  }

  .navbar-nav .nav-link {
    padding: 10px;
    text-align: left;
  }
}

li {
  list-style-type: none;
}
.bg-image-full {
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
.bg-dark {
  background-color: #ede2e2 !important;
}

.mx-background-top-linear {
  background: -webkit-linear-gradient(45deg, #f1f4f8 48%, #06918d 48%);
  background: -webkit-linear-gradient(left,#f1f4f8 48%, #06918d 48%);
  background: linear-gradient(45deg,#f1f4f8 48%, #06918d 48%);
}
a.btn-primary {
  background-color: #06918d;
  border-color: #06918d;
}
a.btn-primary:hover {
  background-color: #5ec549;
  border-color: #5ec549;
}
button.btn-primary {
  background-color: #06918d;
  border-color: #06918d;
}
button.btn-primary:hover {
  background-color: #5ec549;
  border-color: #5ec549;
}

a.btn-secondary {
  background-color: #06918d;
  border-color: #06918d;
}
a.btn-secondary:hover {
  background-color: #5ec549;
  border-color: #5ec549;
}
button.btn-secondary {
  background-color: #06918d;
  border-color: #06918d;
}
button.btn-secondary:hover {
  background-color: #5ec549;
  border-color: #5ec549;
}

/* Main slider wrapper */
.slider-main {
  position: relative;
  overflow: hidden;
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100vh;
}

.carousel-item video,
.carousel-item img {
  object-fit: cover;
  height: 100vh;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.caption-center {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 1px 1px 2px rgb(22, 20, 20), 0 0 1em #06918d, 0 0 0.2em #06918d;
  text-transform: uppercase;
}

.caption-center h3 {
  font-size: 2.5rem;
  font-weight: bolder;
  color: white;
}

.caption-center p {
  font-size: 1.2rem;
  font-weight: 900;
  color: white;
}

/* Animations */
@keyframes slideTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-top {
  animation: slideTop 1s ease forwards;
}
.animate-bottom {
  animation: slideBottom 1s ease forwards;
}
.animate-left {
  animation: slideLeft 1s ease forwards;
}
.animate-right {
  animation: slideRight 1s ease forwards;
}

/* Vertical Indicators */
.carousel-indicators-vertical {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.carousel-indicators-vertical a {
  background-color: #fff;
  color: #090909;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: 5px 0;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  text-decoration: none;
  opacity: 0.7;
  transition: 0.3s;
}

.carousel-indicators-vertical a.active,
.carousel-indicators-vertical a:hover {
  background-color: #0a5353;
  color: #fff;
  opacity: 1;
}

.page-header {
  background: url(../img/banner/bg.jpg) center center no-repeat;
  background-size: cover;
  height: 500px;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--light);
}
.page-header .text-center {
  margin-top: 88px;
}

/*** Section Title ***/
.section-title {
  position: relative;
  padding-bottom: 11px;
  margin-bottom: 23px;
}

.section-title::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--primary);
}

.section-title::after {
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  bottom: -13px;
  left: calc(25% - 13px);
  background: var(--dark);
  border: 10px solid #ffffff;
  border-radius: 28px;
}

.section-title.text-center::before {
  left: 25%;
}

.section-title.text-center::after {
  left: calc(50% - 13px);
}

/* about main */

.about-main {
  padding: 30px 0px;
}
.about-main h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.about-main h5 {
  font-size: 18px;
}
.about-main p {
  font-size: 14px;
  text-transform: capitalize;
}
.about-main ul {
  padding-left: 20px;
}
.about-main ul li {
  position: relative;
  font-weight: 300;
  list-style: none;
  line-height: 29px;
}
.about-main ul li:before {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -15px;
  top: 0px;
  color: #06918d;
}



.about-main {
  padding: 3rem 1rem;
  animation: fadeInUp 1s ease-out;
}

.about-main h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #004e7c;
}

.about-main p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.img-fluid {
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.img-fluid:hover {
  transform: scale(1.03);
}

/* Products Section */
.team-members-box {
  padding: 3rem 1rem;
  background: linear-gradient(145deg, #ffffff, #e6ecf3);
  border-top: 2px solid #ccc;
}

.team-members-box h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #004e7c;
}

.card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  overflow: hidden;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  border-radius: 15px;
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-main h2,
  .team-members-box h2 {
    font-size: 2rem;
  }

  .card {
    margin-bottom: 2rem;
  }
}

/*** Products ***/
.product-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.product-item img:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

.product-item {
  position: relative;
  overflow: hidden;
}

.product {
  background: linear-gradient(rgba(136, 180, 78, 0.1), rgba(136, 180, 78, 0.1));
  background-size: auto;
}

.product-carousel .owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
  margin: 0 10px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 55px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.15);
  font-size: 25px;
  transition: 0.5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
  background: #ffffff;
  color: var(--primary);
}

/* articale features */
.features-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px;
  border-left: 5px solid #06918d; 
  background-color: #f7f7f7;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background-color: #e0f7e0; 
  border-left-color: #1e7b48; 
}

.icon {
  font-size: 24px;
  margin-right: 15px;
  color: #06918d; 
}

.feature-item p {
  font-size: 16px;
  color: #333;
}

.feature-item strong {
  color: #06918d; 
  font-weight: bold;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
  .feature-item {
    font-size: 14px;
    padding: 8px;
  }

  .icon {
    font-size: 20px;
  }
}

/*** About ***/
.video {
  background: linear-gradient(
      rgba(136, 180, 78, 0.85),
      rgba(136, 180, 78, 0.85)
    ),
    url(../img/banner/banner4.avif) center center no-repeat;
  background-size: cover;
}

.video-section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(53, 54, 52, 0.85), rgba(78, 84, 71, 0.85));
  z-index: 1;
}

.video-section .container {
  position: relative;
  z-index: 2;
}

.btn-play {
  position: relative;
  display: block;
  box-sizing: content-box;
  width: 65px;
  height: 75px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 28px 30px 30px 38px;
  background: #ffffff;
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: 13px;
  border-left: 40px solid var(--primary);
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

.modal-video .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.modal-video .modal-body {
  position: relative;
  padding: 0px;
}

.modal-video .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

/* fact */

/*** Youtube Video start ***/
.video {
  position: relative;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(
      rgba(254, 218, 154, 0.1),
      rgba(254, 218, 154, 0.1)
    ),
    url(../img/fact.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
}

.video .btn-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--bs-primary);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--bs-white);
  border-radius: 50%;
  transition: all 200ms;
}

.video .btn-play img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid var(--bs-dark);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal {
  z-index: 99999;
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}
/*** Youtube Video End ***/

/* faq */
.faq-main {
  padding: 30px 35px;
  background: #06918d;
  margin: 30px 0px;
}
.accordion-single {
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid #e4e8ed;
}
.accordion-single .card-header {
  background-color: transparent;
  padding: 0px;
  border: none;
}
.accordion-single .card-header h5 a {
  color: #202428;
  display: block;
  position: relative;
  padding: 21.28px 32px 26.56px 20px;
  font-size: 18px;
  text-transform: capitalize;
}
.accordion-single .card-header h5 a:hover {
  color: #06918d;
  text-decoration: none;
}
.accordion-single h5 a[aria-expanded="false"]::before {
  position: absolute;
  content: "\f0dd";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #06918d;
}
.accordion-single h5 a[aria-expanded="true"]::before {
  position: absolute;
  content: "\f0de";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #06918d;
}

/* what we offer */
.fabric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.fabric-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.fabric-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background-color: #06918d;
  border-radius: 50%;
  opacity: 0.1;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.fabric-card:hover::before {
  transform: scale(1.2);
}

.fabric-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(46, 139, 87, 0.25);
}

.fabric-card h3 {
  color: #06918d;
  margin: 15px 0 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

.fabric-card p {
  font-size: 0.95rem;
  color: #555;
}

.icon-wrap {
  font-size: 2rem;
  animation: floaty 2s infinite ease-in-out;
  color: #06918d;
}

@keyframes floaty {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes diffused-background {
  0% {
    transform: scale(1.2);
  }

  50% {
    transform: scale(1.4);
    opacity: 0.15;
  }

  100% {
    transform: scale(1.2);
    opacity: 0.1;
  }
}

.icon-wrap {
  width: 70px;
  height: 70px;
  background-color: #06918d;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border-radius: 50%;
  font-size: 28px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 576px) {
  .icon-wrap {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .navbar-brand span {
    color: #000 !important;
    text-shadow: 1px 1px 10px #ffffff;
    font-weight: bolder;
    font-size: 14px;
  }
  .navbar-dark .navbar-toggler{
    margin-left: 310px;
    margin-top: -69px;
    color: rgba(11, 8, 8, 0.55);
    border-color: rgba(9, 8, 8, 0.1);
  }
}

/* products */
.services-bar .card {
  box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.15);
  border: dashed #06918d;
}
.services-bar .card h4.card-header {
  background-color: #06918d;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}
.services-bar .card .card-footer {
  background-color: #06918d;
}

.about-main {
  padding: 30px 0px;
}
.about-main h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.about-main h5 {
  font-size: 18px;
}
.about-main p {
  font-size: 14px;
  text-transform: capitalize;
}
.about-main ul {
  padding-left: 20px;
}
.about-main ul li {
  position: relative;
  font-weight: 300;
  list-style: none;
  line-height: 29px;
}
.about-main ul li:before {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -15px;
  top: 0px;
  color: #fff;
}
.product-img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.product-img:hover {
  transform: rotateY(180deg);
}

/* mission vision about section why choose us*/

.finix-text h6 {
  color: #06918d;
  font-weight: 400;
  font-size: 17px;
}
.finix-text h2 {
  font-weight: 400;
  font-size: 35px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.finix-text p {
  color: #000;
  font-size: 15px;
  line-height: 1.8rem;
}
.finix-text img {
  border-radius: 25% 10%;
  width: 500px;
  height: 300px;
}
.why-choose-us {
  margin-top: 90px;
}
.why-choose-us .finix-text h2 {
  font-weight: 500;
}
.why-choose-us .ct-btn {
  display: inline-block;
  width: 85px;
  height: 85px;
  line-height: 85px;
  text-align: center;
  border-radius: 50%;
  font-size: 60px;
  background: #06918d;
  position: absolute;
  top: 77%;
  right: 43%;
}
.why-choose-us .ct-btn::before {
  content: "";
  height: 85px;
  width: 85px;
  position: absolute;
  top: 0;
  left: 0;
  background: #06918d;
  border-radius: 50%;
  animation: choose 1.6s ease-out infinite;
}
@keyframes choose {
  0%,
  30% {
    transform: scale(0);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.why-choose-us .ct-btn a {
  color: #06918d;
}
.why-choose-us .feature-box {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px 100px / 120px;
  transition: 0.4s;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.why-choose-us .feature-box:hover {
  transform: translateY(-10px);
}
.why-choose-us .feature-box:hover .fbc-btn {
  background: #06918d;
  color: #fff;
}
.why-choose-us .feature-box::before {
  content: "";
  position: absolute;
  top: -115px;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  height: 70%;
  background: #fdebeb;
  border-radius: 50%;
}
.why-choose-us .fbc-btn {
  display: inline-block;
  height: 90px;
  width: 90px;
  line-height: 90px;
  background: #06918d;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  position: relative;
  transition: 0.4s;
}
.active-feature {
  margin-top: -30px;
}
.why-choose-us .finix-text {
  position: relative;
}

/*** Contact ***/
.contact .btn-square {
  width: 100px;
  height: 100px;
  border: 20px solid var(--light);
  background: var(--primary);
  border-radius: 50px;
}

/* vision mission */
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  margin-bottom: 3rem;
  overflow: hidden;
}

.icon-side {
  background: #06918d;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 100px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.icon-side i {
  font-size: 3rem;
  color: white;
}

.info-text {
  flex: 1;
  padding: 2rem;
}

.info-text h3 {
  color: #000;
  font-weight: 700;
  margin-bottom: 1rem;
}

.info-text ul {
  padding-left: 1.2rem;
  list-style: square;
}

.image-side {
  flex: 1;
  max-width: 400px;
  background-size: cover;
  background-position: center;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.image-side img {
  border-radius: 10px 100px / 120px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.image-side img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.info-row.mission .icon-side {
  background: #06918d;
}

@media (max-width: 992px) {
  .info-row {
    flex-direction: column;
  }

  .icon-side {
    width: 100%;
    border-radius: 20px 20px 0 0;
  }

  .image-side {
    width: 100%;
    height: 200px;
    border-radius: 0 0 20px 20px;
  }
}
.custom-img-size {
  width: 100%;
  height: 450px;
  object-fit: contain;
}
.custom-img-size img {
  background-color: #dfe7de;
}
/*** Footer ***/
.footer {
  color: #000;
  border-top: thick double #06918d;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #000;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}
.footer h4 {
  text-decoration: underline;
}
.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  color: #000;
}

.copyright {
  background: #06918d;
  color: white;
}

.copyright a:hover {
  color: #377041 !important;
}

/* our brand */

/* Client Brands Section */
.carousel-client {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.carousel-client .slide {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 180px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-client .slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.carousel-client .slide:hover {
  transform: translateY(-15px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Custom Client Slider */
.client-slider-container {
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.client-slider {
  display: flex;
  animation: slide 15s infinite linear;
}

.client-slide {
  flex: 0 0 auto;
  width: 200px;
  margin: 0 15px;
  transition: transform 0.3s ease-in-out;
}

.client-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

/* --- Responsive Design --- */

/* For devices like tablets and below */
@media (max-width: 1024px) {
  /* Brand Section */
  .carousel-client .slide {
    width: 150px;
    padding: 10px;
  }

  /* Custom Client Slider */
  .client-slider-container {
    width: 90%;
  }

  .client-slider {
    gap: 10px;
  }

  .client-slide {
    width: 180px;
  }
}

/* For mobile phones (portrait) */
@media (max-width: 768px) {
  /* Brand Section */
  .carousel-client .slide {
    width: 130px;
    padding: 8px;
  }

  /* Custom Client Slider */
  .client-slider-container {
    width: 100%;
  }

  .client-slider {
    gap: 5px;
  }

  .client-slide {
    width: 120px;
  }
}

/* For very small mobile screens */
@media (max-width: 576px) {
  /* Brand Section */
  .carousel-client .slide {
    width: 110px;
    padding: 5px;
  }

  /* Custom Client Slider */
  .client-slider-container {
    width: 100%;
  }

  .client-slider {
    gap: 5px;
  }

  .client-slide {
    width: 100px;
  }
}


/* market area */
.market-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 20px;
}
.market-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #1a191a, #2e8b57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.state-item {
  position: relative;
  width: 160px;
  height: 160px;
  background: #f1f6f5;
  border-radius: 50% 40% 60% 50% / 40% 60% 50% 60%;
  animation: blob 8s infinite ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.state-item:hover {
  transform: scale(1.05);
}

.icon {
  font-size: 2.5rem;
  color: #06918d;
  animation: float 2.5s ease-in-out infinite;
  
}

.label {
  margin-top: 10px;
  font-weight: bold;
  text-transform: uppercase;
  color: black;
  font-size: 0.95rem;
}

@keyframes blob {
  0%,
  100% {
    border-radius: 50% 40% 60% 50% / 40% 60% 50% 60%;
  }

  50% {
    border-radius: 40% 60% 50% 60% / 60% 40% 60% 40%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .state-item {
    width: 130px;
    height: 130px;
  }

  .icon {
    font-size: 2rem;
  }

  .label {
    font-size: 0.8rem;
  }
}
.product-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.icon {
  font-size: 3rem;
  color: #06918d;
}

.manufacturer-content, .supplier-content, .exporter-content {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.title {
  font-size: 1.8rem;
  color: #06918d;
}

.description {
  font-size: 1rem;
  line-height: 1.5;
  color: #090808;
}

.manufacturer-block, .supplier-block, .exporter-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.animate__fadeInLeft, .animate__fadeInRight {
  animation-duration: 1s;
  animation-fill-mode: both;
}

/* products */

.product-wrapper {
  font-family: "Arial", sans-serif;
  position: relative;
  padding: 18px;
  color: #fff;
  overflow: hidden;
}

.product-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(
    circle,
    rgba(199, 218, 207, 0.2),
    rgba(233, 245, 238, 0.2)
  );
  animation: shapesAnimation 20s infinite ease-in-out;
}

.product-top {
  display: flex;
  flex-wrap: wrap;
  animation: fadeIn 2s ease-out;
}

.product-image-box {
  flex: 1;
  margin-right: 20px;
}

.product-image-box .image {
  height: 350px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  animation: zoomIn 1.5s ease-in-out forwards;
}

.product-content-box {
  flex: 2;
}

.product-title {
  font-size: 2.4rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #06918d;
}

.product-text {
  font-size: 16px;
  line-height: 1.8;
  color: black;
  animation: slideUp 2s ease-out;
}
/* Mobile Styles */
@media (max-width: 600px) {
  .product-wrapper {
    padding: 12px;
  }

  .product-top {
    flex-direction: column;
    align-items: center;
  }

  .product-image-box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .product-image-box .image {
    height: 250px;  /* Adjusted for mobile */
    border-radius: 8px;
  }

  .product-content-box {
    width: 100%;
  }

  .product-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .product-text {
    font-size: 14px;
    text-align: center;
  }
}

/* Tablet Styles */
@media (max-width: 768px) {
  .product-wrapper {
    padding: 16px;
  }

  .product-top {
    flex-direction: column;
  }

  .product-image-box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .product-image-box .image {
    height: 300px;  
  }

  .product-content-box {
    width: 100%;
  }

  .product-title {
    font-size: 2rem;
    text-align: center;
  }

  .product-text {
    font-size: 15px;
    text-align: center;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .product-wrapper {
    padding: 18px;
  }

  .product-top {
    flex-direction: row;
  }

  .product-image-box {
    width: 45%;
    margin-right: 20px;
  }

  .product-image-box .image {
    height: 350px; 
  }

  .product-content-box {
    width: 50%;
  }

  .product-title {
    font-size: 2.4rem;
    text-align: left;
  }

  .product-text {
    font-size: 16px;
    text-align: left;
  }
}

/* Grid container */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 40px 5%;
  animation: fadeInUp 1.5s ease-in-out;
}

.product-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeInCard 1s ease-in-out forwards;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Thumbnail */
.product-thumb {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.product-card:hover .product-thumb {
  transform: scale(1.08);
}

/* Label */
.product-label {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2e8b57;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-thumb {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
/* narrow fabrics */

.section-title {
  text-align: center;
  margin-top: 30px;
}

.section-title h2 {
  font-family: Arial, sans-serif;
  font-size: 2rem;
  color: #333;
  margin: 0;
}

/* Grid Layout */
.custom-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.custom-product-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.custom-product-card img {
  width: 100%;
  height: 200px;  
  object-fit: cover; 
}

.custom-product-card:hover {
  transform: scale(1.05);
}

.custom-product-name {
  padding: 10px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background-color:#06918d;
  border-top: 1px solid #ddd;
}

/* Mobile Styles */
@media (max-width: 600px) {
  .custom-product-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .custom-product-name {
    font-size: 1rem;
  }
}

/* Tablet Styles */
@media (max-width: 768px) {
  .custom-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    padding: 15px;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .custom-product-name {
    font-size: 1rem;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .custom-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .custom-product-name {
    font-size: 1.2rem;
  }
}

