    .topnav-icons {
  gap: 18px;
  
}

.topnav-item {
  text-align: center;
  /* margin-bottom: 10px !important; */
}

.topnav-link {
  text-decoration: none;
  color: black;
}

.topnav-icon {
  font-size: 18px;
}

.topnav-text {
  font-size: 16px;
  color: #4d4c4c;
  margin-top: 4px;
  line-height: 1.2;
  white-space: nowrap; /* ✅ Prevents text from breaking into 2 lines */
}

.topnav-count {
  position: absolute;
  top: -6px;
  right: -10px;
  /* background: #ffb0b0; */
  color: #000;
  font-size: 11px;
  font-weight: 600;
  border-radius: 50%;
  padding: 2px 5px;
}

/* Hide text on mobile */
@media (max-width: 768px) {
  .topnav-text {
    display: none;
  }
  .logos{
    height: 65px !important;
    width: 71px !important;
  }
}
.topnav-icon {
  color: #050505 !important; /* default */
  transition: color 0.3s ease;
}

.topnav-link:hover .topnav-icon {
  color: green !important; /* hover color (red) */
}
.topnav-text:hover {
    color:green ;
}


.heads:hover{
    color: rgb(3, 93, 3) !important;
}
.cateheads:hover{
    color: rgb(6, 143, 6) !important;
}

.changecolor:hover{
color: rgb(153, 239, 153);
}

.btnsum:hover{
    background-color: rgb(6, 82, 6) !important;
}
.btnsum{
    border-radius: 0 !important;
}

.secbtn{
background-color:rgb(6, 82, 6) !important ;
}

.allbtn{
 background-color:rgb(3, 110, 3) !important ;
}
/* .allbtn:hover{
 background-color:rgb(3, 110, 3) !important ;
} */

.changec:hover{
color:rgb(3, 110, 3) !important;
}

.hovtext:hover{
  color:rgb(3, 110, 3) !important;
}

.linksc:hover{
  color: rgb(3, 146, 3) !important;
}

.colors:hover{
color: rgb(3, 146, 3) !important;
}



/* Organic skill section (enhanced design) */
.organic-section {
    position: relative;
    padding: 80px 0 40px;
    background: url("../images/skill-bg-1.jpg") no-repeat center/cover;
    overflow: visible; /* allow overlapping elements */
}
.organic-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
    z-index: 0;
}
.organic-grid {
    position: relative;
    display: flex;
    align-items: center;
    gap: 50px;
    z-index: 1;
    flex-wrap: wrap;
}
.organic-left,
.organic-right {
    flex: 1;
    position: relative;
}
.organic-left {
    display: flex;
    justify-content: flex-start;
}
.organic-left-media {
    position: relative;
    width: 92%;
}
.organic-left img {
    width: 100%;
    border: 5px solid #ffffff;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
    display: block;
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: transform 0.3s;
}
.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}
.play-btn::before {
    content: "";
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #27ae60;
    margin-left: 4px;
}

/* Organic right card */
.organic-right {
    background: #32a85a;
    color: #ffffff;
    padding: 36px 40px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    position: relative;
    overflow: hidden;
    max-width: 640px;
    margin-left: auto;
    height: 400px;
    z-index: 2;

    /* Animation */
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s forwards;
    animation-delay: 0.4s;

    transition: all 0.3s ease;
}
.organic-right::after {
    content: "";
    position: absolute;
    right: -20px;
    bottom: -30px;
    width: 240px;
    height: 240px;
    opacity: 0.18;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='%23ffffff' d='M20 120c25-45 90-95 160-95-10 70-70 140-140 150 30-20 55-45 70-75-35 25-70 35-90 20z'/%3E%3Cpath fill='%23ffffff' d='M45 140c35-20 80-70 120-110-20 50-60 100-110 120z' opacity='.6'/%3E%3C/svg%3E") no-repeat center/contain;
    pointer-events: none;
}

/* FadeInRight keyframes */
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Headings & text */
.organic-right h2 {
    margin: 0 0 16px;
    font-size: 28px;
    line-height: 1.25;
    color: #ffffff;
    font-weight: 700;
}
.organic-right p {
    line-height: 1.6;
    margin-bottom: 18px;
    color: #f5fff5;
}

/* Checklist items */
.organic-right ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.organic-right ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 32px;
    font-weight: 500;
    color: #ffffff;
}
.organic-right ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: #2a9c55;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Discover button */
.discover-btn {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
}
.discover-btn:hover {
    background-color: #ffffff;
    color: #32a85a;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .organic-grid {
        flex-direction: column;
    }
    .organic-left-media {
        width: 100%;
    }
    .organic-right {
        margin-left: 0;
        max-width: 100%;
        height: auto;
        padding: 30px 20px;
        transform: translateX(0);
        opacity: 1;
        animation: none;
    }
}

.stats {
    display: flex;
    justify-content: center;
    gap: 26px;
    margin: 30px auto 10px;
    flex-wrap: wrap;
}
.stat {
    text-align: center;
    font-weight: 600;
}
.stat .circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(#27ae60 calc(var(--p) * 1%), #dcdcdc 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #27ae60;
    margin-bottom: 10px;
    position: relative;
}
.stat .circle span {
    position: relative;
    z-index: 1;
}
.stat .circle::after {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: 50%;
    background: #fff;
    z-index: 0;
}
@media (max-width: 991px) {
    .organic-grid {
        flex-direction: column;
    }
    .organic-left-media {
        width: 100%;
    }
}


  .page-title {
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.page-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #0bec0b, #0ee60e,#024e02) !important; /* light → dark green */
  margin: 12px auto 0;
  border-radius: 2px;
}

@media (min-width: 1024px) {
  .banner-images{
    height: 500px !important;
  }
.collection-item-circle-new {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

/* .banners-div{
  height: 500px !important;
} */

.product-small-img-new{
  height: 100px !important;
}
.collection-image-new {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

.collection-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;   
    object-position: center;
    border-radius: 50%;
    display: block;
}
.product-images-new{
  width:590px !important;
  height:550px !important
}

.all-image{
  height: 400px !important;
}
}

@media (max-width: 360px) {

  .all-image{
  height: 200px !important;
}

  .collection-item-circle-new {
    width: 140px;
    height: 140px;
    border-radius: 50%;
}

.collection-image-new {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

.collection-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 🔥 fixes uneven border */
    object-position: center;
    border-radius: 50%;
    display: block;
}
.indexcate{
  margin-right: 15px !important;
  font-size: 17px !important;
}
}

@media (max-width: 480px) {
  .collection-item-circle-new {
    width: 140px;
    height: 140px;
    border-radius: 50%;
}

.collection-image-new {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

.collection-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 🔥 fixes uneven border */
    object-position: center;
    border-radius: 50%;
    display: block;
}
.all-image{
  height: 200px !important;
}
}

@media (max-width: 576px) {
  .collection-item-circle-new {
    width: 140px;
    height: 140px;
    border-radius: 50%;
}

.collection-image-new {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

.collection-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 🔥 fixes uneven border */
    object-position: center;
    border-radius: 50%;
    display: block;
}
.all-image{
  height: 200px !important;
}
}

@media (max-width: 767px) {
 .collection-item-circle-new {
    width: 140px;
    height: 140px;
    border-radius: 50%;
}
/* .product-small-img{
  height: 80px !important;
} */


.product-images-new{
  width:400px !important;
  height:400px !important
}

.collection-image-new {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

.collection-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 🔥 fixes uneven border */
    object-position: center;
    border-radius: 50%;
    display: block;
}
.all-image{
  height: 200px !important;
}
}

@media (max-width: 767px) and (orientation: portrait) {
  .collection-item-circle-new {
    width: 140px;
    height: 140px;
    border-radius: 50%;
}

.collection-image-new {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

.collection-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 🔥 fixes uneven border */
    object-position: center;
    border-radius: 50%;
    display: block;
}
.all-image{
  height: 200px !important;
}
}
@media (max-width: 767px) and (orientation: landscape) {
  .collection-item-circle-new {
    width: 140px;
    height: 140px;
    border-radius: 50%;
}

.collection-image-new {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

.collection-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 🔥 fixes uneven border */
    object-position: center;
    border-radius: 50%;
    display: block;
}
.all-image{
  height: 200px !important;
}
}
@media (max-width: 375px) {
  .collection-item-circle-new {
    width: 140px;
    height: 140px;
    border-radius: 50%;
}

.collection-image-new {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

.collection-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 🔥 fixes uneven border */
    object-position: center;
    border-radius: 50%;
    display: block;
}
.all-image{
  height: 200px !important;
}
}
@media (max-width: 375px) {
  .collection-item-circle-new {
    width: 140px;
    height: 140px;
    border-radius: 50%;
}

.collection-image-new {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

.collection-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 🔥 fixes uneven border */
    object-position: center;
    border-radius: 50%;
    display: block;
}
.all-image{
  height: 200px !important;
}
}

/* default bg_white stays white */
.box-icon.bg_white {
    background-color: #ffffff !important;
}

/* hover background change */
.box-icon.bg_white:hover {
    background-color: rgb(6, 82, 6) !important;
}

.text-primary{
  color: rgb(6, 82, 6) !important;;
}

.about-hero {
    position: relative;
    width: 100%;
    height: 300px;
    background: url("/images/slider/page-header-bg-1.jpg") center / cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dark overlay */
.about-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Content */
.about-content {
    position: relative;
    text-align: center;
    color: #fff !important;
    z-index: 2;
}

.about-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white !important;
}

.about-content p {
    font-size: 16px;
    opacity: 0.9;
}

.about-content a {
    color: #fff;
    text-decoration: none;
}

.about-content span {
    margin: 0 6px;
}

/* Green corner shapes (optional like your image) */
.about-hero::before,
.about-hero::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: #4CAF50;
    z-index: 1;
}

.about-hero::before {
    top: -40px;
    left: -40px;
    border-radius: 0 0 100% 0;
}

.about-hero::after {
    bottom: -40px;
    right: -40px;
    border-radius: 100% 0 0 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .about-hero {
        height: 260px;
    }

    .about-content h1 {
        font-size: 34px;
    }
}

.about-sec {
    display: flex;
    gap: 70px;
    align-items: center;
    padding: 90px 50px;
}

/* LEFT IMAGE AREA */
.about-left {
    width: 48%;
    position: relative;
}

.img-wrap {
    position: relative;
}

.main-img {
    width: 100%;
    border-radius: 10px;
}

/* rotating badge */
.badge-rotate {
    position: absolute;
    left: -40px;
    top: 60px;
    width: 120px;
}

.badge-rotate img {
    width: 100%;
    animation: spin 14s linear infinite;
}

/* small image bottom-right */
.img-small {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 150px;
    border-radius: 12px;
    background: #fff;
    padding: 6px;
    animation: floatX 3.5s ease-in-out infinite;
}

.img-small img {
    width: 100%;
    border-radius: 10px;
}

/* RIGHT CONTENT */
.about-right {
    width: 52%;
}

.sub-title {
    color: #4CAF50;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-right h2 {
    font-size: 40px;
    line-height: 1.3;
    margin: 10px 0 20px;
}

/* line + moving dot */
.title-line {
    position: relative;
    width: 400px;
    height: 2px;
    background: #e0e0e0;
    margin-bottom: 25px;
}

.title-line span {
    position: absolute;
    top: -4px;
    width: 10px;
    height: 10px;
    background: #4CAF50;
    border-radius: 50%;
    animation: dotMove 4s linear infinite;
}

.about-right p {
    color: #666;
    margin-bottom: 20px;
}

.about-right ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-right ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.about-right ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #4CAF50;
}
.btn-all {
    position: relative;
    display: inline-block;
    padding: 14px 36px;
    color: #2e3d2f;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
}

/* container */
.btn-all span {
    position: absolute;
    inset: 0;
}

/* TOP → right */
.btn-all span::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: #4CAF50;
    animation: runRight 2s linear infinite;
}

/* BOTTOM ← left */
.btn-all span::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: #4CAF50;
    animation: runLeft 2s linear infinite;
}

/* LEFT ↓ down */
.btn-all::before {
    content: "";
    position: absolute;
    left: 0;
    top: -100%;
    width: 2px;
    height: 100%;
    background: #4CAF50;
    animation: runDown 2s linear infinite;
}

/* RIGHT ↑ up */
.btn-all::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -100%;
    width: 2px;
    height: 100%;
    background: #4CAF50;
    animation: runUp 2s linear infinite;
}

/* ANIMATIONS */
@keyframes runRight {
    0%   { transform: translateX(0); }
    100% { transform: translateX(200%); }
}

@keyframes runLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-200%); }
}

@keyframes runDown {
    0%   { transform: translateY(0); }
    100% { transform: translateY(200%); }
}

@keyframes runUp {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-200%); }
}

/* ANIMATIONS */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes floatX {
    0% { transform: translateX(0); }
    50% { transform: translateX(12px); }
    100% { transform: translateX(0); }
}

@keyframes dotMove {
    0% { left: 0; }
    100% { left: 400px; }
}

/* MOBILE */
@media (max-width: 768px) {
    .about-sec {
        flex-direction: column;
    }
    .about-left,
    .about-right {
        width: 100%;
    }
    .img-small {
        right: 0;
    }
}
.btn-border4 {
    position: relative;
    display: inline-block;
    padding: 14px 36px;
    color: #2e3d2f;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    border-radius: 8px;
}

/* create the moving border using pseudo-element */
.btn-border4::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px; /* border thickness */
    background: linear-gradient(90deg, #4CAF50 25%, transparent 25%, transparent 50%, #4CAF50 50%, #4CAF50 75%, transparent 75%, transparent);
    background-size: 200% 200%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: borderRotate 4s linear infinite;
}

/* OPTIONAL: Hover change speed or color */
.btn-border4:hover::before {
    animation-duration: 2s;
}



/* Animation keyframes */
@keyframes borderRotate {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 200%; }
}
  /* ============================
   SKILL SECTION BASE
============================ */
.skill-one {
    position: relative;
    padding: 120px 0;
    background: transparent;
}

.skill-one__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* ============================
   LEFT COLUMN
============================ */
.col-xl-5 {
    position: relative;
}

/* White framed image */
.skill-one__image {
    position: relative;
    background: #fff;
    padding: 15px;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

.skill-one__image img {
    width: 100%;
    display: block;
}

/* Play button */
.video-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 3;
}

.video-popup i {
    color: #4fa35f;
    font-size: 20px;
}

/* Ripple */
.video-popup .ripple {
    position: absolute;
    inset: 0;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {transform: scale(1);opacity:1;}
    100% {transform: scale(2.5);opacity:0;}
}

/* ============================
   SKILL CIRCLES (BOTTOM)
============================ */
.skill-one__wrapper {
    margin-top: 45px;
    display: flex;
    justify-content: space-between;
    max-width: 420px;
}

.skill-one__wrapper li {
    text-align: center;
}

.graph-outer {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #fff;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.graph-outer::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 6px solid #4fa35f;
}

.inner-text {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 700;
    color: #1f2a1f;
}

.skill-one__wrapper__title {
    margin-top: 14px;
    font-weight: 600;
}

/* ============================
   RIGHT GREEN PANEL
============================ */
.col-xl-7 {
    position: relative;
}

.skill-one__content {
    background: #4fa35f;
    padding: 90px 90px;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Leaf graphic */
.skill-one__content__shape {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 240px;
    height: 240px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
}

.skill-one__content__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 22px;
}

.skill-one__content__text {
    max-width: 520px;
    margin-bottom: 28px;
    line-height: 1.7;
}

/* checklist */
.skill-one__content__list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.skill-one__content__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.icon-check-mark {
    width: 20px;
    height: 20px;
    background: #1f2a1f;
    border-radius: 50%;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 12px;
}

/* button underline */
.alefox-btn {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.alefox-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 45%;
    height: 2px;
    background: #fff;
    transition: width .4s;
}

.alefox-btn:hover::after {
    width: 100%;
}

/* ============================
   RESPONSIVE
============================ */
@media(max-width:991px){
    .skill-one__content{
        margin-top:40px;
        padding:60px 40px;
    }
    .skill-one__wrapper{
        justify-content:center;
        gap:25px;
    }
}

.skill-one {
    position: relative;
    overflow: hidden;
}

/* Background image */
.skill-one__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

/* Overlay */
.skill-one__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* dark overlay */
    z-index: 1;
}
 .team-section {
        max-width: 1200px;
        margin: auto;
    }

    .team-section h6 {
        color: #4CAF50;
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .team-section h2 {
        font-size: 32px;
        margin-bottom: 50px;
        color: #0f2d23;
    }

    .team-cards {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .team-card {
        background: #e7f0f1;
        border-radius: 15px;
        width: 250px;
        padding: 30px 20px 60px 20px;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .team-card:hover {
        transform: translateY(-10px);
    }

    .team-card img {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        border: 5px solid #fff;
        object-fit: cover;
        background-color: #fff;
        margin-top: -80px;
    }

    .team-info {
        margin-top: 20px;
        text-align: center;
    }

    .team-info h3 {
        margin: 0;
        font-size: 18px;
        font-weight: bold;
        color: #0f2d23;
    }

    .team-info p {
        margin: 5px 0 0 0;
        font-size: 14px;
        color: #555;
    }

    .social-icons {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .team-card:hover .social-icons {
        opacity: 1;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        background: #fff;
        color: #0f2d23;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 14px;
        box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        transition: background 0.3s, color 0.3s;
    }

    .social-icons a:hover {
        background: #4CAF50;
        color: #fff;
    }

     .services-banner {
    position: relative;
    width: 100%;
    height: 300px; /* adjust height */
    /* background-image: url('../images/collections/breadcroumb.jpg'); */
    background-image: url("/images/collections/breadcroumb.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
  }

  /* Dark overlay for better text readability */
  .services-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.651); /* adjust darkness */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }

  .services-banner .breadcrumb {
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .services-banner .title {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    margin: 0;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .services-banner {
      height: 200px;
    }
    .services-banner .title {
      font-size: 28px;
    }
  }
  body {
  font-family: "Poppins", sans-serif !important;
  background-color: #fdfbfb !important;
}

