* {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.main{
    display: flex;
    justify-content: space-between;
    border-radius: 50px;
    width: 84%;
    margin: auto;
    background:#D9D9D9;
}
.sub{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
}
.sub img{
    height: 30px;
}

.container{
    display: flex;
    width: 60%;
    height: 100%;
}
.container ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    list-style: none;
    height: 100%;
    width: 90%;
    box-sizing: content-box;
    margin: 1em 0;
    padding-left: 40px;
}
.container ul li{
    width: 200px;
    text-align: center;
}
.container ul li a{
     position: relative;
    text-decoration: none;
    color: black;
    font-size: 1rem;
    font-weight: 600;
}
/* Gradient underline */
.container ul li a:not(.contact-btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
    transition: width 0.3s ease;
}
/* Show underline on hover */
.container ul li a:not(.contact-btn):hover::after {
    width: 100%;
}

.contact-btn {
    display: inline-block;
    padding: 7px 20px;
    border-radius: 50px;
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
    color: white !important;
}

/* ===== SHARED HELPERS ===== */
.label {
    color: #FF5A1F;
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 0.95rem;
}
.label.center {
    text-align: center;
}
.center {
    text-align: center;
}
.btn-solid {
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #FF5A1F, #FF3D6E);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}
.btn-solid.light {
    background: white;
    color: #111111;
}
.btn-outline {
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}
.btn-solid,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.arrow {
    font-size: 1rem;
    line-height: 1;
}

.header-content {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0 0 100px;
    background: url("./imgs/hero-bg.jpg") center/cover no-repeat;
}
.header-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0.2) 65%);
}
.nav-wrapper {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 5;
}
.hero-row {
    position: absolute;
    bottom: 70px;
    left: 80px;
    right: 80px;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
}
.header-title {
    flex: 1;
    max-width: 460px;
}
.header-title h1 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
    color: white;
}
.header-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    max-width: 420px;
}
.gradient-text{
     background: linear-gradient(90deg, #FF5A1F, #FF3D6E);
     background-clip: text;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
}
.header-container h2{
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    color: white;
}
.header-container p{
    font-size: 1rem;
    text-align: left;
    color: #e6e6e6;
    line-height: 1.7;
}
.icon-circle {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF5A1F, #FF3D6E);
}
.icon-circle img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}
.icon-circle.outline {
    background: transparent;
    border: 1px solid #444444;
}
.icon-circle.outline img {
    width: 18px;
    height: 18px;
    filter: none;
    opacity: 0.85;
}
.scroll-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}
.scroll-cta span {
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.section {
    margin: 100px 0;
}
.val{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FF5A1F;
    height: 120px;
    letter-spacing: 5px;
}
.values-scroll {
    width: 100%;
}
.cards-container {
    width: 100%;
    margin: 0 auto;
    padding: 30px calc(8% + 1px) 40px;
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-padding-left: 8%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
/* activated by JS once GSAP ScrollTrigger takes over the horizontal motion */
.values-scroll.gsap-pin {
    overflow: hidden;
}
.values-scroll.gsap-pin .cards-container {
    overflow: visible;
    scroll-snap-type: none;
    width: max-content;
    will-change: transform;
}

.card {
    background: linear-gradient(#FF5A1F, #FF3D6E);
    flex: 0 0 360px;
    height: 460px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 48px 36px;
    color: white;
    font-size: 1.1rem;
    text-align: center;
    scroll-snap-align: start;
}
.card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.card-top img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}
.card h3 {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}
.card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* ===== HOW WE LIVE OUR VALUES ===== */
.commitment-section {
    width: 84%;
    margin: 100px auto;
}
.commitment-text {
    max-width: 650px;
    margin: 15px auto 0;
    text-align: center;
    color: #444444;
    line-height: 1.7;
}
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}
.commitment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 32px 24px;
    border: 1px solid #e2e2e2;
    border-radius: 16px;
}
.commitment-item h4 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.commitment-item p {
    color: #555555;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(90deg, #FF5A1F, #FF3D6E);
    width: 84%;
    margin: 0 auto 100px;
    border-radius: 20px;
    padding: 70px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    color: white;
    text-align: left;
}
.cta-banner h2 {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.3;
    max-width: 480px;
}
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 320px;
}
.cta-buttons .btn-solid,
.cta-buttons .btn-outline {
    justify-content: center;
    width: 100%;
}
.cta-buttons .btn-outline {
    color: white;
}

footer {
    width: 100%;
    margin: 60px 0 0;
    padding: 0;
    background: #111111;
    color: #ffffff;
}
.site-footer{
    width: 84%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    height: 50vh;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 400px;
}
.footer-logo img {
    filter: brightness(0) invert(1);
}
.footer-links{

    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.footer-content{
    gap: 10px;
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 200px;
    justify-items: center;
    list-style: none;

}
.footer-content h3 {
    color: #ffffff;
}
.footer-content a{
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
}
.bottom{
    width: 84%;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.6);
}
.right{

    display: flex;
    gap: 50px;
    width: 400px;
    justify-content: center;
    align-items: center;
}
.left{
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== RESPONSIVE NAV ===== */
.nav-toggle {
    display: none;
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    margin-right: 15px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #111111;
    border-radius: 2px;
}
@media (max-width: 860px) {
    .main {
        position: relative;
        flex-wrap: wrap;
    }
    .hamburger {
        display: flex;
    }
    .container {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: 10px;
        width: 100%;
        height: auto;
        background: #D9D9D9;
        border-radius: 20px;
        z-index: 30;
    }
    .nav-toggle:checked ~ .container {
        display: block;
    }
    .container ul {
        flex-direction: column;
        width: 100%;
        height: auto;
        gap: 15px;
        padding: 20px;
        margin: 0;
        box-sizing: border-box;
    }
    .container ul li {
        width: 100%;
        text-align: center;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav-wrapper {
        z-index: 50;
    }
    .header-content {
        margin: 0 0 60px;
    }
    .hero-row {
        left: 30px;
        right: 30px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }
    .header-title,
    .header-container {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
    .header-title h1,
    .header-container h2,
    .header-container p {
        text-align: center;
    }
    .scroll-cta {
        flex-direction: column;
    }
    .cards-container {
        gap: 20px;
        padding: 20px calc(6% + 1px) 30px;
    }
    .card {
        flex-basis: 280px;
        height: 400px;
        padding: 36px 28px;
    }
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }
    .cta-banner h2 {
        max-width: 100%;
    }
    .cta-buttons {
        width: 100%;
        min-width: 0;
    }
    .site-footer {
        flex-direction: column;
        height: auto;
        gap: 40px;
        padding: 20px 0;
    }
    .footer-logo {
        width: 100%;
    }
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .footer-content {
        width: 100%;
        height: auto;
    }
    .bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 0;
    }
    .left, .right {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header-title h1 {
        font-size: 2.2rem;
    }
    .header-container h2 {
        font-size: 1.5rem;
    }
}
/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-group > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-group > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-group > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-group > .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-group > .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-group > .reveal:nth-child(6) { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* ===== SPLIT TITLE REVEAL ===== */
.split-title {
    opacity: 0;
}
.split-title.split-ready {
    opacity: 1;
}
.split-title .split-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.14em;
    margin-bottom: -0.14em;
}
.split-title .split-line-inner {
    display: block;
    will-change: transform, opacity;
    transform: translateY(105%) rotate(1.5deg);
    transform-origin: left bottom;
    opacity: 0;
    transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}
.split-title.center .split-line-inner {
    transform-origin: center bottom;
}
.split-title.split-active .split-line-inner {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
    .split-title {
        opacity: 1;
    }
    .split-title .split-line-inner {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

/* ===== HOVER SPLIT TEXT (nav links + buttons) ===== */
.hs {
    display: inline-flex;
}
.hs-col {
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 1.2em;
    line-height: 1.2em;
    vertical-align: top;
}
.hs-char {
    display: block;
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.hs-bottom {
    position: absolute;
    top: 100%;
    left: 0;
}
a:hover .hs-char,
button:hover .hs-char {
    transform: translateY(-100%);
}
@media (prefers-reduced-motion: reduce) {
    .hs-char {
        transition: none;
    }
    a:hover .hs-char,
    button:hover .hs-char {
        transform: none;
    }
}
