:root {
    --bg-main: #f6f8fc;
    --bg-section: #ffffff;
    --bg-soft: #edf3ff;

    --accent-primary: #ff9f43;
    --accent-primary-strong: #f08a24;
    --accent-secondary: #4c6fff;

    --heading: #14213d;
    --text: #5f6b7a;
    --border: #dbe3f1;

    --shadow-sm: 0 8px 20px rgba(20, 33, 61, 0.08);
    --shadow-md: 0 16px 38px rgba(20, 33, 61, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(
        circle at top right,
        #ffffff 0%,
        var(--bg-main) 48%,
        #eef2fb 100%
    );
    color: var(--text);
    line-height: 1.65;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.sticky-social {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.social-link {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: #ffffff !important;
    stroke: #ffffff;
}

.social-link svg * {
    fill: #ffffff !important;
    stroke: #ffffff;
}

.social-link:hover {
    transform: translateX(4px);
    filter: brightness(1.05);
}

.social-facebook {
    background: #3b5998;
}

.social-twitter {
    background: #1da1f2;
}

.social-instagram {
    background: #e1306c;
}

.social-linkedin {
    background: #0077b5;
}

.social-github {
    background: #333333;
}

.social-youtube {
    background: #ff0000;
}

@media (max-width: 770px) {
    .sticky-social {
        overflow: hidden;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .social-link:hover {
        transform: none;
    }
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--heading);
    text-decoration: none;
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.site-logo {
    height: 75px;
    max-height: 75px;
    width: auto;
    display: block;
}

@media (max-width: 600px) {
    .site-logo {
        height: 60px;
        max-height: 60px;
    }
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-nav a,
.dropbtn {
    color: var(--heading);
    text-decoration: none;
    font-weight: 700;
    padding: 0.6rem 0.9rem;
    border-radius: 10px;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 0.95rem;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.main-nav a:hover,
.dropbtn:hover {
    background: rgba(76, 111, 255, 0.1);
    color: var(--accent-secondary);
}

.dropdown {
    position: relative;
}

.dropbtn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.drop-icon {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-top: -2px;
}

.dropdown.is-open .drop-icon,
.dropdown:hover .drop-icon {
    transform: rotate(-135deg);
    margin-top: 2px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    margin-top: 0;
    left: 0;
    min-width: 240px;
    background: var(--bg-section);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem;
}

.dropdown-content a {
    display: block;
    border-radius: 8px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.hero {
    position: relative;
    overflow: hidden;
}

.slider {
    position: relative;
    height: 460px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 4;
}

.slider-btn {
    pointer-events: auto;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(20, 33, 61, 0.18);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
    color: var(--heading);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.slider-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(76, 111, 255, 0.45);
    background: #ffffff;
}

.slider-prev::before,
.slider-next::before {
    font-size: 1.55rem;
    line-height: 1;
    font-weight: 700;
}

.slider-prev::before {
    content: "\2039";
}

.slider-next::before {
    content: "\203A";
}

.slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.55rem;
    z-index: 4;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(20, 33, 61, 0.35);
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    transition:
        width 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.slider-dot.active {
    width: 24px;
    background: var(--accent-secondary);
    border-color: var(--accent-secondary);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(
        130deg,
        rgba(255, 159, 67, 0.2),
        rgba(76, 111, 255, 0.16)
    );
}

.slide.active {
    opacity: 1;
}

.slide-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 567px) {
    .slide-media {
        object-position: 10%;
    }

    h2 {
        text-align: center;
    }
}


/* Transformation section */
.transformation {
    position: relative;
    padding: 5rem 0;
    margin-top: 1rem;
    overflow: hidden;
}

.transformation-bg {
    position: absolute;
    inset: 0;
    background-image: url("images/contact-bg.jpg");
    background-size: cover;

    transform: scale(1.02);
        background-position: 0px -194px;
}

.transformation-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        95deg,
        rgba(20, 33, 61, 0.72) 0%,
        rgba(20, 33, 61, 0.46) 45%,
        rgba(20, 33, 61, 0.28) 100%
    );
}

.transformation-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #f4f8ff;
}

.transformation-content h2 {
    color: #f4f8ff;
    margin-bottom: 0.9rem;
    font-size: clamp(1.55rem, 3.2vw, 2.4rem);
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.25);
}

.transformation-content p {
    max-width: 820px;
    margin: 0 auto 1.6rem;
    color: #f4f8ff;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.25);
}

.transformation-content .btn {
    background: linear-gradient(
        135deg,
        var(--accent-secondary),
        var(--accent-secondary)
    );
}

@media (min-width: 760px) and (max-width: 1220px){
    .transformation-bg{
                        background-position: 0px -110px;
        background-size: cover;
        background-repeat: no-repeat;
        
    }
}


@media (max-width: 760px) {
    .transformation {
        padding: 4rem 0;
    }

    .transformation-content p {
        margin-bottom: 1.2rem;
    }
    .transformation-content{
        margin: auto;
    }
    .transformation-bg{
        position: absolute;
    inset: 0;
    background-image: url("images/contact-bg.jpg");
    background-size: cover;

    transform: scale(1.02);
        background-position: 0px;
    }
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        95deg,
        rgba(20, 33, 61, 0.62) 0%,
        rgba(20, 33, 61, 0.44) 42%,
        rgba(20, 33, 61, 0.24) 100%
    );
}

.hero-side-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(360px, 42vw, 560px);
    height: 108%;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    z-index: 3;
}

.hero-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 5.4rem 0;
    width: 40%;
    margin-left: 10%;
}
@media (max-width: 1024px) {
    .hero-side-image {
        right: 0;
        width: clamp(290px, 44vw, 430px);
        height: 104%;
    }

    .hero-content {
        width: 52%;
    }
}

@media (max-width: 567px) {
    .slider {
        height: 520px;
    }

    .hero-content {
        width: 58%;
        margin-left: 5%;
        padding: 3.6rem 0;
    }

    .hero-side-image {
        display: block;
        right: 0;
        width: 42%;
        height: 92%;
        top: auto;
        bottom: 0;
        transform: none;
        border-radius: 18px 0 0 18px;
    }

    .hero-side-image img {
        object-position: 38% center;
    }

    .hero-content h1 {
        font-size: clamp(1.35rem, 6vw, 1.8rem);
    }

    .hero-content p {
        font-size: 0.92rem;
        line-height: 1.5;
    }
}
.hero-content h1,
.hero-content p {
    color: #f4f8ff;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.25);
}

h1,
h3,
h4 {
    color: var(--heading);
    margin-top: 0;
}
h2{
    color: #4c6fff;
    font-family: poppins;
}
h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    max-width: 740px;
    line-height: 1.2;
}

.section {
    background: var(--bg-section);
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 1px solid rgba(219, 227, 241, 0.5);
}

.section.alt {
    background: linear-gradient(180deg, #f8faff 0%, #f1f5ff 100%);
}

.section-lead {
    max-width: 780px;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: linear-gradient(
        135deg,
        var(--accent-primary),
        var(--accent-primary-strong)
    );
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
    padding: 0.82rem 1.35rem;
    border-radius: 10px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    box-shadow: 0 10px 24px rgba(240, 138, 36, 0.28);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(240, 138, 36, 0.36);
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

/* Auto-marquee for card sections (hover to pause) */
.cards.cards-auto {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
}

.cards.cards-auto .cards-track {
    display: flex;
    gap: 1.2rem;
    will-change: transform;
    flex-wrap: nowrap;
    animation: cards-marquee var(--marquee-duration, 22s) linear infinite;
}

/* Keep card sizing consistent with existing grid layout */
.cards.cards-auto .cards-track .card {
    flex: 0 0 calc((100% - 2 * 1.2rem) / 3);
}

.cards.cards-auto:hover .cards-track,
.cards.cards-auto[data-marquee-paused="true"] .cards-track {
    animation-play-state: paused;
}

.cards.cards-auto .cards-track .card {
    flex: 0 0 auto;
    width: 300px;
}

@keyframes cards-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .cards.cards-auto .cards-track {
        animation: none;
    }
}
.approach-card{
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.4rem;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(76, 111, 255, 0.45);
}

.card-cover {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    background: linear-gradient(
        135deg,
        rgba(255, 159, 67, 0.22),
        rgba(76, 111, 255, 0.2)
    );
    border: 1px solid rgba(76, 111, 255, 0.18);
}

a {
    text-decoration: none;
}

a:visited {
    color: var(--heading);
}
.card-icon img {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.quote {
    border-left: 5px solid var(--accent-primary);
}

.site-footer {
    background: #111f3a;
    color: #cbd5e8;
    padding-top: 2.5rem;
}

.site-footer h3,
.site-footer h4 {
    color: #f5f8ff;
}
.site-footer h3{
    font-weight: 300;
    font-family: poppins;
    font-size: 25px;
    color: rgba(255, 159, 67, 0.95);
    margin-bottom: 0px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr;
    gap: 1.2rem;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer a {
    color: #d9e4ff;
    text-decoration: none;
}

.site-footer a:hover {
    color: #99c0ff;
}

.footer-social {
    margin-top: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.footer-social .social-link {
    width: 34px;
    height: 34px;
    border-radius: 8px;
}

.copyright {
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(217, 228, 255, 0.2);
    color: #d0dbf1;
}

@media (max-width: 992px) {
    .cards,
    .three-col,
    .two-col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-choose-wrap {
        flex-direction: column;
        gap: 1.4rem;
    }
}

/* Why Choose Us */
.why-choose-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 6.2rem;
}

.why-choose-left {
    flex: 0 0 36%;
    padding-top: 1.1rem;
    text-align: center;
}

.why-choose-right {
    flex: 1;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}
.why-card-1{
    background: linear-gradient(0deg, #4189ff7a 43%, #4189ff 70%);
    
}
.why-card-2{
    background: linear-gradient(0deg, #ff6b357a 43%, #ff6b35 70%);
}
.why-card-3{
    background: linear-gradient(0deg, #10b9817a 43%, #10b981 70%);
}

.why-card-4{
    background: linear-gradient(0deg, #7c3aed7a 43%, #7c3aed 70%);
}
.why-card-5{
    background: linear-gradient(0deg, #ec48997a 43%, #ec4899 70%);
}
.why-card-6{
    background: linear-gradient(0deg, #f59e0b7a 43%, #f59e0b 70%);
}
.why-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.3rem 1.25rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

/*.why-card::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0; left: 0; right: 0;*/
/*    height: 4px;*/
/*    border-radius: 16px 16px 0 0;*/
/*}*/

/*.why-card:nth-child(1)::before { background: #5b6fff; }*/
/*.why-card:nth-child(2)::before { background: #ff8c55; }*/
/*.why-card:nth-child(3)::before { background: #34c98e; }*/
/*.why-card:nth-child(4)::before { background: #a855f7; }*/
/*.why-card:nth-child(5)::before { background: #f43f8e; }*/
/*.why-card:nth-child(6)::before { background: #f5a623; }*/

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(76, 111, 255, 0.3);
}

/* Remove the old ::before blob */
.why-card::after { display: none; }

.why-card-icon img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    padding: 8px;
    margin-bottom: 0.8rem;
    background: #f0f3ff;
    border: 1px solid rgba(76, 111, 255, 0.12);
    display: block;
}

.why-card h3 {
    margin: 0;
    font-size: 0.98rem;
    color: var(--heading);
    line-height: 1.4;
    font-weight:500;
}

.why-card p {
    margin: 0.4rem 0 0;
    color: var(--text);
    font-size: 0.88rem;
}
@media (max-width: 760px) {
    .why-choose-wrap {
        flex-direction: column;
        gap: 1.2rem;
    }

    .why-choose-left {
        flex: unset;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }
}

/* Content reveal animations */
.reveal {
    opacity: 0;
    will-change: opacity, transform;
    transition:
        opacity 640ms ease,
        transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-up {
    transform: translateY(24px);
}
.reveal-up h3{
    font-family: poppins;
    font-weight: 600;
    font-size: 21px;
}
.reveal-up p{
    color: black;
}

.reveal-left {
    transform: translateX(-24px);
}

.reveal-right {
    transform: translateX(24px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.reveal-section .card.reveal.is-visible:nth-child(2) {
    transition-delay: 120ms;
}

.reveal-section .card.reveal.is-visible:nth-child(3) {
    transition-delay: 180ms;
}

.reveal-section .card.reveal.is-visible:nth-child(4) {
    transition-delay: 240ms;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .career-hero-decor,
    .career-floater,
    .career-media-overlay,
    .career-media-badge {
        animation: none !important;
    }
}

/* Business / Career Consultation Hero */
.career-hero {
    position: relative;
    overflow: hidden;
    padding: 6.2rem 0 4.2rem;
    background:
        radial-gradient(
            circle at 18% 18%,
            rgba(76, 111, 255, 0.16) 0%,
            rgba(76, 111, 255, 0.06) 30%,
            transparent 62%
        ),
        radial-gradient(
            circle at 82% 22%,
            rgba(255, 159, 67, 0.2) 0%,
            rgba(255, 159, 67, 0.08) 35%,
            transparent 64%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.7) 0%,
            rgba(246, 248, 252, 1) 100%
        );
}

.career-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("images/two-business-men-celebrating-deal.jpg");
    background-size: cover;
    background-position: center;
    filter: saturate(1.05) contrast(1.02);
    transform: scale(1.06);
    opacity: 0.16;
}

.career-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(20, 33, 61, 0.06) 0%,
        rgba(20, 33, 61, 0.02) 35%,
        rgba(255, 159, 67, 0.06) 75%,
        rgba(76, 111, 255, 0.06) 100%
    );
    pointer-events: none;
}

.career-hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.career-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 2.4rem;
    align-items: center;
}

.career-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(76, 111, 255, 0.22);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(20, 33, 61, 0.06);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #2a4ecf;
    margin-bottom: 1.1rem;
}

.career-chip-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        var(--accent-secondary),
        var(--accent-primary)
    );
    box-shadow: 0 0 0 6px rgba(76, 111, 255, 0.12);
}

.career-h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--heading);
}

.career-subtitle {
    margin: 0 0 1.55rem;
    max-width: 58ch;
    color: #5a6881;
    font-size: 1.06rem;
}

.career-hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 1.55rem;
}

.career-cta-primary {
    box-shadow: 0 14px 30px rgba(240, 138, 36, 0.22);
}

.career-cta-secondary {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(76, 111, 255, 0.22);
    color: #1f3a84;
    box-shadow: 0 10px 24px rgba(20, 33, 61, 0.06);
}

.career-cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(20, 33, 61, 0.1);
}

.career-quick-points {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(219, 227, 241, 0.7);
    box-shadow: 0 10px 22px rgba(20, 33, 61, 0.05);
    backdrop-filter: blur(10px);
}

.point-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #1d4ed8;
    background: linear-gradient(
        135deg,
        rgba(76, 111, 255, 0.18),
        rgba(255, 159, 67, 0.1)
    );
    border: 1px solid rgba(76, 111, 255, 0.18);
    flex: none;
}

.point-copy strong {
    display: block;
    color: #14213d;
    margin-bottom: 2px;
}

.point-copy span {
    color: #5f6b7a;
    font-size: 0.95rem;
}

.career-hero-media {
    position: relative;
    display: grid;
    gap: 14px;
    align-content: start;
    justify-items: end;
}

.career-media-card {
    width: min(520px, 100%);
    border-radius: 28px;
    padding: 12px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.88) 0%,
        rgba(232, 238, 255, 0.74) 100%
    );
    border: 1px solid rgba(76, 111, 255, 0.18);
    box-shadow: 0 30px 70px rgba(20, 33, 61, 0.18);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.career-media-frame {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
}

.career-media-frame img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
}

.career-media-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(255, 159, 67, 0.42),
            transparent 42%
        ),
        linear-gradient(
            100deg,
            rgba(76, 111, 255, 0.32),
            rgba(20, 33, 61, 0.08) 55%,
            rgba(255, 159, 67, 0.2) 100%
        );
    opacity: 0.4;
    mix-blend-mode: soft-light;
    animation: careerOverlayShimmer 5.8s ease-in-out infinite;
}

@keyframes careerOverlayShimmer {
    0%,
    100% {
        transform: translateX(0);
        opacity: 0.34;
    }
    50% {
        transform: translateX(10px);
        opacity: 0.52;
    }
}

.career-media-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    max-width: 240px;
    border-radius: 18px;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 18px 45px rgba(20, 33, 61, 0.18);
    backdrop-filter: blur(10px);
    animation: careerBadgeFloat 6.6s ease-in-out infinite;
}

@keyframes careerBadgeFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.career-media-badge-top {
    font-weight: 900;
    letter-spacing: -0.01em;
    color: #14213d;
    margin-bottom: 0.35rem;
}

.career-media-badge-bottom {
    color: #56647d;
    font-size: 0.95rem;
}

/* Floating decor */
.career-floater {
    width: 190px;
    height: 190px;
    border-radius: 999px;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 159, 67, 0.28),
        rgba(255, 159, 67, 0.08) 70%,
        transparent 80%
    );
    border: 1px solid rgba(255, 159, 67, 0.18);
    filter: blur(0.2px);
    position: absolute;
    z-index: 1;
    opacity: 0.85;
    animation: careerFloater1 8.4s ease-in-out infinite;
}

.floater-1 {
    right: -32px;
    top: 22px;
}

.floater-2 {
    right: 110px;
    top: 310px;
    width: 120px;
    height: 120px;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(76, 111, 255, 0.26),
        rgba(76, 111, 255, 0.07) 72%,
        transparent 82%
    );
    border-color: rgba(76, 111, 255, 0.18);
    animation: careerFloater2 9.2s ease-in-out infinite;
}

@keyframes careerFloater1 {
    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    45% {
        transform: translateY(-10px) translateX(-8px) scale(1.03);
    }
}

@keyframes careerFloater2 {
    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    55% {
        transform: translateY(-14px) translateX(10px) scale(1.04);
    }
}

/* Extra shapes via spans */
.career-hero-decor .blob {
    position: absolute;
    border-radius: 999px;
    filter: blur(0.2px);
    opacity: 0.75;
}

.career-hero-decor .blob-1 {
    width: 230px;
    height: 230px;
    left: -60px;
    top: 20px;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(76, 111, 255, 0.28),
        rgba(76, 111, 255, 0.06) 70%,
        transparent 80%
    );
    animation: careerBlob1 10s ease-in-out infinite;
}

.career-hero-decor .blob-2 {
    width: 170px;
    height: 170px;
    right: -60px;
    top: 120px;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 159, 67, 0.28),
        rgba(255, 159, 67, 0.06) 72%,
        transparent 82%
    );
    animation: careerBlob2 12s ease-in-out infinite;
}

@keyframes careerBlob1 {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
}

@keyframes careerBlob2 {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(16px);
    }
}

.career-hero-decor .ring {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(76, 111, 255, 0.22);
    opacity: 0.7;
}

.career-hero-decor .ring-1 {
    width: 280px;
    height: 280px;
    left: 20px;
    bottom: -150px;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(76, 111, 255, 0.1),
        transparent 55%
    );
}

.career-hero-decor .ring-2 {
    width: 180px;
    height: 180px;
    right: 40px;
    bottom: 60px;
    border-color: rgba(255, 159, 67, 0.22);
    background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 159, 67, 0.1),
        transparent 55%
    );
}

.career-hero-decor .spark {
    position: absolute;
    color: rgba(255, 159, 67, 0.9);
    font-size: 18px;
    text-shadow: 0 10px 22px rgba(240, 138, 36, 0.25);
    animation: careerSpark 6.8s ease-in-out infinite;
}

.career-hero-decor .spark-1 {
    left: 60px;
    top: 170px;
    animation-delay: 0.2s;
}
.career-hero-decor .spark-2 {
    left: 220px;
    top: 70px;
    color: rgba(76, 111, 255, 0.9);
    animation-delay: 1.1s;
}
.career-hero-decor .spark-3 {
    right: 160px;
    top: 210px;
    color: rgba(76, 111, 255, 0.9);
    animation-delay: 0.6s;
}

@keyframes careerSpark {
    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.75;
    }
    50% {
        transform: translateY(-10px) scale(1.08);
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .career-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .career-hero-media {
        justify-items: stretch;
    }

    .career-media-badge {
        position: absolute;
        right: 14px;
        bottom: 14px;
    }
}

@media (max-width: 560px) {
    .career-hero {
        padding: 5.2rem 0 3.4rem;
    }

    .career-media-frame img {
        height: 320px;
    }

    .career-media-badge {
        max-width: 205px;
    }

    .career-quick-points {
        grid-template-columns: 1fr;
    }

    .floater-2 {
        display: none;
    }
}

.nav-burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.burger-line {
    width: 18px;
    height: 2px;
    background: var(--heading);
    border-radius: 2px;
}

.dropdown-content.is-open {
    display: block;
}

@media (max-width: 760px) {
    .nav-burger {
        display: inline-flex;
    }

    .nav-wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0.2rem 0;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.2rem;
        padding: 0.7rem 0 0.2rem;
    }

    .main-nav.is-open {
        display: flex;
    }

    .dropdown {
        width: 100%;
    }

    .main-nav a,
    .dropbtn {
        width: 100%;
        text-align: left;
        padding: 0.72rem 0.2rem;
        background: transparent;
        border-radius: 0;
    }

    .dropbtn {
        justify-content: space-between;
    }

    .main-nav > .nav-link,
    .main-nav > .dropdown {
        border-bottom: 1px solid rgba(20, 33, 61, 0.16);
        padding-bottom: 0.2rem;
        margin-bottom: 0.2rem;
    }

    .main-nav > .dropdown:last-child,
    .main-nav > .nav-link:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 0.25rem 0 0.5rem;
        background: transparent;
    }

    /*.dropdown:hover .dropdown-content {*/
    /*    display: none;*/
    /*}*/

    .dropdown:hover .drop-icon {
        transform: rotate(45deg);
        margin-top: -2px;
    }

    .dropdown.is-open .drop-icon {
        transform: rotate(-135deg);
        margin-top: 2px;
    }

    .dropdown .dropdown-content.is-open {
        display: block;
    }

    .dropdown-content .nav-link {
        margin-bottom: 0.35rem;
        border-bottom: 1px solid rgba(20, 33, 61, 0.12);
        border-radius: 0;
        padding-left: 0.7rem;
    }

    .dropdown-content .nav-link:last-child {
        margin-bottom: 0;
    }

    .slider {
        height: 520px;
    }

    .slider-controls {
        padding: 0 0.6rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .cards,
    .three-col,
    .two-col,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .card-cover {
        height: 190px;
    }
}

@media (max-width: 990px) {
    .why-choose-left .section-lead {
        max-width: 100%;
    }
    .why-choose-left {
        padding-top: 0.1rem;
    }
}

/* Header CTA: Get in touch */
.get-in-touch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.72rem 0.95rem;
    border-radius: 10px;

    border: 1px solid rgba(255, 159, 67, 0.35);
    background: linear-gradient(
        135deg,
        rgba(255, 159, 67, 0.95),
        rgba(240, 138, 36, 0.95)
    );

    color: #ffffff;
    font-weight: 800;
    text-transform: none;
    letter-spacing: -0.01em;

    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;

    box-shadow: 0 12px 26px rgba(240, 138, 36, 0.22);
}

.get-in-touch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(240, 138, 36, 0.3);
    filter: saturate(1.05);
}

.get-in-touch-btn:focus {
    outline: 3px solid rgba(76, 111, 255, 0.22);
    outline-offset: 2px;
}

@media (max-width: 760px) {
    .get-in-touch-btn {
        width: 100%;
        justify-content: flex-start;
        padding-left: 0.9rem;
        margin-top: 0.35rem;
    }
}

.approach-image img{
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px){
    .approach-section{
        grid-template-columns: 1fr;
    }

    .approach-image{
        order: -1; /* image on top in mobile */
    }
}

.why-choose-left{
    max-width:700px;
    margin:0 auto 40px;
    text-align:center;
}

.why-heading{
    text-align:center;
    margin-bottom:30px;
    font-family: poppins;
    color: #c80018;
    font-style: italic;
}

.why-cards{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

@media(max-width:1200px){
    .why-cards{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){
    .why-cards{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:480px){
    .why-cards{
        grid-template-columns:1fr;
    }
}
