* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 40px;
}

.nav {
    display: flex;
    gap: 24px;
    white-space: nowrap;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.nav-link.active {
    color: #f5b128;
}

.section {
    min-height: 100vh;
    padding: 140px 24px;
    scroll-margin-top: 96px;
}

.hero {
    background: #f5f5f5;
}

.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
}
/* Animation base state */
.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s ease-out;
}

    /* When visible */
    .animate.show {
        opacity: 1;
        transform: translateY(0);
    }

/* Optional delays */
.delay-1 {
    transition-delay: 1.2s;
}

.delay-2 {
    transition-delay: 0.8s;
}
/* HERO SECTION */
.hero {
    padding: 100px 20px;
    background: #fff;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Title & subtitle (LEFT like your screenshot top) */
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 60px;
}

/* ADVANTAGES GRID — THIS IS THE KEY */
.hero-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    /* MATCH SCREENSHOT CENTERING */
    max-width: 1050px;
    margin: 60px auto 0 auto;
}

/* CARD STYLE */
.adv-card {
    border: 3px solid #f5b128;
    border-radius: 6px;
    padding: 60px 30px;
    text-align: center;
    background: #fff;
    /* IMPORTANT: fixed visual width */
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
}

    .adv-card img {
        max-width: 120px;
        margin-bottom: 35px;
    }

    .adv-card p {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #666;
    }

/* MOBILE */
@media (max-width: 900px) {
    .hero-advantages {
        grid-template-columns: 1fr;
    }
}
/* ADVANTAGES WRAPPER */
.hero-advantages-wrapper {
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
}

/* YELLOW LINES */
.advantages-line {
    height: 6px;
    background-color: #f5b128;
    border-radius: 3px;
}

    .advantages-line.top {
        margin-bottom: 30px;
    }

    .advantages-line.bottom {
        margin-top: 30px;
    }

/* GRID */
.hero-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.adv-card {
    border: 3px solid #f5b128;
    border-radius: 6px;
    padding: 60px 30px;
    text-align: center;
    background: #fff;
    max-width: 330px;
    margin: 0 auto;
}
.advantages-title {
    text-align: center; /*  center text */
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 80px auto 30px; /* center block + spacing */
    max-width: 100%;
}
/* ================================
   SERVICES SECTION
================================ */

.services {
    background: #fafafa;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

/* Title */
.services-title {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 70px;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-items: center;
}

/* Card */
.service-card {
    background: #ffffff;
    border: 3px solid #f5b128;
    border-radius: 8px;
    padding: 60px 30px;
    text-align: center;
    max-width: 330px;
    transition: all 1.2s ease;
}

    /* Hover animation (matches video feel) */
    .service-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }

    /* Icon */
    .service-card img {
        max-width: 90px;
        margin-bottom: 25px;
    }

    /* Title */
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    /* Text */
    .service-card p {
        font-size: 1rem;
        line-height: 1.7;
        color: #555;
    }

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* CONTACT US STATIC */

.contact-section {
    background: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 60px;
}

/* LOGO */
.contact-logo img {
    max-width: 220px;
}

/* DETAILS */
.contact-details h2 {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

    .contact-item img {
        width: 22px;
        margin-top: 4px;
    }

    .contact-item p {
        margin: 0;
        line-height: 1.6;
    }

/* MOBILE */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }
}
/* CONTACT SECTION */
.contact-section {
    padding: 120px 0;
    background: #fff;
}

/* MAIN CONTAINER */
.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 80px;
}

/* LEFT LOGO */
.contact-logo img {
    max-width: 320px;
}

/* RIGHT DETAILS */
.contact-details h2 {
    margin-bottom: 30px;
    font-size: 26px;
}

/* CONTACT ITEMS */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

    .contact-item i {
        font-size: 18px;
        margin-top: 4px;
    }

.contact-text {
    line-height: 1.6;
    font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .contact-logo {
        margin-bottom: 40px;
    }
}
/* CONTACT SECTION */
.contact-section {
    background: #4b4b4f;
    padding: 100px 20px;
}

/* MAIN CARD */
.contact-card {
    max-width: 1200px;
    margin: auto;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 2fr;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* LEFT SIDE */
.contact-left {
    background: #f7c23e;
    padding: 50px;
    color: #fff;
}

    .contact-left h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

.contact-desc {
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 15px;
}

    .contact-item i {
        font-size: 18px;
        margin-top: 4px;
    }

/* RIGHT SIDE */
.contact-right {
    padding: 50px;
}

    .contact-right h3 {
        font-size: 26px;
        margin-bottom: 30px;
    }

/* FORM */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.contact-form textarea {
    min-height: 150px;
    resize: none;
    margin-bottom: 20px;
}

.contact-form button {
    background: #f7c23e;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 14px;
    cursor: pointer;
}
/* ===============================
   CONTACT PAGE
================================ */

/* TOP SECTION */
.contact-top {
    background: #fff;
    padding: 80px 0;
}

.contact-top-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.contact-logo img {
    max-width: 320px;
}

.contact-info h2 {
    margin-bottom: 25px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-info i {
    margin-right: 10px;
    color: #f6c343;
}

/* FORM SECTION */
.contact-form-section {
    background: #4a4a4f;
    padding: 100px 0;
}

.contact-card {
    max-width: 1200px;
    margin: auto;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

/* LEFT PANEL */
.contact-card-left {
    background: #f6c343;
    color: #fff;
    padding: 50px;
}

    .contact-card-left h3 {
        margin-bottom: 20px;
    }

    .contact-card-left p {
        margin-bottom: 15px;
    }

    .contact-card-left i {
        margin-right: 10px;
    }

/* RIGHT PANEL */
.contact-card-right {
    padding: 50px;
}

    .contact-card-right h3 {
        margin-bottom: 30px;
    }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card-right input,
.contact-card-right textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
}

.contact-card-right textarea {
    margin-top: 20px;
    height: 150px;
}

.contact-card-right button {
    margin-top: 25px;
    padding: 14px 40px;
    background: #f6c343;
    border: none;
    color: #fff;
    cursor: pointer;
}
/* ===== CONTACT PAGE WRAPPER ===== */
.contact-page {
    width: 100%;
}

/* ===== TOP WHITE SECTION ===== */
.contact-top {
    background: #fff;
    padding: 80px 0;
}

.contact-top-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.contact-logo img {
    max-width: 300px;
}

.contact-info h2 {
    margin-bottom: 25px;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info i {
    color: #f5b82e;
    margin-right: 10px;
}

/* ===== GREY FORM BACKGROUND ===== */
.contact-form-section {
    background: #4b4b50;
    padding: 80px 0;
}

/* ===== WHITE CARD ===== */
.contact-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    display: flex;
}

/* ===== LEFT YELLOW PANEL ===== */
.contact-card-left {
    width: 40%;
    background: #f5b82e;
    padding: 50px;
    color: #fff;
}

    .contact-card-left i {
        margin-right: 10px;
    }

/* ===== RIGHT FORM PANEL ===== */
.contact-card-right {
    width: 60%;
    padding: 50px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card-right input,
.contact-card-right textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
}

.contact-card-right textarea {
    margin-top: 20px;
    height: 150px;
}

.contact-card-right button {
    margin-top: 20px;
    padding: 15px 30px;
    background: #f5b82e;
    border: none;
    color: #fff;
    cursor: pointer;
}
/* HOME INTRO LAYOUT */
.home-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.home-intro-text {
    flex: 1;
}

    .home-intro-text h1 {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .home-intro-text .highlight {
        color: #f6b93b;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .home-intro-text p {
        color: #555;
        line-height: 1.7;
        margin-bottom: 15px;
    }

.home-intro-image {
    flex: 1;
    text-align: right;
}

    .home-intro-image img {
        max-width: 100%;
        height: auto;
    }
.section-divider {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

    .section-divider::before {
        content: "";
        width: 85%;
        height: 4px;
        background-color: #f4b323; /* Talento yellow */
        border-radius: 2px;
    }
.brand-starts {
    background: #ffffff;
    padding: 30px 0;
}

.brand-inner {
    width: 85%;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.brand-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.brand-subtitle {
    display: block;
    font-weight: 600;
    color: #f4b323;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.brand-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.brand-image img {
    width: 100%;
    max-width: 480px;
}
.talent-database {
    background: #ffffff;
    padding: 90px 0;
}

.talent-db-inner {
    width: 85%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* LEFT SIDE */
.talent-db-left h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
}

.talent-db-image {
    width: 100%;
    max-width: 520px;
    display: block;
}

/* RIGHT SIDE */
.talent-db-right h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.talent-db-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}
@media (max-width: 900px) {
    .talent-db-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .talent-db-image {
        margin: 0 auto;
    }
}
.hidden-section {
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.form-message {
    margin-top: 12px;
    font-size: 14px;
}

    .form-message.success {
        color: #2e7d32;
    }

    .form-message.error {
        color: #c62828;
    }
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 15px;
        line-height: 1.6;
    }
}
@media (max-width: 768px) {

    /* CONTACT TOP */
    .contact-top-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .contact-logo img {
        max-width: 200px;
        margin: auto;
    }

    /* CONTACT CARD */
    .contact-card {
        flex-direction: column;
    }

    .contact-card-left,
    .contact-card-right {
        width: 100%;
        padding: 30px 20px;
    }

    .contact-card-left {
        text-align: center;
    }

    /* FORM */
    .form-grid {
        grid-template-columns: 1fr;
    }

    textarea {
        min-height: 120px;
    }

    button {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .brand-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .brand-image img {
        max-width: 280px;
        margin: auto;
    }

    .brand-text h2 {
        font-size: 26px;
    }
}
@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px 15px;
    }
}
@media (max-width: 768px) {
    .nav {
        gap: 15px;
    }

        .nav a {
            font-size: 14px;
        }
}
.nav-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

        .nav.show {
            display: flex;
        }
}



