:root {
    --t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --blue: #0090FF;
    --dark: #044179;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jaldi', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fff;
}

.container {
    max-width: 1247px;
    margin: 0 auto;
    padding: 0 20px;
}

.blue-text {
    color: #0091FF;
}

a {
    color: inherit;
    text-decoration: none;
}

.logo-original {
    width: 143px;
    height: 73px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-original img {
    width: 33px;
    height: 35px;
    margin-bottom: 10px;
}

.logo-name {
    color: #000000;
    font-size: 22px;
    line-height: 0.9;
    font-weight: bold;
    font-family: "Jaldi", sans-serif;
}

/* Navigation */
.navbar {
    padding: 20px 0;
    /* border-bottom: 1px solid #eee; */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 140px;
    height: 70px;
}

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

.nav-links a {
    font-size: 18px;
    text-decoration: none;
    color: black;
    font-weight: 400;
}

.nav-links a.active {
    color: #044179;
    /* border-bottom: 3px solid #044179; */
    font-weight: bold;
}

/* ── Hamburger Button ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid #e8eef5;
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
    position: relative;
}

.hamburger:hover {
    background: #f0f7ff;
    border-color: #0090FF;
    box-shadow: 0 0 0 3px rgba(0, 144, 255, 0.12);
}

.ham-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #044179;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.open .ham-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open .ham-line:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.open .ham-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Nav overlay (mobile backdrop) */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hero Section */
.hero-wrapper {
    display: flex;
    justify-content: end;
}

.hero {
    display: flex;
    /* align-items: center; */
    padding: 14px 37px;
    gap: 50px;
    padding-top: 20px;
    /* padding-left: 31px; */
}


.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero-content h1 {
    font-size: 65px;
    line-height: 1.02;
    margin-bottom: 20px;
}

.hero-content p {
    color: #000000;
    font-size: 22px;
    margin-bottom: 30px;
    line-height: 1.31;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 28px;
}

.btn-dark {
    background: #044179;
    color: white;
    padding: 16px 28px;
    border: none;
    border-radius: 11px;
    cursor: pointer;
    font-size: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #044179;
    /* font-weight: bold; */
    font-size: 1rem;
}

.contact-link i {
    font-size: 18px;
    margin-top: 6px;
}

.hero-image img {
    width: 100%;
    /* border-radius: 12px; */
}

/* Stats Section */
.detail-section {
    background-color: #f8f9fa;
    padding: 53px 0;
    padding-bottom: 1px;
    margin: 75px 0px;
}

.stats-intro {
    display: flex;
    gap: 90px;
    align-items: center;
    margin-bottom: 60px;
}

.detail {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.intro-text {
    /* flex: 1; */
    border-left: 5px solid #000000;
    /* padding-left: 25px; */
    padding: 2px 13px 2px 25px;
    font-size: 27px;
    line-height: 1.12;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 6px 6px 0;

}

.intro-text:hover {
    border-color: #044179;
    background: #e8f4ff;
}

.detail p {
    max-width: 620px;
    font-size: 22px;
    line-height: 1.31;
}

.detail a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 18px;
    color: #044179;
}

.detail a i {
    font-size: 18px;
    margin-top: 4px;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    max-width: 524px;
}

.stats-section {
    max-width: 879px;
    padding: 44px 0px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.state-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}

.stat-item h3 {
    font-size: 52px;
    color: #0090FF;
    line-height: 1.12;
    font-weight: bold;
}

.stat-title {
    font-weight: bold;
    margin: 10px 0;
    font-size: 22px;
    line-height: 1.12;
    color: #000000;
}

.stat-desc {
    font-size: 17px;
    color: #000000;
    line-height: 1.31;
    max-width: 250px;
}

.divider {
    width: 3px;
    height: 140px;
    background-color: #E5F4FF;
}

/* Services */
.services {
    padding: 80px 0px;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.02;
}

.services-tabs {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    /* border-bottom: 1px solid #ddd; */
    /* margin-bottom: 30px; */
}

.tab {
    padding: 18px 0;
    color: #000000;
    cursor: pointer;
    font-size: 22px;
    max-width: 190px;
    font-weight: bold;
    line-height: 1.02;
}

.tab.active {
    color: #0090FF;
    border-bottom: 5px solid #0090FF;
    font-weight: bold;
}

.service-display {
    position: relative;
    /* border-radius: 12px; */
    overflow: hidden;
    z-index: 1;
}

.overlay {
    position: absolute;
    background-color: #00000066;
    top: 0;
    left: 0;
    z-index: 999;
}

.service-display img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.service-card {
    position: absolute;
    bottom: 57px;
    left: 76px;
    background: #FFFFFFB2;
    padding: 30px;
    /* max-width: 400px; */
    padding-right: 150px;
}

.service-card h3 {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.02;
    color: #000000;
    max-width: 539px;
}

.service-card p {
    font-size: 24px;
    line-height: 1.31;
    color: #000000;
    max-width: 539px;
    margin-top: 30px;
}

.corner-arrow {
    position: absolute;
    bottom: 7px;
    right: 0;
    background: #002d5b;
    color: white;
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    border-radius: 100% 0 0 0;
}

.corner-arrow i {
    font-size: 46px;
    padding-top: 30px;
    padding-left: 27px;

}

.service-display img,
.service-card h3,
.service-card p {
    transition: opacity 0.4s ease;
}

.fade {
    opacity: 0;
}

/* Industries Grid */
.industry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0px;
}

.ind-card {
    height: 293px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-left: 53px;
    color: white;
}

.ind-info h3 {
    max-width: 190px;
    font-size: 30px;
    margin-bottom: 29px;
    line-height: 1.02;
}

.ind-card-footer {
    border-left: 14px solid #0090FF;
    padding: 20px 40px;
}

.ind-card-footer p {
    font-size: 18px;
    color: #000000;
    line-height: 1.31;
    max-width: 470px;
}

/* Trust */
.trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 190px;
    padding: 80px 0px 70px 16px !important;

}

.trust-section-title {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.02;
}

.trust-sec-desc {
    font-size: 22px;
    line-height: 1.31;
    color: #000000;
    margin-bottom: 30px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.trust-grid-card .number {
    font-size: 62px;
    line-height: 1.02;

}

.trust-divider {
    width: 125px;
    height: 4px;
    background-color: #00000099;
    margin: 3px 0px;
}

.trust-desc {
    font-size: 20px;
    line-height: 1.31;
    font-weight: bold;
    color: #000000;
    margin-top: 17px !important;
}

.trust-right {
    background-color: #0090FF80;
    padding: 0px 15px 15px 0px;
    width: 558px;
    /* height: 769px; */
}

.trust-right img {
    width: 100%;
    height: 100%;

}

/* Approach */
.approach {
    padding: 30px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.section-title {
    margin-bottom: 22px;
}

.approach-desc {
    font-size: 23px;
    font-weight: bold;
    line-height: 1.31;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

.approach-card-container {
    display: flex;
    gap: 20px;
    /* flex-wrap: wrap; */
    justify-content: center;
    padding: 40px 0px;
}

.approach-card {
    padding: 29px 36px;
    border-left: 7px solid #0090FF;
    max-width: 260px;
}

.approach-card h3 {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.31;
    margin-bottom: 10px;
}

.approach-card p {
    font-size: 20px;
    line-height: 1.31;
    color: #000000;
}

/* CTA */
.cta-box {
    background: linear-gradient(90deg, #0090FF 0%, #0D61F3 100%);
    color: white;
    padding: 70px;
    text-align: center;
    border-radius: 50px;
    margin: 50px 0px 85px;
}

.cta-box h2 {
    font-size: 42px;
    line-height: 1.02;
    font-weight: bold;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 26px;
    line-height: 1.02;
    max-width: 839px;
    margin: 0 auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
}

.cta-actions a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 18px;
    color: white;
    text-decoration: none;
}

.cta-actions a i {
    margin-top: 4px;
}

.btn-white {
    background: white;
    color: #0090FF;
    padding: 14px 29px;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

/* Footer */

.logo-name-footer {
    color: #FFFFFF;
    font-size: 22px;
    line-height: 0.9;
    font-weight: bold;
    font-family: "Jaldi", sans-serif;
}

.footer {
    display: flex;
    padding: 50px;
    background-color: #121420;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    font-family: "Inter", sans-serif;
    ;
}

.footer-left {
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-left h3 {
    color: white;
    text-align: center;
    line-height: 1.2;
    font-size: 20px;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-icons span {
    width: 40px;
    height: 40px;
    background-color: #373B47;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.social-icons span:hover {
    background-color: #0090FF;
    transform: scale(1.1);
}

.social-icons span:active {
    background-color: #006ec0;
    transform: scale(0.98);
}

.social-icons span i {
    color: white;
    font-size: 18px;
    margin-top: 3px;
}

.footer-middle {
    display: flex;
    /* flex-direction: column; */
    gap: 12px;
    color: white;
    justify-content: center;
}

.footer-middle p {
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}

.footer-middle p:hover {
    color: #0090FF;
}

.footer-middle p:active {
    color: #006ec0;
}

.footer-right p {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 18px;
}

.footer-right-input {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-right-input input {
    padding: 13px 11px;
    border: 0.88px solid #767676;
    color: #ccc;
    background-color: transparent;
    min-width: 185px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s ease;
    outline: none;
}

.footer-right-input input:focus {
    border-color: #0090FF;
}

.footer-btn {
    padding: 13px 23px;
    background-color: white;
    color: black;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.15s ease, border-color 0.25s ease;
}

.footer-btn:hover {
    background-color: #0090FF;
    color: white;
    transform: scale(1.05);
}

.footer-btn:active {
    background-color: #006ec0;
    transform: scale(0.98);
}

.footer-bottom {
    background-color: #141824;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: white;
    font-family: "Inter", sans-serif;
}

/* Hovers & Active States */


/* ── Navbar Links ── */
.nav-links a {
    transition: color var(--t), background var(--t), padding var(--t);
    border-radius: 6px;
    padding: 4px 10px;
}

.nav-links a:hover {
    background: #e8f4ff;
    color: var(--blue);
}

.nav-links a:active {
    background: #cce7ff;
    transform: scale(0.97);
}

/* ── Primary Button (btn-dark) ── */
.btn-dark {
    transition: transform var(--t), background var(--t), box-shadow var(--t), border var(--t);
    border: 2px solid transparent;
}

.btn-dark:hover {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(4, 65, 121, 0.2);
}

.btn-dark:active {
    transform: scale(0.97);
    background: #cce7ff;
    border-color: var(--blue);
    color: var(--dark);
}

/* ── White Button (btn-white) ── */
.btn-white {
    transition: transform var(--t), background var(--t), color var(--t), border var(--t), box-shadow var(--t);
    border: 2px solid transparent;
}

.btn-white:hover {
    background: transparent;
    color: white;
    border: 2px solid white;
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.btn-white:active {
    transform: scale(0.97);
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

/* ── Contact Link / Learn More ── */
.contact-link,
.detail a,
.learn-more {
    transition: gap var(--t), background var(--t), padding var(--t), border-radius var(--t);
    border-radius: 6px;
    padding: 4px 0px;
}

.contact-link:hover,
.detail a:hover,
.learn-more:hover {
    background: #e8f4ff;
    gap: 16px;
    padding: 4px 10px;
}

.contact-link:active,
.detail a:active,
.learn-more:active {
    background: #cce7ff;
    transform: scale(0.97);
    padding: 4px 10px;
}

/* ── Hero Image ── */
.hero-image img {
    transition: transform var(--t), box-shadow var(--t);
}

.hero-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 36px rgba(0, 144, 255, 0.15);
}

/* ── Detail / About Image ── */
.intro-image img {
    transition: transform var(--t), box-shadow var(--t);
    border-radius: 4px;
}

.intro-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* ── Stat Items ── */
.stat-item {
    transition: transform var(--t), background var(--t), border-radius var(--t), box-shadow var(--t), border var(--t);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid transparent;
}

.stat-item:hover {
    background: #f0f8ff;
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(0, 144, 255, 0.1);
    border: 1px solid #cce7ff;
}

.stat-item:active {
    transform: scale(0.98);
    background: #ddf0ff;
}

/* ── Service Tabs ── */
.tab {
    transition: all 0.1s ease;
    border-radius: 8px 8px 0 0;
    /* padding: 18px 12px; */
}

.tab:not(.active):hover {
    /* background: #f0f8ff; */
    color: var(--blue);
    /* transform: scale(1.04); */
    border-bottom: 5px solid #0090FF;
}

.tab:active {
    transform: scale(0.97);
    background: #ddf0ff;
}

/* ── Service Display ── */
.service-display {
    transition: box-shadow var(--t);
}

.service-display:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* ── Service Card ── */
.service-card {
    transition: transform var(--t), background var(--t), box-shadow var(--t);
}

.service-display:hover .service-card {
    background: #ffffffd4;
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.corner-arrow i {
    transition: all 0.3s ease;
}

.service-display:hover .corner-arrow i {
    transform: rotate(-30deg);
}

/* ── Corner Arrow ── */
.corner-arrow {
    transition: transform var(--t), background var(--t);
}

.corner-arrow:hover {
    background: var(--blue);
    /* transform: scale(1.08); */

}

.corner-arrow:hover .corner-arrow i {
    transform: rotate(0deg);
}

.corner-arrow:active {
    background: var(--dark);
    transform: scale(0.96);
}

/* ── Industry Card Wrapper ── */
.industry-grid>div {
    transition: transform var(--t), box-shadow var(--t);
    border-radius: 4px;
    overflow: hidden;
}

.industry-grid>div:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.industry-grid>div:active {
    transform: scale(0.98);
}

/* ── Industry Card (image area) ── */
.ind-card {
    transition: filter var(--t);
    cursor: pointer;
}

.ind-card:hover {
    filter: brightness(1.1);
}

/* ── Industry Card Footer ── */
.ind-card-footer {
    transition: background var(--t), border-color var(--t);
}

.industry-grid>div:hover .ind-card-footer {
    background: #f0f8ff;
    border-color: var(--dark);
}

/* ── Trust Grid Cards ── */
.trust-grid-card {
    transition: transform var(--t), background var(--t), box-shadow var(--t), border-radius var(--t), border var(--t);
    border-radius: 10px;
    padding: 12px;
    border: 1px solid transparent;
}

.trust-grid-card:hover {
    background: #f0f8ff;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 144, 255, 0.12);
    border: 1px solid #cce7ff;
}

.trust-grid-card:active {
    transform: scale(0.97);
    background: #ddf0ff;
}

/* ── Trust Right Image block ── */
.trust-right {
    transition: transform var(--t), box-shadow var(--t), background-color var(--t);
}

.trust-right:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 144, 255, 0.22);
    background-color: #0090FFCC;
}

/* ── Approach Cards ── */
.approach-card {
    transition: transform var(--t), background var(--t), box-shadow var(--t), border-color var(--t);
    border-radius: 0 10px 10px 0;
}

.approach-card:hover {
    background: #f0f8ff;
    transform: scale(1.05);
    box-shadow: 0 10px 28px rgba(0, 144, 255, 0.13);
    border-left-color: var(--dark);
}

.approach-card:active {
    transform: scale(0.97);
    background: #ddf0ff;
}

/* ── CTA Box ── */
.cta-box {
    transition: transform var(--t), box-shadow var(--t);
}

.cta-box:hover {
    transform: scale(1.01);
    box-shadow: 0 20px 60px rgba(0, 144, 255, 0.35);
}

/* ── CTA Actions Link ── */
.cta-actions a {
    transition: gap var(--t), background var(--t), padding var(--t), border-radius var(--t);
    border-radius: 11px;
    padding: 7px 14px;
}

.cta-actions a:hover {
    background: rgba(255, 255, 255, 0.15);
    gap: 10px;
}

.cta-actions a:active {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0.97);
}

/* ── Footer Nav Links ── */
.footer-middle p {
    transition: transform var(--t), color 0.2s ease;
    border-radius: 4px;
    padding: 2px 6px;
}

.footer-middle p:hover {
    transform: scale(1.06);
}

.footer-middle p:active {
    transform: scale(0.97);
}

/* ── Footer Social Icons ── */
.social-icons span {
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icons span:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 14px rgba(0, 144, 255, 0.35);
}

.social-icons span:active {
    transform: scale(0.95);
}

/* ── Footer Button ── */
.footer-btn {
    transition: transform var(--t), background-color 0.25s ease, color 0.25s ease, box-shadow var(--t);
}

.footer-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.footer-btn:active {
    transform: scale(0.97);
}

/* ── Footer Email Input ── */
.footer-right-input input {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-right-input input:focus {
    box-shadow: 0 0 0 3px rgba(0, 144, 255, 0.15);
}

/* Responsive */

/* ── Large Tablet / Small Desktop (≤1200px) ── */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .stats-intro {
        gap: 50px;
    }

    .trust {
        gap: 60px;
    }

    .trust-right {
        width: 100%;
    }

    .services-tabs {
        gap: 20px;
    }

    .tab {
        font-size: 18px;
        max-width: 160px;
    }

    .industry-grid {
        max-width: 100%;
    }
}

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {

    /* Nav */
    .nav-links {
        gap: 30px;
    }

    .nav-links a {
        font-size: 16px;
    }

    /* Hero */
    .hero {
        gap: 30px;
        padding-left: 0;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-content p {
        font-size: 18px;
    }

    /* Detail Section */
    .stats-intro {
        flex-direction: column;
        gap: 40px;
    }

    .intro-image img {
        max-width: 100%;
    }

    /* Stats */
    .stats-section {
        max-width: 100%;
        padding: 44px 20px;
    }

    .stat-item h3 {
        font-size: 40px;
    }

    .stat-title {
        font-size: 18px;
    }

    /* Services Tabs */
    .services-tabs {
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 0 20px;
        gap: 10px 20px;
    }

    .tab {
        font-size: 16px;
        max-width: 100%;
        padding: 12px 0;
    }

    /* Service display card */
    .service-card {
        bottom: 40px;
        left: 40px;
        padding-right: 80px;
    }

    .service-card h3 {
        font-size: 30px;
    }

    .service-card p {
        font-size: 20px;
    }

    /* Industries */
    .ind-card {
        height: 240px;
    }

    .ind-info h3 {
        font-size: 24px;
    }

    .ind-card-footer p {
        font-size: 16px;
    }

    /* Trust */
    .trust {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 60px 16px;
    }

    .trust-right {
        width: 100%;
        /* max-width: 500px; */
    }

    .trust-section-title {
        font-size: 34px;
    }

    /* Approach */
    .approach-card-container {
        gap: 16px;
        flex-wrap: wrap;
    }

    .approach-card {
        max-width: 210px;
        padding: 24px 24px;
    }

    .approach-card h3 {
        font-size: 22px;
    }

    .approach-card p {
        font-size: 17px;
    }

    /* CTA */
    .cta-box {
        padding: 50px 40px;
        border-radius: 30px;
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .cta-box p {
        font-size: 20px;
    }

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

/* ── Mobile Landscape / Large Mobile (≤768px) ── */
@media (max-width: 768px) {

    /* Nav */
    .logo-original {
        width: 143px;
        height: 62px;
    }

    .logo-original img {
        width: 28px;
        height: 30px;
        margin-bottom: 8px;
    }

    .logo-name {
        font-size: 18px;
    }

    .logo-name-footer {
        font-size: 20px;
    }

    /* Hamburger */
    .hamburger {
        display: flex;
    }

    .nav-overlay.show {
        display: block;
        opacity: 1;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 80vw);
        height: 100vh;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 80px 0 30px;
        box-shadow: -6px 0 40px rgba(0, 0, 0, 0.15);
        z-index: 1050;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        list-style: none;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f0f4f8;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 16px 28px;
        font-size: 17px;
        font-weight: 500;
        color: #1a1a1a;
        transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1), padding-left 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: #f0f8ff;
        color: #0090FF;
        padding-left: 36px;
    }

    .nav-links a.active {
        border-left: 4px solid #0090FF;
        font-weight: 700;
        color: #044179;
        border-bottom: none;
    }


    .nav-container {
        flex-wrap: nowrap;
    }

    .logo {
        width: 110px;
        height: 55px;
    }

    /* Hero */
    .hero-wrapper {
        justify-content: center;
    }

    .hero {
        flex-direction: column;
        gap: 24px;
        padding: 16px 0px 0px 0px;
    }

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

    .hero-content p {
        font-size: 17px;
        max-width: 100%;
    }

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

    /* Detail Section */
    .detail {
        gap: 24px;
    }

    .detail-section {
        margin: 50px 0;
        padding: 40px 0 1px;
    }

    .detail p {
        font-size: 18px;
    }

    .intro-text {
        font-size: 19px;
        padding: 2px 13px 2px 21px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .state-wrapper {
        flex-direction: column;
        /* align-items: flex-start; */
    }

    .divider {
        width: 120px;
        height: 3px;
        margin: 0 auto;
    }

    .stat-item {
        margin: 0 auto;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    .stat-title {
        font-size: 16px;
    }

    .stat-desc {
        font-size: 15px;
    }

    /* Section titles */
    .section-title {
        font-size: 32px;
    }

    /* Services tabs */
    .services-tabs {
        /* flex-direction: column; */
        align-items: flex-start;
        padding: 0 20px;
        gap: 12px;
        border-bottom: 1px solid #ddd;
    }

    .tab {
        font-size: 15px;
        max-width: 100%;
        border-bottom: none;
        padding: 10px 0;
    }

    .tab.active {
        border-bottom: 3px solid #0090FF;
    }

    /* Service display */
    .service-display img {
        height: 350px;
    }

    .service-card {
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        padding: 20px;
        padding-right: 20px;
        text-align: center;
    }

    .service-display:hover .service-card {
        bottom: auto;
        top: 50%;
        left: 50%;
        background: #ffffffd4;

        transform: translate(-50%, -50%) scale(1.02);

        width: 90%;
        padding: 20px;
        text-align: center;
        padding-right: 20px;

        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
    }

    .service-card h3 {
        font-size: 22px;
        max-width: 100%;
    }

    .service-card p {
        font-size: 16px;
        max-width: 100%;
        margin-top: 12px;
    }

    .corner-arrow {
        width: 80px;
        height: 80px;
    }

    .corner-arrow i {
        font-size: 28px;
        padding-top: 16px;
        padding-left: 14px;
    }

    /* Industries */
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .ind-card {
        height: 220px;
    }

    .ind-info h3 {
        font-size: 22px;
        max-width: 100%;
    }

    .ind-card-footer {
        border-left-width: 8px;
        padding: 16px 24px;
    }

    /* Trust */
    .trust {
        padding: 50px 17px !important;
        gap: 40px;
    }

    .trust-grid {
        gap: 30px;
    }

    .trust-grid-card .number {
        font-size: 48px;
    }

    .trust-desc {
        font-size: 17px;
    }

    .trust-section-title {
        font-size: 28px;
    }

    .trust-sec-desc {
        font-size: 18px;
    }

    .trust-left {
        padding-top: 25px;
    }

    .trust-right {
        padding: 0px 11px 11px 0px;
    }

    /* Approach */
    .approach {
        padding: 26px 16px;
    }

    .approach-card-container {
        flex-direction: column;
        align-items: center;
        padding: 18px 0;
    }

    .approach-card {
        max-width: 100%;
        width: 100%;
        border-width: 5px;
        padding: 14px 20px;
    }

    .approach-desc {
        font-size: 19px;
    }

    /* CTA */
    .cta-box {
        padding: 40px 24px;
        border-radius: 20px;
        margin: 0px 0px 61px;
    }

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

    .cta-box p {
        font-size: 17px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 16px;
    }

    /* Footer */
    .footer {
        flex-direction: column;
        /* align-items: flex-start; */
        padding: 40px 24px;
        gap: 36px;
    }

    .footer-middle {
        flex-wrap: wrap;
        gap: 10px 20px;
    }

    .footer-middle p {
        font-size: 14px;
    }

    .footer-right-input {
        flex-direction: column;
    }

    .footer-right-input input {
        min-width: 100%;
    }

    .footer-btn {
        width: 100%;
        text-align: center;
    }

    .footer-bottom {
        font-size: 14px;
    }
}

/* ── Small Mobile (≤480px) ── */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* Nav */
    .nav-links {
        gap: 12px 18px;
    }

    .nav-links a {
        font-size: 14px;
    }

    /* Hero */
    .hero {
        padding-top: 12px;
    }

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

    .hero-content p {
        font-size: 15px;
    }

    .btn-dark {
        padding: 10px 12px;
        font-size: 14px;
    }

    .contact-link {
        font-size: 15px;
        gap: 5px;
    }

    .contact-link i {
        font-size: 14px;
        margin-top: 3px;
    }

    /* Stats */
    .stat-item h3 {
        font-size: 30px;
    }

    .stat-title {
        font-size: 15px;
    }

    .stat-desc {
        font-size: 14px;
        max-width: 100%;
    }

    /* Section title */
    .section-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    /* Services */
    .services {
        padding: 50px 0;
    }

    .services-tabs {
        gap: 3px;
    }

    .service-display img {
        height: 280px;
    }

    .service-card {
        padding: 16px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }

    .tab {
        transition: all 0.4s ease;
        border-radius: 8px 8px 0 0;
    }

    .tab:not(.active):hover {
        color: var(--blue);
        border-bottom: 3px solid #0090FF;
    }


    /* Industries */
    .ind-card {
        height: 180px;
        padding-left: 24px;
    }

    .ind-info h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .ind-card-footer p {
        font-size: 14px;
    }

    /* Trust */
    .trust-grid {
        grid-template-columns: 1fr, 1fr;
        gap: 35px;
    }

    .trust-grid-card .number {
        font-size: 40px;
    }

    .trust-divider {
        width: 90px;
    }

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

    /* Approach */
    .approach-card h3 {
        font-size: 20px;
    }

    .approach-card p {
        font-size: 15px;
    }

    /* CTA */
    .cta-box {
        padding: 32px 16px;
    }

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

    .cta-box p {
        font-size: 15px;
    }

    .btn-white {
        width: 100%;
        padding: 10px 20px;
        font-size: 14px;
    }

    .cta-actions a {
        font-size: 15px;
    }

    /* Footer */
    .footer {
        padding: 32px 16px;
    }

    .footer-right p {
        font-size: 16px;
    }

    .footer-middle {
        /* flex-direction: column; */
        gap: 8px;
    }

    .social-icons {
        gap: 12px;
    }
}