@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    margin:0px !important;
    padding:0px;
    scroll-behavior:smooth;
    box-sizing:border-box;
    list-style:none;
    text-decoration:none !important;
}
:root{
    --primary-color:#867a6a;
    --secondary-color:#0a534f;
    --text-color:#495057f2;
    --heading-font:"Poppins", sans-serif;
    --text-font:"Inter", sans-serif;
}
body{
    font-family:var(--text-font);
}
h1,h2,h3,h4,h5,h6{
    font-family:var(--heading-font);
    color:var(--primary-color)
}
.nav-link{
    font-weight:500;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color:var(--primary-color);
}
.nav-link:hover{
    color:var(--primary-color) !important;
}
.contact-btn{
    background-color:var(--primary-color);
    padding:13px 20px;
    border-radius:32px;
    font-weight:500;
    display:inline-flex;
    align-items:center;
    white-space:nowrap;
    gap:3px;
    border:none;
    transition:all 0.3s ease-in-out;
}
.contact-btn:hover{
    transform:translateY(-1px);
    background-color:#0a534f;
}
.hero-section{
    position:relative;
    z-index:1;
}
.banner{
    width:100%;
    height:100vh;
    background-image:url(/assets/image/banner.webp);
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    z-index:-1;
}
.banner-overlay{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background: linear-gradient(271deg,rgba(16, 132, 126, 0.36) 0%, rgba(10, 83, 79, 0.91) 100%);
    z-index:0;
}
.hero-content{
    position:relative;
    width:100%;
    height:100%;
    padding-top:6rem;
    z-index:1;
}
.primary-heading{
    color:white;
    font-weight:600;
    font-size:52px;
    /* font-family:var(--heading-font) !important; */
}
.contact-btn-2{
    background-color:white;
    color:var(--primary-color);
    padding:13px 20px;
    border-radius:32px;
     display:inline-flex;
     align-items:center;
    white-space:nowrap;
    gap:3px;
    font-weight:500;
    border:none;
    transition:all 0.3s ease-in-out;
}
.contact-btn-2:hover{
    transform:translateY(-1px);
}
.card-wrap{
padding:20px;
border:1px solid var(--primary-color);
border-radius:16px;
}
.img-wrap img{
width:100%;
border-radius:16px;
}
.img-wrap p{
    color:var(--text-color);
}
.card-btn{
background-color:var(--primary-color);
padding:10px 20px;
color:white;
border:none;
border-radius:8px;
}


.services-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(16, 132, 126, 0.25);
  border-radius: 16px;
  padding: 32px 20px 32px;
  text-align: center;
  height: 100%;
  transition: all 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(16, 132, 126, 0.12);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px auto;
  border-radius: 50%;
  background: rgba(16, 132, 126, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 36px;
}

.service-title {
  font-family: var(--heading-font);
  color:black !important;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.service-text {
  font-family: var(--text-font);
  font-size: 0.95rem;
  color: var(--text-color);
  margin: 0;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  height: 100%;
  transition: 0.25s ease;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.product-btn{
    background-color:var(--primary-color);
    color:white;
    transition:all 0.3s ease-in-out
}
.product-btn:hover{
    background-color:var(--secondary-color);
    color:white;
}
.product-card:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 8px 24px rgba(0,0,0,0.08); */
}
.custom-swiper-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10847e;        /* default arrow color */
  transition: color 0.3s ease;
}

.custom-swiper-btn:hover {
  background: var(--primary-color);
  color: #fff;
}


.bento-img img {
  transition: transform 0.5s ease;
}

.bento-img:hover img {
  transform: scale(1.1);
}

.feature-item {
  border-color: #dbeafe;
  transition: 0.25s ease;
  background: #fff;
}

.feature-item:hover {
  border-color: var(--primary-color);
}
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #c1e1dfb0;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-image {
  max-height: 160px;
  opacity: 0.8;
}

.stat-box {
  padding: 10px;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 14px;
  color: #6c757d;
}
.cta-section{
    position:relative;
    background-image:url(/assets/image/banner.webp);
    background-size:cover;
    width:100%;
    height:50vh;

}
.site-footer {
  background: #f8f9fa;
  border-top: 1px solid #e5e5e5;
  font-size: 0.95rem;
}


/* Main Footer Wrapper */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #E2E8F0; /* subtle divider from section above */
  font-size: 0.95rem;
  padding-top: 25px; /* generous top spacing */
}

/* Inner container spacing (optional fine-tuning) */
.site-footer .container {
  padding-bottom: 16px;
}

/* Footer text */
.site-footer p,
.site-footer li,
.site-footer div {
  color: #6c757d;
}

/* Section titles */
.footer-title {
  font-weight: 600;
  margin-bottom: 14px;
  color: #0f172a; /* dark, clean heading */
}

/* About text */
.footer-text {
  max-width: 320px;
  line-height: 1.6;
}

/* Footer links */
.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #6c757d;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-color); /* teal accent */
}

/* Contact list */
.footer-contact {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-contact li {
  margin-bottom: 8px;
  color: #6c757d;
}

/* Badges */
.footer-badge {
  background: #E6F4F3;
  color: var(--primary-color);
  font-weight: 500;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
}

/* Social icons */
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #E2E8F0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #E2E8F0;
  padding: 16px 0;
  background: #ffffff;
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 40px;
}

/* Bottom links */
.footer-bottom-links a {
  color: #6c757d;
  text-decoration: none;
  margin: 0 6px;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .site-footer {
    padding-top: 48px;
  }

  .footer-bottom {
    text-align: center;
  }
}
