@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap");

/* =============================================
       GLOBAL RESET & BASE STYLES
============================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #333333;
    background: #fff;
    line-height: 1.4;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    line-height: 1.4;
}

p {
    font-family: "Poppins", sans-serif;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =============================================
   COLOR TOKENS — Brand Identity
   Deep Navy | Emerald Green | Gold Accent
============================================= */
:root {
    --navy-blue: #002eea;
    --navy-dark: #060f1e;
    --navy-mid: #0b1f3b;
    --text-light: #333;
    --bg-light: #f4f6f9;
    --white: #ffffff;
    --border: #dde3ec;
    --svg-bg-color: #e6eafd;
}

/* =============================================
   UTILITY
============================================= */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--navy-blue);
    color: #fff;
    padding: 12px 24px;
    border-radius: 40px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 18px;
    border: 2px solid var(--navy-blue);
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.15s;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--navy-mid);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid var(--text-light);
    color: var(--navy);
    padding: 12px 24px;
    border-radius: 40px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-outline:hover {
    background: var(--navy-mid);
    color: #fff;
}

.section-title {
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--navy-dark);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    background: transparent;
}

.btn-outline-white:hover {
    border-color: #fff;
    transform: translateY(-2px);
}

.section-sub {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 10px;
}

/* ============================================================
   SECTION 1 — NAVIGATION BAR
   Sticky top nav: logo | links | hamburger | CTA
============================================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    padding: 18px 0px;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--navy);
    flex-shrink: 0;
}

.nav-logo .logo-box {
    background: var(--navy);
    color: #fff;
    padding: 5px 11px;
    border-radius: 5px;
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--navy-blue);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
}

/* Hamburger button — hidden on desktop */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--navy);
    font-size: 22px;
    flex-shrink: 0;
}

/* Mobile drawer */
.nav-drawer {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 4px;
}

.nav-drawer.open {
    display: flex;
}

.nav-drawer a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.nav-drawer a:last-child {
    border-bottom: none;
}

.nav-drawer a:hover,
.nav-drawer a.active {
    color: var(--navy);
    font-weight: 600;
}

.nav-drawer .btn-primary {
    margin-top: 12px;
    justify-content: center;
}

.btn-primary span {
    display: flex;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 45px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    display: block;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown span {
    display: flex;
    transition: 0.5s all;
}

.dropdown:hover span {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 10px 0;
    display: none;
    z-index: 1000;
}

.dropdown-menu li a {
    padding: 10px 20px;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
}

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

/* ============================================================
   SECTION 2 — HERO / BANNER
   Two-column: headline + CTAs | stat cards grid
============================================================ */
.hero {
    background: url(https://teamwebdevelopers.com/lmb/public/storage/media/01KY51552CYB4K070JA1T6XZTY.webp);
    padding: 29px 0px 75px 0px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.hero h1 {
    font-family: "Poppins", sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 36px;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-mid);
    margin-bottom: 36px;
    max-width: 570px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Stat cards grid */
.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hero-card {
    display: flex;
    justify-content: end;
}

/* ===== Main Gallery Wrapper ===== */
.gallery {
    display: flex;
    gap: 18px;
    max-width: 650px;
    width: 100%;
    justify-content: end;
}

.col {
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: end;
}

/* ===== Left Column ===== */
.stat-card {
    background: linear-gradient(135deg, #17c9f0, #0057ff);
    border-radius: 18px;
    color: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 30px;
}

.stat-card .stat-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.stat-card .stat-number {
    font-size: 42px;
    font-weight: 700;
}

.stat-card .team-icon {
    width: 60px;
    height: 60px;
    opacity: 0.9;
}

.img-box {
    border-radius: 18px;
}

.img-box img {
    width: 100%;
    height: 100%;
}

/* ===== Right Column ===== */
.img-developer {
    flex: 3;
    min-height: 220px;
}

.img-globe {
    flex: 1;
    min-height: 100px;
}

#our-services {
    scroll-margin-top: 130px;
}

/* ============================================================
   SECTION 3 — SCROLLING MARQUEE TICKER
   Infinite scroll strip of service areas
============================================================ */
.marquee-bar {
    background: rgba(11, 31, 59, 1);
    padding: 14px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: scroll-left 32s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 28px;
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
}

.marquee-item span {
    display: flex;
}

.marquee-divider {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    vertical-align: middle;
    margin: 0 8px;
    opacity: 0.6;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================================
   SECTION 4 — ABOUT / VALUE PROPOSITION
   Centered intro + 3-column grid: text | industry card | image
============================================================ */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-intro .section-title {
    font-size: 40px;
    font-weight: 600;
}

.about-intro .section-title .it {
    color: var(--navy-blue);
}

.about-intro .section-title .staffing {
    color: var(--gold);
}

.about-left {
    border: 2px solid #e6eafd;
    padding: 24px;
    border-radius: 12px;
}

.line {
    background: #8a9ff5;
    max-width: 270px;
    height: 1px;
    width: 100%;
    margin-bottom: 15px;
}

.line_two {
    max-width: 170px;
    margin: 24px 0px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    padding-top: 60px;
}

.about-left p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 14px;
    letter-spacing: 0;
    line-height: 190%;
}

.about-right-img {
    position: relative;
}

.about-right-img img {
    width: 100%;
}

.about-right-image-inner {
    position: absolute;
    bottom: 10px;
    left: 40%;
}

.feature-card {
    width: 330px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.feature-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 16px;
    color: #333;
    font-weight: 400;
}

/* Industry box (center card) */
.industries-box {
    background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);

    color: #fff;
    border-radius: 16px;
    padding: 24px 24px 90px 24px;
}

.industries-box h4 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
}

.ind-tags {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
}

.ind-tag {
    background: transparent;
    border-radius: 40px;
    padding: 12px 12px;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid #fff;
}

.ind-tag:hover {
    background-color: var(--navy-mid);
    border: var(--navy-mid);
}

.ind-tag.gold {
    background: var(--gold);
    color: var(--navy);
}

.ind-tag.emerald {
    color: #fff;
}

.since-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 4px;
}

.since-badge i {
    font-size: 30px;
    color: var(--gold);
}

.since-badge strong {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    display: block;
}

/* Right column */

/* ============================================================
   SECTION 5 — OUR SERVICES CARDS
   Header + 2-row 3-col grid with featured navy card
============================================================ */
.services-section {
    padding: 88px 0;
    /* background: var(--bg-light); */
    background: rgba(11, 31, 59, 1);
}

.services-header {
    text-align: center;
    margin-bottom: 52px;
}

.services-header .section-sub {
    max-width: 540px;
    margin: 10px auto 0;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    /* border: 2px solid var(--border); */
    transition:
        box-shadow 0.25s,
        transform 0.25s;
}

.service-card:hover {
    box-shadow: 0 10px 36px rgba(10, 37, 64, 0.1);
    transform: translateY(-4px);
}

.service-card.featured {
    background: linear-gradient(90deg, #002eea 0%, #3358ee 100%);

    color: #fff;
}

.service-card.featured .svc-icon {
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold);
}

.service-card h3 {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    margin-top: 24px;
}

#card_one h3 {
    font-size: 32px;
    margin-top: 0px;
}

#card_one a {
    color: #fff;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 18px;
    border: 2px solid #fff;
}

#card_one a:hover {
    background-color: var(--navy-mid);
    border: 2px solid var(--navy-mid);
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    line-height: 170%;
}

.service-card.featured p {
    color: var(--white);
    font-size: 16px;
    -webkit-box-orient: unset;
    overflow: unset;
    -webkit-line-clamp: unset;
    text-overflow: unset;
    line-height: 170%;
}

.discover-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-top: 18px;
    transition: gap 0.2s;
}

a.discover-link:hover {
    color: var(--navy-blue);
}

.discover-link span {
    display: flex;
}

.service-card.featured .discover-link {
    color: var(--gold);
}

/* ============================================================
   SECTION 6 — TALENT / MISSION HIGHLIGHT
   Two-column: left text | right image + floating quote
============================================================ */
.talent-section {
    padding: 80px 0;
    background: #fff;
}

.talent-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
}

.talent-left {
    border: 1px solid #e6eafd;
    border-radius: 24px;
    padding: 32px 32px 0px 32px;
}

.talent-left h2 {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 22px;
    max-width: 590px;
}

.talent-left h2 .accent {
    color: var(--navy-blue);
}

.talent-left p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
    font-weight: 400;
}

.talent-right {
    position: relative;
}

.talent-img img {
    border-radius: 12px;
}

.mission-quote .quote-icon {
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
}

.mission-quote {
    background: url(https://teamwebdevelopers.com/lmb/public/storage/media/01KY517EGS5966PHNDFAKCQQ72.webp);
    margin-top: 35px;
    padding: 20px;
    border-radius: 24px;
    display: flex;
    align-items: baseline;
    gap: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.mission-quote p {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================================
   SECTION 7 — BUILD YOUR CAREER
   Header + 4-card grid of career benefits
============================================================ */
.career-section {
    padding: 0px 0;
}

.career-header {
    text-align: center;
    margin-bottom: 56px;
}

.career-header .section-title .brand {
    color: var(--navy-blue);
}

.career-header .section-sub {
    max-width: 690px;
    margin: 10px auto 0;
    text-align: center;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.career-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 24px;
    border: 1px solid var(--border);
    transition:
        box-shadow 0.25s,
        transform 0.2s;
}

.career-card:hover {
    box-shadow: 0 8px 28px rgba(10, 37, 64, 0.09);
    transform: translateY(-3px);
}

.career-icon {
    margin-bottom: 20px;
}

.career-icon span {
    display: flex;
}

.career-card h3 {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
    max-width: 200px;
}

.career-card p {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 400;
}

/* ============================================================
   SECTION 8 — AVAILABLE JOBS
   Header + vertical list of job cards
============================================================ */
.jobs-section {
    margin: 80px 0px;
    padding: 88px 0;
    background: var(--navy-mid);
}

.jobs-header {
    text-align: center;
    margin-bottom: 52px;
}

.jobs-header .section-title {
    color: var(--white);
}

.jobs-header .section-sub {
    max-width: 520px;
    margin: 10px auto 0;
    text-align: center;
    color: var(--white);
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1150px;
    margin: 0 auto;
}

.jobs-section .job-card {
    display: flex;
    align-items: center;
    gap: 47px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 24px;
    transition:
        box-shadow 0.2s,
        border-color 0.2s,
        transform 0.2s;
}

.job-card:hover {
    box-shadow: 0 6px 24px rgba(10, 37, 64, 0.09);
    transform: translateX(4px);
}

.job-icon {
    width: calc(5% - 10px);
    height: 50px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--svg-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--navy-blue);
}

.job-info_head {
    width: calc(22% - 5px);
}

.job-info_para {
    width: calc(45% - 0px);
}

.job-info_para p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job_btn {
    width: calc(15% - 0px);
}

.job_btn .btn-primary {
    font-weight: 400;
    font-size: 14px;
}

.job-info {
    display: flex;
    align-items: center;
    gap: 47.5px;
}

.job-info h4 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.job-info p {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0%;
}

.jobs-footer {
    text-align: center;
    margin-top: 40px;
}

.jobs-footer a.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.jobs-footer a.btn-outline:hover {
    color: var(--navy-blue);
}

/* ============================================================
   SECTION 9 — TEAM TESTIMONIALS
   Header + 3-card testimonial grid
============================================================ */
.testimonials-section {
    padding: 0px 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header .section-title .accent {
    color: var(--navy-blue);
}

.testimonials-header .section-sub {
    max-width: 490px;
    margin: 10px auto 0;
    text-align: center;
}

/* .testi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
} */

.testi-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 26px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.25s;
}

.testi-card:hover {
    box-shadow: 0 8px 28px rgba(10, 37, 64, 0.08);
}

.stars {
    color: #f59e0b;
    font-size: 25px;
    letter-spacing: 2px;
}

.testi-card .quote {
    font-size: 15px;
    color: var(--charcoal);
    flex: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    justify-content: space-between;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testi-author .author-info strong {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: block;
    border-top: 1px solid var(--border);
    width: fit-content;
    padding-top: 20px;
}

.testi-author .author-info span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

.testi-grid .testi-card {
    margin: 0 12px;
}

.testi-grid {
    /* margin: 0 -12px; */
    padding: 0px 20px;
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: inherit !important;
}

.slick-dots {
    bottom: -40px;
}

.slick-prev,
.slick-next {
    width: 40px !important;
    height: 40px !important;
    background: var(--navy) !important;
    border-radius: 50%;
}

.slick-prev {
    /* left: -35px !important; */
    z-index: 99;
    background: transparent !important;
}

.slick-next {
    /* right: -35px !important; */
    z-index: 99;
    background: transparent !important;
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

.custom-arrow svg {
    background: var(--navy-blue);
    color: #ffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    padding: 5px;
}

/* ============================================================
   SECTION 10 — CTA BANNER
   Full-width navy-to-emerald gradient, centered text + buttons
============================================================ */
.cta-banner {
    background: url(https://teamwebdevelopers.com/lmb/public/storage/media/01KY4H86Z94PSVW9VRZ96PZ3NN.webp);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    margin-top: 100px;
    margin-bottom: 100px;
}

.cta-banner h2 {
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
}

.cta-banner h2 .accent {
    color: var(--gold);
}

.cta-banner p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 750px;
    margin: 0 auto 36px;
    position: relative;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: 40px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 18px;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    white-space: nowrap;
    line-height: 1.3;
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.btn-cta-white svg {
    color: var(--navy-blue);
}

.home_page_btn svg {
    color: var(--navy-blue);
    rotate: -40deg;
}

/* ============================================================
   SECTION 11 — FOOTER
   4-col: brand | quick links | services | contact
   + bottom bar
============================================================ */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.72);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 44px;
    padding-bottom: 52px;
}

.footer-brand p {
    font-size: 16px;
    max-width: 280px;
    margin-bottom: 22px;
    font-weight: 400;
    color: #fff;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials span {
    display: flex;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    transition: 0.3s all;
    border: 1px solid #fff;
    padding: 10px;
}

.footer-socials a:hover {
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-col ul li a {
    font-size: 16px;
    color: var(--white);
    transition: color 0.2s;
    font-weight: 400;
    display: flex;
    margin-bottom: 10px;
    gap: 10px;
    align-items: center;
}

.footer-col ul li a svg {
    color: var(--navy-blue);
}

.footer-col ul li a:hover {
    color: var(--navy-blue);
}

.footer-contact-item {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.footer-contact-item a {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #fff;
    font-size: 16px;
}

.footer-contact-item a:hover {
    color: var(--navy-blue);
}

.footer-contact-item span {
    background: var(--navy-blue);
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-contact-item p {
    font-size: 16px;
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 16px;
    color: var(--white);
    font-weight: 400;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-col {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-last-col {
    border-right: none;
}

/* =============================================
   RESPONSIVE — TABLET (max 1024px)
============================================= */
@media (max-width: 1024px) {
    .section-title {
        font-size: 28px;
    }

    /* Nav: hide links, show hamburger */
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* .navbar .btn-primary {
        display: none;
    } */

    a.btn-primary.desktop_cta_btn {
        display: none;
    }

    a.btn-primary.mobile_cta_btn {
        color: #fff;
    }

    /* Hero */
    .hero {
        padding: 60px 0 56px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-cards {
        max-width: 420px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr 1fr;
        padding-top: 30px;
    }

    .about-right {
        display: none;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Talent */
    .talent-section .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .talent-right {
        padding-bottom: 50px;
    }

    .mission-quote {
        left: 0;
    }

    .talent-img {
        height: auto;
    }

    /* Career */
    .career-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials */
    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .hero-card img {
        width: 100%;
    }
}

/* =============================================
   RESPONSIVE — MOBILE (max 768px)
============================================= */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-sub {
        font-size: 14px;
    }

    /* Hero */
    .hero {
        padding: 48px 0 44px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-cards {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    .hero-card .card-num {
        font-size: 30px;
    }

    /* About */
    .about-section {
        padding: 30px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-right {
        display: none;
    }

    .about-intro .section-title {
        font-size: 22px;
    }

    /* Services */
    .services-section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Talent */
    .talent-section {
        padding: 30px 0;
    }

    .talent-section .container {
        gap: 36px;
    }

    .talent-left h2 {
        font-size: 26px;
    }

    .talent-img {
        height: auto;
    }

    .mission-quote {
        position: static;
        margin-top: 20px;
        max-width: 100%;
        left: auto;
    }

    .talent-right {
        padding-bottom: 0;
    }

    /* Career */
    .career-section {
        padding: 0px 0;
    }

    .career-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .career-card {
        padding: 22px 16px;
    }

    .career-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    /* Jobs */
    .jobs-section {
        padding: 30px 0;
    }

    .jobs-section {
        margin: 30px 0px;
    }

    .jobs-section .job-card {
        flex-wrap: wrap;
        gap: 14px;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .job-icon {
        width: 30%;
    }

    .job-info_head {
        width: calc(100% - 0px);
    }

    .job-info_para {
        width: calc(100% - 0px);
    }

    .job_btn {
        width: calc(100% - 0px);
    }

    .job-card .btn-primary {
        width: 100%;
        justify-content: center;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 0px 0;
    }

    .testimonials-header {
        margin-bottom: 30px;
    }

    .testi-grid {
        grid-template-columns: 1fr;
        padding: 0px;
    }

    .testi-card {
        padding: 15px 15px;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 20px 10px;
        margin-top: 70px;
        margin-bottom: 30px;
        background-position: right;
    }

    .cta-banner h2 {
        font-size: 26px;
    }

    .btn-cta-white,
    .btn-cta-outline {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Footer */
    .footer {
        padding: 30px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 0px;
    }

    .footer-brand {
        grid-column: auto;
        border: none;
    }

    .footer-col {
        border-right: none;
    }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (max 480px)
============================================= */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

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

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

    .about-intro .section-title {
        font-size: 20px;
    }

    .section-title {
        font-size: 22px;
    }

    .industries-box {
        padding: 15px 15px;
    }

    .cta-banner h2 {
        font-size: 22px;
    }

    .ind-tags {
        grid-template-columns: 1fr;
    }

    .about-left {
        padding: 10px;
    }

    .industries-box h4 {
        font-size: 14px;
    }

    .service-card {
        padding: 20px 20px;
    }

    #card_one h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-card h3 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .talent-left {
        padding: 20px 20px 20px 20px;
    }

    .mission-quote {
        flex-direction: column;
    }

    .career-header {
        margin-bottom: 30px;
    }

    .slick-dots li button:before {
        top: 10px !important;
        font-size: 10px !important;
    }

    .marquee-item {
        font-size: 18px;
    }

    .testi-grid .testi-card {
        margin: 0 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .wrap_outer img {
        width: 100%;
        object-fit: cover;
        height: 450px;
        object-position: center;
    }
}

/* =========================
   Mobile Navigation
========================= */
@media (max-width: 991px) {
    .nav-drawer {
        display: none;
        flex-direction: column;
    }

    .nav-drawer.open {
        display: flex;
    }

    .mobile-dropdown-btn {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 0;
        background: transparent;
        border: none;
        border-bottom: 1px solid #e5e5e5;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
    }

    .mobile-dropdown-btn span {
        transition: 0.3s;
        font-size: 18px;
    }

    .mobile-submenu {
        display: none;
        padding-left: 15px;
    }

    .mobile-submenu a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        color: #555;
        text-decoration: none;
    }

    .mobile-dropdown.active .mobile-submenu {
        display: block;
    }

    .mobile-dropdown.active .mobile-dropdown-btn span {
        transform: rotate(45deg);
    }

    .talent-img img {
        width: 100%;
    }
}
