/* ========================
   ROOT & RESET  —  60/30/10
   60% = light (#f5f7fa / #fff)
   30% = navy  (#1c3a5e)
   10% = yellow (#ffcc00)
======================== */
:root {
    --bg:      #f5f7fa;   /* 60% page background */
    --bg2:     #edf1f7;   /* 60% alternate section bg */
    --bg3:     #e4eaf2;   /* 60% card / subtle surface */
    --navy:    #1c3a5e;   /* 30% headings, borders, footer */
    --navy2:   #14304f;   /* 30% darker navy for hover */
    --navy3:   #0e243c;   /* 30% deepest navy */
    --yellow:  #f9954e;   /* 10% accent */
    --yellow2: #eb9148;   /* 10% accent hover */
    --white:   #ffffff;
    --text:    #1c3a5e;   /* primary text = navy */
    --muted:   #5a7a9e;   /* secondary text */
    --border:  rgba(28,58,94,0.12);
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body:    'Poppins', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* ========================
   UTILITY
======================== */
.accent { color: var(--yellow2); }

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    border: 1px solid rgba(28,58,94,0.3);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.section-tag.light {
    color: var(--navy);
    border-color: rgba(28,58,94,0.2);
    background: rgba(28,58,94,0.06);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    color: var(--navy);
    margin-bottom: 14px;
}

.title-bar {
    width: 60px; height: 4px;
    background: var(--yellow);
    border-radius: 2px;
    margin-bottom: 28px;
}

.btn-primary {
    display: inline-block;
    background: var(--yellow);
    color: var(--navy);
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.25s, transform 0.25s;
}
.btn-primary:hover { background: var(--yellow2); transform: translateY(-2px); }

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    padding: 13px 34px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.5);
    transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }

/* ========================
   NAVBAR
======================== */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.navbar-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 200;
    padding: 16px 5%;
    transition: padding 0.3s, box-shadow 0.3s;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(28,58,94,0.1);
}

.navbar-container.scrolled {
    padding: 10px 5%;
    box-shadow: 0 2px 24px rgba(28,58,94,0.15);
}

.navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo img { height: 58px; width: auto; }

.desktop-nav { display: flex; list-style: none; gap: 36px; }

.desktop-nav a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.25s;
    padding-bottom: 4px;
}
/* Always navy — no white-on-transparent camouflage */
.navbar-container.scrolled .desktop-nav a { color: var(--navy); }

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--yellow2);
    border-bottom: 2px solid var(--yellow);
}
.navbar-container.scrolled .desktop-nav a:hover,
.navbar-container.scrolled .desktop-nav a.active {
    color: var(--navy2);
    border-bottom: 2px solid var(--yellow);
}

.nav-contact-btn {
    background: var(--yellow);
    color: var(--navy);
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.25s, transform 0.2s;
    white-space: nowrap;
}
.nav-contact-btn:hover { background: var(--yellow2); transform: scale(1.04); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: 0.3s;
}
.navbar-container.scrolled .hamburger span { background: var(--navy); }

/* ========================
   MOBILE DRAWER
======================== */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 0; right: -100%;
    width: 72%; max-width: 290px;
    height: 100%;
    background: var(--white);
    border-left: 2px solid var(--yellow);
    z-index: 9999;
    padding: 80px 0 40px;
    transition: right 0.32s ease;
    box-shadow: -4px 0 30px rgba(28,58,94,0.15);
}
.mobile-drawer.open { right: 0; }

.mobile-drawer ul { list-style: none; }
.mobile-drawer ul li { border-bottom: 1px solid rgba(28,58,94,0.08); }
.mobile-drawer ul li a {
    display: block;
    padding: 16px 28px;
    font-size: 16px; font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s, padding-left 0.2s, background 0.2s;
}
.mobile-drawer ul li a:hover { color: var(--navy2); background: var(--bg3); padding-left: 36px; }

.mobile-drawer ul li:last-child { border: none; padding: 20px 20px 0; }
.mobile-drawer ul li:last-child a {
    background: var(--yellow); color: var(--navy);
    border-radius: 4px; text-align: center;
    padding: 13px 20px; font-weight: 700;
}
.mobile-drawer ul li:last-child a:hover { background: var(--yellow2); padding-left: 20px; }

.drawer-close {
    position: absolute; top: 20px; right: 20px;
    background: none; border: none;
    font-size: 22px; cursor: pointer;
    color: var(--navy); font-weight: 700;
}

.drawer-backdrop {
    display: none;
    position: fixed; inset: 0;
    background: rgba(28,58,94,0.4);
    z-index: 9998; opacity: 0;
    transition: opacity 0.3s ease;
}
.drawer-backdrop.open { opacity: 1; }

/* ========================
   HERO  — keeps dark overlay on video, stays impactful
======================== */
.hero-section {
    position: relative;
    height: 100vh; min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        105deg,
        rgba(14,36,60,0.9) 0%,
        rgba(14,36,60,0.65) 55%,
        rgba(14,36,60,0.3) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative; z-index: 2;
    padding: 0 6%;
    max-width: 780px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--yellow);
    border: 1px solid rgba(255,204,0,0.45);
    padding: 6px 16px; border-radius: 20px;
    margin-bottom: 24px;
}

.main-title {
    font-family: var(--font-display);
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.5px;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.4);
}

.hero-accent {
    color: var(--yellow);
    display: block;
}

.title-line {
    display: block;
    font-size: 7rem;
    overflow: hidden;
    color: var(--white);
}

.title-accent { color: var(--yellow); font-size: 4.5rem; }

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-hint {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hero-scroll-hint span {
    display: block;
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
    animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%,100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ========================
   STATS STRIP  — navy bg, yellow numbers
======================== */
.stats-strip {
    background: var(--navy);
    padding: 28px 6%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1; min-width: 160px;
    text-align: center;
    padding: 10px 20px;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
}
.stat-plus {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--yellow);
}

.stat-item p {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
}

.stat-divider {
    width: 1px; height: 50px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* ========================
   ABOUT  — white bg
======================== */
.about-section {
    padding: 50px 6%;
    background: var(--white);
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-images { flex: 1; }

.img-stack {
    position: relative;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.image-box { overflow: hidden; border-radius: 8px; }
.box-1 { width: 55%; height: 380px; margin-top: 50px; }
.box-2 { width: 42%; height: 300px; }
.image-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.image-box:hover img { transform: scale(1.05); }

.img-badge {
    position: absolute;
    bottom: -20px; left: 20px;
    background: var(--yellow);
    color: var(--navy);
    padding: 16px 22px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(255,204,0,0.35);
}
.img-badge span { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.img-badge strong { display: block; font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; line-height: 1; }

.about-content { flex: 1.1; }

.about-content p {
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 18px;
}

.about-list { list-style: none; margin-top: 8px; }
.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.93rem;
    color: var(--text);
    font-weight: 500;
}
.about-list li i { color: var(--yellow2); margin-top: 3px; flex-shrink: 0; }

/* ========================
   DIRECTOR  — light bg2
======================== */
.dt-section {
    padding: 50px 6%;
    background: var(--bg2);
    position: relative;
    overflow: hidden;
}
.dt-section::before {
    content: '"';
    position: absolute;
    top: -60px; right: 5%;
    font-family: var(--font-display);
    font-size: 30rem;
    font-weight: 900;
    color: rgba(28,58,94,0.04);
    line-height: 1;
    pointer-events: none;
}

.dt-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 50px 56px;
    box-shadow: 0 4px 24px rgba(28,58,94,0.08);
}

.dt-photo {
    flex-shrink: 0;
    width: 280px; height: 320px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 3px solid var(--yellow);
}
.dt-photo img { width: 100%; height: 100%; object-fit: cover; }
.dt-photo-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: var(--yellow);
    color: var(--navy);
    text-align: center;
    padding: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dt-title {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1;
}

.dt-quote-mark {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 0.5;
    margin-bottom: 16px;
    display: block;
}
.dt-text {
    font-size: 0.97rem;
    color: var(--muted);
    line-height: 1.8;
    font-style: italic;
}
.dt-quote-close-wrap {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 0.3;
    text-align: right;
    display: block;
    margin-bottom: 20px;
}
.dt-name { font-weight: 700; font-size: 1rem; color: var(--navy); margin-top: 4px; }
.dt-designation { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

/* ========================
   SERVICES  — white bg
======================== */
.services-section {
    padding: 50px 6%;
    background: var(--white);
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.services-content { flex: 1.1; }

.services-content > p {
    font-size: 0.97rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.services-list { list-style: none; margin-bottom: 36px; }

.services-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.svc-icon {
    width: 42px; height: 42px;
    background: rgba(28,58,94,0.07);
    border: 1px solid rgba(28,58,94,0.18);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--navy);
    font-size: 16px;
}

.services-list li strong {
    display: block;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.services-list li span { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

.services-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: default;
}

.grid-item img {
    width: 100%; height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.grid-item:hover img { transform: scale(1.08); }

.grid-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(14,36,60,0.8));
    color: #fff;
    padding: 24px 16px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
.grid-item:hover .grid-overlay { transform: translateY(0); }

/* ========================
   CLIENTS  — bg2
======================== */
.clients-section {
    padding: 50px 6%;
    background: var(--bg2);
}

.clients-inner { max-width: 1300px; margin: 0 auto; }

.clients-sub {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 48px;
    line-height: 1.6;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.slider-window { overflow: hidden; width: 100%; }

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: center;
    justify-items: center;
}

.logo-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    width: 100%;
    height: 90px;              /* fixed height on desktop too */
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: default;
}
.logo-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 4px 20px rgba(28,58,94,0.1);
    background: var(--bg3);
}
.logo-card img {
    max-width: 140px;
    max-height: 55px;          /* logo fits inside, never stretches the box */
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s;
}
.logo-card:hover img { opacity: 1; }

.slider-arrow {
    background: var(--navy);
    color: var(--white);
    border: none;
    width: 46px; height: 46px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}
.slider-arrow:hover { background: var(--yellow); color: var(--navy); }

.dots-container { text-align: center; margin-top: 28px; }
.dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: rgba(28,58,94,0.2);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.dot.active { background: var(--navy); transform: scale(1.3); }

/* ========================
   CAREER  — navy bg (30%), text light
======================== */
.career-section {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.career-bg-img {
    position: absolute; inset: 0; z-index: 0;
}
.career-bg-img img { width: 100%; height: 100%; object-fit: cover; }

.career-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        105deg,
        rgba(14,36,60,0.93) 0%,
        rgba(14,36,60,0.75) 60%,
        rgba(14,36,60,0.4) 100%
    );
    z-index: 1;
}

.career-content {
    position: relative; z-index: 2;
    padding: 80px 6%;
    max-width: 600px;
}

.career-title {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.career-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin-bottom: 28px;
    white-space: nowrap;
}

/* ========================
   FLOATING CONTACT BUTTONS
======================== */
.float-contact {
    position: fixed;
    right: 20px;
    bottom: 40px;
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.float-btn:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.float-btn::before {
    content: attr(title);
    position: absolute;
    right: 58px;
    background: var(--navy);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.float-btn:hover::before { opacity: 1; }

.float-phone { background: var(--navy); }
.float-mail  { background: #d44638; }
.float-wa    { background: #25d366; animation: waPulse 2.5s ease-in-out infinite; }

@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
    50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.65); }
}

@media (max-width: 768px) {
    .float-contact { right: 14px; bottom: 28px; gap: 10px; }
    .float-btn { width: 42px; height: 42px; font-size: 15px; }
    .float-btn::before { display: none; }
}

/* ========================
   FOOTER  — navy (30%), white text
======================== */
.footer-outer-wrapper {
    background: var(--navy);
    padding: 60px 6% 0;
}

.footer-container { max-width: 1400px; margin: 0 auto; }

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-col { flex: 1; }

.brand-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.f-logo { height: 48px; }
.f-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; line-height: 1.2; color: var(--white); }
.f-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; }

.footer-col h3 {
    font-size: 0.82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--white); margin-bottom: 18px;
}
.footer-col h3 + h3 { margin-top: 20px; }

.links ul { list-style: none; padding: 0; }
.links ul li { margin-bottom: 10px; }
.links ul li a { text-decoration: none; color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: 0.25s; }
.links ul li a:hover { color: var(--yellow); padding-left: 6px; }

.address { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 18px; }
.address i { color: var(--yellow); margin-right: 6px; }
.contact-persons { display: flex; gap: 20px; margin-bottom: 14px; flex-wrap: wrap; }
.person p { font-weight: 700; font-size: 12px; color: var(--white); margin-bottom: 4px; }
.contact-link, .email-link {
    text-decoration: none; color: rgba(255,255,255,0.6); font-size: 12px;
    display: flex; align-items: center; gap: 7px; transition: 0.25s;
}
.contact-link i, .email-link i { color: var(--yellow); }
.contact-link:hover, .email-link:hover { color: var(--yellow); }

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
}

/* ========================
   TABLET (≤ 992px)
======================== */
@media (max-width: 992px) {
    .title-line { font-size: 5.5rem; }
    .title-accent { font-size: 3.5rem; }
    .about-container { flex-direction: column; gap: 60px; }
    .img-stack { justify-content: center; }
    .box-1 { width: 52%; }
    .box-2 { width: 40%; }
    .dt-container { flex-direction: column; padding: 36px 30px; gap: 30px; }
    .dt-photo { width: 100%; height: 240px; }
    .services-container { flex-direction: column; gap: 50px; }
    .services-grid { order: -1; }
    .footer-main { flex-wrap: wrap; }
    .section-title { font-size: 2.8rem; }
}

/* ========================
   MOBILE (≤ 768px)
======================== */
@media (max-width: 768px) {
    /* Navbar */
    .logo img { height: 38px; }
    .logo-name { font-size: 0.78rem; letter-spacing: 0.5px; }
    .navbar-container { padding: 14px 4%; }
    .navbar-container.scrolled { padding: 10px 4%; }
    .logo img { height: 46px; }
    .desktop-nav { display: none; }
    .nav-contact-btn { display: none; }
    .hamburger { display: flex; }
    .mobile-drawer { display: block; }
    .drawer-backdrop { display: block; pointer-events: none; }
    .drawer-backdrop.open { pointer-events: auto; }

    /* Hero */
    .hero-section {
        height: auto;
        min-height: unset;
        padding-top: 74px;
        position: relative;
        display: flex;
        flex-direction: column;
    }
    .hero-video {
        position: relative;
        width: 100%;
        height: 52vw;
        min-height: 220px;
        object-fit: cover;
        display: block;
        z-index: 0;
    }
    .hero-overlay {
        display: block;
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            rgba(14,36,60,0.55) 0%,
            rgba(14,36,60,0.82) 100%
        );
        z-index: 1;
    }
    .hero-content {
        position: absolute;
        bottom: 0;
        left: 0; right: 0;
        z-index: 2;
        padding: 0 4% 20px;
        max-width: 100%;
    }
    .main-title {
        font-size: 1.55rem;
        line-height: 1.15;
        margin-bottom: 12px;
    }
    .hero-accent { font-size: 1.55rem; }
    .hero-sub { font-size: 0.82rem; display: block; margin-bottom: 14px; }
    .hero-ctas { gap: 8px; }
    .btn-primary, .btn-ghost { font-size: 0.78rem; padding: 9px 14px; }
    .hero-scroll-hint { display: none; }

    /* Stats — all 3 in one row */
    .stats-strip {
        padding: 16px 2%;
        flex-wrap: nowrap;
        justify-content: space-around;
    }
    .stat-divider { display: none; }
    .stat-item {
        flex: 1 1 0;
        min-width: 0;
        padding: 8px 4px;
        text-align: center;
    }
    .stat-num { font-size: 1.9rem; }
    .stat-plus { font-size: 1.3rem; }
    .stat-item p { font-size: 0.6rem; letter-spacing: 0.8px; }

    /* About */
    .about-section { padding: 60px 5%; }
    .about-container { gap: 40px; }
    .img-stack { flex-direction: column; align-items: center; }
    .box-1, .box-2 { width: 90%; height: 200px; margin-top: 0; }
    .img-badge { left: 10%; }
    .section-title { font-size: 2.2rem; }

    /* Director */
    .dt-section { padding: 50px 5%; }
    .dt-container { padding: 28px 20px; }
    .dt-title { font-size: 2rem; }
    .dt-photo { height: 200px; }

    /* Services */
    .services-section { padding: 60px 5%; }
    .services-container { gap: 36px; }
    .services-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
    .grid-item img { height: 140px; }

    /* Clients */
    .clients-section { padding: 60px 5%; }
    .slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .logo-card {
        padding: 0;
        height: 80px;          /* fixed height regardless of logo */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .logo-card img {
        max-width: 110px;
        max-height: 50px;      /* caps the logo height inside the box */
        width: auto;
        height: auto;
        object-fit: contain;
        opacity: 0.85;
    }

    /* Career */
    .career-content { padding: 60px 5%; max-width: 100%; }
    .career-title { font-size: 2rem; white-space: normal; letter-spacing: -0.5px; }
    .career-content p { font-size: 0.9rem; white-space: normal; }

    /* Footer */
    .footer-outer-wrapper { padding: 50px 5% 0; }
    .footer-main { flex-direction: column; gap: 30px; }
    .contact-persons { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
    .main-title { font-size: 1.8rem; }
    .hero-accent { font-size: 1.8rem; }
    .section-title { font-size: 1.9rem; }
    .stat-item { flex: 1 1 30%; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .grid-item img { height: 120px; }
}
