/* hero section */
.hero-section {
    height: 80vh;
    overflow: hidden;
}

.hero-section .carousel {
    height: 100%;
}

.hero-section .carousel-inner,
.hero-section .carousel-item,
.hero-section .hero-slide {
    height: 100%;
}

.hero-section .hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;

}

.hero-section .hero-image img {
    width: 100%;
    max-width: 80%;
    height: 70%;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    margin-left: 20px;
    transition: transform 0.3s ease;
}



.hero-section .hero-content {
    background-color: #ffffff;
    padding: 30px;
    text-align: left;
}

.hero-section .hero-text {
    max-width: 600px;
    margin: 0 auto;
}

.hero-section .hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.hero-section .hero-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}


.hero-section .hero-signup-btn {
    background-color: #058776;
    border-color: #058776;
    color: #ffffff;
    font-size: 1rem;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.hero-section .hero-signup-btn i {
    color: #efd80d;
    margin-right: 8px;
    font-size: 1.1rem;
}

.hero-section .hero-signup-btn:hover {
    background-color: #046b5f;
    border-color: #046b5f;
    color: #ffffff;
}

.hero-section .hero-signup-btn:active {
    transform: scale(0.95);
}

.hero-section .hero-translate-btn {
    border-color: #058776;
    color: #058776;
    background-color: #ffffff;
    font-size: 1rem;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 5px;
}


.hero-section .carousel-item {
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.hero-section .carousel-item-next,
.hero-section .carousel-item-prev,
.hero-section .carousel-item.active {
    opacity: 1;
}

.hero-section .carousel-item-left,
.hero-section .carousel-item-right {
    opacity: 0;
}

@keyframes hero-section-slideInTitle {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 7%;
    color: #0c0b0b !important;
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    background-color: #058776;
    /* color: #ad1515 !important; */
    border-radius: 50%;
    padding: 15px;
}

@media (max-width: 991.98px) {
    .hero-section {
        height: auto;
        min-height: 60vh;
        margin-top: 20px;
    }

    .hero-section .hero-slide {
        flex-direction: column;
    }

    .hero-section .hero-image,
    .hero-section .hero-content {
        width: 100%;
        height: auto;
    }

    .hero-section .hero-image {
        padding: 10px;
    }

    .hero-section .hero-image img {
        height: 40vh;
        max-width: 100%;
        margin-left: 0;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .hero-section .hero-content {
        padding: 20px;
        text-align: center;
    }

    .hero-section .hero-text {
        max-width: 100%;
    }

    .hero-section .hero-title {
        font-size: 1.8rem;
        justify-content: center;
    }

    .hero-section .hero-description {
        font-size: 1rem;
        justify-content: center;
        text-align: center;
    }

    .hero-section .hero-description i {
        font-size: 1rem;
    }

    .hero-section .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-section .hero-signup-btn,
    .hero-section .hero-translate-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-section .hero-signup-btn {
        margin-right: 0 !important;
    }

    .hero-section .hero-translate-wrapper {
        width: 100%;
        max-width: 300px;
    }

    .hero-section .hero-translate-element {
        position: static;
        width: 100%;
        margin-top: 10px;
        box-shadow: none;
        border: none;
        padding: 5px 0;
    }

    .hero-section .hero-translate-element .goog-te-combo {
        width: 100%;
        padding: 12px;
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .hero-section .hero-title {
        font-size: 1.5rem;
    }

    .hero-section .hero-description {
        font-size: 0.9rem;
    }

    .hero-section .hero-signup-btn,
    .hero-section .hero-translate-btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .hero-section .hero-image img {
        height: 30vh;
        border-radius: 6px;
    }
}

/* Hero Services Button */
.hero-section .hero-services-btn {
    border: 2px solid #058776;
    color: #058776;
    background-color: #ffffff;
    font-size: 1rem;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-section .hero-services-btn i {
    color: #058776;
    margin-right: 8px;
    font-size: 1.1rem;
}

.hero-section .hero-services-btn:hover {
    background-color: #058776;
    color: #ffffff;
    transform: scale(1.05);
}

.hero-section .hero-services-btn:hover i {
    color: #efd80d;
}

.hero-section .hero-services-btn:active {
    transform: scale(0.95);
}

/* === Buttons layout: side-by-side on large, stacked on small === */
.hero-section .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px; /* space between buttons */
}

/* Equal sizing for both buttons */
.hero-section .hero-signup-btn,
.hero-section .hero-services-btn {
    padding: 10px 20px;         /* same padding */
    font-size: 1rem;            /* same font size */
    line-height: 1;             /* ensures same height visually */
    border-radius: 5px;         /* same radius */
    min-height: 44px;           /* accessible tap target */
    min-width: 180px;           /* consistent width on desktop */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Mobile / tablet: stack + same width */
@media (max-width: 991.98px) {
    .hero-section .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-section .hero-signup-btn,
    .hero-section .hero-services-btn {
        width: 100%;
        max-width: 300px;       /* identical width on small devices */
        justify-content: center;
    }
}


/* hero */



/* story */
/* story */
.our-story-section {
    padding: 50px 0;
    background-color: #046b5f;
    overflow-x: hidden;
}

.our-story-section .container {
    max-width: 100%;
    overflow-x: hidden;
}

.our-story-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}

.our-story-section .section-title span {
    color: #058776;
    margin-left: 5px;
}



.our-story-section .story-container {
    position: relative;
    max-width: 95%;
    margin: 0 auto;
    border-radius: 150px 300px 150px 300px;
    overflow: hidden;
    height: 500px;
}

.our-story-section .carousel {
    height: 100%;
    width: 100%;
}

.our-story-section .carousel-inner,
.our-story-section .carousel-item {
    height: 100%;
    width: 100%;
}

.our-story-section .story-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoomIn 3s ease-in-out infinite;
}

.our-story-section .carousel-item.active .story-bg-image {
    animation: zoomIn 3s ease-in-out;
    /* contain: ; */
    background-size: contain;
}

.our-story-section .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(57, 24, 1, 0.774);
    z-index: 1;
}

.our-story-section .story-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    max-width: 800px;
    text-align: center;
    padding: 0 15px;
    box-sizing: border-box;
}

.our-story-section .story-text p {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Figtree', sans-serif;
    word-wrap: break-word;
}

.our-story-section .short-description {
    display: inline;
}

.our-story-section .short-description:after {
    content: '...';
}

.our-story-section .collapse.show + .know-more-btn {
    display: none;
}

.our-story-section .know-more-btn {
    display: inline-flex;
    align-items: center;
    background-color: #058776;
    color: #ffffff;
    font-size: 1rem;
    padding: 8px 010px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #058776;
    white-space: nowrap;
}

.our-story-section .know-more-btn i {
    color: #efd80d;
    font-size: 1.5rem;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.our-story-section .know-more-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.our-story-section .know-more-btn:hover {
    background-color: #046b5f;
    border-color: #046b5f;
    transform: scale(1.05);
}

.our-story-section .know-more-btn:active {
    transform: scale(0.95);
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@media (max-width: 991.98px) {
    .our-story-section {
        padding: 30px 0;
    }

    .our-story-section .section-title {
        font-size: 2rem;
    }


    .our-story-section .story-container {
        height: 600px;
    }

    .our-story-section .story-content {
        width: 90%;
    }

    .our-story-section .story-text p {
        font-size: 1.1rem;
    }

    .our-story-section .know-more-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .our-story-section .know-more-btn i {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .our-story-section .section-title {
        font-size: 1.8rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .our-story-section .section-title i {
        font-size: 1.8rem;
    }

    .our-story-section .story-container {
        height: 500px;
        border-radius: 10px;
    }

    .our-story-section .story-text p {
        font-size: 1rem;
    }

    .our-story-section .know-more-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .our-story-section .know-more-btn i {
        font-size: 1.2rem;
        margin-right: 8px;
    }
}
/* story */

/* WHY AKAGERA – Polished Cards */
.why-akagera-section{
    --brand: #058776;
    --brand-2: #874b05;
    --accent: #efd80d;
    --ink: #0b1220;
    --muted: #6b7280;
    --card-bg: #ffffff;
  
    padding: 72px 0;
    background: #ffffff;
  }
  
  .why-akagera-section .container{ max-width: 1200px; margin:0 auto; padding:0 16px; }
  
  .why-akagera-section .section-title{
    display:flex; align-items:center; justify-content:center; gap:10px;
    font-size: 2rem;
    letter-spacing:.2px;
    /* Remove jitter for a professional look */
  }
  .why-akagera-section .section-title i{ color: var(--accent); }
  .why-akagera-section .section-title span{
    color: var(--brand);
    position: relative;
  }

  
  /* Card shell */
  .why-akagera-section .why-card{
    height: 100%;
    opacity: 0; transform: translateY(22px);
    animation: wa-fadeUp .6s ease forwards;
  }
  .why-akagera-section .row > div:nth-child(1) .why-card{ animation-delay: .05s; }
  .why-akagera-section .row > div:nth-child(2) .why-card{ animation-delay: .12s; }
  .why-akagera-section .row > div:nth-child(3) .why-card{ animation-delay: .18s; }
  
  .why-akagera-section .card-content-wrapper{
    display:flex; flex-direction:column; height:100%;
    background: var(--card-bg);
    overflow: hidden;
    border: 1px solid rgba(5,135,118,.10);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .why-akagera-section .why-card:hover .card-content-wrapper{
    transform: translateY(-4px);
    border-color: rgba(5,135,118,.30);
  }
  
  /* Media */
  .why-akagera-section .card-image{
    position: relative; height: 190px; background:#f8fafc;
  }
  .why-akagera-section .card-image img{
    width:100%; height:100%; object-fit:contain; display:block;
  }
  
  /* Icon badge */
  .why-akagera-section .card-icon{
    position:absolute; top:14px; left:14px;
    display:grid; place-items:center;
    width:42px; height:42px; border-radius:50%;
    background: rgba(0,0,0,.55);
    color: var(--accent); font-size:1.3rem;
    box-shadow: 0 6px 14px rgba(0,0,0,.25);
    transition: transform .45s ease;
  }
  .why-akagera-section .why-card:hover .card-icon{ transform: rotate(360deg); }
  
  /* Body */
  .why-akagera-section .card-content{
    padding: 20px 18px 18px;
    display:flex; flex-direction:column; flex:1 1 auto;
    text-align:center;
  }
  .why-akagera-section .card-title{
    margin: 6px 0 8px;
    font-size: clamp(1rem, 1rem + .4vw, 1.35rem);
    font-weight: 700; color: var(--ink);
    letter-spacing:.2px;
  }
  .why-akagera-section .card-text{
    color: var(--muted);
    font-size: .98rem; line-height: 1.65;
    margin: 0 0 14px; flex: 1 1 auto;
  }
  .why-akagera-section .card-text .collapse:not(.show){ display:none; }
  
  /* Read more button */
  .why-akagera-section .read-more-btn{
    align-self:center; margin-top:auto;
    display:inline-flex; align-items:center; gap:8px;
    background: var(--brand); color:#fff;
    font-weight:600; font-size:.92rem;
    padding: 9px 16px;
    border-radius: 05px;
    text-decoration:none; border: 1px solid var(--brand);
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  }
  .why-akagera-section .read-more-btn i{ font-size:1.2rem; color: var(--accent); transition: transform .25s ease; }
  .why-akagera-section .read-more-btn:hover{
    transform: translateY(-1px);
    background:#047a6c; border-color:#047a6c;
    box-shadow: 0 8px 18px rgba(5,135,118,.25);
  }
  .why-akagera-section .read-more-btn:active{ transform: translateY(0) scale(.98); }
  .why-akagera-section .read-more-btn[aria-expanded="true"] i{ transform: rotate(180deg); }
  
  /* Animations */
  @keyframes wa-fadeUp{
    from{ opacity:0; transform: translateY(22px); }
    to{ opacity:1; transform:none; }
  }
  
  /* Responsive */
  @media (max-width: 991.98px){
    .why-akagera-section{ padding: 56px 0; }
    .why-akagera-section .card-image{ height: 180px; }
  }
  @media (max-width: 576px){
    .why-akagera-section .section-title{ font-size: 1.9rem; }
    .why-akagera-section .card-image{ height: 160px; }
    .why-akagera-section .read-more-btn{ font-size:.88rem; padding:8px 14px; }
  }
  
  /* Reduced motion */
  @media (prefers-reduced-motion: reduce){
    .why-akagera-section .why-card{ animation: none; opacity:1; transform:none; }
    .why-akagera-section .card-content-wrapper{ transition: none; }
    .why-akagera-section .card-icon{ transition: none; }
  }
  


/* team */
.our-team-section {
    padding: 60px 0;
    background-color: #874b05;
    overflow-x: hidden;
}

.our-team-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.our-team-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-team-section .section-title span {
    color: #058776;
    margin-left: 5px;
}

.our-team-section .section-title i {
    color: #efd80d;
    margin-right: 10px;
    font-size: 2rem;
}

.our-team-section .section-description {
    text-align: center;
    font-size: 1rem;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.our-team-section .team-card {
    background-color: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}



.our-team-section .team-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.our-team-section .team-image-carousel {
    position: relative;
    height: 100%;
    width: 100%;
}

.our-team-section .team-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    object-fit: contain;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    animation: zoomInOut 8s infinite;
}

.our-team-section .team-image.active {
    opacity: 1;
    animation: zoomInOut 8s infinite;
}

.our-team-section .team-image:nth-child(2) {
    animation-delay: 4s;
}

.our-team-section .team-icon-label {
    position: absolute;
    top: 15pxVotes;
    left: 15px;
    padding: 5px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    z-index: 3;
}

.our-team-section .team-icon-label i {
    color: #efd80d;
    margin-right: 5px;
    font-size: 1.2rem;
}

.our-team-section .team-icon-label span {
    font-size: 0.5rem;
    color: rgb(13, 13, 13);
}

.our-team-section .team-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.our-team-section .team-name {
    font-size: 1.2rem;
    color: #000000;
    font-weight: bold;
    margin-bottom: 5px;
}

.our-team-section .team-position {
    font-size: 1rem;
    color: #058776;
    margin-bottom: 15px;
    font-weight: 600;
}

.our-team-section .team-description {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.our-team-section .read-more-btn {
    display: inline-flex;
    align-items: center;
    background-color: #058776;
    color: #ffffff;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #058776;
    align-self: flex-start;
    margin-top: auto;
}

.our-team-section .read-more-btn i {
    color: #efd80d;
    font-size: 1.2rem;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.our-team-section .read-more-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.our-team-section .read-more-btn:hover {
    background-color: #046b5f;
    border-color: #046b5f;
    transform: scale(1.05);
}

/* Carousel navigation buttons */
.our-team-section .carousel-prev,
.our-team-section .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.our-team-section .carousel-prev {
    left: 10px;
}

.our-team-section .carousel-next {
    right: 10px;
}

.our-team-section .carousel-prev:hover,
.our-team-section .carousel-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.our-team-section .carousel-prev i,
.our-team-section .carousel-next i {
    color: #efd80d;
}


@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .our-team-section {
        padding: 40px 0;
    }
    
    .our-team-section .section-title {
        font-size: 2rem;
    }
    
    .our-team-section .section-title i {
        font-size: 1.8rem;
    }
    
    .our-team-section .section-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .our-team-section .team-image-container {
        height: 220px;
    }
    
    .our-team-section .carousel-prev,
    .our-team-section .carousel-next {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .our-team-section .team-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .our-team-section .section-title {
        font-size: 1.8rem;
        flex-wrap: wrap;
        text-align: center;
    }
    

    
    .our-team-section .section-description {
        font-size: 1rem;
    }
    
    .our-team-section .team-name {
        font-size: 1.3rem;
    }
    
    .our-team-section .team-description {
        font-size: 0.9rem;
    }
    
    .our-team-section .read-more-btn {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .our-team-section .carousel-prev,
    .our-team-section .carousel-next {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
}
/* team */


/* uniqueness */
/* our uniqueness */
.our-uniqueness-section {
    padding: 50px 0;
    background-color: #874b05;
    overflow-x: hidden;
}

.our-uniqueness-section .container {
    max-width: 100%;
    overflow-x: hidden;
}

.our-uniqueness-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.our-uniqueness-section .section-title span {
    color: #058776;
    margin-left: 5px;
}

.our-uniqueness-section .section-title i {
    color: #efd80d;
    margin-right: 10px;
    font-size: 2rem;
}

.our-uniqueness-section .uniqueness-container {
    position: relative;
    max-width: 95%;
    /* border: 2px solid #ffffff; */
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
}

.our-uniqueness-section .carousel {
    height: 100%;
    width: 100%;
}

.our-uniqueness-section .carousel-inner,
.our-uniqueness-section .carousel-item {
    height: 100%;
    width: 100%;
}

.our-uniqueness-section .uniqueness-bg-image {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    animation: zoomIn 3s ease-in-out infinite;
}

.our-uniqueness-section .carousel-item.active .uniqueness-bg-image {
    animation: zoomIn 3s ease-in-out;
}

.our-uniqueness-section .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 17, 0, 0.5);
    z-index: 1;
}

.our-uniqueness-section .uniqueness-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    max-width: 800px;
    text-align: center;
    padding: 0 15px;
    box-sizing: border-box;
}

.our-uniqueness-section .uniqueness-text p {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Figtree', sans-serif;
    word-wrap: break-word;
}

.our-uniqueness-section .know-more-btn {
    display: inline-flex;
    align-items: center;
    background-color: #058776;
    color: #ffffff;
    font-size: 1rem;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #058776;
    white-space: nowrap;
}

.our-uniqueness-section .know-more-btn i {
    color: #efd80d;
    font-size: 1.5rem;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.our-uniqueness-section .know-more-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.our-uniqueness-section .know-more-btn:hover {
    background-color: #046b5f;
    border-color: #046b5f;
    transform: scale(1.05);
}

.our-uniqueness-section .know-more-btn:active {
    transform: scale(0.95);
}



@media (max-width: 991.98px) {
    .our-uniqueness-section {
        padding: 30px 0;
    }

    .our-uniqueness-section .section-title {
        font-size: 2rem;
    }

    .our-uniqueness-section .section-title i {
        font-size: 1.5rem;
    }

    .our-uniqueness-section .uniqueness-container {
        height: 600px;
    }

    .our-uniqueness-section .uniqueness-content {
        width: 90%;
    }

    .our-uniqueness-section .uniqueness-text p {
        font-size: 1.1rem;
    }

    .our-uniqueness-section .know-more-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .our-uniqueness-section .know-more-btn i {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .our-uniqueness-section .section-title {
        font-size: 1.8rem;
        white-space: normal;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }


    .our-uniqueness-section .uniqueness-container {
        height: 500px;
        border-radius: 10px;
    }

    .our-uniqueness-section .uniqueness-text p {
        font-size: 1rem;
    }

    .our-uniqueness-section .know-more-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .our-uniqueness-section .know-more-btn i {
        font-size: 1.2rem;
        margin-right: 8px;
    }
}

/* uniqueness */

.our-partners-section {
    padding: 70px 0;
    background: #874b05;
    border-top: 1px solid #874b05;
    border-bottom: 2px solid #874b05;
    overflow-x: clip;
  }
  
  .our-partners-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }
  
  .our-partners-section .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2e2e2e;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    letter-spacing: .2px;
  }
  .our-partners-section .section-title i { color: #efd80d; }

  .our-partners-section .section-title span::after {
    content: "";
    position: absolute;
    left: 0; bottom: -6px;
    width: 100%; height: 3px; border-radius: 2px;
    background: linear-gradient(90deg,#058776, #57b5a9);
  }
  
  .our-partners-section .section-description {
    text-align: center;
    font-size: 1rem;
    color: #ffffff;
    max-width: 760px;
    margin: 0 auto 36px;
    line-height: 1.65;
  }
  
  /* Swiper */
.partners-swiper {
  padding: 8px 0 36px;
  width: 100%;
  position: relative;
  /* Ensure no extra space affecting centering */
  box-sizing: border-box;
}
  
  /* Slide / Card */
  .swiper-slide {
    width: auto; /* enables smooth continuous motion with flexible cards */
  }
  
  .partner-card {
    --size: clamp(120px, 18vw, 160px);
    width: var(--size);
    height: var(--size);
    background: #fff;
    display: grid;
    place-items: center;
    position: relative;
    text-decoration: none;
    /* box-shadow: 0 2px 16px rgba(0,0,0,.06); */
    transition: transform .25s ease, box-shadow .25s ease;
    border: 1px solid rgba(5,135,118,.12);
    overflow: hidden;
  }
  
  .partner-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* filter: grayscale(100%) contrast(1.05); */
    transition: filter .25s ease, transform .25s ease, opacity .25s ease;
    opacity: .95;
  }
  
  .partner-visit {
    position: absolute;
    right: 10px; bottom: 10px;
    font-size: .85rem;
    font-weight: 600;
    color: #874b05;
    background: rgba(242,247,0,.18);
    padding: 6px 10px;
    border-radius: 8px;
    display: inline-flex; align-items: center; gap: 6px;
    opacity: 0; transform: translateY(6px);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
  }
  
  .partner-card:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 24px rgba(0,0,0,.10);
  }
  .partner-card:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.03);
  }
  .partner-card:hover .partner-visit {
    opacity: 1; transform: translateY(0);
  }
  
  /* Swiper controls */
  .swiper-button-next,
  .swiper-button-prev {
    color: #058776;
    background: rgba(255,255,255,.95);
    width: 40px; height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,.10);
    transition: transform .2s ease, background .2s ease, color .2s ease;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 1.1rem; font-weight: 700;
  }
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: #058776; color: #fff; transform: scale(1.08);
  }
  
  /* Pagination */
  .swiper-pagination-bullet {
    background-color: #cfd8dc;
    opacity: 1;
    width: 8px; height: 8px;
    transition: transform .2s ease, background-color .2s ease;
  }
  .swiper-pagination-bullet-active {
    background-color: #058776;
    transform: scale(1.25);
  }
  
  /* Responsive tweaks */
  @media (max-width: 991.98px) {
    .our-partners-section { padding: 56px 0; }
    .partner-card { --size: clamp(110px, 22vw, 150px); }
  }
  @media (max-width: 767.98px) {
    .partner-card { --size: clamp(100px, 28vw, 140px); }
    .swiper-button-next, .swiper-button-prev { width: 32px; height: 32px; }
  }
  @media (max-width: 575.98px) {
    .our-partners-section { padding: 44px 0; }
    .section-description { font-size: .98rem; }
    .swiper-pagination-bullet { width: 6px; height: 6px; }
  }

  .partners-swiper {
  padding: 8px 0 36px;
  width: 100%;
  position: relative;
  /* Ensure no extra space affecting centering */
  box-sizing: border-box;
  }
  /* /OUR PARTNERS */

  
  

/* contact */
/* Contact Widget */
.contact-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 15px;
}

/* Toggle Button */
.contact-toggle {
    width: 50px;
    height:50px;
    border-radius: 50%;
    background-color: #058776;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-toggle i {
    font-size: 25px;
    transition: transform 0.3s ease;
}

.contact-toggle:hover {
    background-color: #046b5f;
    transform: scale(1.1);
}

/* Contact Options */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* Active State for Widget */
.contact-widget.active .contact-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-widget.active .contact-toggle i {
    transform: rotate(45deg);
}

/* Individual Contact Options */
.contact-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    color: #058776;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    border: none; /* Reset for button elements */
    cursor: pointer;
}

.contact-option i {
    font-size: 24px;
}

.contact-option:hover {
    transform: scale(1.15) translateY(-5px);
    color: white;
}

/* --- UPDATED COLORS --- */
.contact-option:nth-child(1):hover { background-color: #D44638; } /* Email (Red) */
.contact-option:nth-child(2):hover { background-color: #25D366; } /* WhatsApp (Green) */
.contact-option:nth-child(3):hover { background-color: #007bff; } /* Call (Blue) - NEW */
.contact-option:nth-child(4):hover { background-color: #efd80d; color: #333; } /* Chat (Yellow) */

/* Tooltip */
.contact-option::after {
    content: attr(title);
    position: absolute;
    right: 60px;
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.contact-option:hover::after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .contact-toggle {
        width: 50px;
        height: 50px;
    }
    
    .contact-option {
        width: 45px;
        height: 45px;
    }
    
    .contact-option i {
        font-size: 20px;
    }
}
/* contact */


/* services */
.services-exploration-section {
    position: relative;
    padding: 100px 0;
    /* background-color: #058776;/ */
    overflow: hidden;
}

.services-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: blur(5px);
    z-index: 0;
}

.services-section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.services-exploration-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-exploration-section .section-title span {
    margin-left: 5px;
}

.services-section-header p {
    font-size: 1rem;
    color: #726b6b;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


.services-filter-bar {
    padding: 20px;
    border-radius: none;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.services-search-box {
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
}

.services-search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    font-size: 1rem;
    z-index: 2;
}

.services-search-box input {
    width: 100%;
    height: 50px;
    padding: 0 15px 0 40px;
    border: 1px solid #ddd;
    border-radius: 0px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.services-search-box input:focus {
    border-color: #058776;
    box-shadow: 0 0 0 3px rgba(5, 135, 118, 0.2);
    outline: none;
}

.services-form-select {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #ddd;
    /* border-radius: 5px; */
    font-size: 0.95rem;
    background-color: white;
    transition: all 0.3s ease;
}

.services-form-select:focus {
    border-color: #058776;
    box-shadow: 0 0 0 3px rgba(5, 135, 118, 0.2);
    outline: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(550px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: white;
    /* border-radius: 10px; */
    overflow: hidden;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.service-images {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.service-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease, transform 10s ease;
    will-change: transform;
}

.service-image.active {
    opacity: 1;
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #058776;
    color: white;
    padding: 5px 15px;
    /* border-radius: 20px; */
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    text-transform: capitalize;
}

.service-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s ease;
}

.service-nav-btn:hover {
    background: rgba(5, 135, 118, 0.8);
}

.service-prev-btn {
    left: 10px;
}

.service-next-btn {
    right: 10px;
}

.service-nav-btn i {
    font-size: 1rem;
}

.service-content {
    padding: 25px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #222;
    font-weight: 600;
}

.service-category {
    display: inline-block;
    background-color: #f0f0f0;
    color: #058776;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    transition: all 0.3s ease;
    display: -webkit-box;
    /* -webkit-line-clamp: 3; */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* .service-card.expanded .service-description {
    -webkit-line-clamp: unset;
} */

.services-read-more {
    color: #058776;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.services-read-more:hover {
    text-decoration: underline;
}

.service-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.get-served-btn {
    display: inline-flex;
    align-items: center;
    background-color: #058776;
    color: #ffffff;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #058776;
}

.get-served-btn i {
    color: #efd80d;
    font-size: 1.2rem;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.get-served-btn:hover {
    background-color: #046b5f;
    border-color: #046b5f;
    transform: scale(1.05);
}

.get-served-btn:hover i {
    transform: translateX(3px);
}



/* Animation delays for cards */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive adjustments */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .services-filter-bar .row > div {
        margin-bottom: 15px;
    }
    
    .service-images {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .services-exploration-section {
        padding: 70px 0;
    }
    

    
    .services-section-header p {
        font-size: 1rem;
    }
    
    .services-filter-bar {
        padding: 20px;
    }
    
    .services-search-box input,
    .services-form-select {
        padding: 0 15px 0 40px;
    }
    
    .service-card {
        max-width: 400px;
    }
    
    .service-nav-btn {
        padding: 8px;
    }
    
    .service-nav-btn i {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-images {
        height: 250px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-nav-btn {
        padding: 6px;
    }
    
    .service-nav-btn i {
        font-size: 0.8rem;
    }
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* services */


/* about */
.about-us-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.about-us-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-us-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #874b05;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-section .section-title span {
    color: #058776;
    margin-left: 5px;
}


.section-description {
    text-align: center;
    font-size: 1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.about-card {
    background-color: white;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 30px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.about-card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #058776;
    color: #ffe600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 3;
    transition: all 0.3s ease;
}

.about-card-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.about-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: -webkit-box;
    /* -webkit-line-clamp: 4; */
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.about-read-more-content {
    display: none;
}

/* .about-card.expanded .about-card-description {
    -webkit-line-clamp: unset;
} */

.about-card.expanded .about-read-more-content {
    display: block;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ddd;
}

.about-read-more {
    color: #058776;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    margin-top: auto;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.about-read-more:hover {
    color: #046b5f;
    text-decoration: underline;
}

.about-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 135, 118, 0.9) 0%, rgba(255, 230, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-card:hover .about-card-overlay {
    opacity: 1;
}

.about-card:hover .about-card-icon {
    transform: rotate(15deg) scale(1.1);
    background-color: #ffe600;
    color: #058776;
}

.about-card:hover h3,
.about-card:hover .about-card-description,
.about-card:hover .about-read-more {
    color: white;
}

/* Animation for cards */
.about-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.about-card:nth-child(1) { animation-delay: 0.1s; }
.about-card:nth-child(2) { animation-delay: 0.3s; }
.about-card:nth-child(3) { animation-delay: 0.5s; }



/* Responsive adjustments */
@media (max-width: 992px) {
    .about-us-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .about-grid {
        gap: 20px;
    }
    
    .about-card {
        padding: 25px;
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .about-us-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .about-card {
        padding: 20px;
        min-height: 300px;
    }
    
    .about-card h3 {
        font-size: 1.3rem;
    }
    
    .about-card-description {
        font-size: 0.95rem;
    }
}
/* about */

/* akagera-contact */
/* Scoped Styles for Contact Section */
.contact-us-section {
    background-color: #874b05;
    position: relative;
    /* Optional: Add a subtle pattern overlay if desired */
}

/* Typography */
.contact-us-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    display: inline-block;
}

.contact-us-section .section-title span {
    color: #efd80d; /* Yellow highlight matches your icon usage */
}

.contact-us-section .section-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 10px auto 0;
}

/* Cards Common Styles */
.contact-us-section .info-card,
.contact-us-section .newsletter-card,
.contact-us-section .message-card {
    background-color: #ffffff;
    border: none;
    border-radius: 5px !important;
    transition: transform 0.3s ease;
}


/* Contact Info Items */
.contact-us-section .icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(5, 135, 118, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-us-section .icon-box i {
    font-size: 1rem;
    color: #058776;
}

.contact-us-section .contact-item h5 {
    font-size: 1rem;
    font-weight: 600;
}

.contact-us-section .contact-item a:hover {
    color: #058776 !important;
}

/* Social Icons */
.contact-us-section .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
    color: #058776;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-us-section .social-link:hover {
    background-color: #058776;
    color: #fff;
    transform: translateY(-3px);
}

/* Forms & Inputs */
.contact-us-section .form-control {
    border: 1px solid #e0e0e0;
    padding: 10px 15px;
    border-radius: 1px;
}

.contact-us-section .form-control:focus {
    border-color: #058776;
    box-shadow: 0 0 0 4px rgba(5, 135, 118, 0.1);
}

/* Floating labels adjustment */
.contact-us-section .form-floating > .form-control:focus ~ label,
.contact-us-section .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #058776;
    opacity: 0.8;
}

/* Buttons */
.contact-us-section .btn-primary {
    background-color: #058776;
    border-color: #058776;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 5px !important;
}

.contact-us-section .btn-primary:hover {
    background-color: #046b5f;
    border-color: #046b5f;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    /* On tablets and smaller, the cards will stack naturally due to bootstrap col classes.
       We just add a little spacing margin if needed */
    .contact-us-section .map-container {
        height: 300px !important; 
    }
}

@media (max-width: 576px) {
    .contact-us-section .section-title {
        font-size: 2rem;
    }
    
    .contact-us-section .newsletter-card, 
    .contact-us-section .message-card {
        padding: 1.5rem !important;
    }
}
/* akagera-contact */


/* involved */
.get-involved-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.get-involved-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.get-involved-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #874b05;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: contact-title-animation 4s ease-in-out infinite;
}

.get-involved-section .section-title span {
    color: #058776;
    margin-left: 5px;
}



.get-involved-section .section-description {
    text-align: center;
    font-size: 1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
    animation: fadeIn 1s ease-in-out 0.2s forwards;
    opacity: 0;
}

.get-involved-section .involvement-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(650px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.get-involved-section .involvement-card {
    background: white;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    /* animation: fadeIn 1s ease-in-out 1s forwards; */
    opacity: 1;
}




.get-involved-section .card-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.get-involved-section .card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.get-involved-section .card-icon-label {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    background-color: #058776;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2); */
}



.get-involved-section .card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.get-involved-section .card-title {
    font-size: 1.5rem;
    color: #874b05;
    margin-bottom: 15px;
    font-weight: 600;
}

.get-involved-section .card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.get-involved-section .card-description p {
    margin-bottom: 0;
}

.get-involved-section .read-more-btn {
    color: #058776;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
    cursor: pointer;
}

.get-involved-section .read-more-btn:hover {
    color: #046b5f;
}

.get-involved-section .read-more-btn.collapsed .expanded-state,
.get-involved-section .read-more-btn:not(.collapsed) .collapsed-state {
    display: none;
}

/* Translate Button Style for Get Involved Link */
.get-involved-section .translate-btn {
    font-size: 14px;
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid #058776;
    color: #058776;
    background-color: #ffffff;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    width: fit-content;
    animation: slideIn 0.5s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .get-involved-section .involvement-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .get-involved-section .section-title {
        font-size: 2rem;
    }
    
    .get-involved-section .section-description {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .get-involved-section .card-img-container {
        height: 180px;
    }
    
    .get-involved-section .card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .get-involved-section .section-title {
        font-size: 1.8rem;
    }
    
    .get-involved-section .section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .get-involved-section .involvement-cards {
        grid-template-columns: 1fr;
    }
    
    .get-involved-section .card-content {
        padding: 20px;
    }
}
/* involved */


/* service-faq */
.services-faqs-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

.services-faqs-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.services-faqs-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #874b05;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services-faqs-section .section-title span {
    color: #058776;
    margin-left: 5px;
}


.services-faqs-section .section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.services-faqs-section .faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.services-faqs-section .faq-card {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid #058776;

}

.services-faqs-section .faq-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.services-faqs-section .faq-header {
    background-color: #f8f9fa;
}

.services-faqs-section .faq-btn {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.services-faqs-section .faq-btn:focus {
    outline: none;
    box-shadow: none;
}

.services-faqs-section .faq-btn:hover {
    background-color: rgba(5, 135, 118, 0.05);
}

.services-faqs-section .faq-btn .faq-icon {
    width: 40px;
    height: 40px;
    background-color: #058776;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.services-faqs-section .faq-btn .faq-icon i {
    color: white;
    font-size: 1.2rem;
}

.services-faqs-section .faq-btn span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    flex-grow: 1;
    text-align: left;
}

.services-faqs-section .faq-btn .arrow {
    font-size: 1.5rem;
    color: #058776;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.services-faqs-section .faq-btn:not(.collapsed) .arrow {
    transform: rotate(180deg);
    color: #874b05;
}

.services-faqs-section .faq-body {
    padding: 25px;
    display: flex;
    background-color: white;
}

.services-faqs-section .faq-answer-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(5, 135, 118, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.services-faqs-section .faq-answer-icon i {
    color: #058776;
    font-size: 1.2rem;
}

.services-faqs-section .faq-body p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Collapse Animation */
.services-faqs-section .collapse {
    transition: all 0.3s ease;
}

.services-faqs-section .collapsing {
    transition: height 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-faqs-section .section-title {
        font-size: 2rem;
    }
    
    .services-faqs-section .section-description {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .services-faqs-section .faq-btn {
        padding: 15px 20px;
    }
    
    .services-faqs-section .faq-btn span {
        font-size: 1rem;
    }
    
    .services-faqs-section .faq-body {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .services-faqs-section .section-title {
        font-size: 1.8rem;
    }
    
    .services-faqs-section .section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .services-faqs-section .faq-btn {
        padding: 15px;
    }
    
    .services-faqs-section .faq-btn .faq-icon {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
    
    .services-faqs-section .faq-answer-icon {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
    
    .services-faqs-section .faq-body {
        padding: 15px;
    }
}
/* service-faq */


/* Blog Styles - Professional Refinement with System Colors */
/* Main system: #874b05 */
/* Buttons and hoverings: #058776 */
/* Icons only: #ffe600 */
.blog-exploration-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    min-height: 100vh;
}

.blog-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    /* filter: blur(3px) brightness(0.6); */
    z-index: 0;
}

.blog-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ffffff, #ffe600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.section-title span {
    background: linear-gradient(45deg, #ffe600, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title i {
    color: #ffe600;
    margin-right: 12px;
    font-size: 2.8rem;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.blog-section-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 300;
}

.blog-section-icon {
    font-size: 1.1em;
    color: #ffe600;
}

.blog-filter-bar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.blog-filter-bar:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.blog-search-box {
    position: relative;
    height: 52px;
    display: flex;
    align-items: center;
}

.blog-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffe600;
    font-size: 1.1rem;
    z-index: 2;
    transition: color 0.3s ease;
}

.blog-search-box input:focus + .blog-search-icon {
    color: #058776;
}

.blog-search-box input {
    width: 100%;
    height: 52px;
    padding: 0 18px 0 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    transition: all 0.3s ease;
}

.blog-search-box input::placeholder {
    color: #999;
}

.blog-search-box input:focus {
    border-color: #058776;
    box-shadow: 0 0 0 0.2rem rgba(5, 135, 118, 0.25);
    background: #ffffff;
    outline: none;
}

.blog-form-select {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-form-select:focus {
    border-color: #058776;
    box-shadow: 0 0 0 0.2rem rgba(5, 135, 118, 0.25);
    background: #ffffff;
    outline: none;
}

.btn-filter-icon {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffe600;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-filter-icon:hover {
    background: #058776;
    border-color: #058776;
    color: #ffffff;
    transform: scale(1.05);
}

.btn-filter-icon i {
    font-size: 1.2rem;
}







/* ===========================
   Blog Section Layout & Background
   =========================== */

.blog-exploration-section {
    position: relative;
    padding: 10rem 0;
    color: #fff;
    overflow: hidden;
}


/* Dark overlay for readability */
.blog-exploration-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:#046b5f;
    z-index: 1;
}

/* Container */
.blog-exploration-section .container {
    position: relative;
    z-index: 2;
    width: 95%;
    max-width: 900px;
    margin: 0 auto;
}

/* 80% width on very large screens */
@media (min-width: 1200px) {
    .blog-exploration-section .container {
        width: 80%;
    }
}

/* Header */
.blog-section-header {
    text-align: center;
    margin-bottom: 2rem;
    color: #e5e7eb;
}

.blog-section-header .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #f9fafb;
}

.blog-section-header .section-title span {
    color: #22c55e;
}

.blog-section-header .section-title i {
    vertical-align: middle;
    margin-right: 0.5rem;
    font-size: 1.8rem;
    color: #22c55e;
}

/* ===========================
   Filter Bar
   =========================== */

.blog-filter-bar {
    background: rgba(7, 7, 7, 0.7);
    border-radius: 5px;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.25);
    margin-bottom: 2rem;
}

.blog-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #0f172a;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding: 0 1rem;
}

.blog-search-box input {
    width: 100%;
    border: none;
    background: transparent;
    color: #e5e7eb;
    padding: 0.65rem 0.25rem;
    font-size: 0.95rem;
    outline: none;
}

.blog-search-box input::placeholder {
    color: #9ca3af;
}

.blog-search-icon {
    color: #9ca3af;
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

/* Custom select */
.blog-form-select {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background-color: #0f172a;
    color: #e5e7eb;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #9ca3af 50%),
                      linear-gradient(135deg, #9ca3af 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px),
                         calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.blog-form-select:focus {
    outline: none;
    border-color: #22c55e;
}

.btn-filter-icon {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: #111827;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-filter-icon:hover {
    background: #22c55e;
    border-color: #22c55e;
    color: #0f172a;
}

/* ===========================
   Feed Layout (one per row)
   =========================== */

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Card = post */
.blog-card {
    background: #020617;
    /* border-radius: 10px; */
    overflow: hidden;
    border: 2px solid rgba(51, 65, 85, 0.7);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    opacity: 0;
    transform: translateY(10px);
}

/* Animated in via JS */
.blog-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 1);
    border-color: rgba(34, 197, 94, 0.9);
}

/* ===========================
   Post Header (like FB)
   =========================== */

.blog-topbar {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.1rem 0.5rem;
    gap: 0.75rem;
}

.blog-avatar {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: radial-gradient(circle at top left, #22c55e, #047857);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ecfdf5;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.blog-topbar-meta {
    flex: 1;
    min-width: 0;
}

.blog-topbar-title {
    color: #e5e7eb;
    font-weight: 600;
    font-size: 0.98rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-topbar-sub {
    margin-top: 2px;
    font-size: 0.75rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.blog-topbar-category {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.blog-topbar-dot {
    opacity: 0.9;
}

.blog-topbar-time i {
    font-size: 0.8rem;
    margin-right: 2px;
}

.blog-more-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.blog-more-link:hover {
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
}

/* ===========================
   Post Text
   =========================== */

.blog-text {
    padding: 0 1.1rem 0.8rem;
}

.blog-description {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 0.93rem;
}

.blog-read-more {
    color: #4ade80;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.82rem;
    padding: 0;
    margin-top: 0.2rem;
    transition: color 0.2s ease;
}

.blog-read-more:hover {
    color: #22c55e;
}

/* ===========================
   Images (post media)
   =========================== */

.blog-images {
    position: relative;
    max-height: 360px;
    overflow: hidden;
    background: radial-gradient(circle at top, #1f2937, #020617);
}

.blog-image {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.blog-image.active {
    opacity: 1;
}

/* Category badge on image */
.blog-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.92);
    color: #e5e7eb;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(148, 163, 184, 0.7);
}

/* Slider navigation */
.blog-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.8);
    color: #e5e7eb;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    cursor: pointer;
    z-index: 4;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-nav-btn:hover {
    background: #22c55e;
    color: #020617;
    transform: translateY(-50%) scale(1.05);
}

.blog-prev-btn { left: 10px; }
.blog-next-btn { right: 10px; }

.blog-nav-btn i {
    font-size: 0.9rem;
}

/* ===========================
   Stats Row
   =========================== */

.blog-stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1.1rem 0.4rem;
    border-bottom: 1px solid rgba(31, 41, 55, 0.9);
    color: #9ca3af;
    font-size: 0.78rem;
}

.blog-stats-left,
.blog-stats-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.blog-stat i.bxs-heart {
    color: #fb7185;
    font-size: 0.9rem;
}

/* ===========================
   Actions Row (Like / Comment / Share)
   =========================== */

.blog-actions-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.45rem 1.1rem 0.35rem;
    border-bottom: 1px solid rgba(31, 41, 55, 0.9);
    gap: 0.5rem;
}

.blog-action-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #e5e7eb;
    font-size: 1rem;
    padding: 0.4rem 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    text-decoration: none;
}

.blog-action-btn i {
    font-size: 1rem;
}

/* hover-like effects */
.blog-action-btn:hover {
    background: rgba(15, 23, 42, 0.9);
}

/* ===========================
   Comments Area
   =========================== */

.blog-comments-wrap {
    padding: 0.8rem 1.1rem 1rem;
    background: #020617;
}

/* Comments list */
.blog-comments-list {
    max-height: 220px;
    overflow-y: auto;
    padding-right: 0.3rem;
    margin-bottom: 0.55rem;
}

.blog-no-comments {
    padding: 0.2rem 0;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Single comment layout */
.blog-comment-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding-bottom: 0.45rem;
    margin-bottom: 0.45rem;
    border-bottom: 1px dashed rgba(31, 41, 55, 0.9);
}

.blog-comment-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Avatar letter (M) */
.blog-comment-avatar-letter {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: radial-gradient(circle at top left, #22c55e, #047857);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ecfdf5;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Name + time meta */
.blog-comment-body {
    flex: 1;
}

.blog-comment-meta {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 2px;
}

.blog-comment-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e7eb;
}

.blog-comment-dot {
    font-size: 0.75rem;
    color: #6b7280;
}

.blog-comment-time {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Text */
.blog-comment-text {
    font-size: 0.85rem;
    color: #d1d5db;
    line-height: 1.5;
}

/* Comment input row */
.blog-comment-input-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.blog-comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #0b1120;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    flex-shrink: 0;
}

.blog-comment-avatar i {
    font-size: 1rem;
}

.blog-comment-fields {
    flex: 1;
}

/* Form controls */
.blog-comment-form .form-control-sm {
    background-color: #020617;
    border: 1px solid rgba(31, 41, 55, 0.9);
    color: #e5e7eb;
    font-size: 0.8rem;
    padding: 10px 12px;
}

.blog-comment-form .form-control-sm::placeholder {
    color: #6b7280;
}

.blog-comment-form .form-control-sm:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.35);
    background-color: #020617;
}

.blog-comment-form .btn-primary {
    font-size: 0.8rem;
    padding: 0.35rem 0.8rem;
    border-radius: 10px;
    background-color: #046b5f;
}

/* ===========================
   Card Footer
   =========================== */

.blog-footer {
    padding: 0.4rem 1.1rem 0.7rem;
    font-size: 0.75rem;
    color: #6b7280;
    border-top: 1px solid rgba(15, 23, 42, 0.9);
}

.blog-footer-link {
    color: #9ca3af;
    text-decoration: none;
}

.blog-footer-link:hover {
    color: #e5e7eb;
}

/* ===========================
   Pagination
   =========================== */

.blog-pagination {
    margin-top: 3rem;
}

.blog-pagination .pagination {
    justify-content: center;
}

.blog-pagination .page-link {
    background-color: #020617;
    color: #e5e7eb;
    border-color: rgba(31, 41, 55, 0.9);
    font-size: 0.85rem;
}

.blog-pagination .page-link:hover {
    background: #22c55e;
    border-color: #22c55e;
    color: #020617;
}

.blog-pagination .page-item.active .page-link {
    background: #22c55e;
    border-color: #22c55e;
    color: #020617;
}

/* ===========================
   Responsive tweaks
   =========================== */

@media (max-width: 768px) {
    .blog-exploration-section {
        padding: 4.5rem 0;
    }

    .blog-section-header .section-title {
        font-size: 1.9rem;
    }

    .blog-filter-bar {
        padding: 1rem 1.1rem;
    }

    .blog-topbar-title {
        white-space: normal;
    }

    .blog-actions-row {
        gap: 0.35rem;
    }

    .blog-comment-input-row {
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .blog-section-header .section-title {
        font-size: 1.65rem;
    }

    .blog-section-header .section-title i {
        font-size: 1.6rem;
    }

    .blog-actions-row span {
        display: none; /* just icons on very small screens */
    }

    .blog-actions-row .blog-action-btn {
        padding: 0.45rem 0;
    }
}

/* ===========================
   Like reaction styles
   =========================== */

/* When a user liked the post */
.blog-action-btn.blog-like-btn.liked {
    color: #fb7185;
    background: rgba(248, 113, 113, 0.12);
}

.blog-action-btn.blog-like-btn.liked i {
    color: #fb7185;
}

/* Floating heart reaction */
.blog-like-float {
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, 0);
    z-index: 9999;
    font-size: 1.4rem;
    color: #fb7185;
    animation: blog-like-pop 0.7s ease-out forwards;
}

@keyframes blog-like-pop {
    0% {
        opacity: 0;
        transform: translate(-50%, 10px) scale(0.6);
    }
    30% {
        opacity: 1;
        transform: translate(-50%, -4px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -30px) scale(0.9);
    }
}

/* Toast notification */
.blog-toast {
    position: fixed;
    right: 16px;
    bottom: 16px;
    min-width: 220px;
    max-width: 320px;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.95);
    color: #e5e7eb;
    font-size: 0.85rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(10px);
    animation: blog-toast-in 0.2s ease-out forwards, blog-toast-out 0.25s ease-in forwards 2.2s;
}

.blog-toast-icon {
    font-size: 1.1rem;
    color: #4ade80;
}

.blog-toast--error .blog-toast-icon {
    color: #f97373;
}

@keyframes blog-toast-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blog-toast-out {
    to {
        opacity: 0;
        transform: translateY(8px);
    }
}













/* bloghero */
        .bloghero-section {
            position: relative;
            height: 80vh;
            overflow: hidden;
        }

        .bloghero-section .bloghero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* background-color: rgba(0, 0, 0, 0.2); Darker background for contrast */
            /* opacity: 0.5; */
            /* filter: blur(5px); */
            z-index: 0;
        }

        .bloghero-section .bloghero-content {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            /* background-color: rgba(0, 0, 0, 0.2); Darker background for contrast */
            padding: 50px;
            text-align: center;
            margin-top: 100px;
            z-index: 1;
        }

        .bloghero-section .bloghero-text {
            max-width: 600px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .bloghero-section .bloghero-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff; /* White text */
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: bloghero-slideInTitle 2s ease-in-out forwards;
        }

        .bloghero-section .bloghero-title i {
            color: #efd80d; /* Yellow for contrast */
            margin-right: 10px;
            font-size: 2rem;
        }

        .bloghero-section .bloghero-description {
            font-size: 1.1rem;
            color: #ffffff; /* White text */
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bloghero-section .bloghero-description i {
            color: #efd80d; /* Yellow for contrast */
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .bloghero-section .bloghero-buttons {
            display: flex;
            justify-content: center;
        }

        .bloghero-section .bloghero-signup-btn {
            background-color: #058776;
            border-color: #058776;
            color: #ffffff;
            font-size: 1rem;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            border-radius: 5px;
            cursor: pointer;
        }

        .bloghero-section .bloghero-signup-btn i {
            color: #efd80d;
            margin-right: 8px;
            font-size: 1.1rem;
        }

        .bloghero-section .bloghero-signup-btn:hover {
            background-color: #046b5f;
            border-color: #046b5f;
            color: #ffffff;
            transform: scale(1.05);
        }

        .bloghero-section .bloghero-signup-btn:active {
            transform: scale(0.95);
        }

        /* Modal Styling */
        .signup-modal .modal-content {
            border-radius: 10px;
            border: 1px solid #058776;
        }

        .signup-modal .modal-header {
            background-color: #058776;
            color: #ffffff;
            border-bottom: none;
        }

        .signup-modal .modal-title {
            font-weight: 600;
        }

        .signup-modal .modal-header .btn-close {
            filter: invert(1);
        }

        .signup-modal .modal-body {
            padding: 20px;
        }

        .signup-modal .form-control {
            border: 1px solid #058776;
            border-radius: 5px;
            font-size: 0.95rem;
        }

        .signup-modal .form-control:focus {
            border-color: #046b5f;
            box-shadow: 0 0 0 3px rgba(5, 135, 118, 0.2);
        }

        .signup-modal .btn-primary {
            background-color: #058776;
            border-color: #058776;
            font-size: 0.95rem;
            padding: 8px 16px;
            border-radius: 5px;
        }

        .signup-modal .btn-primary:hover {
            background-color: #046b5f;
            border-color: #046b5f;
        }

        @keyframes bloghero-slideInTitle {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 991.98px) {
            .bloghero-section {
                height: auto;
                min-height: 60vh;
            }

            .bloghero-section .bloghero-content {
                padding: 20px;
                text-align: center;
            }

            .bloghero-section .bloghero-text {
                max-width: 100%;
            }

            .bloghero-section .bloghero-title {
                font-size: 1.8rem;
                justify-content: center;
                text-align: center;
            }

            .bloghero-section .bloghero-title i {
                font-size: 1.5rem;
            }

            .bloghero-section .bloghero-description {
                font-size: 1rem;
                justify-content: center;
                text-align: center;
            }

            .bloghero-section .bloghero-description i {
                font-size: 1rem;
            }

            .bloghero-section .bloghero-signup-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
                margin: 0 auto;
            }
        }

        @media (max-width: 576px) {
            .bloghero-section .bloghero-title {
                font-size: 1.5rem;
            }

            .bloghero-section .bloghero-description {
                font-size: 0.9rem;
            }

            .bloghero-section .bloghero-signup-btn {
                font-size: 0.9rem;
                padding: 8px 15px;
            }
        }


/* HOW IT WORKS – Professional Timeline */
.how-it-works-section {
    --brand: #058776;
    --brand-2: #874b05;
    --accent: #efd80d;
    --text: #0f172a;
    --muted: #6b7280;
    --card-bg: #ffffff;
    --card-shadow: 0 10px 30px rgba(0,0,0,.12);
    --card-shadow-hover: 0 18px 40px rgba(0,0,0,.18);
    
    padding: 80px 0;
    position: relative;
    background: #874b05;
    overflow: hidden;
}

/* Heading */
.how-it-works-section .section-title {
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .5px;
}


.how-it-works-section .section-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--brand), #57b5a9);
}

.how-it-works-section .section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
    color: #e2e8f0;
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: .95;
}

/* Timeline rail (The Spine) */
.how-it-works-section .container::after {
    content: "";
    position: absolute;
    top: 180px; /* Starts after header */
    bottom: 50px;
    left: 50%;
    width: 4px; /* Slightly thicker for visibility */
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    pointer-events: none;
    z-index: 0;
}

/* Step rows */
.how-it-works-section .step-container {
    display: flex;
    margin-bottom: 60px; /* More space for the connection */
    position: relative;
    width: 100%;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.how-it-works-section .step-container.visible {
    opacity: 1;
    transform: none;
}

/* Desktop Alignment */
.how-it-works-section .step-left {
    justify-content: flex-start;
    padding-right: 50px; /* Space for center line */
}

.how-it-works-section .step-right {
    justify-content: flex-end;
    padding-left: 50px; /* Space for center line */
}

/* Card Styling */
.how-it-works-section .step-content {
    --radius: 16px;
    width: 100%;
    max-width: 540px; /* Limit width to create the gap in center */
    padding: 36px 32px;
    background: var(--card-bg);
    border-radius: var(--radius);
    position: relative;
    z-index: 1;
    transition: transform .3s ease, box-shadow .3s ease;
    color: var(--text);
    isolation: isolate;
    
    /* Background Image Logic */
    background-image: var(--step-bg);
    background-size: cover;
    background-position: center;
}

/* Overlay for images */
.how-it-works-section .step-content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.85));
    opacity: 0;
    z-index: -1;
    transition: opacity .25s ease;
}

.how-it-works-section .step-container[data-bg="true"] .step-content::before {
    opacity: 1;
}

/* Hover Effects */
.how-it-works-section .step-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

/* --- THE INTERCONNECTION DESIGN (Central Nodes) --- */

/* The Number Bubble (Now serves as the central node) */
.how-it-works-section .step-label {
    position: absolute;
    top: 30px; /* Aligns with the icon inside the card */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid var(--brand); /* Ring effect */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.2); /* Outer glow */
    z-index: 5;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--brand);
}

/* Positioning the Node on the Center Rail */
.how-it-works-section .step-left .step-label {
    right: -75px; /* Pushes it out of the card to the center */
    left: auto;
    transform: none; /* Reset original transform */
}

.how-it-works-section .step-right .step-label {
    left: -75px; /* Pushes it out of the card to the center */
    right: auto;
    transform: none;
}

/* The Connector Line (From Card to Node) */
.how-it-works-section .step-content::after {
    content: "";
    position: absolute;
    top: 55px; /* Middle of the node */
    height: 2px;
    width: 25px; /* Length of connection */
    background: rgba(255,255,255,0.5);
    z-index: 0;
}

.how-it-works-section .step-left .step-content::after {
    right: -25px;
}

.how-it-works-section .step-right .step-content::after {
    left: -25px;
}

/* --- Content Styling --- */

/* Icon */
.how-it-works-section .step-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(5, 135, 118, 0.1); /* Light brand bg */
    color: var(--brand);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.how-it-works-section .step-container[data-bg="true"] .step-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
    backdrop-filter: blur(4px);
}

/* Typography */
.how-it-works-section .step-title {
    margin: 0 0 12px;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--text);
}

.how-it-works-section .step-description {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted);
}

/* Text color overrides for image backgrounds */
.how-it-works-section .step-container[data-bg="true"] .step-title {
    color: #fff;
}
.how-it-works-section .step-container[data-bg="true"] .step-description {
    color: #e2e8f0;
}


/* --- RESPONSIVENESS (Preserved & Adapted) --- */

@media (max-width: 991.98px) {
    .how-it-works-section { padding: 60px 0; }
    
    /* Move Rail to the Left */
    .how-it-works-section .container::after { 
        left: 30px; 
        transform: none; 
    }
    
    /* Reset layout to stack */
    .how-it-works-section .step-container {
        flex-direction: column;
        padding: 0 0 0 70px; /* Space for rail on left */
        margin-bottom: 40px;
    }
    
    .how-it-works-section .step-left, 
    .how-it-works-section .step-right { 
        justify-content: flex-start;
    }
    
    /* Full width cards */
    .how-it-works-section .step-content { 
        max-width: 100%; 
    }

    /* Move Nodes/Labels to the Left Rail */
    .how-it-works-section .step-label {
        left: -55px !important; /* Forces label to the left rail */
        right: auto !important;
        top: 0;
    }
    
    /* Adjust Connector Lines for Mobile */
    .how-it-works-section .step-content::after {
        left: -20px !important;
        right: auto !important;
        top: 25px;
        width: 20px;
    }

    /* Adjust Icon alignment */
    .how-it-works-section .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .how-it-works-section { padding: 50px 0; }
    
    .how-it-works-section .container::after { 
        left: 20px; 
    }
    
    .how-it-works-section .step-container {
        padding-left: 50px;
    }
    
    .how-it-works-section .step-label {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        left: -40px !important; /* Tighter alignment */
        border-width: 3px;
    }
    
    .how-it-works-section .step-content {
        padding: 24px;
    }
    
    .how-it-works-section .step-content::after {
        display: none; /* Hide connector lines on very small screens for cleanliness */
    }
}

/* Reduced-motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .how-it-works-section .step-container,
    .how-it-works-section .step-content {
        transition: none;
    }
}


/* footer */
.footer-section {
    padding: 20px 0;
    background-image: url('../files/cute.png');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    font-family: 'Figtree', sans-serif;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 17, 0, 0.9);
    z-index: 1;
}

.footer-section .container {
    position: relative;
    z-index: 2;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #efd80d;
}

.footer-section p {
    font-size: 0.95rem;
    color: #ddd;
    margin-bottom: 10px;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-section a:hover {
    color: #efd80d;
}

.footer-section a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #efd80d;
    transition: width 0.3s ease;
}

.footer-section a:hover::after {
    width: 100%;
}

.footer-section .subscribe-form {
    max-width: 400px;
    margin: 0 auto;
}

.footer-section .subscribe-form .form-control {
    background-color: #ffffff;
    border: none;
    color: #333;
    padding: 10px;
    margin-bottom: 10px;
}

.footer-section .subscribe-form .form-control::placeholder {
    color: #888;
}

.footer-section .subscribe-form .btn-primary {
    background-color: #874b05;
    border: none;
    color: #fff;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.footer-section .subscribe-form .btn-primary:hover {
    background-color: #6d3c04;
}

.footer-section ul {
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section .list-unstyled li {
    font-size: 0.95rem;
    color: #ddd;
}

/* Social Media Icons */
.footer-section .social-links {
    margin-bottom: 15px;
}

.footer-section .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #fff;
    color: #058776;
    font-size: 1.2rem;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.footer-section .social-icon i {
    transition: transform 0.3s ease-in-out;
    color: #058776;
}

.footer-section .social-icon:hover {
    background-color: #efd80d;
    color: #058776;
}

.footer-section .social-icon:hover i {
    transform: scale(1.2);
}

/* Copyright */
.footer-section .copyright {
    font-size: 0.95rem;
    color: #ddd;
    margin-bottom: 50px;
    padding-top: 40px;
    text-align: center;
}

.footer-section .copyright .imprint-link {
    display: block;
    margin-bottom: 10px;
}

.footer-section .copyright .copyright-divider {
    border: 0;
    height: 1px;
    background-color: #fff;
    margin: 10px auto;
    width: 100px;
}

.footer-section .copyright p {
    margin: 0;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 0.9rem;
    }

    .footer-section .subscribe-form .btn-primary {
        font-size: 0.9rem;
    }

    .footer-section .row > div {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .footer-section .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 40px 0;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 0.85rem;
    }

    .footer-section .subscribe-form .btn-primary {
        font-size: 0.85rem;
    }

    .footer-section .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .footer-section .row > div {
        flex: 0 0 50%;
        max-width: 50%;
        text-align: center;
    }

    .footer-section ul {
        display: inline-block;
        text-align: left;
    }
}

/* testimonies */
/* TESTIMONIES SECTION - Distinct Look */
.test-swipper-section {
  padding: 80px 0 90px;
  background-color: #f9fafb; /* Light background to contrast previous brown section */
  position: relative;
  overflow: hidden;
}

.test-swipper-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styling */
.test-swipper-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.test-swipper-section .test-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #e6ef65;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.test-swipper-section .test-title span {
  color: #f6fd93; /* Brand Brown */
  position: relative;
}

.test-swipper-section .test-description {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Swiper Container */
.testimonials-swiper {
  padding: 20px 10px 50px !important; /* Bottom padding for pagination */
}

/* Card Design */
.testimony-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #058776; /* Teal Accent Top */
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimony-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Big Watermark Quote */
.test-quote-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 4rem;
  color: #f1f5f9;
  z-index: 0;
  pointer-events: none;
}

/* Rating Stars */
.test-rating {
  margin-bottom: 20px;
  color: #efd80d; /* Brand Yellow */
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

/* Main Text */
.test-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 30px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  font-style: italic;
}

/* Profile Area */
.test-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
  position: relative;
  z-index: 1;
}

.test-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e2e8f0;
}

.test-info {
  display: flex;
  flex-direction: column;
}

.test-name {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.test-role {
  font-size: 0.85rem;
  color: #058776; /* Brand Teal */
  font-weight: 500;
}

/* Custom Pagination Bullets */
.test-swipper-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  opacity: 1;
  transition: all 0.3s ease;
}

.test-swipper-section .swiper-pagination-bullet-active {
  background: #058776;
  width: 25px;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .test-swipper-section { padding: 60px 0; }
  .test-title { font-size: 1.8rem; }
  .testimony-card { padding: 30px 20px; }
}