/* ================= VARIABLES ================= */
:root {
    --primary: #000000;
    --secondary: #15ff00; /* Bright Green */
    --accent-gray: #292929;
    --text-light: #ffffff;
    --text-dark: #111111;
    --text-muted: #888888;
    --border-light: #444;
    --input-bg: #2c2c2c;
    --max-width: 1600px;
}

/* ================= RESET & TYPOGRAPHY ================= */
* { box-sizing: border-box; margin:0; padding:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif; }
body { font-family: Arial, sans-serif; margin: 0; line-height: 1.6; color: var(--text-dark); overflow-x: hidden; background:#ffffff; }
h1, h2, h3, h4 { margin-top: 0; text-transform: uppercase; line-height: 1.1; }
h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; }
.title-black { color: #000000 !important; }

/* ================= UTILITIES ================= */
.container { width: 90%; max-width: var(--max-width); margin: 0 auto; padding: 0 15px; }
.container-career { width: 95%; margin: 0 auto;}
.section-padding { padding: 40px 0; }
.bg-dark { background-color: var(--primary); color: var(--text-light); }
.bg-light { background-color: var(--text-light); color: var(--primary); }
.pb-small { padding-bottom: 50px;}
.mobile-separator { display: none; }
/* ================= BUTTONS ================= */
.btn { display: inline-block; padding: 12px 28px; border-radius: 10px; font-weight: bold; text-transform: uppercase; font-size: 0.9rem; cursor: pointer; border: none; }
.btn-white { background: var(--text-light); color: var(--primary); }
.btn-white:hover { background: var(--secondary); border-radius: 0; }
.btn-outline { border: 2px solid var(--text-light); color: var(--text-light); background: transparent; }
.btn-outline:hover { background: var(--text-light); color: var(--primary); border-radius: 0; }
.btn-circle { display: inline-flex; align-items: center; justify-content: center; width: 45px; height: 45px; border-radius: 10%; background: rgba(255,255,255,0.2); border: 1px solid #fff; }
.btn-circle::after { content: '\2192'; color: #fff; font-size: 1.2rem; }
.btn-circle:hover { background: #fff; border-radius: 0%;}
.btn-circle:hover::after { color: #000; }
.icon-btn-square { flex-shrink: 0; color: #fefefe; width: 40px; height: 40px; border-radius: 4px; display: flex; font-weight: bold; }
.icon-btn-square:hover { background: #fff; }

/* ================= HEADER & NAV ================= */
.site-header { background: #000; height: 70px; display: flex; align-items: center; justify-content: space-between; padding: 10px 40px; position: relative; z-index: 1000; }
.logo img { height: 45px; }
.nav-menu { display: flex; gap: 55px; margin: 0 auto; }
.nav-menu a { color: #fff; font-size: 15px; font-weight: 400; }
.nav-menu a:hover { color: var(--secondary); }
.dropdown { position: relative; }
.dropdown-content { display: none; position: absolute; top: 100%; left: 0; background: #000; min-width: 300px; box-shadow: 0 3px 8px rgba(0,0,0,0.2); }
.dropdown-content a { padding: 8px 15px; display: block; font-size: 14px; }
.dropdown-content a:hover { background: #1a1a1a; }
.dropdown:hover .dropdown-content { display: block; }
/* Mobile Menu */
.hamburger-btn { display: none; background: transparent; border: 1px solid #fff; border-radius: 4px; padding: 5px; cursor: pointer; flex-direction: column; gap: 4px; }
.hamburger-btn span { display: block; width: 25px; height: 2px; background: #fff; }
.mobile-overlay { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: #222; z-index: 2000; transition: 0.4s; padding: 20px 30px; }
.mobile-overlay.active { right: 0; }
.overlay-header { display: flex; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid #444; margin-bottom: 20px; }
.close-btn { background: transparent; border: 1px solid var(--secondary); color: #fff; width: 30px; height: 30px; border-radius: 50%; font-size: 20px; cursor: pointer; }
.overlay-links { display: flex; flex-direction: column; gap: 20px; }
.mobile-link-item a { color: #fff; font-size: 1.5rem; text-transform: uppercase; }
.link-flex { display: flex; align-items: center; justify-content: space-between; }
.submenu-toggle { color: #fff; font-size: 24px; cursor: pointer; padding: 0 10px; line-height: 1; user-select: none; transition: transform 0.3s ease; }
.mobile-submenu { display: none; flex-direction: column; gap: 15px; margin-top: 15px; padding-left: 20px; border-left: 1px solid #444; }
.mobile-submenu a { color: #ccc; font-size: 1rem; text-transform: none; display: block; }
.mobile-submenu.active { display: flex; }
.submenu-toggle.rotate { transform: rotate(45deg); }

/* ================= HERO SECTIONS ================= */
/* Full Page Slider Hero (Home) */
.hero-slider-section { position: relative; height: 93vh; min-height: 500px; display: flex; align-items: center; background: #333; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0; transition: opacity 1.5s ease; }
.hero-bg.active { opacity: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); z-index: 1; }
.hero-content { position: relative; z-index: 2; }
.hero-content h1 { font-size: 4rem; font-weight: 800; text-transform: uppercase; margin-top: 150px; }
.hero-content p { font-size: 1.1rem; max-width: 630px; margin-bottom: 30px; }
/* Static Page Hero */
.hero-static { position: relative; height: 93vh; min-height: 400px; display: flex; align-items: center; background: #000; color: #fff; overflow: hidden; }
/* Rounded Box Hero (Contact) */
.hero-rounded-wrapper { padding: 40px 0 60px; background: #fff; }
.hero-rounded { position: relative; width: 100%; height: 300px; border-radius: 20px; overflow: hidden; background: #000; color: #fff; display: flex; align-items: flex-end; }
.hero-rounded .hero-bg { opacity: 0.7; }
.hero-rounded-content { position: relative; z-index: 2; padding: 40px; width: 100%; }
.breadcrumbs { position: absolute; top: 30px; left: 40px; z-index: 3; color: #fff; font-size: 0.9rem; }
.hero-rounded h1 { font-size: 3.5rem; margin: 0; }

/* ================= GENERAL SECTIONS & LAYOUT ================= */
/* Centered Intro */
.centered-intro { text-align: center; margin-bottom: 60px; }
.centered-intro .qoute-text{ font-size: 1.6rem; font-style: italic; font-weight: 500; color: var(--text-muted); margin-top: 10px; margin-bottom: 10px; }
/* Video Section */
.video-container { width: 100%; border-radius: 12px; overflow: hidden; position: relative; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.scroll-video { width: 100%; height: auto; display: block; pointer-events: none; }
/* Split Layout */
.split-layout { display: flex; gap: 50px; align-items: flex-start; }
.split-intro { flex: 0.8; position: sticky; top: 40px; }
.split-intro h2 { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 20px; }
.split-intro .highlight-desc { font-weight: 500; color: #333; margin-top: 15px; }
.split-grid { flex: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.split-content { flex: 2; }
/* Centered Section (Who We Are) */
.section-centered { text-align: center; }
.section-centered .container { max-width: 900px; margin: 0 auto; }
.section-title { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 15px; }
.section-desc { font-size: 0.95rem; line-height: 1.7; color: #333; font-weight: 400; max-width: 900px; margin: 0 auto; }
/* CTA Section */
.cta-section { position: relative; padding: 100px 0; text-align: center; color: #fff; background: #000; overflow: hidden; }
.cta-section img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-size: 2.5rem; margin-bottom: 15px; }
.cta-desc { max-width: 800px; margin: 0 auto 30px auto; font-size: 1.2rem; line-height: 1.6; opacity: 0.95; }

/* ================= CARD STYLES ================= */
/* Simple Icon Card */
.icon-card { background: #fff; border-bottom: 4px solid #eee; padding: 25px; border-radius: 8px; transition: 0.3s; display: flex; flex-direction: column; }
.icon-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.icon-card img { width: 60px; height: 60px; object-fit: contain; margin-bottom: 20px; }
.icon-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--primary); }
.icon-card p { font-size: 0.9rem; color: #555; }
/* Media Card Grid (Dark Section) */
.section-header { margin-bottom: 40px; max-width: 800px; }
.section-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; color: #fff; }
.section-header p { color: #ccc; font-size: 1.1rem; }
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.media-card { position: relative; height: 600px; border-radius: 10px; overflow: hidden; background: #222; cursor: pointer; }
.media-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, filter 0.6s ease; transform: scale(1); filter: none; }
.media-card:hover img { transform: scale(1.08); filter: blur(4px); }
.media-des { height: 500px; display: block; }
.media-overlay { position: relative; height: 100%; background: rgba(0,0,0,0.35); padding: 30px; display: flex; flex-direction: column; justify-content: space-between; }
.media-overlay h3 { font-size: 1.5rem; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.media-hidden-content { opacity: 1; transform: none; transition: none; display: block; margin-top: auto; }
.media-hidden-content1 { opacity: 1; transform: none; transition: none; display: block; margin-top: auto; }
.media-hidden-content1 p { color: #f1f1f1; font-size: 0.95rem; line-height: 1.7; margin: 0; padding: 16px; border-radius: 12px; background: rgba(0,0,0,0.45); backdrop-filter: blur(2px); }
.media-hidden-content p { color: #f1f1f1; font-size: 0.95rem; line-height: 1.7; margin: 0; padding: 16px; border-radius: 12px; background: rgba(0,0,0,0.45); backdrop-filter: blur(2px); }
/* Mobile Media Card Overlays & Toggles */
.media-toggle { display: none; background: none; border: 0; padding: 0; cursor: pointer; font: inherit; text-decoration: underline; color:#fff; }
.media-des-m { display: none !important; }
.media-card .report-overlay-m { position: absolute; left: 24px; right: 24px; bottom: 90px; z-index: 3; max-height: none; }
.media-card .report-overlay-m p { margin: 0; padding: 30px 14px; border-radius: 14px; ; backdrop-filter: blur(3px); border: 1px solid rgba(255,255,255,0.18); color: #ffffff; font-size: 0.95rem; line-height: 1.6; font-weight: 500; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; white-space: normal; word-break: break-word; overflow-wrap: anywhere; }
/* Numbered Grid (Why Choose Us) */
.numbered-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.numbered-card { background: #1a1a1a; padding: 40px; border-radius: 12px; border: 1px solid #333; transition: 0.3s; }
.numbered-card:hover { border-color: var(--secondary); transform: translateY(-5px); }
.card-number { font-size: 3rem; font-weight: 800; color: #333; margin-bottom: 20px; transition: color 0.3s; }
.numbered-card:hover .card-number { color: var(--secondary); }
.numbered-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 15px; }
.numbered-card p { color: #ccc; margin: 0; }
.points { list-style-type: disc; padding-left: 20px; margin-top: 10px; }
.points li { margin-bottom: 8px; }
.job-card-image { margin-top: 25px; width: 100%; border-radius: 8px; overflow: hidden; }
.job-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Culture / Summary Section */
.culture-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 50px; padding-top: 50px; }
.culture-card { background: #1a1a1a; padding: 40px; border-radius: 12px; border: 1px solid #333; transition: 0.3s; }
.culture-card:hover { border-color: var(--secondary); transform: translateY(-5px); }
.culture-card h3 { color: var(--secondary); font-size: 1.5rem; margin-bottom: 25px; text-transform: uppercase; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: #ccc; font-size: 1rem; line-height: 1.6; }
.check-list li strong { color: #fff; }
.check-list li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: var(--secondary); font-weight: bold; font-size: 1.1rem; }
/* Report/Portfolio Cards (Dive) */
.dive { padding: 90px 0; }
.dive-head { max-width: 950px; margin-bottom: 60px; }
.dive-title { font-size: 2.5rem; font-weight: 900; letter-spacing: -0.8px; line-height: 1.05; margin-bottom: 28px; }
.dive-sub { font-weight: 500; line-height: 1.45; }
.dive-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.report-card { background: #ffffff; border-radius: 18px; overflow: hidden; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 12px 32px rgba(0,0,0,0.08); transition: all .25s ease; }
.report-card:hover { transform: translateY(-6px); box-shadow: 0 20px 46px rgba(0,0,0,0.14); }
.report-media { position: relative; overflow: hidden; height: 320px; background: #0f172a; }
.report-media img { width:100%; height:100%; object-fit:cover; display:block; }
.report-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.548); display: flex; align-items: center; justify-content: center; padding: 30px; opacity: 0; transition: all 0.4s ease; z-index: 2; }
.report-overlay p { color: #fff; font-size: 1.1rem; font-weight: 500; text-align: center; line-height: 1.6; transform: translateY(20px); transition: transform 0.4s ease; }
.report-card:hover .report-overlay { opacity: 1; }
.report-card:hover .report-overlay p { transform: translateY(0); }
.report-foot { background:#f3f3f3; padding:20px; display:flex; justify-content:space-between; align-items:flex-end; gap:18px; min-height:130px; }
.report-foot2 { background:#030303; padding:20px; display:flex; justify-content:space-between; align-items:flex-end; gap:18px; min-height:130px; }
.report-date { display:block; font-size:14px; color:#6b7280; margin-bottom:12px; }
.report-name { font-size:22px; font-weight:700; line-height:1.25; }
.report-arrow { width:46px; height:46px; border-radius:50%; border:1px solid rgba(0,0,0,0.3); background:#fff; display:grid; place-items:center; color:#000; text-decoration:none; transition:all .25s ease; flex-shrink:0; }
.report-arrow:hover { background:#000; color:#fff; transform: translateX(5px); }
/* About Highlights & List Styles */
.about-highlights { margin-top: 30px; display: grid; grid-template-columns: repeat(1, 1fr); gap: 18px; }
.about-highlight-card { background: rgba(254, 253, 253, 0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 18px; position: relative; }
.about-highlight-card h3 { margin: 0 0 10px; color: #fff; font-size: 20px; font-weight: 700; }
.about-highlight-card p { margin: 0; color: rgba(255,255,255,0.75); line-height: 1.8; font-size: 14.5px; }
.about-highlight-card .icon-btn-square { position: absolute; right: 14px; bottom: 0px; }
.tick-list { list-style: none; padding-left: 0; }
.tick-list li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.tick-list li::before { content: "✓"; position: absolute; left: 0; color: #2ecc71; font-weight: bold; }
.star-list { list-style: none; padding-left: 0; }
.star-list li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.star-list li::before { content: "★"; position: absolute; left: 0; color: #f4c430; font-size: 18px; }

/* ================= BANNERS, SLIDERS & CAROUSELS ================= */
/* Feature Banner */
.feature-banner { position: relative; border-radius: 20px; overflow: hidden; margin: 60px 0; min-height: 400px; display: flex; align-items: center; background: #111; }
.feature-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, filter 0.6s ease; transform: scale(1); filter: none; opacity: 0.6; }
.feature-banner:hover img { transform: scale(1.06); filter: blur(4px); }
.feature-content { position: relative; z-index: 2; padding: 60px; max-width: 650px; color: #fff; }
.feature-content h2 { font-size: 2rem; margin-bottom: 20px; }
/* Feature Image Box */
.feature-image-box { margin-top: 60px; border-radius: 20px; overflow: hidden; height: 500px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); position: relative; }
.feature-image-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; transform: scale(1); }
.feature-image-box:hover img { transform: scale(1.06); }
/* Sub Feature & Image Slider */
.sub-feature-img { width: 100%; height: 350px; object-fit: cover; border-radius: 15px; margin-top: 20px; margin-bottom: 50px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.image-slider-wrapper { position: relative; width: 100%; height: 350px; border-radius: 15px; overflow: hidden; margin-top: 20px; margin-bottom: 50px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.image-slider-track { display: flex; height: 100%; transition: transform 0.5s ease-in-out; }
.image-slide { min-width: 100%; height: 100%; }
.image-slide img { width: 100%; height: 100%; object-fit: cover; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.7); color: #000; border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.slider-arrow:hover { background: #fff; color: var(--secondary); }
.slider-arrow.prev { left: 15px; } .slider-arrow.next { right: 15px; }
/* Home Slider (Strategy) */
.slider-wrapper { position: relative; border-radius: 20px; overflow: hidden; margin: 80px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.slides-container { display: flex; transition: transform 0.5s ease-in-out; }
.slide-item { min-width: 100%; flex-shrink: 0; position: relative; padding: 100px 80px; min-height: 600px; display: flex; align-items: center; background-size: cover; background-position: center; }
.slide-item::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.slide-text { position: relative; z-index: 2; max-width: 700px; color: #fff; }
.slide-text h2 { font-size: 3.5rem; margin-bottom: 20px; }
.slide-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.2); color: #fff; border: 2px solid #fff; width: 40px; height: 40px; border-radius: 20%; cursor: pointer; }
.slide-nav-btn:hover { background: #fff; color: #000; border-radius: 0%;}
.prev { left: 20px; } .next { right: 20px; }
.btn-group { display: flex; gap: 10px; margin-top: 20px; }
/* Carousel Container */
.carousel-container { position: relative; padding: 0 60px; }
.carousel-track-wrapper { overflow: hidden; width: 100%; }
.carousel-track { display: flex; gap: 20px; transition: transform 0.5s ease-in-out; }
.carousel-slide { flex: 0 0 calc(33.333% - 14px); min-width: 0; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 45px; height: 45px; background-color: #fff; color: #000; border: none; border-radius: 20%; font-size: 1.5rem; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.carousel-btn:hover { background-color: var(--secondary); color: #000; border-radius: 0%; }
.carousel-btn.prev { left: 0; } .carousel-btn.next { right: 0; }
.carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; background-color: #ccc; }

/* ================= PAGE: CONTACT ================= */
.contact-layout { display: flex; justify-content: space-between; gap: 100px; padding-bottom: 80px; }
.contact-left { flex: 1; }
.contact-right { flex: 1;padding-top:150px; }
.custom-select-wrapper { position: relative; margin-top: 10px; }
.custom-select { width: 100%; padding: 20px 25px; background: #f2f2f2; border: none; border-radius: 8px; font-size: 1rem; appearance: none; cursor: pointer; }
.select-arrow { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.text-lead { font-size: 1.15rem; line-height: 1.8; color: #333; margin-top: 0;}
.text-lead2 { font-size: 1.15rem; line-height: 1.8; color: #f6f4f4; margin-top: 0;}
.office-locations { display: flex; gap: 40px; margin-top: 40px 0; align-items: flex-start; }
.office-location { flex: 1; background: var(--accent-gray); padding: 30px; border-radius: 12px; border: 1px solid #4e4e4e; }
.office-location h3 { color: var(--text-light); margin-bottom: 5px; }
.office-sub { color: var(--secondary); font-weight: bold; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 20px; }
.office-location iframe { width: 100%; height: 250px; border: none; border-radius: 8px; margin-top: 20px; }

/* ================= PAGE: CAREER ================= */
.split-layout1 { display: flex; justify-content: center; align-items: center; }
.mh-inline { display: flex; align-items: center; gap: 15px; }
.mh-logo-inline { width: 60px; height: auto; }
.mh-only-title { font-size: 40px; font-weight: 700; letter-spacing: 2px; color: #111; margin: 0; }
.career-center-layout { display: block; width: 100%; margin-top: 60px; }
.career-intro-text { text-align: center; max-width: 800px; margin: 0 auto 50px auto; }
.career-intro-text h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.career-intro-text p { font-size: 1.1rem; color: #555; line-height: 1.8; }
.career-form-wrapper { max-width: 900px; margin: 0 auto; background: #fff; }
.career-form-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 30px; row-gap: 5px; }
.form-span-full { grid-column: span 2; }
.form-group { margin-bottom: 25px; text-align: left; }
.form-group label { display: block; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; color: var(--text-dark); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 16px 20px; background-color: #f4f4f4; border: 2px solid transparent; border-radius: 6px; font-size: 15px; color: var(--text-dark); font-family: inherit; transition: all 0.3s ease; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { background-color: #ffffff; border-color: var(--secondary); outline: none; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"); background-repeat: no-repeat; background-position: right 20px center; background-size: 12px; cursor: pointer; }
.submit-btn { width: 100%; background: var(--primary); color: var(--text-light); border: none; padding: 18px; font-size: 16px; font-weight: bold; text-transform: uppercase; cursor: pointer; border-radius: 10px; transition: 0.3s; letter-spacing: 1px; }
.submit-btn:hover { background: var(--secondary); color: var(--text-dark); border-radius: 0%; }

/* ================= PAGE: LEGAL ================= */
.legal-page-wrap { background: var(--primary); color: var(--text-light); padding: 90px 0 110px; position: relative; overflow: hidden; }
.legal-page-wrap::before { content: ""; position: absolute; inset: -40%; background: radial-gradient(circle at 20% 30%, rgba(21,255,0,0.10), transparent 45%), radial-gradient(circle at 80% 40%, rgba(255,255,255,0.06), transparent 50%), radial-gradient(circle at 60% 90%, rgba(21,255,0,0.08), transparent 55%); pointer-events: none; z-index: 0; }
.legal-page-container { width: 90%; max-width: 1100px; margin: 0 auto; padding: 0 15px; position: relative; z-index: 1; }
.legal-page-header { margin-bottom: 26px; }
.legal-page-title { font-size: 3.2rem; font-weight: 800; margin: 0 0 10px; line-height: 1.05; letter-spacing: 0.6px; text-transform: uppercase; }
.legal-page-title::after { content: ""; display: block; width: 110px; height: 4px; margin-top: 14px; background: var(--secondary); border-radius: 999px; }
.legal-page-updated { font-size: 0.92rem; color: rgba(255,255,255,0.55); margin-top: 14px; }
.legal-page-intro { color: rgba(4, 4, 4, 0.72); max-width: 850px; margin-top: 18px; line-height: 1.8; font-size: 1.02rem; }
.legal-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 34px; backdrop-filter: blur(6px); box-shadow: 0 18px 45px rgba(0,0,0,0.35); position: relative; overflow: hidden; }
.legal-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, rgba(21,255,0,0.65), transparent); opacity: 0.9; }
.legal-card h2 { margin: 24px 0 10px; font-size: 1.2rem; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase; color: #040404; position: relative; padding-left: 14px; }
.legal-card h2::before { content: ""; position: absolute; left: 0; top: 4px; width: 4px; height: 16px; background: var(--secondary); border-radius: 3px; }
.legal-card p { color: rgba(0, 0, 0, 0.8); margin: 0 0 14px; line-height: 1.85; font-size: 0.98rem; }
.legal-card a { color: var(--secondary); text-decoration: none; }
.legal-card a:hover { text-decoration: underline; }
.legal-card ul, .legal-list { list-style: disc; padding-left: 22px; margin: 12px 0 0; }
.legal-card li, .legal-list li { color: rgba(5, 4, 4, 0.78); margin-bottom: 10px; line-height: 1.8; font-size: 0.98rem; }
.legal-note { margin-top: 18px; padding: 16px 18px; border-radius: 12px; background: rgba(21,255,0,0.08); border: 1px solid rgba(21,255,0,0.22); color: rgba(6, 6, 6, 0.85); }
.legal-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }

/* ================= FOOTER ================= */
.site-footer { background: var(--accent-gray); color: #fff; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 350px 1fr; gap: 80px; margin-bottom: 60px; align-items: start; }
.footer-logo { height: 70px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 15px; margin-top: 20px; }
.footer-social img { width: 30px; filter: invert(1); }
.footer-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-bottom: 20px; }
.footer-links-grid h4 { color: var(--secondary); margin-bottom: 20px; font-size: 16px; text-transform: uppercase; font-weight: 700; }
.footer-links-grid ul li { margin-bottom: 12px; font-size: 14px; line-height: 1.5; }
.footer-links-grid a:hover { color: var(--secondary); }
.link-col { max-width: 350px; }
.footer-bottom { border-top: 1px solid #444; padding: 20px 0; font-size: 12px; color: #888; }
.bottom-flex { display: flex; justify-content: space-between; }
.legal-links a { margin-left: 20px; color: #888; }
.footer-legal-bar { background: transparent; padding: 0; margin: 0; }
.footer-legal-container { display: flex; align-items: center; justify-content: flex-end; gap: 14px; flex-wrap: wrap; }
.footer-legal-link { font-size: 12px; color: #888; text-decoration: none; transition: 0.25s ease; }
.footer-legal-link:hover { color: var(--secondary); text-decoration: none; }
.footer-legal-sep { color: #666; font-size: 12px; }

/* ---------- THANK YOU PAGE LAYOUT FIX (with .site-footer) ---------- */

html, body { height: 100%; }

/* If you already have body styles, only add these 2 lines */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main section takes remaining height */
.thank-you-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 80px 20px;
}

/* Centered container */
.thank-you-container {
  max-width: 700px;
  width: 100%;
  text-align: center;
}

/* Success icon */
.success-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: var(--secondary); /* your theme green */
  color: #000;
  font-size: 36px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title */
.thank-you-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111;
}

/* Message */
.thank-you-msg {
  font-size: 18px;
  color: #555;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Button (keep your existing .btn styles if already there) */
.btn-black {
  display: inline-block;
  padding: 14px 40px;
  background: #000;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.25s ease;
}

.btn-black:hover {
  background: var(--secondary);
  color: #000;
}

/* MPORTANT: Your footer class */
.site-footer {
  margin-top: auto;
}

/* ================================
   CAREERS: FORM MESSAGE (SUCCESS/ERROR)
   ================================ */

.form-message{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  max-width: 900px;
  margin: 28px auto 22px;
  padding: 18px 18px;
  border-radius: 16px;
  border: 1px solid #e9e9e9;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  animation: msgPop 0.35s ease-out;
}

/* Top accent bar */
.form-message::before{
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 4px;
  background: #111; /* default */
}

/* SUCCESS */
.form-message.success{
  border-color: rgba(21,255,0,0.25);
  background: linear-gradient(180deg, rgba(21,255,0,0.08), rgba(255,255,255,1) 55%);
}
.form-message.success::before{
  background: var(--secondary); /* your bright green */
}

/* ERROR */
.form-message.error{
  border-color: rgba(255, 77, 77, 0.35);
  background: linear-gradient(180deg, rgba(255, 77, 77, 0.10), rgba(255,255,255,1) 55%);
}
.form-message.error::before{
  background: #ff4d4d;
}

/* Icon */
.msg-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  font-size: 20px;
  font-weight: 900;
  color: #000;
  background: #f3f3f3;
  border: 1px solid #e8e8e8;
}
.form-message.success .msg-icon{
  background: rgba(21,255,0,0.22);
  border-color: rgba(21,255,0,0.30);
}
.form-message.error .msg-icon{
  background: rgba(255, 77, 77, 0.18);
  border-color: rgba(255, 77, 77, 0.28);
  color: #7a0000;
}

/* Content */
.msg-content h3{
  margin: 2px 0 6px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #111;
}
.msg-content p{
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #444;
  max-width: 680px;
}

/* Small close-style hint effect (no JS needed, decorative only) */
.form-message:hover{
  transform: translateY(-1px);
  transition: 0.2s ease;
}

/* Animation */
@keyframes msgPop{
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ================= MEDIA QUERIES ================= */
@media (max-width: 1200px) {
    .dive-grid { grid-template-columns: repeat(2, 1fr); }
    .dive-title { font-size:48px; }
    .dive-sub { font-size:24px; }
}

@media (max-width: 1100px) {
    .carousel-slide { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 1024px) {
    .about-highlights { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .split-layout, .contact-layout, .footer-grid { flex-direction: column; grid-template-columns: 1fr; gap: 40px; }
    .split-intro { position: static; max-width: 100%; }
    .split-grid, .media-grid, .numbered-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content h1 { font-size: 2.5rem; margin-top: 100px; }
    .section-title { font-size: 2.2rem; }
    .section-desc { font-size: 1.05rem; }
    .hero-rounded { height: 200px; }
    .hero-rounded h1 { font-size: 2rem; }
    .slide-item { width: 100vw; max-width: 100%; padding: 0 15px; box-sizing: border-box; display: flex; flex-direction: column; }
    .slide-text { width: 70%; max-width: 100%; white-space: normal; text-align: left; }
    .media-card { height: 400px; }
    .carousel-container { padding: 0; }
    .carousel-slide { flex: 0 0 100%; }
    .carousel-btn { width: 35px; height: 35px; background-color: rgba(255,255,255,0.8); }
    .carousel-btn.prev { left: 10px; }
    .carousel-btn.next { right: 10px; }
    .contact-layout { flex-direction: column; gap: 40px; padding-bottom: 40px; }
    .office-locations { flex-direction: column; gap: 30px; }
    .contact-left, .contact-right, .office-location { width: 100%; flex: none; }
    .hero-rounded-content h1 { font-size: 2.5rem; }
    .section-header h2 { font-size: 2rem; text-align: center; }
    .office-location iframe { height: 300px; }
    .container { padding-left: 20px; padding-right: 20px; }
    .culture-grid { grid-template-columns: 1fr; margin-top: 30px; padding-top: 30px; }
    .legal-page-wrap { padding: 70px 0 90px; }
    .legal-page-title { font-size: 2.35rem; }
    .legal-card { padding: 24px; border-radius: 14px; }
}

@media (max-width: 768px) {
    .site-header { padding: 0 20px; }
    .nav-menu { display: none; }
    .hamburger-btn { display: flex; }
    .split-grid, .media-grid, .numbered-grid, .footer-links-grid { grid-template-columns: 1fr; }
    .hero-slider-section { height: auto; padding: 100px 0; }
    .hero-rounded { height: 200px; }
    .hero-rounded h1 { font-size: 2rem; }
    .slide-item { min-height: 400px; padding: 40px 20px; }
    .slide-text h2 { font-size: 2rem; }
    .media-card { height: 400px; }
    .section-title { font-size: 2rem; }
    .section-desc { font-size: 1rem; }
    .contact-layout { flex-direction: column; gap: 40px; padding-bottom: 40px; }
    .office-locations { flex-direction: column; gap: 30px; }
    .contact-left, .contact-right, .office-location { width : 100%; flex: none; }
    .hero-rounded-content h1 { font-size: 2.5rem; }
    .section-header h2 { font-size: 2rem; text-align: center; }
    .office-location iframe { height: 300px; }
    .container { padding-left: 20px; padding-right: 20px; }
    .mh-only-title { font-size: 30px; }
    .footer-legal-container { justify-content: center; }
    .media-des { display: none; }
    .media-toggle { display: inline-flex; align-items: center; gap: 6px; }
    .media-des.is-open { display: block; margin-top: 8px; }
    .media-toggle[aria-expanded="true"] .arrow { transform: rotate(180deg); display: inline-block; }
    .media-card .report-overlay-m { left: 20px; right: 20px; bottom: 80px; }
    .media-card .report-overlay-m p { font-size: 0.9rem; padding: 12px 14px; line-height: 1.55; padding: 14px 16px; }
    .report-card:hover .report-overlay { opacity: 0; }
    .report-card:hover .report-overlay p { transform: translateY(20px); }
    .report-card.is-open .report-overlay { opacity: 1; }
    .report-card.is-open .report-overlay p { transform: translateY(0); }
    .report-overlay-m {display: none;}
    .hide-text-in-mobile { display: none; }
    .feature-banner:hover img { transform: scale(1.06); filter: none;}
    .mobile-separator { display: block; width: 50px; height: 2px; background-color: #ccc; margin: 20px auto; }
  
}

@media (max-width: 640px) {
    .dive-grid { grid-template-columns:1fr; }
    .dive-title { font-size:36px; }
    .dive-sub { font-size:20px; }
    .report-media { height:280px; }
}

@media (max-width: 480px) {
    .legal-page-title { font-size: 2rem; }
    .legal-page-title::after { width: 80px; }
}

@media only screen and (max-width: 767px) {
    .media-des-m { display: block !important; margin-bottom: 20px; }
}
@media (max-width: 767px) {
    .media-hidden-content {
        display: none;
    }
}
/* ================================
   MOBILE RESPONSIVE
   ================================ */
@media (max-width: 768px){
  .form-message{
    padding: 16px;
    border-radius: 14px;
    gap: 12px;
    margin: 18px auto 18px;
  }
  .msg-icon{
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 10px;
    font-size: 18px;
  }
  .msg-content h3{
    font-size: 16px;
  }
  .msg-content p{
    font-size: 13px;
  }
}

@media (max-width: 420px){
  .form-message{
    flex-direction: row;
    align-items: flex-start;
  }
  .msg-content h3{
    line-height: 1.2;
  }
}