  /* Why choose us */
  .why-choose-section {
    padding: 100px 0;
}

.who-we-content {
    padding-top: 50px;
}

.who-we-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.who-we-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.who-we-item:hover {
    transform: translateY(-5px);
}

.who-we-item .icon {
    font-size: 32px;
    color: #147069;
    margin-bottom: 15px;
}

.who-we-item .title {
    font-size: 20px;
    margin-bottom: 10px;
}

.image-wrap {
    position: relative;
}

.image-wrap .image-1 img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.author-wrap {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin-top: 25px;
}

.author-wrap .desc {
    font-style: italic;
    margin-bottom: 20px;
}

.author-img {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-img img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.author-img .icon {
    width: 40px;
    height: 40px;
    background: #147069;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.name {
    margin-bottom: 5px;
    font-size: 24px;
}

.list {
    padding-left: 0;
    list-style: none;
}

.list li {
    margin-bottom: 12px;
}

.list li i {
    color: #147069;
    margin-right: 10px;
}

.c-primary-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #147069;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 20px;
}

.c-primary-btn:hover {
    color: #fff;
}

/* Tablet */
@media (max-width: 991px) {

    .why-choose-section {
        padding: 70px 0;
    }

    .who-we-content {
        padding-top: 0;
        margin-bottom: 40px;
    }

    .who-we-items {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .section-title {
        font-size: 26px;
        line-height: 1.4;
    }

    .who-we-item {
        padding: 20px;
    }

    .author-wrap {
        text-align: center;
    }

    .author-img {
        justify-content: center;
    }

    .name {
        font-size: 22px;
    }

    .list li {
        font-size: 15px;
    }

    .c-primary-btn {
        width: 100%;
        text-align: center;
    }
}

   /* Counter sectio  */
  .image-text{
    font-size: 70px;

    
  }
  .counter-section {
    padding: 60px 0;
    background: linear-gradient(
        135deg,
        #f8fffe 0%,
        #eef8f7 50%,
        #e4f4f2 100%
    );
}

.counter-section .image-text {
    text-align: center;
    margin-bottom: 40px;
    color: #147069;
}

.count-item {
    background: #fff;
    border: 1px solid #e6f2f1;
    border-radius: 12px;
    padding: 10px 12px; /* Reduced padding */
    min-height: 140px; /* Reduced height */
    text-align: center;
    box-shadow: 0 3px 12px rgba(20, 112, 105, 0.08);
    transition: all 0.3s ease;
}

.counter-items-gird{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px; /* Reduce gap between cards */
    align-items: stretch;
}

.count-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(20, 112, 105, 0.15);
}

.counter-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #147069, #1d8b82);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.num {
    font-size: 24px;   /* Reduced size */
    font-weight: 700;
    color: #147069;
    line-height: 1;
    margin-bottom: 8px;
}

.desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 767px) {
    .counter-section {
        padding: 40px 0;
    }

    .num {
        font-size: 22px;
    }

    .counter-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .count-item {
        min-height: 150px;
    }
}
  
.counter-items-gird{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media (max-width: 991px){
    .counter-items-gird{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px){
    .counter-items-gird{
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .image-text{
        font-size: 40px;
    }
}

/* Blog section */
.post-inner-card {
    border: 1px solid #466d6f;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}
.post-inner-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    border-color: #147069;
    transition: all 0.3s ease;
}

.post-inner-card:hover {
    background: #97dddd; /* Very light greenish background */
    border-color: #147069;
    box-shadow: 0 8px 25px rgba(20, 112, 105, 0.08);
    transform: translateY(-5px);
}

.post-inner-card:hover {
    border-color: #147069;
    box-shadow: 0 5px 20px rgba(20, 112, 105, 0.1);
}
/* Image Border */
.post-thumb img {
    width: 100%;
    object-fit: cover;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.post-thumb img:hover {
    border-color: #147069;
}
.title{
    margin-left: 9px;
}

/* Read More Button */
.read-more {
    display: inline-block;
    background: #147069;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 20px;
    margin-left: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: #0f5953;
    color: #fff !important;
}

.read-more i {
    margin-left: 3px;
}



/* ===== LANGUAGE SWITCH BUTTONS ===== */
.lang-switch {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999999;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Button Style */
.lang-switch button {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #ffffff;

    border: none;
    padding: 12px 16px;
    border-radius: 10px;

    cursor: pointer;
    font-size: 14px;
    font-weight: 500;

    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

/* Hover effect */
.lang-switch button:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: scale(1.05);
}

/* Active click effect */
.lang-switch button:active {
    transform: scale(0.95);
}

/* ===== HIDE GOOGLE TRANSLATE UI ===== */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

.goog-logo-link,
.goog-te-gadget span,
.goog-te-gadget-icon {
    display: none !important;
}

/* Prevent page shift caused by Google */
body {
    top: 0px !important;
    position: static !important;
}

/* Hide default Google dropdown completely */
.goog-te-gadget {
    font-size: 0 !important;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .lang-switch {
        right: 10px;
        top: auto;
        bottom: 80px;
        transform: none;
    }

    .lang-switch button {
        padding: 10px 14px;
        font-size: 13px;
    }
}