.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-2 {
    margin-top: 20px;
    position: relative;
}

/* IMAGE */
.hero-image-2 img {
    width: 100%;
    height: auto;
    display: block;
}

/* CONTENT OVERLAY */
.hero-content {
    position: absolute;
    left: 6%;
    top: 75%;
    transform: translateY(-50%);
}

/* BUTTON */
.hero-btn {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 40px;
    font-size: clamp(14px, 1vw, 20px);
    font-weight: 500;
    text-decoration: none;
    color: #000;

    background: #fff;
    z-index: 1;
}

/* gradient border */
.hero-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 2px; /* border thickness */

    background: linear-gradient(90deg, #ff3b5c, #ffc72a, #00a61d, #1159ff);

    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    z-index: -1;
}

.logo-section {
    padding: 60px 40px;
    text-align: center;
    background: #f8f8f8;
}

/* HEADING */
.logo-heading {
    font-size: 60px;
    font-weight: 600;
    color: rgba(82, 82, 82, 1);
    margin-bottom: 80px;
}

/* SLIDER WRAPPER */
.logo-slider {
    overflow: hidden;
    position: relative;
}

/* TRACK */
.logo-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

/* LOGOS */
.logo-track img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 0.7;
    transition: 0.3s ease;
}

.logo-track img:hover {
    filter: grayscale(50%);
    opacity: 1;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* ANIMATION */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #f8f8f8, transparent);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #f8f8f8, transparent);
}

/* Testimonials */

.testimonials-section {
    padding: 80px 40px 60px;
    text-align: center;
}

/* HEADING */
.testimonials-heading {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 80px;
    color: rgba(82, 82, 82, 1);
}

.testimonial-slider {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* BASE CARD */
.testimonial-card {
    position: absolute;
    width: 700px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    background: #000;

    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

/* VIDEO */
.testimonial-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* STATES */
.testimonial-card.center {
    transform: translateX(0) scale(1);
    z-index: 3;
    opacity: 1;
}

.testimonial-card.left {
    transform: translateX(-60%) scale(0.8);
    z-index: 1;
    opacity: 0.5;
}

.testimonial-card.right {
    transform: translateX(60%) scale(0.8);
    z-index: 1;
    opacity: 0.5;
}

/* hidden cards */
.testimonial-card.hidden {
    opacity: 0;
    transform: scale(0.6);
    z-index: 0;
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);

    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn::after {
    content: "";
    border-left: 18px solid #1e3a8a;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
}

/* SECTION */
.countries-section {
    padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px);
}

/* HEADER */
.countries-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.countries-title {
    font-size: 60px;
    font-weight: 600;
    color: rgba(82, 82, 82, 1);
    line-height: 1.2;
}

.countries-label {
    font-size: 30px;
    font-weight: 400;
    color: rgba(82, 82, 82, 1);
    margin-top: 20px;
}

/* GRID */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    column-gap: 50px;
    row-gap: 40px;
}

/* CARD */
.country-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* keeps perfect square */
    border-radius: 16px;
    overflow: hidden;
}

/* IMAGE */
.country-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BUTTON */
.country-btn {
    position: absolute;
    top: 22px;
    left: 32px;

    padding: 10px 20px;
    border-radius: 40px;
    font-size: clamp(14px, 1vw, 20px);
    font-weight: 500;
    text-decoration: none;
    color: #000;

    background: #fff;
    z-index: 2;
}

/* GRADIENT BORDER */
.country-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 2px;

    background: linear-gradient(90deg, #ff3b5c, #ffc72a, #00a61d, #1159ff);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    z-index: -1;
}

/* TEXT OVERLAY */
.country-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
}

/* TABLET */
@media (max-width: 1200px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .countries-grid {
        grid-template-columns: 1fr;
    }

    .countries-title {
        font-size: 36px;
    }

    .countries-label {
        font-size: 20px;
    }
}

/* SECTION */
.services-section {
    padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px);
}

/* HEADER */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.services-title {
    font-size: 60px;
    font-weight: 600;
    color: rgba(82, 82, 82, 1);
    line-height: 1.2;
}

.services-label {
    font-size: 30px;
    font-weight: 400;
    color: rgba(82, 82, 82, 1);
    margin-top: 20px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    column-gap: 50px;
    row-gap: 40px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

/* CARD */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    aspect-ratio: 1 / 1;
    border-radius: 20px;

    background: #fff;

    text-align: center;
    text-decoration: none;
    color: inherit;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ICON */
.service-icon {
    width: clamp(200px, 18vw, 320px);
    height: clamp(200px, 18vw, 320px);

    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

/* TEXT */
.service-text {
    margin-top: 10px;
    text-decoration: none;
    font-size: clamp(20px, 3vw, 40px);
    font-weight: 500;
    color: rgba(82, 82, 82, 1);
}

/* HOVER */
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* TABLET */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-title {
        font-size: 36px;
    }

    .services-label {
        font-size: 20px;
    }
}

/* SECTION */
.stories-section {
    padding: 100px 60px;
}

/* HEADER */
.stories-header {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    align-items: center;
    margin-bottom: 60px;
}

.stories-label {
    font-size: 30px;
    font-weight: 300;
    color: #525252;
    margin-left: 2rem;
}

.stories-title {
    font-size: 60px;
    font-weight: 600;
    color: #525252;
    line-height: 1.5;
    margin-left: 2rem;
    margin-top: 0.8rem;
}

.stories-right img {
    max-width: 700px;
    margin-right: 2rem;
}

/* SLIDER */
.stories-slider-wrapper {
    position: relative;
}

.stories-slider {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: none;
}

.stories-slider::-webkit-scrollbar {
    display: none;
}

/* CARD */
.story-card {
    min-width: 600px;
    height: 330px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 40px;
    position: relative;
}

/* QUOTE */
.quote {
    position: absolute;
    top: -32px;
    left: 20px;

    font-size: 70px;
    font-weight: 700;
    color: #2563eb;

    background: #ffffff34;
    padding: 0 6px;
}

/* TEXT */
.story-text {
    font-size: 28px;
    color: #555;
    margin: 10px 0;
}

/* DIVIDER */
.divider {
    height: 1px;
    background: #ddd;
    margin: 20px 0;
}

/* PROFILE */
.story-profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 45px;
    height: 45px;
    background: #ccc;
    border-radius: 50%;
}

.name {
    font-size: 27px;
    font-weight: 600;
}

.meta {
    font-size: 17px;
    color: #777;
}

.logo-mark {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* NAV */
.stories-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.stories-nav-btn {
    width: 120px;
    height: 50px;
    border: 2px solid #000;
    border-radius: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    cursor: pointer;
}

.stories-nav-btn img {
    width: 70px;
}

/* DISABLED */
.stories-nav-btn.disabled {
    border-color: #aaa;
}

.stories-nav-btn.disabled img {
    filter: grayscale(100%);
}

/* SECTION */
.reach-section {
    padding: 100px 60px;
    background: #ffffff;
}

/* LAYOUT */
.reach-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* LEFT */
.reach-left {
    max-width: 600px;
    margin-left: 20px;
}

.reach-label {
    font-size: 30px;
    color: #777;
    margin-bottom: 20px;
}

.reach-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
}

.reach-title span {
    color: #2563eb;
}

/* BUTTON */
.reach-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 30px;
    padding: 19px 29px;

    background: #000;
    color: #fff;
    border-radius: 30px;

    text-decoration: none;
    font-size: 16px;
}

.reach-btn img {
    width: 20px;
    height: 10px;
    filter: invert(1); /* black → white */
}

/* RIGHT GRID */
.reach-right {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 50px;
    align-items: center;
}

.reach-logo {
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.reach-logo img {
    width: 100%;
    max-width: 160px;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.reach-logo:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.reach-logo:hover img {
    opacity: 1;
}


/* RESPONSIVE */
@media (max-width: 1024px) {
    .reach-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .reach-right {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .reach-right {
        grid-template-columns: repeat(2, 1fr);
    }

    .reach-title {
        font-size: 32px;
    }
}

/* SECTION */
.faq-section {
    padding: 100px 60px;
    background: #ffffff;
}

/* LAYOUT */
.faq-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.faq-left {
    max-width: 50vw;
    margin-left: 3vw;
}

.faq-label {
    font-size: 20px;
    color: #777;
    margin-bottom: 20px;
}

.faq-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3;
    color: #525252;
}

/* RIGHT */
.faq-right {
    max-width: 40vw;
    margin-right: 3vw;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CARD */
.faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px 25px;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* QUESTION */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
}

/* ICON */
.faq-icon {
    width: 18px;
    transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);

    transition: 
        max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.3s ease,
        transform 0.3s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}