body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

/* HERO */
.hero {
    background: #4f6f2f;
    color: white;
    text-align: center;
    padding-bottom: 20px;
}

    .hero h1 {
        font-size: 80px;
        letter-spacing: 10px;
        margin: 40px 0;
    }

/* TOP BAR */
.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
}

    .top-bar .logo {
        font-weight: bold;
        font-size: 20px;
    }

    .top-bar .right {
        display: flex;
        gap: 15px;
        align-items: center;
    }

/* MENU */
.menu {
    width: 100%;
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    text-align: center;
}

    .menu a {
        margin: 0 20px;
        text-decoration: none;
        color: black;
    }

    .menu .active {
        border-bottom: 2px solid black;
    }


/* TABS */
.tabs {
    text-align: center;
    margin: 30px 0;
}

    .tabs a {
        margin: 0 15px;
        cursor: pointer;
    }

    .tabs .active {
        border-bottom: 2px solid black;
    }

/* COURSES */
.courses {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.card {
    width: 300px;
    border: 1px solid #ddd;
    padding-bottom: 20px;
    background: white;
}

    .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .card h3 {
        padding: 10px;
    }

    .card p, .card span {
        padding: 0 10px;
    }

    .card button {
        margin: 10px;
        width: calc(100% - 20px);
        padding: 10px;
        background: black;
        color: white;
        border: none;
    }

/* QUOTE */
.quote {
    background: black;
    color: white;
    text-align: center;
    padding: 80px;
    font-style: italic;
}

.tagline {
    font-size: 18px;
    opacity: 0.8;
}


/* CONTACT */
.contact-section {
    display: flex;
    padding: 60px;
    background: #f5f5f5;
}

.contact-left {
    width: 50%;
}

    .contact-left h2 {
        color: #6e0000;
    }

.contact-form {
    width: 50%;
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        margin-bottom: 15px;
        padding: 10px;
        border: none;
        border-bottom: 1px solid #000;
        background: transparent;
    }

    .contact-form button {
        background: black;
        color: white;
        padding: 10px 20px;
        border: none;
    }

/*Membership*/
/* HERO */
.membership-hero {
    text-align: center;
    padding: 60px 20px;
    background: #4f6f2f;
}

    .membership-hero h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

.subtext {
    max-width: 700px;
    margin: auto;
    font-size: 14px;
    color: #555;
}

.highlight {
    color: #a00000;
    margin-top: 15px;
}

/* FEATURES */
.features {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
}

    .features div {
        width: 200px;
    }

    .features img {
        width: 50px;
        margin-bottom: 10px;
    }

.about-page {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

.about-block {
    margin-bottom: 30px;
    line-height: 1.6;
}

    .about-block.highlight {
        background: #f5f5f5;
        padding: 20px;
        border-left: 4px solid #6e0000;
    }

/* VALUES */
.about-values {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    border: 1px solid #ddd;
    padding: 20px;
    width: 260px;
    text-align: center;
    background: white;
}

    .value-card h2 {
        color: #6e0000;
    }

/* BUTTONS */
.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.outline {
    padding: 10px 20px;
    border: 1px solid #a00000;
    background: transparent;
    border-radius: 20px;
    cursor: pointer;
}

/* IMAGE SECTION */
.membership-images {
    display: flex;
}

    .membership-images div {
        width: 50%;
        position: relative;
    }

    .membership-images img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .membership-images span {
        position: absolute;
        bottom: 20px;
        left: 20px;
        color: white;
        font-weight: bold;
    }

/* INCLUDED SECTION */
.included {
    background: #4f6f2f;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

    .included h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .included hr {
        width: 50px;
        margin: 20px auto;
        border: 1px solid white;
    }

.join {
    margin-top: 30px;
    padding: 10px 25px;
    background: black;
    color: white;
    border: none;
    border-radius: 20px;
}

/* SECTION */
.services-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

/* HEADER */
.services-header {
    text-align: center;
    margin-bottom: 60px;
}

    .services-header h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .services-header p {
        color: #666;
    }

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    /* HOVER EFFECT */
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    /* TOP ACCENT LINE */
    .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 4px;
        width: 0%;
        background: #4f6f2f;
        transition: 0.3s;
    }

    .service-card:hover::before {
        width: 100%;
    }

    /* TEXT */
    .service-card h3 {
        margin-bottom: 15px;
    }

    .service-card p {
        color: #555;
        font-size: 14px;
        margin-bottom: 25px;
    }

/* BUTTON */
.service-btn {
    display: inline-block;
    padding: 10px 20px;
    background: black;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

    /* BUTTON HOVER */
    .service-btn:hover {
        background: #4f6f2f;
    }

/* FEATURED CARD (SPECIAL ONE) */
.service-card.featured {
    border: 2px solid #4f6f2f;
    background: #fff5f5;
}

    .service-card.featured h3 {
        color: #4f6f2f;
    }
.btn {
    padding: 10px 20px;
    background: black;
    color: white;
    text-decoration: none;
    display: inline-block;
}

.highlight {
    border: 2px solid #4f6f2f;
}

/* MAIN CONTAINER */


/*Resources*/

/* HERO */
.resources-hero {
    text-align: center;
    padding: 80px 20px 40px;
    background: linear-gradient(to right, #4f6f2f, #4f6f2f);
    color: white;
}

    .resources-hero h1 {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .resources-hero p {
        max-width: 600px;
        margin: auto;
        opacity: 0.9;
    }


/* SECTION TITLE */
.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}


/* GRID (REUSE SERVICES STYLE) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
}


/* PREMIUM CARD */
.resource-premium {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: white;
    border: 1px solid #4f6f2f;
    transition: 0.3s;
}

    .resource-premium:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        border-color: #4f6f2f;
    }


    /* ICON */
    .resource-premium .icon {
        font-size: 40px;
        margin-bottom: 15px;
    }


/* VIDEO CARD */
.video-card iframe {
    width: 100%;
    height: 180px;
    border-radius: 10px;
}

.video-card p {
    margin-top: 10px;
    font-size: 14px;
}


/* BUTTON IMPROVE */
.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background: black;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

    .btn:hover {
        background: #4f6f2f;
    }
.video-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .video-grid iframe {
        width: 300px;
        height: 200px;
        border: none;
    }

.jobs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.job-card {
    border: 1px solid #4f6f2f;
    padding: 20px;
    width: 280px;
}

/* reuse button style */
.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: black;
    color: white;
    text-decoration: none;
}



/* NEWSLETTER */
.newsletter {
    margin-top: 60px;
    background: #4f6f2f;
    color: white;
    padding: 40px;
}

.newsletter-form {
    margin-top: 20px;
}

    .newsletter-form input {
        padding: 10px;
        width: 250px;
        border: none;
    }

    .newsletter-form button {
        padding: 10px 20px;
        background: black;
        color: white;
        border: none;
        cursor: pointer;
    }

/* CAREER HUB SECTION */
.career-hub {
    padding: 80px 20px;
    background: #c5c6c7;
}

.career-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}

/* TEXT */
.career-text {
    flex: 1;
}

    .career-text h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .career-text p {
        margin-bottom: 15px;
        color: #555;
    }
.career-buttons {
    display: flex;
    gap: 18px;
    margin-top: 35px;
    width: 100%;
    align-items: stretch;
}

    .career-buttons .btn,
    .career-buttons .btn-outline {
        flex: 1;
        min-height: 58px;
        padding: 0 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-radius: 14px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

    /* PRIMARY */

    .career-buttons .btn {
        background: linear-gradient(135deg, #6b8f3e, #4f6f2f);
        color: white;
        border: none;
    }

        .career-buttons .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(79,111,47,0.3);
        }

    /* OUTLINE */

    .career-buttons .btn-outline {
        background: white;
        color: #4f6f2f;
        border: 2px solid #4f6f2f;
    }

        .career-buttons .btn-outline:hover {
            background: #4f6f2f;
            color: white;
            transform: translateY(-3px);
        }

/* MOBILE */

@media (max-width: 768px) {

    .career-buttons {
        flex-direction: column;
    }

        .career-buttons .btn,
        .career-buttons .btn-outline {
            width: 100%;
        }
}

/* CARDS */
.career-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.career-card {
    background: white;
    padding: 20px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

    .career-card:hover {
        transform: translateY(-5px);
        border-color: #4f6f2f;
    }

@media (max-width: 768px) {
    .career-container {
        flex-direction: column;
        text-align: center;
    }

    .career-cards {
        grid-template-columns: 1fr;
    }
}

/* PREMIUM HERO */
.hero-banner {
    height: 90vh;
    background: url('/images/hero.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 8%;
    position: relative;
    overflow: hidden;
}

    /* Premium gradient overlay */
    .hero-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(0,0,0,0.78) 15%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.18) 100% );
    }

/* Glass card */
.hero-glass {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 50px;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    color: white;
    animation: fadeUp 1.2s ease;
}

/* Tag */
.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.12);
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Heading */
.hero-glass h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Paragraph */
.hero-glass p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.92);
}


.trust-section {
    background: #4f6f2f;
    color: white;
    padding: 50px 20px;
}

.trust-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
}

.trust-box h2 {
    font-size: 36px;
    color: #FFFFFF;
}

.cta-section {
    background: #4f6f2f;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: black;
    color: white;
    text-decoration: none;
}
.main-header .menu {
    display: flex;
    justify-content: center !important;
    align-items: center;
    width: 100%;
}

    .main-header .menu a {
        margin: 0 20px;
    }
/* HEADER BACKGROUND */
.main-header {
    background: #4f6f2f; /* deep red */
    color: white;
    text-align: center;
    padding-bottom: 40px;
}

/* TOP BAR */
.top-bar {
    display: flex;
    justify-content: center;
    padding: 15px 0;
    font-size: 14px;
}

/* LOGO */
.logo {
    font-weight: bold;
    letter-spacing: 2px;
}

/* BIG HERO TEXT */
.hero-text {
    font-size: 80px;
    font-weight: 300;
    letter-spacing: 12px;
    margin: 40px 0;
    opacity: 0.95;
}

/* NAV CONTAINER (WHITE BOX) */
.nav-wrapper {
    display: flex;
    justify-content: center;
}

/* NAV MENU */
.menu {
    background: #f8f8f8;
    padding: 10px 20px;
    border: 1px solid #ddd;
}

    /* NAV LINKS */
    .menu a {
        margin: 0 12px;
        text-decoration: none;
        color: #333;
        font-size: 14px;
        padding: 6px 10px;
        transition: 0.2s;
    }

        /* ACTIVE / HOVER */
        .menu a:hover {
            background: black;
            color: white;
        }

.section-title {
    margin: 60px 0 20px;
    font-size: 22px;
}

/* VIDEO CARDS FIX */
.video-card {
    padding: 0;
    overflow: hidden;
}

    .video-card iframe {
        width: 100%;
        height: 220px;
        border: none;
        border-radius: 12px;
    }

/* CONTACT PAGE */
.contact-page {
    background: #4f6f2f;
    min-height: 100vh;
}

/* HERO */
.contact-hero {
    background: linear-gradient(to right, #4f6f2f, #4f6f2f);
    color: white;
    text-align: center;
    padding: 90px 20px;
}

    .contact-hero h1 {
        font-size: 52px;
        margin-bottom: 15px;
    }

    .contact-hero p {
        font-size: 18px;
        opacity: 0.9;
    }

/* WRAPPER */
.contact-wrapper {
    max-width: 1200px;
    margin: -60px auto 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    padding: 0 20px;
}

/* CARDS */
.contact-info-card,
.contact-form-card {
    background: white;
    border-radius: 18px;
    padding: 45px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* LABEL */
.contact-label {
    display: inline-block;
    background: rgba(110,0,0,0.08);
    color: #4f6f2f;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.contact-info-card h2 {
    margin: 20px 0;
    font-size: 34px;
}

.contact-info-card p {
    color: #666;
    line-height: 1.7;
}

/* DETAILS */
.contact-details {
    margin-top: 35px;
}

.contact-item {
    margin-bottom: 25px;
}

    .contact-item h4 {
        margin-bottom: 5px;
        color: #4f6f2f;
    }

/* FORM */
.contact-form-card h3 {
    margin-bottom: 25px;
    font-size: 28px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

    .contact-form-card input:focus,
    .contact-form-card select:focus,
    .contact-form-card textarea:focus {
        border-color: #4f6f2f;
    }

/* BUTTON */
.contact-form-card button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    background: #4f6f2f;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

    .contact-form-card button:hover {
        background: black;
    }

/* MOBILE */
@media(max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .contact-hero h1 {
        font-size: 38px;
    }
}

/* SECTION */
.courses-section {
    padding: 80px 20px;
    background: #c5c6c7;
}

/* HEADER */
.courses-header {
    text-align: center;
    margin-bottom: 50px;
}

    .courses-header h1 {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .courses-header p {
        color: #666;
    }

/* GRID */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.course-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    position: relative;
}

    .course-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    }

/* IMAGE */
.image-wrapper {
    position: relative;
}

    .image-wrapper img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

/* BADGE */
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: black;
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
}

    .badge.featured {
        background: #4f6f2f;
    }

/* CONTENT */
.course-content {
    padding: 25px;
}

    .course-content h3 {
        margin-bottom: 8px;
    }

.subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

/* META */
.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price {
    font-weight: bold;
    font-size: 20px;
    color: #4f6f2f;
}



/* FEATURED CARD */
.highlight {
    border: 2px solid #aaa396;
    transform: scale(1.03);
}

/* MOBILE */
@media (max-width: 768px) {
    .courses-header h1 {
        font-size: 28px;
    }
}

.service-detail {
    max-width: 800px;
    margin: auto;
    padding: 60px 20px;
    line-height: 1.6;
}

    .service-detail h1 {
        color: var(--primary);
        margin-bottom: 20px;
    }

    .service-detail ul,
    .service-detail ol {
        margin: 20px 0;
    }

.service-detail-premium {
    padding: 80px 20px;
    background: #4f6f2f;
}

/* HERO */
.service-hero {
    text-align: center;
    margin-bottom: 60px;
}

    .service-hero h1 {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .service-hero p {
        color: #777;
        font-size: 16px;
    }

/* LAYOUT */
.service-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT */
.service-info {
    flex: 2;
}

/* PRICE CARD */
.price-card {
    background: #4f6f2f;
    color: white;
    padding: 30px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 30px;
}

    .price-card h2 {
        font-size: 40px;
        margin: 0;
    }

    .price-card span {
        font-size: 14px;
        opacity: 0.8;
    }

/* DESCRIPTION */
.service-description {
    font-size: 16px;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* BLOCKS */
.service-block {
    margin-bottom: 30px;
}

    .service-block h3 {
        margin-bottom: 15px;
    }

    /* LIST */
    .service-block ul {
        list-style: none;
        padding: 0;
    }

    .service-block li {
        margin-bottom: 10px;
        font-size: 15px;
    }

/* PROCESS STEPS */
.process-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.step {
    background: white;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* RIGHT CTA */
.service-cta {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #ddd;
    height: fit-content;
    text-align: center;
}

    .service-cta h3 {
        margin-bottom: 10px;
    }

    .service-cta p {
        font-size: 14px;
        color: #555;
        margin-bottom: 20px;
    }


.btn-outline {
    display: block;
    padding: 12px;
    border: 1px solid #000;
    text-decoration: none;
    color: black;
    border-radius: 6px;
}

/* MOBILE */
@media (max-width: 768px) {
    .service-container {
        flex-direction: column;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

.booking-premium {
    padding: 80px 20px;
    background: #4f6f2f;
    text-align: center;
}

.booking-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.booking-form-box {
    flex: 2;
    background: white;
    padding: 30px;
    border-radius: 12px;
}

    .booking-form-box input,
    .booking-form-box textarea {
        width: 100%;
        margin-bottom: 15px;
        padding: 12px;
        border: 1px solid #ddd;
    }

.booking-summary {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
}

.summary-card {
    background: #4f6f2f;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.price {
    font-size: 24px;
    font-weight: bold;
}

.steps {
    text-align: left;
    font-size: 14px;
}

.payment-success {
    text-align: center;
    padding: 100px 20px;
}

/* =========================================
   CV WRITING PREMIUM PAGE
========================================= */

.service-premium {
    background: #4f6f2f;
    min-height: 100vh;
    padding-bottom: 80px;
}

/* HERO */
.cv-hero {
    position: relative;
    height: 420px;
    background: url('/images/cv-banner.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .cv-hero .overlay {
        position: absolute;
        inset: 0;
        background: #4f6f2f;
    }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 750px;
    padding: 20px;
}

.service-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: #4f6f2f;
    border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 20px;
    font-size: 13px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

/* MAIN */
.service-container {
    max-width: 1250px;
    margin: -80px auto 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

/* GLASS CARD */
.glass-card,
.process-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    margin-bottom: 30px;
}

    /* INTRO */
    .intro-card h2,
    .pricing-section h2,
    .included-card h2,
    .process-card h2 {
        font-size: 28px;
        margin-bottom: 20px;
        color: #111;
    }

.intro-card p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* PRICING */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 25px;
    margin-top: 25px;
}

.price-card {
    background: white;
    border-radius: 22px;
    padding: 30px;
    position: relative;
    border: 1px solid #eee;
    transition: 0.3s;
}

    .price-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .price-card.featured {
        background: linear-gradient(135deg,#4f6f2f,#4f6f2f);
        color: white;
    }

.card-top {
    margin-bottom: 20px;
}

.plan {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.price-card h3 {
    font-size: 42px;
    margin: 0;
}

.price-card p {
    line-height: 1.7;
    color: inherit;
    opacity: 0.9;
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    color: #4f6f2f;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
}

/* INCLUDED */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 18px;
    margin-top: 25px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #4f6f2f;
    padding: 18px;
    border-radius: 16px;
}

    .included-item span {
        color: #4f6f2f;
        font-size: 18px;
        font-weight: bold;
    }

/* PROCESS */
.service-process {
    position: sticky;
    top: 30px;
    height: fit-content;
}

.process-steps {
    margin-top: 25px;
}

.step {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #4f6f2f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* BUTTON */


/* RESPONSIVE */
@media (max-width: 950px) {

    .service-container {
        grid-template-columns: 1fr;
    }

    .service-process {
        position: relative;
        top: 0;
    }

    .hero-content h1 {
        font-size: 42px;
    }
}

/* =========================================
   LINKEDIN PREMIUM PAGE
========================================= */

.linkedin-premium {
    background: #4f6f2f;
    min-height: 100vh;
    padding-bottom: 80px;
}

/* HERO */

.linkedin-hero {
    position: relative;
    height: 420px;
    background: url('/images/linkedin-banner.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.linkedin-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(0,0,0,0.78), rgba(79,111,47,0.75) );
}

.linkedin-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 850px;
    padding: 20px;
}

.linkedin-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 25px;
    font-size: 13px;
    letter-spacing: 2px;
}

.linkedin-hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.linkedin-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

/* MAIN */

.linkedin-wrapper {
    max-width: 1300px;
    margin: -80px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
    position: relative;
    z-index: 5;
}

/* LEFT */

.linkedin-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* CARDS */

.linkedin-card,
.linkedin-process,
.linkedin-price-card {
    background: white;
    border-radius: 26px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

    .linkedin-card h2,
    .linkedin-process h2 {
        font-size: 30px;
        margin-bottom: 20px;
        color: #111;
    }

    .linkedin-card p {
        line-height: 1.9;
        color: #555;
        margin-bottom: 18px;
    }

/* FEATURES */

.linkedin-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 25px;
}

.linkedin-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fafafa;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 18px;
}

    .linkedin-feature span {
        color: #4f6f2f;
        font-weight: bold;
        font-size: 18px;
    }

    .linkedin-feature p {
        margin: 0;
    }

/* PRICE */

.linkedin-price-card {
    text-align: center;
    background: linear-gradient(135deg, #4f6f2f, #6b8f3e);
    color: white;
    margin-bottom: 25px;
}

    .linkedin-price-card span {
        opacity: 0.85;
    }

    .linkedin-price-card h1 {
        font-size: 68px;
        margin: 15px 0;
    }

    .linkedin-price-card p {
        color: rgba(255,255,255,0.9);
        line-height: 1.7;
    }

/* PROCESS */

.process-step {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

    .process-step span {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #4f6f2f;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        flex-shrink: 0;
    }

    .process-step p {
        color: #555;
        margin: 0;
        line-height: 1.7;
    }

/* BUTTON */

.linkedin-btn {
    margin-top: 25px;
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #4f6f2f, #6b8f3e);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

    .linkedin-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(79,111,47,0.3);
    }

/* RESPONSIVE */

@media (max-width: 992px) {

    .linkedin-wrapper {
        grid-template-columns: 1fr;
    }

    .linkedin-hero-content h1 {
        font-size: 42px;
    }

    .linkedin-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .linkedin-hero {
        height: auto;
        padding: 100px 20px;
    }

    .linkedin-card,
    .linkedin-process,
    .linkedin-price-card {
        padding: 28px 22px;
    }

    .linkedin-hero-content h1 {
        font-size: 34px;
    }
}

/* TRAINING PREMIUM PAGE */

.training-premium {
    background: #4f6f2f;
    padding-bottom: 80px;
}

/* HERO */

.training-hero {
    position: relative;
    height: 420px;
    background: url('/images/training.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.training-overlay {
    position: absolute;
    inset: 0;
    background: #4f6f2f;
}

.training-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 850px;
    padding: 20px;
}

.training-tag {
    display: inline-block;
    background: #4f6f2f;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 1px;
}

.training-content h1 {
    font-size: 58px;
    margin-bottom: 20px;
    font-weight: 700;
}

.training-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4f6f2f;
}

/* WRAPPER */

.training-wrapper {
    max-width: 1300px;
    margin: -80px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
    position: relative;
    z-index: 5;
}

/* LEFT */

.training-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* CARD */

.training-card,
.training-form-card,
.training-process {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

    .training-card h2,
    .training-form-card h2,
    .training-process h2 {
        margin-bottom: 20px;
        font-size: 28px;
    }

.training-description {
    line-height: 1.8;
    color: #555;
}

/* PRICE */

.training-price-box {
    margin-top: 30px;
    background: linear-gradient(135deg, #4f6f2f, #4f6f2f);
    color: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

    .training-price-box span {
        opacity: 0.8;
    }

    .training-price-box h1 {
        font-size: 56px;
        margin: 10px 0;
    }

.training-note {
    margin-top: 20px;
    color: #777;
}

/* FEATURES */

.training-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-box {
    background: #fafafa;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

    .feature-box span {
        color: #4f6f2f;
        font-weight: bold;
    }

/* FORM */

.training-form-card form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.training-form-card input,
.training-form-card textarea {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.training-form-card textarea {
    min-height: 130px;
    resize: vertical;
}

/* BUTTON */

.training-btn {
    background: linear-gradient(135deg, #4f6f2f, #4f6f2f);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

    .training-btn:hover {
        transform: translateY(-3px);
    }

/* PROCESS */

.process-step {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 18px;
}

    .process-step span {
        width: 38px;
        height: 38px;
        background: #4f6f2f;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }

/* MOBILE */

@media(max-width: 992px) {

    .training-wrapper {
        grid-template-columns: 1fr;
    }

    .training-content h1 {
        font-size: 42px;
    }

    .training-features {
        grid-template-columns: 1fr;
    }
}

/* SPEAKING PAGE */

.speaking-premium {
    background: #4f6f2f;
    padding-bottom: 80px;
}

/* HERO */

.speaking-hero {
    height: 430px;
    background: url('/images/speaking.jpg') center center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.speaking-overlay {
    position: absolute;
    inset: 0;
    background: #4f6f2f;
}

.speaking-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 850px;
    padding: 20px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #4f6f2f;
    border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 20px;
    font-size: 14px;
}

.speaking-hero-content h1 {
    font-size: 62px;
    margin-bottom: 20px;
    font-weight: 700;
}

.speaking-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
}

/* WRAPPER */

.speaking-wrapper {
    max-width: 1300px;
    margin: -90px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
    position: relative;
    z-index: 5;
}

/* LEFT */

.speaking-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* CARDS */

.speaking-card,
.speaker-form-card,
.speaking-process,
.speaking-price-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

    .speaking-card h2,
    .speaker-form-card h2,
    .speaking-process h2 {
        margin-bottom: 20px;
        font-size: 30px;
    }

.speaking-text {
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

/* PRICE */

.speaking-price-card {
    text-align: center;
    background: linear-gradient(135deg, #4f6f2f, #4f6f2f);
    color: white;
}

    .speaking-price-card span {
        opacity: 0.85;
    }

    .speaking-price-card h1 {
        font-size: 70px;
        margin: 15px 0;
    }

.special-rate {
    margin-top: 20px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
}

/* FEATURES */

.speaking-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.s-feature {
    padding: 18px;
    background: #fafafa;
    border-radius: 14px;
    border: 1px solid #eee;
    font-weight: 500;
}

/* FORM */

.speaker-form-card form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.speaker-form-card input,
.speaker-form-card textarea {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.speaker-form-card textarea {
    min-height: 130px;
    resize: vertical;
}

/* BUTTON */

.speaker-btn {
    background: linear-gradient(135deg, #4f6f2f, #4f6f2f);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

    .speaker-btn:hover {
        transform: translateY(-3px);
    }

/* PROCESS */

.process-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

    .process-item span {
        width: 38px;
        height: 38px;
        background: #4f6f2f;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }

/* MOBILE */

@media(max-width: 992px) {

    .speaking-wrapper {
        grid-template-columns: 1fr;
    }

    .speaking-hero-content h1 {
        font-size: 42px;
    }

    .speaking-features {
        grid-template-columns: 1fr;
    }
}

/* MC PAGE */

.mc-premium {
    background: #4f6f2f;
    padding-bottom: 80px;
}

/* HERO */

.mc-hero {
    height: 430px;
    background: url('/images/mc.jpg') center center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mc-overlay {
    position: absolute;
    inset: 0;
    background: #4f6f2f;
}

.mc-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 850px;
    padding: 20px;
}

.mc-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #4f6f2f;
    border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 20px;
    font-size: 14px;
}

.mc-hero-content h1 {
    font-size: 62px;
    margin-bottom: 20px;
    font-weight: 700;
}

.mc-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4f6f2f;
}

/* WRAPPER */

.mc-wrapper {
    max-width: 1300px;
    margin: -90px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
    position: relative;
    z-index: 5;
}

/* LEFT */

.mc-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* CARDS */

.mc-card,
.mc-form-card,
.mc-process,
.mc-price-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

    .mc-card h2,
    .mc-form-card h2,
    .mc-process h2 {
        margin-bottom: 20px;
        font-size: 30px;
    }

.mc-text {
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

/* PRICE */

.mc-price-card {
    text-align: center;
    background: linear-gradient(135deg, #4f6f2f, #4f6f2f);
    color: white;
}

    .mc-price-card span {
        opacity: 0.85;
    }

    .mc-price-card h1 {
        font-size: 70px;
        margin: 15px 0;
    }

.mc-note {
    margin-top: 20px;
    padding: 14px;
    border-radius: 12px;
    background: #4f6f2f;
}

/* FEATURES */

.mc-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mc-feature {
    padding: 18px;
    background: #fafafa;
    border-radius: 14px;
    border: 1px solid #eee;
    font-weight: 500;
}

/* FORM */

.mc-form-card form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mc-form-card input,
.mc-form-card textarea {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.mc-form-card textarea {
    min-height: 130px;
    resize: vertical;
}

/* BUTTON */

.mc-btn {
    background: linear-gradient(135deg, #4f6f2f, #4f6f2f);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

    .mc-btn:hover {
        transform: translateY(-3px);
    }

/* PROCESS */

.mc-step {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

    .mc-step span {
        width: 38px;
        height: 38px;
        background: #4f6f2f;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }

/* MOBILE */

@media(max-width: 992px) {

    .mc-wrapper {
        grid-template-columns: 1fr;
    }

    .mc-hero-content h1 {
        font-size: 42px;
    }

    .mc-features {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   WORKSHOP PREMIUM PAGE
========================================= */

.workshop-premium-page {
    background: #4f6f2f;
    min-height: 100vh;
    padding-bottom: 80px;
}

/* HERO */

.workshop-hero {
    position: relative;
    height: 420px;
    background: url('/images/workshop.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.workshop-overlay {
    position: absolute;
    inset: 0;
    background: #4f6f2f;
}

.workshop-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 850px;
    padding: 20px;
}

.workshop-tag {
    display: inline-block;
    padding: 10px 22px;
    background: #4f6f2f;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.workshop-hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 700;
}

.workshop-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
}

/* MAIN */

.workshop-container {
    max-width: 1300px;
    margin: -80px auto 0;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    padding: 0 30px;
}

/* LEFT */

.workshop-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* CARDS */

.workshop-card,
.workshop-form-box,
.workshop-process {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

    .workshop-card h2,
    .workshop-form-box h2,
    .workshop-process h2 {
        font-size: 30px;
        margin-bottom: 25px;
        color: #111;
    }

/* PRICING */

.price-box {
    background: #fafafa;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 18px;
    margin-bottom: 20px;
}

    .price-box h3 {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .price-box span {
        color: #4f6f2f;
        font-size: 28px;
        font-weight: bold;
    }

/* INCLUDED */

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.included-item {
    background: #fafafa;
    padding: 22px;
    border-radius: 18px;
    transition: 0.3s;
}

    .included-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    }

    .included-item h4 {
        margin-bottom: 10px;
        color: #4f6f2f;
    }

    .included-item p {
        color: #555;
        line-height: 1.6;
    }

/* FORM */

.workshop-form-box p {
    color: #666;
    margin-bottom: 25px;
}

.workshop-form-box form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.workshop-form-box input,
.workshop-form-box textarea,
.workshop-form-box select {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #ddd;
    font-size: 15px;
    background: #fafafa;
    outline: none;
    transition: 0.3s;
}

    .workshop-form-box input:focus,
    .workshop-form-box textarea:focus,
    .workshop-form-box select:focus {
        border-color: #4f6f2f;
        background: white;
    }

/* BUTTON */

.workshop-btn {
    background: linear-gradient( 135deg, #4f6f2f, #4f6f2f );
    color: white;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

    .workshop-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(110,0,0,0.25);
    }

/* PROCESS */

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}

    .process-step span {
        min-width: 55px;
        height: 55px;
        background: #4f6f2f;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }

    .process-step h4 {
        margin-bottom: 6px;
    }

    .process-step p {
        color: #666;
        line-height: 1.6;
    }

/* RESPONSIVE */

@media (max-width: 992px) {

    .workshop-container {
        grid-template-columns: 1fr;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

    .workshop-hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {

    .workshop-hero {
        height: auto;
        padding: 100px 20px;
    }

    .workshop-card,
    .workshop-form-box,
    .workshop-process {
        padding: 30px 20px;
    }

    .workshop-hero-content h1 {
        font-size: 34px;
    }
}

/* =========================================
   CLEAN PREMIUM BOOKING
========================================= */
/* =========================================
   CV BOOKING PREMIUM
========================================= */

.cv-booking-premium {
    background: #4f6f2f;
    min-height: 100vh;
    padding-bottom: 80px;
}

/* HERO */

.booking-hero {
    position: relative;
    height: 420px;
    background: url('/images/cv-banner.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.booking-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(0,0,0,0.78), rgba(79,111,47,0.75) );
}

.booking-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 850px;
    padding: 20px;
}

.booking-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 25px;
    font-size: 13px;
    letter-spacing: 2px;
}

.booking-hero-content h1 {
    font-size: 58px;
    margin-bottom: 20px;
}

.booking-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

/* WRAPPER */

.booking-wrapper {
    max-width: 1300px;
    margin: -80px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    position: relative;
    z-index: 5;
}

/* CARDS */

.booking-card,
.booking-summary-card {
    background: white;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

    /* HEADINGS */

    .booking-card h2,
    .booking-summary-card h2 {
        font-size: 32px;
        margin-bottom: 20px;
        color: #111;
    }

/* FORM */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

    .form-group label {
        display: block;
        margin-bottom: 10px;
        font-weight: 600;
        color: #222;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 16px;
        border-radius: 14px;
        border: 1px solid #ddd;
        background: #fafafa;
        font-size: 15px;
        transition: 0.3s;
        outline: none;
        box-sizing: border-box;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #4f6f2f;
            background: white;
        }

    .form-group textarea {
        min-height: 140px;
        resize: vertical;
    }

/* FILE */

.upload-box {
    border: 2px dashed #cfd8c5;
    border-radius: 18px;
    padding: 25px;
    background: #fafafa;
    text-align: center;
}

    .upload-box p {
        margin-top: 10px;
        color: #777;
        font-size: 14px;
    }

/* BUTTON */

.booking-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #4f6f2f, #6b8f3e);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

    .booking-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(79,111,47,0.3);
    }

/* RIGHT */

.summary-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(79,111,47,0.1);
    color: #4f6f2f;
    font-size: 13px;
    font-weight: 600;
}

.booking-summary-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.summary-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summary-item {
    background: #fafafa;
    border: 1px solid #eee;
    padding: 16px 18px;
    border-radius: 14px;
    color: #333;
    font-weight: 500;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {

    .booking-hero {
        height: auto;
        padding: 100px 20px;
    }

    .booking-card,
    .booking-summary-card {
        padding: 30px 22px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .booking-hero-content h1 {
        font-size: 34px;
    }
}

/* QUICK ACTIONS */

.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.quick-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 22px;
    padding: 35px;
    text-decoration: none;
    color: #111;
    transition: 0.3s;
}

    .quick-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        border-color: #6e0000;
    }

    .quick-card h3 {
        margin-bottom: 12px;
        font-size: 24px;
    }

    .quick-card p {
        color: #666;
        line-height: 1.7;
    }

/* WHATSAPP */

.whatsapp-card {
    background: linear-gradient( 135deg, #25D366, #1da851 );
    color: white;
}

    .whatsapp-card p {
        color: rgba(255,255,255,0.9);
    }

/* MOBILE */

@media (max-width: 900px) {

    .quick-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .booking-clean {
        padding: 70px 20px;
    }

    .booking-clean-card {
        padding: 30px 20px;
    }

    .booking-clean-hero h1 {
        font-size: 38px;
    }
}

/* =========================================
   CAREER CONSULTATION PREMIUM
========================================= */

.service-detail-premium {
    background: #4f6f2f;
    min-height: 100vh;
    padding-bottom: 80px;
}

/* HERO */
.service-hero {
    position: relative;
    height: 380px;
    background: url('/images/career-bg.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: #4f6f2f;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 20px;
}

.service-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #4f6f2f;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 13px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

/* MAIN */
.service-container {
    max-width: 1200px;
    margin: -70px auto 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

/* LEFT */
.service-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* BOX */
.service-box,
.price-card,
.cta-card {
    background: white;
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* PRICE */
.price-card {
    background: linear-gradient(135deg, #4f6f2f, #4f6f2f);
    color: white;
    text-align: center;
}

    .price-card h2 {
        font-size: 52px;
        margin-bottom: 10px;
    }

    .price-card span {
        font-size: 15px;
        opacity: 0.9;
    }

/* HEADINGS */
.service-box h3,
.cta-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #111;
}

/* DESCRIPTION */
.service-description {
    color: #555;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* LIST */
.service-list {
    padding-left: 0;
    list-style: none;
}

    .service-list li {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        color: #444;
    }

/* PROCESS */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
    gap: 18px;
}

.process-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 25px 20px;
    transition: 0.3s;
}

    .process-card:hover {
        transform: translateY(-5px);
        border-color: #4f6f2f;
    }

    .process-card span {
        display: inline-block;
        width: 42px;
        height: 42px;
        line-height: 42px;
        border-radius: 50%;
        background: #4f6f2f;
        color: white;
        font-weight: bold;
        text-align: center;
        margin-bottom: 15px;
    }

    .process-card p {
        color: #555;
        line-height: 1.6;
    }

/* RIGHT CTA */
.service-cta {
    position: sticky;
    top: 30px;
    height: fit-content;
}

.cta-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    align-items: stretch;
}

    .hero-buttons a {
        flex: 1;
        min-width: 240px;
        height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: 0.3s ease;
        text-align: center;
    }

/* PRIMARY */

.btn-primary {
    background: linear-gradient(135deg, #4f6f2f, #4f6f2f);
    color: white;
    border: none;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(79,111,47,0.35);
    }

/* SECONDARY */

.btn-secondary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    backdrop-filter: blur(10px);
}

    .btn-secondary:hover {
        transform: translateY(-3px);
        background: rgba(255,255,255,0.15);
    }

/* MOBILE */

@media (max-width: 768px) {

    .hero-buttons {
        flex-direction: column;
    }

        .hero-buttons a {
            width: 100%;
            min-width: 100%;
        }
}


.btn-outline {
    border: 1px solid #ccc;
    color: #111;
    background: white;
}

    .btn-outline:hover {
        background: #111;
        color: white;
    }

/* RESPONSIVE */
@media (max-width: 900px) {

    .service-container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .service-cta {
        position: relative;
        top: 0;
    }
}

/* =========================================
   GLOBAL RESPONSIVE WEBSITE
========================================= */

@media (max-width: 992px) {

    /* GENERAL */
    body {
        overflow-x: hidden;
    }

    section {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    h1 {
        font-size: 42px !important;
        line-height: 1.2;
    }

    h2 {
        font-size: 30px !important;
    }

    p {
        font-size: 15px;
        line-height: 1.7;
    }

    /* NAVIGATION */
    .top-bar,
    .main-header .top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .menu,
    .main-header .menu {
        flex-wrap: wrap;
        justify-content: center;
        padding: 15px;
        gap: 10px;
    }

        .menu a {
            margin: 5px;
            font-size: 14px;
        }

    /* HERO */
    .hero,
    .main-header {
        padding: 60px 20px;
    }

        .hero h1,
        .hero-text {
            font-size: 48px !important;
            letter-spacing: 4px;
        }

    /* PREMIUM HERO */
    .hero-banner {
        height: auto;
        padding: 100px 20px;
        justify-content: center;
        text-align: center;
    }

    .hero-glass {
        padding: 35px;
        max-width: 100%;
    }

        .hero-glass h1 {
            font-size: 42px !important;
        }

    .hero-buttons {
        flex-direction: column;
    }

    /* COURSES */
    .courses {
        flex-wrap: wrap;
        gap: 25px;
    }

    .card {
        width: 100%;
        max-width: 350px;
    }

    /* ABOUT */
    .about-top,
    .about-intro,
    .career-container,
    .contact-section,
    .service-container,
    .booking-container {
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
    }

    .mission,
    .about-image,
    .contact-left,
    .contact-form,
    .career-text,
    .career-cards {
        width: 100% !important;
    }

        .about-image img {
            width: 220px;
            height: 220px;
        }

    /* FOUNDERS */
    .founder-cards {
        flex-wrap: wrap;
        gap: 40px;
    }

    /* VALUES */
    .about-values,
    .features,
    .resource-cards,
    .jobs,
    .blog-grid,
    .pricing-cards,
    .included-grid,
    .services-grid {
        grid-template-columns: 1fr !important;
        flex-direction: column;
        align-items: center;
    }

    .value-card,
    .resource-card,
    .job-card,
    .blog-card,
    .service-card {
        width: 100%;
        max-width: 350px;
    }

    /* VIDEOS */
    .video-grid {
        flex-direction: column;
        align-items: center;
    }

        .video-grid iframe {
            width: 100%;
            max-width: 350px;
        }

    /* MEMBERSHIP */
    .membership-images {
        flex-direction: column;
    }

        .membership-images div {
            width: 100%;
        }

    /* BOOKING */
    .booking-options {
        flex-direction: column;
    }

    .calendar iframe {
        height: 500px;
    }

    /* CONTACT */
    .contact-section {
        padding: 40px 20px;
        gap: 30px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
    }

    /* CAREER HUB */
    .career-cards {
        grid-template-columns: 1fr !important;
    }

    /* SERVICE PAGE */
    .service-hero,
    .cv-hero {
        height: auto;
        padding: 100px 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 42px !important;
    }

    /* BUTTONS */
    .btn,
    .btn-primary,
    .btn-outline,
    .cta-btn {
        width: 100%;
        text-align: center;
    }

    /* TRUST */
    .trust-container {
        flex-direction: column;
        gap: 30px;
    }

    /* NEWSLETTER */
    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

        .newsletter-form input,
        .newsletter-form button {
            width: 100%;
        }
}

/* =========================================
   MOBILE DEVICES
========================================= */

@media (max-width: 768px) {

    h1 {
        font-size: 34px !important;
    }

    h2 {
        font-size: 26px !important;
    }

    p {
        font-size: 14px;
    }

    /* HERO */
    .hero h1,
    .hero-text {
        font-size: 36px !important;
        letter-spacing: 2px;
    }

    .hero-glass {
        padding: 25px;
    }

        .hero-glass h1 {
            font-size: 34px !important;
        }

        .hero-glass p {
            font-size: 15px;
        }

    /* ABOUT */
    .about-page {
        padding: 50px 15px;
    }

    .about-image img {
        width: 180px;
        height: 180px;
    }

    /* CARDS */
    .card,
    .blog-card,
    .service-card,
    .resource-card,
    .job-card,
    .value-card {
        width: 100%;
    }

    /* PADDING */
    .career-hub,
    .resources-page,
    .blog-page,
    .services-hero,
    .membership-hero,
    .included,
    .quote,
    .cta-section {
        padding: 60px 20px;
    }

    /* PROCESS CARDS */
    .process-grid {
        grid-template-columns: 1fr !important;
    }

    /* TABLETS & MOBILE */
    .service-container,
    .booking-card,
    .booking-container {
        padding: 0 15px;
    }
}

/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 480px) {

    .hero h1,
    .hero-text,
    .hero-content h1 {
        font-size: 28px !important;
    }

    .top-bar {
        padding: 10px;
    }

    .menu {
        padding: 10px;
    }

        .menu a {
            font-size: 13px;
            padding: 5px 8px;
        }

    .hero-glass,
    .glass-card,
    .process-card,
    .price-card,
    .service-box,
    .cta-card {
        padding: 20px;
        border-radius: 16px;
    }

    .btn,
    .btn-primary,
    .btn-outline {
        padding: 14px;
        font-size: 14px;
    }

    .calendar iframe {
        height: 400px;
    }

    .career-card,
    .service-card,
    .resource-card,
    .job-card,
    .blog-card {
        padding: 20px;
    }
}
/* =========================================
   PREMIUM TESTIMONIAL SECTION
========================================= */
.testimonial-section {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(135deg, #4f6f2f, #32471d);
    overflow: hidden;
}

/* SOFT OVERLAY */
.testimonial-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 30%), radial-gradient(circle at bottom left, rgba(255,255,255,0.05), transparent 25%);
    z-index: 1;
}

.testimonial-container {
    position: relative;
    z-index: 2;
    max-width: 1250px;
    margin: auto;
}

/* HEADER */
.testimonial-header {
    text-align: center;
    max-width: 800px;
    margin: auto auto 70px;
    color: white;
}

.testimonial-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.testimonial-header h2 {
    font-size: 46px;
    margin-bottom: 18px;
    font-weight: 700;
}

.testimonial-header p {
    color: rgba(255,255,255,0.88);
    line-height: 1.8;
    font-size: 17px;
}

/* GRID */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.testimonial-card {
    position: relative;
    background: rgba(255,255,255,0.97);
    border-radius: 28px;
    padding: 40px 35px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.12);
    transition: 0.35s ease;
}

    .testimonial-card:hover {
        transform: translateY(-8px);
    }

    /* FEATURED CARD */
    .testimonial-card.featured {
        background: linear-gradient(135deg, #ffffff, #f7f8f3);
        border: 2px solid rgba(107,142,35,0.15);
    }

/* QUOTE */
.quote {
    font-size: 70px;
    line-height: 1;
    color: #6b8e23;
    opacity: 0.2;
    position: absolute;
    top: 18px;
    right: 25px;
    font-family: serif;
}

/* TESTIMONIAL TEXT */
.testimonial-card p {
    position: relative;
    z-index: 2;
    color: black;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 30px;
}

/* USER */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .testimonial-user img {
        width: 58px;
        height: 58px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid rgba(107,142,35,0.15);
    }

    .testimonial-user h4 {
        margin: 0;
        color: #111;
        font-size: 17px;
    }

    .testimonial-user span {
        color: black;
        font-size: 14px;
    }

/* RESPONSIVE */
@media (max-width: 992px) {

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {

    .testimonial-section {
        padding: 90px 20px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-header h2 {
        font-size: 30px;
    }

    .testimonial-header p {
        font-size: 15px;
    }
}

.linkedin-branding-section {
    background: linear-gradient(135deg, #4f6f2f, #3d5724);
    min-height: 100vh;
    padding-bottom: 100px;
}

.linkedin-branding-hero {
    text-align: center;
    padding: 120px 20px 150px;
    color: white;
    max-width: 850px;
    margin: auto;
}

.linkedin-branding-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 25px;
    font-size: 13px;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.linkedin-branding-hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 700;
}

.linkedin-branding-hero p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.linkedin-branding-wrapper {
    max-width: 1250px;
    margin: -70px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    position: relative;
    z-index: 5;
}

.linkedin-branding-form-card {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.linkedin-branding-header {
    margin-bottom: 35px;
}

    .linkedin-branding-header h2 {
        font-size: 34px;
        margin-bottom: 12px;
        color: #111;
    }

    .linkedin-branding-header p {
        color: #666;
        line-height: 1.8;
    }

.linkedin-branding-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.linkedin-branding-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.linkedin-branding-group {
    display: flex;
    flex-direction: column;
}

    .linkedin-branding-group label {
        margin-bottom: 10px;
        font-size: 14px;
        font-weight: 600;
        color: #222;
    }

    .linkedin-branding-group input,
    .linkedin-branding-group textarea {
        width: 100%;
        padding: 18px;
        border-radius: 16px;
        border: 1px solid #ddd;
        background: #fafafa;
        font-size: 15px;
        transition: 0.3s ease;
        outline: none;
    }

    .linkedin-branding-group textarea {
        min-height: 140px;
        resize: vertical;
    }

        .linkedin-branding-group input:focus,
        .linkedin-branding-group textarea:focus {
            border-color: #6b8e23;
            background: white;
            box-shadow: 0 0 0 4px rgba(107,142,35,0.12);
        }

.linkedin-branding-btn {
    width: 100%;
    border: none;
    padding: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #6b8e23, #4f6f2f);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 10px;
}

    .linkedin-branding-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(79,111,47,0.25);
    }

.linkedin-branding-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.linkedin-branding-price-card {
    background: linear-gradient(135deg, #6b8e23, #4f6f2f);
    color: white;
    border-radius: 28px;
    padding: 40px 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.linkedin-branding-price-tag {
    opacity: 0.85;
    font-size: 14px;
    letter-spacing: 1px;
}

.linkedin-branding-price-card h2 {
    font-size: 64px;
    margin: 15px 0;
    font-weight: 700;
}

.linkedin-branding-price-card p {
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
}

.linkedin-branding-feature-card,
.linkedin-branding-process-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

    .linkedin-branding-feature-card h3,
    .linkedin-branding-process-card h3 {
        margin-bottom: 22px;
        font-size: 24px;
        color: #111;
    }

.linkedin-branding-feature-item {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    color: #444;
    line-height: 1.6;
}

    .linkedin-branding-feature-item:last-child {
        border-bottom: none;
    }

.linkedin-branding-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

    .linkedin-branding-step span {
        min-width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #6b8e23;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }

    .linkedin-branding-step p {
        color: #555;
        line-height: 1.7;
    }

@media (max-width: 992px) {

    .linkedin-branding-wrapper {
        grid-template-columns: 1fr;
    }

    .linkedin-branding-grid {
        grid-template-columns: 1fr;
    }

    .linkedin-branding-hero h1 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {

    .linkedin-branding-hero {
        padding: 90px 20px 120px;
    }

    .linkedin-branding-form-card,
    .linkedin-branding-feature-card,
    .linkedin-branding-process-card,
    .linkedin-branding-price-card {
        padding: 28px 22px;
    }

    .linkedin-branding-hero h1 {
        font-size: 34px;
    }

    .linkedin-branding-hero p {
        font-size: 15px;
    }
}

.career-consultation-section {
    background: linear-gradient(135deg, #4f6f2f, #3d5724);
    min-height: 100vh;
    padding-bottom: 100px;
}

.career-consultation-hero {
    text-align: center;
    padding: 120px 20px 150px;
    color: white;
    max-width: 850px;
    margin: auto;
}

.career-consultation-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 25px;
    font-size: 13px;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.career-consultation-hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 700;
}

.career-consultation-hero p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
}

.career-consultation-wrapper {
    max-width: 1250px;
    margin: -70px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    position: relative;
    z-index: 5;
}

.career-consultation-form-card {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.career-consultation-header {
    margin-bottom: 35px;
}

    .career-consultation-header h2 {
        font-size: 34px;
        margin-bottom: 12px;
        color: #111;
    }

    .career-consultation-header p {
        color: #666;
        line-height: 1.8;
    }

.career-consultation-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.career-consultation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.career-consultation-group {
    display: flex;
    flex-direction: column;
}

    .career-consultation-group label {
        margin-bottom: 10px;
        font-size: 14px;
        font-weight: 600;
        color: #222;
    }

    .career-consultation-group input,
    .career-consultation-group textarea {
        width: 100%;
        padding: 18px;
        border-radius: 16px;
        border: 1px solid #ddd;
        background: #fafafa;
        font-size: 15px;
        transition: 0.3s ease;
        outline: none;
    }

    .career-consultation-group textarea {
        min-height: 140px;
        resize: vertical;
    }

        .career-consultation-group input:focus,
        .career-consultation-group textarea:focus {
            border-color: #6b8e23;
            background: white;
            box-shadow: 0 0 0 4px rgba(107,142,35,0.12);
        }

.career-consultation-btn {
    width: 100%;
    border: none;
    padding: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #6b8e23, #4f6f2f);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 10px;
}

    .career-consultation-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(79,111,47,0.25);
    }

.career-consultation-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.career-consultation-price-card {
    background: linear-gradient(135deg, #6b8e23, #4f6f2f);
    color: white;
    border-radius: 28px;
    padding: 40px 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.career-consultation-tag {
    opacity: 0.85;
    font-size: 14px;
    letter-spacing: 1px;
}

.career-consultation-price-card h2 {
    font-size: 64px;
    margin: 15px 0;
    font-weight: 700;
}

.career-consultation-price-card p {
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
}

.career-consultation-feature-card,
.career-consultation-process-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

    .career-consultation-feature-card h3,
    .career-consultation-process-card h3 {
        margin-bottom: 22px;
        font-size: 24px;
        color: #111;
    }

.career-consultation-feature-item {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    color: #444;
    line-height: 1.6;
}

    .career-consultation-feature-item:last-child {
        border-bottom: none;
    }

.career-consultation-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

    .career-consultation-step span {
        min-width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #6b8e23;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }

    .career-consultation-step p {
        color: #555;
        line-height: 1.7;
    }

@media (max-width: 992px) {

    .career-consultation-wrapper {
        grid-template-columns: 1fr;
    }

    .career-consultation-grid {
        grid-template-columns: 1fr;
    }

    .career-consultation-hero h1 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {

    .career-consultation-hero {
        padding: 90px 20px 120px;
    }

    .career-consultation-form-card,
    .career-consultation-feature-card,
    .career-consultation-process-card,
    .career-consultation-price-card {
        padding: 28px 22px;
    }

    .career-consultation-hero h1 {
        font-size: 34px;
    }

    .career-consultation-hero p {
        font-size: 15px;
    }
}

.consultation-hub {
    background: linear-gradient(135deg, #5d7f36 0%, #4f6f2f 45%, #32471d 100%);
    min-height: 100vh;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

    .consultation-hub::before {
        content: "";
        position: absolute;
        width: 650px;
        height: 650px;
        border-radius: 50%;
        background: rgba(255,255,255,0.05);
        top: -250px;
        right: -180px;
    }

.consultation-hub-hero {
    text-align: center;
    max-width: 850px;
    margin: auto;
    color: white;
    position: relative;
    z-index: 2;
}

.consultation-hub-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.consultation-hub-hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 18px;
}

.consultation-hub-hero p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
}

.consultation-hub-container {
    max-width: 1100px;
    margin: 70px auto 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}

.consultation-selector {
    margin-bottom: 45px;
}

    .consultation-selector label {
        display: block;
        margin-bottom: 14px;
        font-size: 15px;
        font-weight: 600;
        color: #111;
    }

    .consultation-selector select {
        width: 100%;
        padding: 18px 20px;
        border-radius: 18px;
        border: 1px solid #dfe5d6;
        background: #f7f8f3;
        font-size: 15px;
        outline: none;
        transition: 0.3s ease;
        cursor: pointer;
    }

        .consultation-selector select:focus {
            border-color: #6b8e23;
            background: white;
            box-shadow: 0 0 0 5px rgba(107,142,35,0.14);
        }

.consultation-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.consultation-card {
    background: white;
    border-radius: 24px;
    padding: 35px 28px;
    text-decoration: none;
    border: 1px solid #f0f0f0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

    .consultation-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(79,111,47,0.18);
    }

    .consultation-card h3 {
        font-size: 24px;
        margin-bottom: 12px;
        color: #111;
    }

    .consultation-card p {
        font-size: 15px;
        line-height: 1.7;
        color: #666;
    }

.consultation-whatsapp {
    background: linear-gradient(135deg, #6b8e23, #4f6f2f);
}

    .consultation-whatsapp h3,
    .consultation-whatsapp p {
        color: white;
    }

@media (max-width: 992px) {

    .consultation-cards {
        grid-template-columns: 1fr;
    }

    .consultation-hub-hero h1 {
        font-size: 46px;
    }

    .consultation-hub-container {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {

    .consultation-hub {
        padding: 80px 15px;
    }

    .consultation-hub-hero h1 {
        font-size: 36px;
    }

    .consultation-hub-hero p {
        font-size: 15px;
    }

    .consultation-hub-container {
        padding: 30px 22px;
        border-radius: 24px;
    }

    .consultation-card {
        padding: 28px 22px;
    }
}
.career-solutions-section {
    background: linear-gradient(135deg, #f7f8f3 0%, #eef2e7 100%);
    padding: 110px 20px;
    position: relative;
    overflow: hidden;
}

    .career-solutions-section::before {
        content: "";
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: rgba(107,142,35,0.05);
        top: -300px;
        right: -220px;
    }

.career-solutions-header {
    text-align: center;
    max-width: 850px;
    margin: auto auto 70px;
    position: relative;
    z-index: 2;
}

.career-solutions-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(107,142,35,0.08);
    border: 1px solid rgba(107,142,35,0.15);
    color: #4f6f2f;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.career-solutions-header h1 {
    font-size: 64px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

.career-solutions-header p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.career-solutions-grid {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.career-solutions-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 40px 35px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.06);
    transition: 0.35s ease;
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .career-solutions-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(79,111,47,0.14);
    }

    .career-solutions-card h3 {
        font-size: 28px;
        color: #111;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .career-solutions-card p {
        color: #666;
        line-height: 1.8;
        font-size: 15px;
        margin-bottom: 30px;
    }

.career-solutions-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, #6b8e23, #4f6f2f);
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
    width: fit-content;
}

    .career-solutions-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 35px rgba(79,111,47,0.22);
    }

.career-solutions-featured {
    background: linear-gradient(135deg, #5d7f36 0%, #4f6f2f 50%, #32471d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

    .career-solutions-featured::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255,255,255,0.06);
        top: -100px;
        right: -100px;
    }

    .career-solutions-featured h3,
    .career-solutions-featured p {
        color: white;
        position: relative;
        z-index: 2;
    }

.career-solutions-featured-btn {
    background: white;
    color: #4f6f2f;
    position: relative;
    z-index: 2;
}

    .career-solutions-featured-btn:hover {
        background: #f7f8f3;
    }

@media (max-width: 1100px) {

    .career-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .career-solutions-section {
        padding: 80px 15px;
    }

    .career-solutions-header {
        margin-bottom: 50px;
    }

        .career-solutions-header h1 {
            font-size: 40px;
        }

        .career-solutions-header p {
            font-size: 15px;
        }

    .career-solutions-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .career-solutions-card {
        padding: 32px 24px;
        border-radius: 24px;
    }

        .career-solutions-card h3 {
            font-size: 24px;
        }

    .career-solutions-btn {
        width: 100%;
    }
}
.insights-section {
    background: linear-gradient(135deg, #f7f8f3 0%, #eef2e7 100%);
    padding: 110px 20px;
    position: relative;
    overflow: hidden;
}

    .insights-section::before {
        content: "";
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: rgba(107,142,35,0.05);
        top: -300px;
        right: -220px;
    }

.insights-hero {
    text-align: center;
    max-width: 850px;
    margin: auto auto 80px;
    position: relative;
    z-index: 2;
}

.insights-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(107,142,35,0.08);
    border: 1px solid rgba(107,142,35,0.15);
    color: #4f6f2f;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.insights-hero h1 {
    font-size: 64px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
    line-height: 1.2;
}

.insights-hero p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.insights-featured {
    max-width: 1250px;
    margin: auto auto 70px;
    background: white;
    border-radius: 34px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 22px 60px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}

.insights-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.insights-featured-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insights-label {
    display: inline-block;
    width: fit-content;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(107,142,35,0.1);
    color: #4f6f2f;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
}

.insights-featured-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #111;
}

.insights-featured-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 30px;
}

.insights-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 16px 28px;
    border-radius: 16px;
    background: linear-gradient(135deg, #6b8e23, #4f6f2f);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

    .insights-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(79,111,47,0.22);
    }

.insights-grid {
    max-width: 1250px;
    margin: auto auto 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.insights-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0,0,0,0.06);
    transition: 0.35s ease;
}

    .insights-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(79,111,47,0.14);
    }

.insights-image-wrapper {
    overflow: hidden;
}

    .insights-image-wrapper img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: 0.4s ease;
        display: block;
    }

.insights-card:hover .insights-image-wrapper img {
    transform: scale(1.05);
}

.insights-content {
    padding: 35px;
}

.insights-category {
    display: inline-block;
    margin-bottom: 18px;
    color: #6b8e23;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.insights-content h3 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #111;
}

.insights-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 24px;
}

.insights-link {
    color: #4f6f2f;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

    .insights-link:hover {
        color: #6b8e23;
    }

.insights-newsletter {
    max-width: 1000px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.insights-newsletter-box {
    background: linear-gradient(135deg, #5d7f36 0%, #4f6f2f 50%, #32471d 100%);
    border-radius: 34px;
    padding: 70px 50px;
    text-align: center;
    color: white;
    overflow: hidden;
    position: relative;
}

    .insights-newsletter-box::before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(255,255,255,0.05);
        top: -120px;
        right: -100px;
    }

    .insights-newsletter-box h2 {
        font-size: 48px;
        margin-bottom: 18px;
        position: relative;
        z-index: 2;
    }

    .insights-newsletter-box p {
        font-size: 16px;
        line-height: 1.9;
        color: rgba(255,255,255,0.9);
        max-width: 650px;
        margin: auto auto 35px;
        position: relative;
        z-index: 2;
    }

.insights-form {
    display: flex;
    gap: 16px;
    max-width: 650px;
    margin: auto;
    position: relative;
    z-index: 2;
}

    .insights-form input {
        flex: 1;
        padding: 18px 22px;
        border-radius: 16px;
        border: none;
        outline: none;
        font-size: 15px;
    }

    .insights-form button {
        padding: 18px 28px;
        border: none;
        border-radius: 16px;
        background: white;
        color: #4f6f2f;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s ease;
    }

        .insights-form button:hover {
            transform: translateY(-2px);
            background: #f7f8f3;
        }

@media (max-width: 650px) {

    .insights-featured {
        grid-template-columns: 1fr;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insights-featured-content {
        padding: 40px;
    }

    .insights-hero h1 {
        font-size: 46px;
    }

    .insights-newsletter-box h2 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {

    .insights-section {
        padding: 80px 15px;
    }

    .insights-hero {
        margin-bottom: 50px;
    }

        .insights-hero h1 {
            font-size: 36px;
        }

        .insights-hero p {
            font-size: 15px;
        }

    .insights-featured-content {
        padding: 30px 24px;
    }

        .insights-featured-content h2 {
            font-size: 30px;
        }

    .insights-content {
        padding: 28px 24px;
    }

        .insights-content h3 {
            font-size: 24px;
        }

    .insights-newsletter-box {
        padding: 50px 24px;
        border-radius: 28px;
    }

        .insights-newsletter-box h2 {
            font-size: 30px;
        }

    .insights-form {
        flex-direction: column;
    }

        .insights-form button {
            width: 100%;
        }
}
/* Resources Section */
.career-resources-page {
    background: linear-gradient(135deg, #f7f8f3 0%, #eef2e7 100%);
    padding: 110px 20px;
    position: relative;
    overflow: hidden;
}

    /* soft decorative glow */
    .career-resources-page::before {
        content: "";
        position: absolute;
        width: 750px;
        height: 750px;
        border-radius: 50%;
        background: rgba(107,142,35,0.05);
        top: -320px;
        right: -250px;
    }

.career-resources-hero {
    text-align: center;
    max-width: 900px;
    margin: auto auto 80px;
    position: relative;
    z-index: 2;
}

.career-resources-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(107,142,35,0.08);
    border: 1px solid rgba(107,142,35,0.15);
    color: #4f6f2f;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.career-resources-hero h1 {
    font-size: 64px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

.career-resources-hero p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.career-resources-block {
    max-width: 1250px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
}

.career-resources-header {
    text-align: center;
    margin-bottom: 40px;
}

.career-resources-label {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(107,142,35,0.1);
    color: #4f6f2f;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.career-resources-header h2 {
    font-size: 36px;
    color: #111;
}

.career-resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.career-resources-card {
    background: white;
    border-radius: 30px;
    padding: 40px 35px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .career-resources-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(79,111,47,0.14);
    }

.career-resources-icon {
    font-size: 28px;
}

.career-resources-card h3 {
    font-size: 24px;
    color: #111;
}

.career-resources-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.career-resources-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 14px 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6b8e23, #4f6f2f);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

    .career-resources-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(79,111,47,0.22);
    }

/* VIDEO SECTION */
.career-resources-video-grid {
    grid-template-columns: repeat(3, 1fr);
}

.career-resources-video-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

    .career-resources-video-card:hover {
        transform: translateY(-6px);
    }

.career-resources-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

    .career-resources-video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

.career-resources-video-card p {
    padding: 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .career-resources-grid {
        grid-template-columns: 1fr;
    }

    .career-resources-video-grid {
        grid-template-columns: 1fr;
    }

    .career-resources-hero h1 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {

    .career-resources-page {
        padding: 80px 15px;
    }

    .career-resources-hero h1 {
        font-size: 34px;
    }

    .career-resources-hero p {
        font-size: 15px;
    }

    .career-resources-card {
        padding: 30px 22px;
    }
}
.about-section {
    background: #f7f8f3;
    padding: 110px 20px;
    position: relative;
    overflow: hidden;
}

    .about-section::before {
        content: "";
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: rgba(107,142,35,0.05);
        top: -280px;
        right: -220px;
    }

/* HERO */
.about-hero {
    text-align: center;
    max-width: 850px;
    margin: auto auto 80px;
    position: relative;
    z-index: 2;
}

.about-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(107,142,35,0.08);
    color: #4f6f2f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-hero h1 {
    font-size: 60px;
    color: #111;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/* WRAPPER */
.about-wrapper {
    max-width: 1200px;
    margin: auto auto 80px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.about-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #111;
}

.about-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 15px;
}

/* PURPOSE */
.about-purpose {
    max-width: 1100px;
    margin: auto auto 80px;
    position: relative;
    z-index: 2;
}

.about-purpose-card {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.06);
}

    .about-purpose-card h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .about-purpose-card p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 15px;
    }

.about-highlight {
    color: #4f6f2f;
    font-weight: 600;
}

/* VALUES */
.about-values {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.about-card {
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

    .about-card:hover {
        transform: translateY(-6px);
    }

    .about-card h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .about-card p {
        color: #666;
        line-height: 1.8;
    }

/* TESTIMONIAL */
.testimonial-section {
    background: linear-gradient(135deg, #4f6f2f, #32471d);
    padding: 110px 20px;
    position: relative;
    overflow: hidden;
}

.testimonial-overlay {
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -200px;
    right: -150px;
}

.testimonial-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.testimonial-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    margin-bottom: 20px;
    font-size: 13px;
}

.testimonial-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.testimonial-header p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 50px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    text-align: left;
}

    .testimonial-card.featured {
        background: white;
        color: #111;
    }

.quote {
    font-size: 40px;
    margin-bottom: 10px;
}

.testimonial-card p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-user {
    display: flex;
    gap: 12px;
    align-items: center;
}

    .testimonial-user img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
    }

    .testimonial-user h4 {
        margin: 0;
        font-size: 16px;
    }

    .testimonial-user span {
        font-size: 13px;
        opacity: 0.8;
    }

/* RESPONSIVE */
@media (max-width: 992px) {

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 40px;
    }
}

/*Home page career hub*/
.development-hub {
    padding: 110px 20px;
    background: #f7f8f3;
}

.development-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.development-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(107,142,35,0.1);
    color: #4f6f2f;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 15px;
}

.development-text h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #111;
}

.development-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.development-actions {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.development-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.development-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

    .development-card h3 {
        margin-bottom: 10px;
        color: #111;
    }

    .development-card p {
        color: #666;
    }

/* RESPONSIVE */
@media (max-width: 992px) {

    .development-wrapper {
        grid-template-columns: 1fr;
    }

    .development-grid {
        grid-template-columns: 1fr;
    }
}

/*Event Section*/

.upcoming-section {
    padding: 110px 20px;
    background: #f7f8f3;
}

.upcoming-container {
    max-width: 1250px;
    margin: auto;
}

/* HEADER */
.upcoming-header {
    text-align: center;
    max-width: 800px;
    margin: auto auto 60px;
}

.upcoming-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(107,142,35,0.1);
    color: #4f6f2f;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.upcoming-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #111;
}

.upcoming-header p {
    color: #666;
    line-height: 1.8;
}

/* GRID */
.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.upcoming-card {
    position: relative;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.35s ease;
}

    .upcoming-card:hover {
        transform: translateY(-8px);
    }

/* IMAGE */
.upcoming-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* DATE */
.upcoming-date {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 75px;
    height: 75px;
    background: white;
    border-radius: 20px;
    text-align: center;
    padding-top: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

    .upcoming-date span {
        display: block;
        font-size: 28px;
        font-weight: 700;
        color: #4f6f2f;
    }

    .upcoming-date small {
        color: #777;
        font-size: 12px;
    }

/* CONTENT */
.upcoming-content {
    padding: 30px;
}

.upcoming-type {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(107,142,35,0.1);
    color: #4f6f2f;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.upcoming-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #111;
}

.upcoming-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* DETAILS */
.upcoming-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    color: #555;
    font-size: 14px;
}

/* BUTTON */
.upcoming-btn {
    display: inline-block;
    padding: 14px 22px;
    background: linear-gradient(135deg, #6b8e23, #4f6f2f);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

    .upcoming-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(79,111,47,0.25);
    }

/* FEATURED */
.upcoming-card.featured {
    border: 2px solid rgba(107,142,35,0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .upcoming-grid {
        grid-template-columns: 1fr;
    }

    .upcoming-header h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {

    .upcoming-section {
        padding: 90px 20px;
    }

    .upcoming-content {
        padding: 24px;
    }

    .upcoming-header h2 {
        font-size: 28px;
    }
}

.hero-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 0 10px;
}

    .hero-logo img {
        width: 280px;
        max-width: 90%;
        object-fit: contain;
        display: block;
    }

/* FOOTER */

.site-footer {
    width: 100%;
    padding: 25px 20px;
    text-align: center;
    background: #4f6f2f;
    border-top: 1px solid rgba(255,255,255,0.08);
}

    .site-footer p {
        color: rgba(255,255,255,0.85);
        font-size: 14px;
        letter-spacing: 0.5px;
        margin: 0;
    }
/* =========================================
   GLOBAL RESPONSIVE FIXES
========================================= */

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* IMAGES */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* CONTAINERS */

section,
div,
main,
header,
footer {
    max-width: 100%;
}

/* RESPONSIVE TYPOGRAPHY */

h1 {
    line-height: 1.1;
}

p {
    line-height: 1.7;
}

/* BUTTONS */

.btn-primary,
.btn-secondary,
.btn,
.btn-outline,
.booking-btn,
.workshop-btn,
.event-btn,
.btn-courses {
    width: 100%;
    max-width: 100%;
    text-align: center;
}

/* TABLETS */

@media (max-width: 992px) {

    .booking-wrapper,
    .career-consultation-wrapper,
    .service-container,
    .courses-grid,
    .testimonial-grid,
    .events-grid,
    .workshop-container,
    .about-container,
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
    }

    .hero-buttons,
    .career-buttons {
        flex-direction: column;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .hero-logo img {
        width: 180px;
    }

    h1 {
        font-size: 42px !important;
    }

    h2 {
        font-size: 32px !important;
    }
}

/* MOBILE */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .main-header {
        padding: 0 15px;
    }

    .nav-wrapper {
        width: 100%;
        overflow-x: auto;
    }

    .menu {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }

        .menu a {
            font-size: 14px;
            padding: 10px 14px;
        }

    .hero-logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .hero-logo img {
            width: 160px;
        }

    .booking-form-card,
    .career-consultation-form-card,
    .contact-form-card,
    .contact-info-card,
    .price-card,
    .feature-card,
    .process-card,
    .workshop-card,
    .event-card,
    .testimonial-card,
    .course-card {
        padding: 24px !important;
        border-radius: 20px;
    }

    .form-grid,
    .career-consultation-grid {
        grid-template-columns: 1fr !important;
    }

    input,
    textarea,
    select,
    button {
        width: 100%;
        font-size: 16px;
    }

    h1 {
        font-size: 34px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    p {
        font-size: 15px;
    }

    .top-bar {
        text-align: center;
        padding: 12px;
    }

    .page-content {
        padding: 0;
    }

    .site-footer {
        text-align: center;
        padding: 20px;
    }
}

/* SMALL DEVICES */

@media (max-width: 480px) {

    h1 {
        font-size: 28px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    p {
        font-size: 14px;
    }

    .hero-logo img {
        width: 140px;
    }

    .menu a {
        font-size: 13px;
    }

    .btn-primary,
    .btn-secondary,
    .btn,
    .btn-outline {
        padding: 14px;
        font-size: 14px;
    }
}