/* ============================================================
   GOLD SPOT Management — Pure Vanilla CSS Architecture
   (Updated to Cool White & Blue Theme)
   ============================================================ */

/* ── CSS Variables & Global Resets ────────────────────────── */
:root {
    /* Primary Theme: Deep Blue */
    --primary: #1C448E;
    --primary-light: #4A6EAD; 
    --primary-dark: #0E2656;
    --primary-rgb: 28, 68, 142;

    /* Secondary Theme: Muted Slate/Purple-Gray */
    --secondary: #938BA1;
    --secondary-light: #54c0ff;
    --secondary-dark: #5f7aff;
    --secondary-rgb: 147, 139, 161;

    /* Backgrounds: Cool White */
    --bg-light: #F4FDFF;
    --bg-light-rgb: 244, 253, 255;

    /* Core Neutrals */
    --black: #484848; 
    --black-light: #1A1A1A; 
    --black-lighter: #2A2A2A;
    --black-rgb: 10, 10, 10;
    
    --white: #ffffff;
    --white-rgb: 255, 255, 255;

    /* Grays */
    --gray-50: #f9fafb; 
    --gray-100: #f3f4f6; 
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db; 
    --gray-400: #9ca3af; 
    --gray-500: #6b7280;
    --gray-600: #4b5563; 
    --gray-800: #1f2937;
    
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--gray-800); background-color: var(--gray-50); -webkit-font-smoothing: antialiased; line-height: 1.5; overflow-x: hidden; }
::selection { background-color: var(--primary-light); color: var(--white); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; border: none; outline: none; background: transparent; }
img { display: block; max-width: 100%; height: auto; }
.job-content-area ul{
	list-style:circle ! important;
}
/* ── Layout & Typography Utilities ────────────────────────── */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 3rem 0; }
@media (min-width: 640px) { .section { padding: 4rem 0; } }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
@media (min-width: 1024px) { .section { padding: 8rem 0; } }

.section-white { background-color: var(--white); }
.section-black { background-color: var(--primary-dark); color: var(--white); border-top: 1px solid rgba(var(--primary-rgb), 0.2); border-bottom: 1px solid rgba(var(--primary-rgb), 0.2); }
.section-gray { background-color: var(--gray-50); }
.section-beige { background-color: var(--bg-light); }

.section-subtitle { font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.75rem; margin-bottom: 0.5rem; display: inline-block; }
@media (min-width: 640px) { .section-subtitle { font-size: 0.875rem; } }
.section-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.875rem; line-height: 1.25; margin-bottom: 1rem; color: var(--primary-dark); }
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 768px) { .section-title { font-size: 3rem; } }

.section-title-w { font-family: var(--font-heading); font-weight: 700; font-size: 1.875rem; line-height: 1.25; margin-bottom: 1rem; color: var(--bg-light); }
@media (min-width: 640px) { .section-title-w { font-size: 2.25rem; } }
@media (min-width: 768px) { .section-title-w { font-size: 3rem; } }

.section-desc { font-size: 0.875rem; text-align: justify; color: var(--gray-600); line-height: 1.625; }
@media (min-width: 640px) { .section-desc { font-size: 1rem; } }
@media (min-width: 768px) { .section-desc { font-size: 1.125rem; } }

.text-center { text-align: center; }
.centered-desc { max-width: 42rem; margin: 1rem auto 2rem; }
.text-white { color: var(--white) !important; }
.text-light { color: var(--gray-400) !important; }
.text-dark { color: var(--gray-600) !important; }
.text-dark-trans { color: rgba(var(--black-rgb), 0.7); }
.mb-md { margin-bottom: 1.5rem; }
.mb-lg { margin-bottom: 2rem; }
@media (min-width: 640px) { .mb-md { margin-bottom: 2rem; } .mb-lg { margin-bottom: 2.5rem; } }

/* ── Custom Theme Utilities ───────────────────────────────── */
.gold-gradient-text {
    background: linear-gradient(to right, var(--secondary-light), var(--primary-light), var(--secondary-dark));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-size: 200% auto; animation: shine 5s linear infinite;
}
.gold-gradient-bg {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    background-size: 200% 200%; transition: all 0.45s ease-in-out; color: var(--white);
}
.gold-gradient-bg:hover { background-position: 100% 100%; }
@keyframes shine { to { background-position: 200% center; } }

/* ── Buttons ──────────────────────────────────────────────── */
.btn { display: inline-flex; justify-content: center; align-items: center; padding: 1rem 1.5rem; border-radius: 0.75rem; font-weight: 700; font-size: 0.875rem; transition: all 0.3s ease-in-out; text-align: center; cursor: pointer; }
@media (min-width: 640px) { .btn { padding: 1rem 2rem; font-size: 1rem; } }
.btn-primary { background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dark)); background-size: 200%; color: var(--white); box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.4); }
.btn-primary:hover { transform: translateY(-0.25rem); box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.6); background-position: 100%; color: var(--white); }
.btn-outline { background: rgba(var(--primary-rgb), 0.05); backdrop-filter: blur(4px); border: 1px solid rgba(var(--primary-rgb), 0.5); color: var(--primary); }
.btn-outline:hover { background: rgba(var(--primary-rgb), 0.1); border-color: var(--primary); transform: translateY(-0.25rem); box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.2); }


/* --- Action Buttons (Explore, Read More) Pill Style --- */
.btn-primary.group {
    position: relative;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark)) !important;
    color: var(--bg-light) !important;
    border-radius: 9999px !important; 
    padding: 1rem 4.5rem 1rem 2.5rem !important; 
    box-shadow: none !important; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible; 
    border: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important; 
    width: auto !important; 
}

/* Base state for the icon */
.btn-primary.group i,
.btn-primary.group .icon-slide,
.btn-primary.group .icon-slide-up {
    position: absolute;
    right: -1rem; 
    top: 50%;
    margin: 0 !important; 
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-light) !important; 
    color: var(--white) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transform: translateY(-50%) !important; 
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important; 
    z-index: 2;
}

/* Hover state for the button body */
.btn-primary.group:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
    transform: translateY(0) !important; 
    box-shadow: none !important; 
}

/* Hover state for the icon (Slide right and rotate 45deg) */
.btn-primary.group:hover i,
.btn-primary.group:hover .icon-slide,
.btn-primary.group:hover .icon-slide-up {
    background: var(--primary-dark) !important;
    transform: translateY(-50%) translateX(6px) rotate(-45deg) !important; 
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3) !important;
}


/* ── Navbar ───────────────────────────────────────────────── */
.navbar { position: fixed; width: 100%; z-index: 50; border-bottom: 1px solid rgba(var(--bg-light-rgb), 0.4); transition: all 0.3s ease-in-out; }
.glass-nav { background: var(--white); backdrop-filter: blur(100px); border-color: transparent; }
.glass-nav.scrolled { background: rgba(var(--bg-light-rgb), 0.95); backdrop-filter: blur(12px); border-color: rgba(var(--white-rgb), 0.8); box-shadow: 0 4px 30px rgba(var(--primary-rgb), 0.15); }
.navbar-inner { display: flex; justify-content: space-between; align-items: center; height: 5rem; }
.navbar-brand { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; flex-shrink: 0; }
.brand-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; color: var(--primary); letter-spacing: 0.025em; }
.brand-subtitle { display: block; margin-top: -0.25rem; font-size: 0.625rem; font-weight: 600; letter-spacing: 0.1em; }
@media (min-width: 640px) { .brand-title { font-size: 1.25rem; } .brand-subtitle { font-size: 0.875rem; } }
.navbar-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .navbar-links { display: flex; } }

.nav-link { color: var(--secondary-dark); font-weight: 500; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.3s; }

.nav-link:hover, 
.nav-link.active, 
.nav-link-active { 
    color: var(--primary) !important; 
    filter: drop-shadow(0 0 8px rgba(var(--primary-rgb), 0.4)); 
    font-weight: 700;
}
.logo{
  width: auto;
  height: 3.5rem;
}
.navbar-mobile-toggle { display: flex; align-items: center; }
@media (min-width: 1024px) { .navbar-mobile-toggle { display: none; } }
.mobile-toggle-btn { color: var(--primary); padding: 0.5rem; font-size: 1.875rem; transition: color 0.3s; position: relative; z-index: 50; }
.mobile-toggle-btn:hover { color: var(--primary-light); }

/* ── Mobile Menu ──────────────────────────────────────────── */
.mobile-menu { position: fixed; inset: 0; z-index: 40; display: flex; flex-direction: column; justify-content: center; align-items: center; background: rgba(var(--black-rgb), 0.98); backdrop-filter: blur(20px); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: all 0.3s ease-in-out; }
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; width: 100%; padding: 0 1.5rem; text-align: center; }
.mobile-link { color: var(--white); font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; width: 100%; padding: 0.75rem 0; font-size: 1.875rem; transition: color 0.3s; opacity: 0; transform: translateY(18px); }

.mobile-link:hover, 
.mobile-link.active, 
.mobile-link-active { 
    color: var(--primary-light) !important; 
}

.mobile-link-sm { font-size: 1.5rem; font-weight: 600; letter-spacing: 0.05em; padding: 0.625rem 0; }
.mobile-divider { width: 4rem; height: 1px; background: rgba(var(--white-rgb), 0.2); margin: 0.75rem 0; opacity: 0; transform: translateY(18px); }
.btn-mobile { margin-top: 1rem; padding: 1rem 2.5rem; border-radius: 1rem; font-size: 1.125rem; }
body.menu-open { overflow: hidden; }
.mobile-menu.open .mobile-link:nth-child(1) { opacity: 1; transform: translateY(0); transition: all 0.3s ease 0.05s; }
.mobile-menu.open .mobile-link:nth-child(2) { opacity: 1; transform: translateY(0); transition: all 0.3s ease 0.1s; }
.mobile-menu.open .mobile-link:nth-child(3) { opacity: 1; transform: translateY(0); transition: all 0.3s ease 0.15s; }
.mobile-menu.open .mobile-link:nth-child(4) { opacity: 1; transform: translateY(0); transition: all 0.3s ease 0.2s; }
.mobile-menu.open .mobile-divider { opacity: 1; transform: translateY(0); transition: all 0.3s ease 0.25s; }
.mobile-menu.open .btn-mobile { opacity: 1; transform: translateY(0); transition: all 0.3s ease 0.3s; }

/* ── Hero Section ─────────────────────────────────────────── */
.hero-section { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; background: var(--black); padding-top: 5rem; }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; transition: opacity 1s ease-in-out; opacity: 0; z-index: 0; }
.hero-slide.active { opacity: 1; z-index: 10; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: pulseScale 20s ease-in-out infinite; }

.darker-img { filter: brightness(0.6); }
@keyframes pulseScale { 0%, 100% { transform: scale(1.05); } 50% { transform: scale(1.1); } }

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

.hero-slider-controls { position: absolute; bottom: 2rem; left: 0; width: 100%; display: flex; justify-content: center; align-items: center; gap: 0.75rem; z-index: 30; }
.slider-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: rgba(var(--white-rgb), 0.5); transition: all 0.3s; cursor: pointer; }
.slider-dot:hover { background: var(--white); }
.slider-dot.active { width: 2rem; background: var(--primary-light); }
.hero-content-wrapper { position: relative; z-index: 30; width: 100%; padding-top: 3rem; padding-bottom: 3rem; pointer-events: none; }
@media (min-width: 640px) { .hero-content-wrapper { padding-top: 5rem; padding-bottom: 5rem; } }
.hero-content { pointer-events: auto; text-align: left; }
.hero-content .section-subtitle { letter-spacing: 0.2em; margin-bottom: 1rem; }
@media (min-width: 640px) { .hero-content .section-subtitle { margin-bottom: 1.5rem; } }
.hero-title { font-family: var(--font-heading); font-weight: 700; font-size: 2.25rem; color: var(--primary); line-height: 1.1; max-width: 56rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.2rem; } }
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: inline; } }
.hero-desc { font-size: 1rem; color: var(--primary-dark); max-width: 42rem; font-weight: 300; line-height: 1.625; margin-bottom: 2rem; }
@media (min-width: 640px) { .hero-desc { font-size: 1.125rem; margin-bottom: 2.5rem; } }
@media (min-width: 768px) { .hero-desc { font-size: 1.25rem; } }
@media (min-width: 1024px) { .hero-desc { font-size: 1.5rem; } }
.hero-actions { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

/* ── About Section ────────────────────────────────────────── */
.about-btn-wrap { text-align: center; width: 100%; }
@media (min-width: 1024px) { .about-btn-wrap { text-align: left; } }
.about-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; } }
.about-image-col { order: 2; margin-top: 0rem; }
@media (min-width: 1024px) { .about-image-col { order: 1; margin-top: 0; } }
.about-text-col { order: 1; }
@media (min-width: 1024px) { .about-text-col { order: 2; } }
.about-image-wrapper { position: relative; }
.about-image-bg { display: none; position: absolute; top: -1rem; right: -1rem; bottom: -1rem; left: -1rem; border-radius: 1.25rem;  transform: translate(1rem, 1rem); transition: transform 0.5s; z-index: 0; }
@media (min-width: 640px) { .about-image-bg { display: block; } .about-image-wrapper:hover .about-image-bg { transform: translate(0.5rem, 0.5rem); } }
.about-img { position: relative; width: 100%; height: auto; object-fit:scale-down; border-radius: 1.25rem; z-index: 1; }
@media (min-width: 640px) { .about-img { height: 400px; } }
@media (min-width: 1024px) { .about-img { height: 500px; } }
.about-badge { position: absolute; bottom: -1rem; right: -0.5rem; background: var(--primary); color: var(--white); padding: 1.25rem; border-radius: 0.75rem; box-shadow: 0 20px 25px -5px rgba(var(--black-rgb), 0.1);  z-index: 2; transition: transform 0.5s; }
@media (min-width: 640px) { .about-badge { bottom: 1.5rem; right: 1.5rem; padding: 1.5rem; } }
.about-image-wrapper:hover .about-badge { transform: translateY(-0.5rem); }
.badge-year { font-family: var(--font-heading); font-weight: 700; font-size: 1.875rem; margin-bottom: 0.25rem; }
@media (min-width: 640px) { .badge-year { font-size: 2.25rem; } }
.badge-text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--bg-light); }
@media (min-width: 640px) { .badge-text { font-size: 0.875rem; } }

.about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; border-top: 1px solid var(--gray-100); padding-top: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .about-features { gap: 1.5rem; padding-top: 1.5rem; margin-bottom: 2rem; } }
.feature-box { padding: 0.75rem; border-radius: 0.75rem; transition: all 0.3s; border: 1px solid transparent; cursor: default; }
@media (min-width: 640px) { .feature-box { padding: 1rem; } }
.feature-box:hover { background: var(--gray-50); transform: translateY(-0.25rem); box-shadow: 0 4px 6px -1px rgba(var(--black-rgb), 0.1); border-color: rgba(var(--primary-rgb), 0.2); }
.feature-icon { font-size: 1.25rem; color: var(--primary); margin-bottom: 0.5rem; }
@media (min-width: 640px) { .feature-icon { font-size: 1.5rem; margin-bottom: 0.75rem; } }
.feature-title { font-weight: 700; color: var(--black); font-size: 0.875rem; margin-bottom: 0.25rem; line-height: 1.2; }
@media (min-width: 640px) { .feature-title { font-size: 1.125rem; } }
.feature-desc { font-size: 0.75rem; color: var(--gray-500); line-height: 1.4; }
@media (min-width: 640px) { .feature-desc { font-size: 0.875rem; } }

/* ── Strengths Section ────────────────────────────────────── */
.strengths-section { position: relative; }
.strengths-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(var(--black-rgb), 0.15), rgba(var(--black-rgb), 0.65)), url('strenght.jpeg'); background-size: cover; background-position: center; background-attachment: fixed; pointer-events: none; z-index: 0; }
.strengths-section .container { position: relative; z-index: 10; }
.strengths-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; text-align: center; }
@media (min-width: 640px) { .strengths-grid { gap: 2rem; } }
@media (min-width: 768px) { .strengths-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .strengths-grid { grid-template-columns: repeat(5, 1fr); } }
.strength-card { padding: 1rem; }
.strength-card-wide { grid-column: span 2; }
@media (min-width: 768px) { .strength-card-wide { grid-column: span 1; } }
.strength-icon-box { width: 3.5rem; height: 3.5rem; margin: 0 auto 1rem; background: var(--white); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(var(--primary-rgb), 0.3); font-size: 1.25rem; transition: all 0.3s; }
@media (min-width: 640px) { .strength-icon-box { width: 5rem; height: 5rem; font-size: 2rem; } }
.strength-card:hover .strength-icon-box { transform: scale(1.1) translateY(-0.5rem); border-color: var(--primary); box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3); }
.strength-title { font-weight: 700; font-size: 0.875rem; color: var(--gray-200); margin-bottom: 0.5rem; transition: color 0.3s; }
@media (min-width: 640px) { .strength-title { font-size: 1rem; } }
.strength-card:hover .strength-title { color: var(--secondary-light); }
.strength-desc { font-size: 0.75rem; color: var(--gray-400); }
@media (min-width: 640px) { .strength-desc { font-size: 0.875rem; } }

/* ── Services Section ─────────────────────────────────────── */
.services-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .services-grid { gap: 2rem; } }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* Home page standard service cards */
.service-card { 
    background: var(--white); 
    border-radius: 1.25rem; 
    box-shadow: 0 10px 15px -3px rgba(var(--black-rgb), 0.1); 
    display: flex; 
    flex-direction: column; 
    position: relative; 
    overflow: hidden; 
    border: 1px solid transparent; 
    cursor: pointer; 
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.service-card:hover { 
    transform: translateY(-8px); 
    border-color: var(--primary); 
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.15); 
}

.card-top-bar { position: absolute; top: 0; left: 0; width: 100%; height: 0.25rem; z-index: 20; }
.bar-hover-gold { background: var(--black); transition: background 0.3s; }
.service-card:hover .bar-hover-gold { background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dark)); }
.service-img-wrap { width: 100%; height: 12rem; position: relative; overflow: hidden; background: var(--black); }
@media (min-width: 640px) { .service-img-wrap { height: 14rem; } }
.service-img-overlay { position: absolute; inset: 0; background: var(--secondary-light), 10%; z-index: 10; transition: background 0.5s; pointer-events: none; }
.service-card:hover .service-img-overlay { background: transparent; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease-out; will-change: transform; }
.service-card:hover .service-img { transform: scale(1.1); }

/* The smooth hardware-accelerated floating icon */
.service-icon-floating { 
    position: absolute; 
    bottom: -1.25rem; 
    left: 1.5rem; 
    z-index: 50; 
    background: var(--white); 
    width: 3.5rem; 
    height: 3.5rem; 
    border-radius: 0.75rem; 
    box-shadow: 0 10px 15px -3px rgba(var(--black-rgb), 0.1); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.5rem; 
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    will-change: transform;
    backface-visibility: hidden;
}
.service-icon-floating i { transition: color 0.3s ease-in-out; }
.service-card:hover .service-icon-floating { transform: translateY(-0.5rem); }
.service-card:hover .service-icon-floating i { color: var(--primary); }

.service-content { padding: 2.5rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
@media (min-width: 640px) { .service-content { padding: 2.5rem 2rem 2rem; } }
.service-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--black); margin-bottom: 1rem; transition: color 0.3s; }
@media (min-width: 640px) { .service-title { font-size: 1.5rem; } }
.service-card:hover .service-title { color: var(--primary); }
.service-desc { font-size: 0.875rem; color: var(--gray-600); line-height: 1.625; margin-bottom: 1.5rem; flex-grow: 1; }
@media (min-width: 640px) { .service-desc { font-size: 1rem; } }
.service-list { font-size: 0.875rem; color: var(--gray-500); border-top: 1px solid var(--gray-100); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .service-list { font-size: 1rem; } }
.service-list li { display: flex; align-items: center; }
.list-icon { color: var(--primary); margin-right: 0.75rem; transition: transform 0.3s; }
.service-card:hover .list-icon { transform: translateX(0.25rem); }

/* ── Industries Section ───────────────────────────────────── */
.industries-section { position: relative; overflow: hidden; color: var(--black); }
.industries-bg { position: absolute; right: 0; top: 0; width: 50%; height: 100%; background: radial-gradient(ellipse at top right, rgba(var(--black-rgb), 0.1) 0%, transparent 50%); pointer-events: none; }
.industries-grid { display: grid; gap: 2rem; position: relative; z-index: 10; }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; } }
.industry-list { display: flex; flex-direction: column; gap: 1rem; }
.industry-item { display: flex; align-items: center; padding: 1rem; background: var(--white); border: 1px solid rgba(var(--black-rgb), 0.1); border-radius: 1.25rem; transition: all 0.3s; cursor: default; }
@media (min-width: 640px) { .industry-item { padding: 1.25rem; } }
.industry-item-wrap { flex-wrap: wrap; }
.industry-item:hover { border-color: rgba(var(--black-rgb), 0.3); box-shadow: 0 0 15px rgba(var(--black-rgb), 0.15); transform: scale(1.02); }
.industry-icon { font-size: 1.5rem; width: 3rem; color: var(--black); transition: transform 0.3s; }
.industry-item:hover .industry-icon { transform: scale(1.1); }
.industry-name { font-weight: 700; font-size: 1rem; color: var(--black); }
@media (min-width: 640px) { .industry-name { font-size: 1.125rem; } }
.industry-subtext { font-size: 0.75rem; font-weight: 400; color: rgba(var(--black-rgb), 0.7); display: block; }
@media (min-width: 640px) { .industry-subtext { display: inline; margin-left: 0.5rem; font-size: 0.875rem; } }

/* Orbit Animation Styles */
.orbit-col { display: flex; align-items: center; justify-content: center; }
.orbit-wrapper { display: flex; flex-direction: column; align-items: center; gap: 16px; width: 100%; }
.orbit-svg { display: block; max-width: 100%; overflow: visible; }
.orbit-node { cursor: pointer; }
.orbit-hover-label { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: var(--bg-light); text-align: center; min-height: 20px; text-transform: uppercase; }



/* ── Reach Section ────────────────────────────────────────── */
.reach-section { overflow: hidden; position: relative; background-color: var(--bg-light); padding: 5rem 0; }
.reach-header { margin-bottom: 2.5rem; }
.reach-grid { display: grid; gap: 3rem; align-items: center; position: relative; z-index: 10; }
@media (min-width: 1024px) { .reach-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.reach-map-col { display: flex; justify-content: center; align-items: center; }
.reach-map-wrap { position: relative; width: 100%; max-width: 600px; }
.reach-map { width: 100%; height: auto; opacity: 0.85; mix-blend-mode: multiply; }

.reach-content { display: flex; flex-direction: column; }
.reach-blocks { display: flex; flex-direction: column; gap: 2.5rem; }
.reach-h4 { font-size: 1rem; font-weight: 600; color: var(--gray-600); margin-bottom: 1.25rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--gray-200); display: block; width: 100%; }

.tag-list { display: flex; flex-wrap: wrap; gap: 1rem; }
.reach-tag { padding: 0.625rem 1.25rem; border-radius: 0.5rem; font-weight: 500; font-size: 0.875rem; display: flex; align-items: center; cursor: default; transition: all 0.3s; }
.tag-white { background: var(--white); color: var(--gray-600); border: 1px solid var(--gray-200); box-shadow: 0 4px 10px rgba(var(--black-rgb), 0.02); }
.tag-white:hover { box-shadow: 0 6px 15px rgba(var(--black-rgb), 0.06); transform: translateY(-2px); border-color: rgba(var(--primary-rgb), 0.1); }
.tag-highlight { background-color: var(--primary-light); color: var(--white); padding: 0.1rem 0.5rem; border-radius: 0.25rem; margin-left: -0.25rem; }
.tag-icon { margin-right: 0.5rem; color: var(--gray-500); }

.reach-quote-box { position: relative; z-index: 10; padding-top: 1rem; padding-right: 2rem; margin-top:0.5rem; }
.quote-icon-bg { position: absolute; top: -1.5rem; right: 0; font-size: 6rem; color: rgba(var(--black-rgb), 0.04); z-index: -1; }
.quote-text { font-size: 1.125rem; font-style: italic; font-weight: 500; color: var(--black-light); line-height: 1.7; position: relative; z-index: 10; }



/* ── Process Section ──────────────────────────────────────── */
.process-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step { padding: 1.5rem; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 1.25rem; position: relative; transition: all 0.3s; cursor: default; }
@media (min-width: 640px) { .process-step { padding: 2rem; } }
.process-step:hover { background: var(--primary); color: var(--white); transform: translateY(-0.5rem); box-shadow: 0 20px 25px -5px rgba(var(--black-rgb), 0.1); }
.step-num { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 700; opacity: 0.5; margin-bottom: 1rem; display: inline-block; transform-origin: left; transition: all 0.3s; }
.process-step:hover .step-num { opacity: 1; transform: scale(1.1); color: var(--bg-light); -webkit-text-fill-color: var(--bg-light); background: none;}
.step-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; transition: color 0.3s; }
.process-step:hover .step-title { color: var(--white); }
.step-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.625; transition: color 0.3s; }
.process-step:hover .step-desc { color: var(--bg-light); }

/* ── Contact Section ──────────────────────────────────────── */
.contact-section { background: var(--bg-light); position: relative; overflow: hidden; border-top: 1px solid rgba(var(--primary-rgb), 0.1); }
.contact-blur { position: absolute; border-radius: 9999px; pointer-events: none; }
.contact-blur-tr { top: 0; right: 0; width: 24rem; height: 24rem; background: rgba(var(--primary-rgb), 0.1); filter: blur(100px); margin-top: -8rem; margin-right: -8rem; }
.contact-blur-bl { bottom: 0; left: 0; width: 20rem; height: 20rem; background: rgba(var(--primary-rgb), 0.05); filter: blur(80px); margin-left: -5rem; margin-bottom: -5rem; }
.contact-grid { display: grid; gap: 2rem; align-items: center; position: relative; z-index: 10; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; } }
.contact-desc { max-width: 32rem; margin-bottom: 2.5rem; }
.contact-info .section-desc.text-light { color: var(--gray-600) !important; }
.contact-methods { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: center; }
.contact-icon-box { width: 3.5rem; height: 3.5rem; border-radius: 1rem; background: var(--white); border: 1px solid rgba(var(--white-rgb), 0.1); display: flex; align-items: center; justify-content: center; color: var(--primary); margin-right: 1.25rem; transition: all 0.3s; box-shadow: 0 1px 2px rgba(var(--black-rgb), 0.05); }
.contact-item:hover .contact-icon-box { background: var(--primary); color: var(--white); }
.contact-label { font-size: 0.75rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.contact-value { color: var(--black-light); font-weight: 500; transition: color 0.3s; }
.contact-item:hover .contact-value { color: var(--primary); }
.contact-form-col { background: var(--white); backdrop-filter: blur(24px); border: 1px solid var(--gray-200); padding: 1.5rem; border-radius: 1.5rem; box-shadow: 0 20px 50px rgba(var(--black-rgb), 0.1); position: relative; }
@media (min-width: 640px) { .contact-form-col { padding: 2rem; } }
@media (min-width: 768px) { .contact-form-col { padding: 2.5rem; } }
.form-border-overlay { position: absolute; inset: 0; border-radius: 1.5rem; border: 1px solid var(--secondary-light); pointer-events: none; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; position: relative; z-index: 10; }
@media (min-width: 640px) { .contact-form { gap: 1.5rem; } }
.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
.form-group { position: relative; }
.form-label { display: block; font-size: 0.625rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; margin-left: 0.25rem; }
@media (min-width: 640px) { .form-label { font-size: 0.75rem; } }
.input-wrap { position: relative; }
.input-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--gray-500); }

/* --- Partner With Us Submit Button (Pill Style) --- */
.contact-form .btn-submit {
    position: relative;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark)) !important;
    color: var(--bg-light) !important;
    border-radius: 9999px !important; 
    padding: 1rem 4rem 1rem 2.5rem !important; 
    width: calc(100% - 1.9rem) !important; /* Adjusted to prevent overflow */
    margin: 1rem 0 0 0 !important;
    box-shadow: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible; 
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-form .btn-submit i {
    position: absolute;
    right: -1rem; 
    top: 50%;
    margin: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-light); 
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transform: translateY(-50%); 
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-form .btn-submit:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
    color: var(--bg-light) !important;
    transform: translateY(0) !important; /* Keep it static to avoid jumping */
}

.contact-form .btn-submit:hover i {
    background: var(--primary-dark);
    transform: translateY(-50%) translateX(6px) rotate(-45deg); 
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

/* Base Form Inputs (Generic) */
.form-input, .form-select, .form-textarea { width: 100%; background: var(--white); border: 1px solid rgba(var(--white-rgb), 0.1); border-radius: 0.75rem; color: var(--black-light); padding: 0.75rem 1rem; font-size: 0.875rem; transition: all 0.3s; }
@media (min-width: 640px) { .form-input, .form-select, .form-textarea { padding: 0.875rem 1rem; font-size: 1rem; } }
.form-input { padding-left: 2.75rem; }
.form-select { padding-left: 2.75rem; padding-right: 2.5rem; appearance: none; cursor: pointer; }
.form-textarea { resize: none; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-600); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 2px var(--black-light); }

/* Light Input Overrides for Contact Form (Reversed) */
.contact-form .form-input, 
.contact-form .form-select, 
.contact-form .form-textarea,
.form-custom-dropdown .custom-dropdown-trigger { 
    background-color: var(--white); 
    border: 1px solid var(--gray-200); 
    color: var(--black-light); 
}

.contact-form .form-input::placeholder, 
.contact-form .form-textarea::placeholder { color: var(--gray-500); }

.contact-form .input-icon { color: var(--gray-500); }

.contact-form .form-input:focus, 
.contact-form .form-select:focus, 
.contact-form .form-textarea:focus, 
.form-custom-dropdown.open .custom-dropdown-trigger { 
    border-color: var(--primary); 
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.1); 
}

.select-opt-disabled { color: var(--gray-400); background: var(--white); }
.form-select option { background: var(--white); color: var(--black-light); }
.select-chevron { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--gray-500); pointer-events: none; }
.btn-submit { width: 100%; margin-top: 0.5rem; font-size: 1rem; }
@media (min-width: 640px) { .btn-submit { font-size: 1.125rem; } }


/* ── Footer (Horizontal Layout) ───────────────────────────── */
.footer {
    background: var(--primary-dark); 
    padding-top: 4rem;
    padding-bottom: 2rem;
    color: var(--gray-400);
    font-family: var(--font-sans);
    border-top: 1px solid rgba(var(--white-rgb), 0.05);
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Rows for horizontal structure */
.footer-row-top,
.footer-row-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Desktop TV & Laptop Layout */
@media (min-width: 1024px) {
    .footer-main { gap: 1rem; }
    .footer-row-top,
    .footer-row-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Brand Logo Text */
.footer-brand {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.footer-brand:hover { transform: scale(1.02); }

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.05em;
    line-height: 1.1;
}
.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

/* Nav Links */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 640px) {
    .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 1.5rem; }
}
@media (min-width: 1024px) {
    .footer-nav { gap: 2.5rem; }
}

.footer-nav .footer-link {
    color: var(--gray-100);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
.footer-nav .footer-link:hover { color: var(--white); }

.footer-nav .footer-link-jobs {
    color: var(--secondary-light) !important;
    display: flex;
    align-items: center;
}
.footer-nav .footer-link-jobs i { margin-right: 0.5rem; }

/* Contact List */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
   
}

.footer-contact li{
   margin-right: 20px;
}
@media (min-width: 768px) {
    .footer-contact { flex-direction: row; flex-wrap: wrap; gap: .5rem; }
}
.contact-item {
    display: flex;
    font-size: 0.875rem;
    color: var(--gray-100);
    transition: color 0.3s;
    cursor: default;
    line-height: 1.6;
}
.align-center { align-items: center; }
.align-top { align-items: flex-start; }
a.contact-item { cursor: pointer; }
a.contact-item:hover { color: var(--white); }

.contact-icon {
    color: var(--bg-light);
    margin-right: 0.75rem;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 1rem;
}
.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-dark); 
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-light);
    font-size: 1.125rem;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-3px);
}

/* Bottom Copyright Section */
.footer-bottom {
    border-top: 1px solid rgba(var(--white-rgb), 0.08);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
.copyright { font-size: 0.875rem; color: var(--gray-500); }
.footer-tagline { font-size: 0.875rem; font-weight: 600; }

/* ── Scroll Reveal Animation ───────────────────────────────── */
.reveal-element { opacity: 0; transition: opacity 0.6s ease-in-out; will-change: opacity; }
.reveal-element.revealed { opacity: 1; }
.reveal-element:not(.revealed).reveal-delay-100 { transition-delay: 100ms; }
.reveal-element:not(.revealed).reveal-delay-200 { transition-delay: 200ms; }
.reveal-element:not(.revealed).reveal-delay-300 { transition-delay: 300ms; }
.reveal-element:not(.revealed).reveal-delay-400 { transition-delay: 400ms; }

/* ============================================================
   JOB PORTAL SPECIFIC STYLES
   ============================================================ */

/* ── Job Hero Section ── */
.job-hero { 
    background-color: var(--black); 
    background-image: linear-gradient(to right, rgba(var(--black-rgb), 0.85), rgba(var(--black-rgb), 0.6)), url('/asset/findjobs.jpg');
    background-size: fill;
    background-position: center;
    padding: 10rem 0 6rem;
    position: relative; 
    overflow: hidden; 
}
.job-hero-title { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 1rem; }
@media (min-width: 768px) { .job-hero-title { font-size: 4rem; } }
.job-hero-subtitle { color: var(--gray-300); font-size: 1rem; margin-bottom: 3rem; font-weight: 500; }

/* Mobile-separated search bar */
.job-search-bar { display: flex; flex-direction: column; gap: 1rem; max-width: 55rem; margin: 0 auto; background: rgba(6,6,6,0.4); border-radius: 10px; }
.search-inputs-wrapper { display: flex; flex-direction: column; background: var(--white); border-radius: 1rem; padding: 0.5rem 0; box-shadow: 0 10px 40px rgba(0,0,0,0.08); border: 1px solid rgba(var(--primary-rgb), 0.2); transition: all 0.3s ease; }
.search-inputs-wrapper:focus-within { box-shadow: 0 15px 50px rgba(var(--primary-rgb), 0.2); border-color: var(--primary); }
.search-input-group { display: flex; align-items: center; flex: 1; padding: 0.75rem 1.5rem; }
.search-icon { color: var(--gray-400); margin-right: 0.75rem; font-size: 1.25rem; }
.search-input { width: 100%; border: none; outline: none; font-size: 1rem; color: var(--primary); background: transparent; }
.search-input::placeholder { color: var(--gray-400); }
.search-divider { display: none; width: 1px; height: 2.5rem; background: var(--gray-200); margin: 0 1rem; }
.search-btn { padding: 0.875rem 2rem; border-radius: 1rem; width: 100%; box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3); }

/* Desktop pill merge */
@media (min-width: 768px) { 
    .job-search-bar { flex-direction: row; align-items: center; background: var(--white); border-radius: 99px; padding: 0.75rem; gap: 0; box-shadow: 0 10px 40px rgba(var(--black-rgb), 0.08); border: 1px solid rgba(var(--primary-rgb), 0.2); transition: all 0.3s ease; }
    .job-search-bar:focus-within { box-shadow: 0 15px 50px rgba(var(--primary-rgb), 0.2); border-color: var(--primary); }
    .search-input { width: 100%; border: none; outline: none; font-size: 1rem; color: var(--black); background: transparent; }
    .search-inputs-wrapper { flex-direction: row; flex: 1; background: transparent; border-radius: 0; padding: 0; box-shadow: none; border: none; }
    .search-inputs-wrapper:focus-within { box-shadow: none; border-color: transparent; }
    .search-input-group { padding: 0 1rem; }
    .search-divider { display: block; }
    .search-btn { width: auto; border-radius: 99px; margin-top: 0; box-shadow: none; }
}

.pt-md { padding-top: 2rem; }
@media (min-width: 640px) { .pt-md { padding-top: 3rem; } }

.category-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 2rem; }
.cat-tag { background-color: var(--primary-dark); color: var(--white); padding: 0.75rem 1.25rem; border-radius: 1rem; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; border: none; text-align: center; box-shadow: 0 6px 15px rgba(var(--slate-rgb), 0.3); }
@media (min-width: 768px) { .category-tags { gap: 1rem; } .cat-tag { padding: 0.875rem 1.75rem; font-size: 1rem; } }
.cat-tag:hover, .cat-tag:focus { background: linear-gradient(135deg, var(--slate-main), var(--primary-main)); color: var(--primary-light); transform: translateY(-3px); box-shadow: 0 6px 15px rgba(var(--primary-rgb), 0.3); }
.cat-tag.active { background: linear-gradient(135deg, var(--primary-main), var(--primary-dark)); color: var(--primary-dark); border: 1px solid rgba(var(--primary-rgb), 0.5); box-shadow: 0 6px 20px rgba(var(--black-rgb), 0.15); transform: translateY(-2px); }
.mt-xl { margin-top: 2rem; }
@media (min-width: 640px) { .mt-xl { margin-top: 4rem; } }

.filter-bar { display: flex; flex-wrap: nowrap; gap: 0.5rem; margin-bottom: 2.5rem; justify-content: space-between; width: 100%; }
@media (min-width: 640px) { .filter-bar { gap: 1rem; justify-content: flex-end; width: auto; } }
.filter-select { flex: 1 1 50%; min-width: 0; padding: 0.625rem 0.5rem; border-radius: 0.5rem; border: 1px solid var(--gray-200); background: var(--white); color: var(--gray-600); font-weight: 500; font-size: 0.75rem; cursor: pointer; outline: none; transition: border-color 0.3s; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
@media (min-width: 640px) { .filter-select { flex: none; padding: 0.75rem 1.5rem; font-size: 0.875rem; } }
.filter-select:focus, .filter-select:hover { border-color: var(--primary); }

.job-listings-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .job-listings-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .job-listings-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.job-card { background: var(--white); border: 1px solid var(--secondary-light); border-radius: 1rem; padding: 2rem; display: flex; flex-direction: column; transition: all 0.3s ease; box-shadow: 0 2px 10px rgba(var(--black-rgb), 0.02); cursor: pointer; }
.job-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(var(--black-rgb), 0.08); border-color: rgba(var(--primary-rgb), 0.3); }
.active-job { border-color: var(--primary) !important; box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.2) !important; transform: translateY(-5px); }

.job-card-header { display: flex; align-items: center; margin-bottom: 1.25rem; }

/* ============================================================
   GOLD SPOT Management — Pure Vanilla CSS Architecture
   (Updated to Cool White & Blue Theme)
   ============================================================ */

/* ── CSS Variables & Global Resets ────────────────────────── */
:root {
    /* Primary Theme: Deep Blue */
    --primary: #1C448E;
    --primary-light: #4A6EAD; 
    --primary-dark: #0E2656;
    --primary-rgb: 28, 68, 142;

    /* Secondary Theme: Muted Slate/Purple-Gray */
    --secondary: #938BA1;
    --secondary-light: #54c0ff;
    --secondary-dark: #5f7aff;
    --secondary-rgb: 147, 139, 161;

    /* Backgrounds: Cool White */
    --bg-light: #F4FDFF;
    --bg-light-rgb: 244, 253, 255;

    /* Core Neutrals */
    --black: #484848; 
    --black-light: #1A1A1A; 
    --black-lighter: #2A2A2A;
    --black-rgb: 10, 10, 10;
    
    --white: #ffffff;
    --white-rgb: 255, 255, 255;

    /* Grays */
    --gray-50: #f9fafb; 
    --gray-100: #f3f4f6; 
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db; 
    --gray-400: #9ca3af; 
    --gray-500: #6b7280;
    --gray-600: #4b5563; 
    --gray-800: #1f2937;
    
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--gray-800); background-color: var(--gray-50); -webkit-font-smoothing: antialiased; line-height: 1.5; overflow-x: hidden; }
::selection { background-color: var(--primary-light); color: var(--white); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; border: none; outline: none; background: transparent; }
img { display: block; max-width: 100%; height: auto; }

/* ── Layout & Typography Utilities ────────────────────────── */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 3rem 0; }
@media (min-width: 640px) { .section { padding: 4rem 0; } }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
@media (min-width: 1024px) { .section { padding: 8rem 0; } }

.section-white { background-color: var(--white); }
.section-black { background-color: var(--primary-dark); color: var(--white); border-top: 1px solid rgba(var(--primary-rgb), 0.2); border-bottom: 1px solid rgba(var(--primary-rgb), 0.2); }
.section-gray { background-color: var(--gray-50); }
.section-beige { background-color: var(--bg-light); }

.section-subtitle { font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.75rem; margin-bottom: 0.5rem; display: inline-block; }
@media (min-width: 640px) { .section-subtitle { font-size: 0.875rem; } }
.section-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.875rem; line-height: 1.25; margin-bottom: 1rem; color: var(--primary-dark); }
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 768px) { .section-title { font-size: 3rem; } }

.section-title-w { font-family: var(--font-heading); font-weight: 700; font-size: 1.875rem; line-height: 1.25; margin-bottom: 1rem; color: var(--bg-light); }
@media (min-width: 640px) { .section-title-w { font-size: 2.25rem; } }
@media (min-width: 768px) { .section-title-w { font-size: 3rem; } }

.section-desc { font-size: 0.875rem; text-align: justify; color: var(--gray-600); line-height: 1.625; }
@media (min-width: 640px) { .section-desc { font-size: 1rem; } }
@media (min-width: 768px) { .section-desc { font-size: 1.125rem; } }

.text-center { text-align: center; }
.centered-desc { max-width: 42rem; margin: 1rem auto 2rem; }
.text-white { color: var(--white) !important; }
.text-light { color: var(--gray-400) !important; }
.text-dark { color: var(--gray-600) !important; }
.text-dark-trans { color: rgba(var(--black-rgb), 0.7); }
.mb-md { margin-bottom: 1.5rem; }
.mb-lg { margin-bottom: 2rem; }
@media (min-width: 640px) { .mb-md { margin-bottom: 2rem; } .mb-lg { margin-bottom: 2.5rem; } }

/* ── Custom Theme Utilities ───────────────────────────────── */
.gold-gradient-text {
    background: linear-gradient(to right, var(--secondary-light), var(--primary-light), var(--secondary-dark));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-size: 200% auto; animation: shine 5s linear infinite;
}
.gold-gradient-bg {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    background-size: 200% 200%; transition: all 0.45s ease-in-out; color: var(--white);
}
.gold-gradient-bg:hover { background-position: 100% 100%; }
@keyframes shine { to { background-position: 200% center; } }

/* ── Buttons ──────────────────────────────────────────────── */
.btn { display: inline-flex; justify-content: center; align-items: center; padding: 1rem 1.5rem; border-radius: 0.75rem; font-weight: 700; font-size: 0.875rem; transition: all 0.3s ease-in-out; text-align: center; cursor: pointer; }
@media (min-width: 640px) { .btn { padding: 1rem 2rem; font-size: 1rem; } }
.btn-primary { background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dark)); background-size: 200%; color: var(--white); box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.4); }
.btn-primary:hover { transform: translateY(-0.25rem); box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.6); background-position: 100%; color: var(--white); }
.btn-outline { background: rgba(var(--primary-rgb), 0.05); backdrop-filter: blur(4px); border: 1px solid rgba(var(--primary-rgb), 0.5); color: var(--primary); }
.btn-outline:hover { background: rgba(var(--primary-rgb), 0.1); border-color: var(--primary); transform: translateY(-0.25rem); box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.2); }


/* --- Action Buttons (Explore, Read More) Pill Style --- */
.btn-primary.group {
    position: relative;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark)) !important;
    color: var(--bg-light) !important;
    border-radius: 9999px !important; 
    padding: 1rem 4.5rem 1rem 2.5rem !important; 
    box-shadow: none !important; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible; 
    border: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important; 
    width: auto !important; 
}

/* Base state for the icon */
.btn-primary.group i,
.btn-primary.group .icon-slide,
.btn-primary.group .icon-slide-up {
    position: absolute;
    right: -1rem; 
    top: 50%;
    margin: 0 !important; 
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-light) !important; 
    color: var(--white) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transform: translateY(-50%) !important; 
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important; 
    z-index: 2;
}

/* Hover state for the button body */
.btn-primary.group:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
    transform: translateY(0) !important; 
    box-shadow: none !important; 
}

/* Hover state for the icon (Slide right and rotate 45deg) */
.btn-primary.group:hover i,
.btn-primary.group:hover .icon-slide,
.btn-primary.group:hover .icon-slide-up {
    background: var(--primary-dark) !important;
    transform: translateY(-50%) translateX(6px) rotate(-45deg) !important; 
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3) !important;
}


/* ── Navbar ───────────────────────────────────────────────── */
.navbar { position: fixed; width: 100%; z-index: 50; border-bottom: 1px solid rgba(var(--bg-light-rgb), 0.4); transition: all 0.3s ease-in-out; }
.glass-nav { background: var(--white); backdrop-filter: blur(100px); border-color: transparent; }
.glass-nav.scrolled { background: rgba(var(--bg-light-rgb), 0.95); backdrop-filter: blur(12px); border-color: rgba(var(--white-rgb), 0.8); box-shadow: 0 4px 30px rgba(var(--primary-rgb), 0.15); }
.navbar-inner { display: flex; justify-content: space-between; align-items: center; height: 5rem; }
.navbar-brand { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; flex-shrink: 0; }
.brand-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; color: var(--primary); letter-spacing: 0.025em; }
.brand-subtitle { display: block; margin-top: -0.25rem; font-size: 0.625rem; font-weight: 600; letter-spacing: 0.1em; }
@media (min-width: 640px) { .brand-title { font-size: 1.25rem; } .brand-subtitle { font-size: 0.875rem; } }
.navbar-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .navbar-links { display: flex; } }

.nav-link { color: var(--secondary-dark); font-weight: 500; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.3s; }

.nav-link:hover, 
.nav-link.active, 
.nav-link-active { 
    color: var(--primary) !important; 
    filter: drop-shadow(0 0 8px rgba(var(--primary-rgb), 0.4)); 
    font-weight: 700;
}
.logo{
  width: auto;
  height: 3.5rem;
}
.navbar-mobile-toggle { display: flex; align-items: center; }
@media (min-width: 1024px) { .navbar-mobile-toggle { display: none; } }
.mobile-toggle-btn { color: var(--primary); padding: 0.5rem; font-size: 1.875rem; transition: color 0.3s; position: relative; z-index: 50; }
.mobile-toggle-btn:hover { color: var(--primary-light); }

/* ── Mobile Menu ──────────────────────────────────────────── */
.mobile-menu { position: fixed; inset: 0; z-index: 40; display: flex; flex-direction: column; justify-content: center; align-items: center; background: rgba(var(--black-rgb), 0.98); backdrop-filter: blur(20px); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: all 0.3s ease-in-out; }
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; width: 100%; padding: 0 1.5rem; text-align: center; }
.mobile-link { color: var(--white); font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; width: 100%; padding: 0.75rem 0; font-size: 1.875rem; transition: color 0.3s; opacity: 0; transform: translateY(18px); }

.mobile-link:hover, 
.mobile-link.active, 
.mobile-link-active { 
    color: var(--primary-light) !important; 
}

.mobile-link-sm { font-size: 1.5rem; font-weight: 600; letter-spacing: 0.05em; padding: 0.625rem 0; }
.mobile-divider { width: 4rem; height: 1px; background: rgba(var(--white-rgb), 0.2); margin: 0.75rem 0; opacity: 0; transform: translateY(18px); }
.btn-mobile { margin-top: 1rem; padding: 1rem 2.5rem; border-radius: 1rem; font-size: 1.125rem; }
body.menu-open { overflow: hidden; }
.mobile-menu.open .mobile-link:nth-child(1) { opacity: 1; transform: translateY(0); transition: all 0.3s ease 0.05s; }
.mobile-menu.open .mobile-link:nth-child(2) { opacity: 1; transform: translateY(0); transition: all 0.3s ease 0.1s; }
.mobile-menu.open .mobile-link:nth-child(3) { opacity: 1; transform: translateY(0); transition: all 0.3s ease 0.15s; }
.mobile-menu.open .mobile-link:nth-child(4) { opacity: 1; transform: translateY(0); transition: all 0.3s ease 0.2s; }
.mobile-menu.open .mobile-divider { opacity: 1; transform: translateY(0); transition: all 0.3s ease 0.25s; }
.mobile-menu.open .btn-mobile { opacity: 1; transform: translateY(0); transition: all 0.3s ease 0.3s; }

/* ── Hero Section ─────────────────────────────────────────── */
.hero-section { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; background: var(--black); padding-top: 5rem; }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; transition: opacity 1s ease-in-out; opacity: 0; z-index: 0; }
.hero-slide.active { opacity: 1; z-index: 10; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: pulseScale 20s ease-in-out infinite; }

.darker-img { filter: brightness(0.6); }
@keyframes pulseScale { 0%, 100% { transform: scale(1.05); } 50% { transform: scale(1.1); } }

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

.hero-slider-controls { position: absolute; bottom: 2rem; left: 0; width: 100%; display: flex; justify-content: center; align-items: center; gap: 0.75rem; z-index: 30; }
.slider-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: rgba(var(--white-rgb), 0.5); transition: all 0.3s; cursor: pointer; }
.slider-dot:hover { background: var(--white); }
.slider-dot.active { width: 2rem; background: var(--primary-light); }
.hero-content-wrapper { position: relative; z-index: 30; width: 100%; padding-top: 3rem; padding-bottom: 3rem; pointer-events: none; }
@media (min-width: 640px) { .hero-content-wrapper { padding-top: 5rem; padding-bottom: 5rem; } }
.hero-content { pointer-events: auto; text-align: left; }
.hero-content .section-subtitle { letter-spacing: 0.2em; margin-bottom: 1rem; }
@media (min-width: 640px) { .hero-content .section-subtitle { margin-bottom: 1.5rem; } }
.hero-title { font-family: var(--font-heading); font-weight: 700; font-size: 2.25rem; color: var(--primary); line-height: 1.1; max-width: 56rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: inline; } }
.hero-desc { font-size: 1rem; color: var(--primary-dark); max-width: 42rem; font-weight: 300; line-height: 1.625; margin-bottom: 2rem; }
@media (min-width: 640px) { .hero-desc { font-size: 1.125rem; margin-bottom: 2.5rem; } }
@media (min-width: 768px) { .hero-desc { font-size: 1.25rem; } }
@media (min-width: 1024px) { .hero-desc { font-size: 1.25rem; } }
@media (min-width: 1400px) { .hero-desc { font-size: 1.5rem; } }
.hero-actions { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

/* ── About Section ────────────────────────────────────────── */
.about-btn-wrap { text-align: center; width: 100%; }
@media (min-width: 1024px) { .about-btn-wrap { text-align: left; } }
.about-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; } }
.about-image-col { order: 2; margin-top: 0rem; }
@media (min-width: 1024px) { .about-image-col { order: 1; margin-top: 0; } }
.about-text-col { order: 1; }
@media (min-width: 1024px) { .about-text-col { order: 2; } }
.about-image-wrapper { position: relative; }
.about-image-bg { display: none; position: absolute; top: -1rem; right: -1rem; bottom: -1rem; left: -1rem; border-radius: 1.25rem;  transform: translate(1rem, 1rem); transition: transform 0.5s; z-index: 0; }
@media (min-width: 640px) { .about-image-bg { display: block; } .about-image-wrapper:hover .about-image-bg { transform: translate(0.5rem, 0.5rem); } }
.about-img { position: relative; width: 100%; height: auto; object-fit:scale-down; border-radius: 1.25rem; z-index: 1; }
@media (min-width: 640px) { .about-img { height: 400px; } }
@media (min-width: 1024px) { .about-img { height: 500px; } }
.about-badge { position: absolute; bottom: -1rem; right: -0.5rem; background: var(--primary); color: var(--white); padding: 1.25rem; border-radius: 0.75rem; box-shadow: 0 20px 25px -5px rgba(var(--black-rgb), 0.1);  z-index: 2; transition: transform 0.5s; }
@media (min-width: 640px) { .about-badge { bottom: 1.5rem; right: 1.5rem; padding: 1.5rem; } }
.about-image-wrapper:hover .about-badge { transform: translateY(-0.5rem); }
.badge-year { font-family: var(--font-heading); font-weight: 700; font-size: 1.875rem; margin-bottom: 0.25rem; }
@media (min-width: 640px) { .badge-year { font-size: 2.25rem; } }
.badge-text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--bg-light); }
@media (min-width: 640px) { .badge-text { font-size: 0.875rem; } }

.about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; border-top: 1px solid var(--gray-100); padding-top: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .about-features { gap: 1.5rem; padding-top: 1.5rem; margin-bottom: 2rem; } }
.feature-box { padding: 0.75rem; border-radius: 0.75rem; transition: all 0.3s; border: 1px solid transparent; cursor: default; }
@media (min-width: 640px) { .feature-box { padding: 1rem; } }
.feature-box:hover { background: var(--gray-50); transform: translateY(-0.25rem); box-shadow: 0 4px 6px -1px rgba(var(--black-rgb), 0.1); border-color: rgba(var(--primary-rgb), 0.2); }
.feature-icon { font-size: 1.25rem; color: var(--primary); margin-bottom: 0.5rem; }
@media (min-width: 640px) { .feature-icon { font-size: 1.5rem; margin-bottom: 0.75rem; } }
.feature-title { font-weight: 700; color: var(--black); font-size: 0.875rem; margin-bottom: 0.25rem; line-height: 1.2; }
@media (min-width: 640px) { .feature-title { font-size: 1.125rem; } }
.feature-desc { font-size: 0.75rem; color: var(--gray-500); line-height: 1.4; }
@media (min-width: 640px) { .feature-desc { font-size: 0.875rem; } }

/* ── Strengths Section ────────────────────────────────────── */
.strengths-section { position: relative; }
.strengths-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(var(--black-rgb), 0.15), rgba(var(--black-rgb), 0.65)), url('strenght.jpeg'); background-size: cover; background-position: center; background-attachment: fixed; pointer-events: none; z-index: 0; }
.strengths-section .container { position: relative; z-index: 10; }
.strengths-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; text-align: center; }
@media (min-width: 640px) { .strengths-grid { gap: 2rem; } }
@media (min-width: 768px) { .strengths-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .strengths-grid { grid-template-columns: repeat(5, 1fr); } }
.strength-card { padding: 1rem; }
.strength-card-wide { grid-column: span 2; }
@media (min-width: 768px) { .strength-card-wide { grid-column: span 1; } }
.strength-icon-box { width: 3.5rem; height: 3.5rem; margin: 0 auto 1rem; background: var(--white); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(var(--primary-rgb), 0.3); font-size: 1.25rem; transition: all 0.3s; }
@media (min-width: 640px) { .strength-icon-box { width: 5rem; height: 5rem; font-size: 2rem; } }
.strength-card:hover .strength-icon-box { transform: scale(1.1) translateY(-0.5rem); border-color: var(--primary); box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3); }
.strength-title { font-weight: 700; font-size: 0.875rem; color: var(--gray-200); margin-bottom: 0.5rem; transition: color 0.3s; }
@media (min-width: 640px) { .strength-title { font-size: 1rem; } }
.strength-card:hover .strength-title { color: var(--secondary-light); }
.strength-desc { font-size: 0.75rem; color: var(--gray-400); }
@media (min-width: 640px) { .strength-desc { font-size: 0.875rem; } }

/* ── Services Section ─────────────────────────────────────── */
.services-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .services-grid { gap: 2rem; } }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* Home page standard service cards */
.service-card { 
    background: var(--white); 
    border-radius: 1.25rem; 
    box-shadow: 0 10px 15px -3px rgba(var(--black-rgb), 0.1); 
    display: flex; 
    flex-direction: column; 
    position: relative; 
    overflow: hidden; 
    border: 1px solid transparent; 
    cursor: pointer; 
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.service-card:hover { 
    transform: translateY(-8px); 
    border-color: var(--primary); 
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.15); 
}

.card-top-bar { position: absolute; top: 0; left: 0; width: 100%; height: 0.25rem; z-index: 20; }
.bar-hover-gold { background: var(--black); transition: background 0.3s; }
.service-card:hover .bar-hover-gold { background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dark)); }
.service-img-wrap { width: 100%; height: 12rem; position: relative; overflow: hidden; background: var(--black); }
@media (min-width: 640px) { .service-img-wrap { height: 14rem; } }
.service-img-overlay { position: absolute; inset: 0; background: var(--secondary-light), 10%; z-index: 10; transition: background 0.5s; pointer-events: none; }
.service-card:hover .service-img-overlay { background: transparent; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease-out; will-change: transform; }
.service-card:hover .service-img { transform: scale(1.1); }

/* The smooth hardware-accelerated floating icon */
.service-icon-floating { 
    position: absolute; 
    bottom: -1.25rem; 
    left: 1.5rem; 
    z-index: 50; 
    background: var(--white); 
    width: 3.5rem; 
    height: 3.5rem; 
    border-radius: 0.75rem; 
    box-shadow: 0 10px 15px -3px rgba(var(--black-rgb), 0.1); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.5rem; 
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    will-change: transform;
    backface-visibility: hidden;
}
.service-icon-floating i { transition: color 0.3s ease-in-out; }
.service-card:hover .service-icon-floating { transform: translateY(-0.5rem); }
.service-card:hover .service-icon-floating i { color: var(--primary); }

.service-content { padding: 2.5rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
@media (min-width: 640px) { .service-content { padding: 2.5rem 2rem 2rem; } }
.service-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--black); margin-bottom: 1rem; transition: color 0.3s; }
@media (min-width: 640px) { .service-title { font-size: 1.5rem; } }
.service-card:hover .service-title { color: var(--primary); }
.service-desc { font-size: 0.875rem; color: var(--gray-600); line-height: 1.625; margin-bottom: 1.5rem; flex-grow: 1; }
@media (min-width: 640px) { .service-desc { font-size: 1rem; } }
.service-list { font-size: 0.875rem; color: var(--gray-500); border-top: 1px solid var(--gray-100); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .service-list { font-size: 1rem; } }
.service-list li { display: flex; align-items: center; }
.list-icon { color: var(--primary); margin-right: 0.75rem; transition: transform 0.3s; }
.service-card:hover .list-icon { transform: translateX(0.25rem); }

/* ── Industries Section ───────────────────────────────────── */
.industries-section { position: relative; overflow: hidden; color: var(--black); }
.industries-bg { position: absolute; right: 0; top: 0; width: 50%; height: 100%; background: radial-gradient(ellipse at top right, rgba(var(--black-rgb), 0.1) 0%, transparent 50%); pointer-events: none; }
.industries-grid { display: grid; gap: 2rem; position: relative; z-index: 10; }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; } }
.industry-list { display: flex; flex-direction: column; gap: 1rem; }
.industry-item { display: flex; align-items: center; padding: 1rem; background: var(--white); border: 1px solid rgba(var(--black-rgb), 0.1); border-radius: 1.25rem; transition: all 0.3s; cursor: default; }
@media (min-width: 640px) { .industry-item { padding: 1.25rem; } }
.industry-item-wrap { flex-wrap: wrap; }
.industry-item:hover { border-color: rgba(var(--black-rgb), 0.3); box-shadow: 0 0 15px rgba(var(--black-rgb), 0.15); transform: scale(1.02); }
.industry-icon { font-size: 1.5rem; width: 3rem; color: var(--black); transition: transform 0.3s; }
.industry-item:hover .industry-icon { transform: scale(1.1); }
.industry-name { font-weight: 700; font-size: 1rem; color: var(--black); }
@media (min-width: 640px) { .industry-name { font-size: 1.125rem; } }
.industry-subtext { font-size: 0.75rem; font-weight: 400; color: rgba(var(--black-rgb), 0.7); display: block; }
@media (min-width: 640px) { .industry-subtext { display: inline; margin-left: 0.5rem; font-size: 0.875rem; } }

/* Orbit Animation Styles */
.orbit-col { display: flex; align-items: center; justify-content: center; }
.orbit-wrapper { display: flex; flex-direction: column; align-items: center; gap: 16px; width: 100%; }
.orbit-svg { display: block; max-width: 100%; overflow: visible; }
.orbit-node { cursor: pointer; }
.orbit-hover-label { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: var(--bg-light); text-align: center; min-height: 20px; text-transform: uppercase; }

/* ── Reach Section (Global Presence) ──────────────────────── */
.reach-section { 
    overflow: hidden; 
    position: relative; 
    background-color: #F4F9FA; /* Matches the light blue tint from the design */
    padding: 5rem 0;
}

/* Mobile & Tablet Grid */
.reach-grid { 
    display: grid; 
    gap: 3rem; 
    align-items: flex-start; /* Forces top alignment */
    position: relative; 
    z-index: 10; 
}

/* Desktop Grid */
@media (min-width: 1024px) { 
    .reach-grid { 
        grid-template-columns: 1fr 1fr; /* 50/50 Split */
        gap: 5rem; 
    } 
}

/* -- Left Column (Header & Map) -- */
.reach-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.reach-header {
    margin-bottom: 3rem;
}

.reach-map-wrap { 
    position: relative; 
    width: 100%; 
    max-width: 600px; 
    margin: 0 auto; /* Centers map on mobile/iPad */
}

@media (min-width: 1024px) {
    .reach-map-wrap {
        margin: 0; /* Aligns left on desktop */
        margin-top: auto; /* Pushes map to the absolute bottom of the column */
    }
}

.reach-map { 
    width: 100%; 
    height: auto; 
    opacity: 0.85; 
    mix-blend-mode: multiply; /* Blends map with background cleanly */
}

/* -- Right Column (Content & Quote) -- */
.reach-right { 
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    height: 100%;
}

.reach-blocks { 
    display: flex; 
    flex-direction: column; 
    gap: 2.5rem; 
}

.reach-h4 { 
    font-size: 1.125rem; 
    font-weight: 600; 
    color: var(--gray-600); 
    margin-bottom: 1.25rem; 
    padding-bottom: 0.75rem; 
    border-bottom: 1px solid var(--gray-200); 
    display: block; 
    width: 100%;
    margin-top: 0.5rem; /* Optical adjustment to perfectly match the left title */
}

/* -- Tags & Pills -- */
.tag-list { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 0.75rem; 
}

.reach-tag { 
    padding: 0.625rem 1.25rem; 
    border-radius: 0.5rem; 
    font-weight: 500; 
    font-size: 0.875rem; 
    display: flex; 
    align-items: center; 
    cursor: default; 
    transition: all 0.3s; 
}

.tag-white {
    background: var(--white);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 10px rgba(var(--black-rgb), 0.02);
}

.tag-white:hover {
    box-shadow: 0 6px 15px rgba(var(--black-rgb), 0.06);
    transform: translateY(-2px);
    border-color: rgba(var(--primary-rgb), 0.1);
}

/* Blue Highlight Elements */
.tag-highlight {
    background-color: var(--primary-light); /* Uses your site's blue theme */
    color: var(--white);
    padding: 0.1rem 0.5rem;
    border-radius: 0.25rem;
    margin-left: -0.25rem; /* Balances the icon padding */
}

.tag-icon { 
    margin-right: 0.5rem; 
    color: var(--gray-500);
}

/* -- Large Quote at Bottom -- */
.reach-quote-box { 
    position: relative; 
    z-index: 10; 
    padding-right: 2rem;
    margin-top: 3rem; /* Space for mobile */
}

@media (min-width: 1024px) {
    .reach-quote-box {
        margin-top: 1.5rem; /* Pushes the quote to the absolute bottom to align with the map */
    }
}

.quote-icon-bg { 
    position: absolute; 
    top: -1rem; 
    right: 0; 
    font-size: 6rem; 
    color: rgba(var(--black-rgb), 0.04); /* Faded giant quote mark */
    z-index: -1; 
}

.quote-text { 
    font-size: 1.125rem; 
    font-style: italic; 
    font-weight: 500; 
    color: var(--black-light); 
    line-height: 1.7; 
    position: relative; 
    z-index: 10; 
}

/* ── Process Section ──────────────────────────────────────── */
.process-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step { padding: 1.5rem; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 1.25rem; position: relative; transition: all 0.3s; cursor: default; }
@media (min-width: 640px) { .process-step { padding: 2rem; } }
.process-step:hover { background: var(--primary); color: var(--white); transform: translateY(-0.5rem); box-shadow: 0 20px 25px -5px rgba(var(--black-rgb), 0.1); }
.step-num { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 700; opacity: 0.5; margin-bottom: 1rem; display: inline-block; transform-origin: left; transition: all 0.3s; }
.process-step:hover .step-num { opacity: 1; transform: scale(1.1); color: var(--bg-light); -webkit-text-fill-color: var(--bg-light); background: none;}
.step-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; transition: color 0.3s; }
.process-step:hover .step-title { color: var(--white); }
.step-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.625; transition: color 0.3s; }
.process-step:hover .step-desc { color: var(--bg-light); }

/* ── Contact Section ──────────────────────────────────────── */
.contact-section { background: var(--bg-light); position: relative; overflow: hidden; border-top: 1px solid rgba(var(--primary-rgb), 0.1); }
.contact-blur { position: absolute; border-radius: 9999px; pointer-events: none; }
.contact-blur-tr { top: 0; right: 0; width: 24rem; height: 24rem; background: rgba(var(--primary-rgb), 0.1); filter: blur(100px); margin-top: -8rem; margin-right: -8rem; }
.contact-blur-bl { bottom: 0; left: 0; width: 20rem; height: 20rem; background: rgba(var(--primary-rgb), 0.05); filter: blur(80px); margin-left: -5rem; margin-bottom: -5rem; }
.contact-grid { display: grid; gap: 2rem; align-items: center; position: relative; z-index: 10; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; } }
.contact-desc { max-width: 32rem; margin-bottom: 2.5rem; }
.contact-info .section-desc.text-light { color: var(--gray-600) !important; }
.contact-methods { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: center; }
.contact-icon-box { width: 3.5rem; height: 3.5rem; border-radius: 1rem; background: var(--white); border: 1px solid rgba(var(--white-rgb), 0.1); display: flex; align-items: center; justify-content: center; color: var(--primary); margin-right: 1.25rem; transition: all 0.3s; box-shadow: 0 1px 2px rgba(var(--black-rgb), 0.05); }
.contact-item:hover .contact-icon-box { background: var(--primary); color: var(--white); }
.contact-label { font-size: 0.75rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.contact-value { color: var(--black-light); font-weight: 500; transition: color 0.3s; }
.contact-item:hover .contact-value { color: var(--primary); }
.contact-form-col { background: var(--white); backdrop-filter: blur(24px); border: 1px solid var(--gray-200); padding: 1.5rem; border-radius: 1.5rem; box-shadow: 0 20px 50px rgba(var(--black-rgb), 0.1); position: relative; }
@media (min-width: 640px) { .contact-form-col { padding: 2rem; } }
@media (min-width: 768px) { .contact-form-col { padding: 2.5rem; } }
.form-border-overlay { position: absolute; inset: 0; border-radius: 1.5rem; border: 1px solid var(--secondary-light); pointer-events: none; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; position: relative; z-index: 10; }
@media (min-width: 640px) { .contact-form { gap: 1.5rem; } }
.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
.form-group { position: relative; }
.form-label { display: block; font-size: 0.625rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; margin-left: 0.25rem; }
@media (min-width: 640px) { .form-label { font-size: 0.75rem; } }
.input-wrap { position: relative; }
.input-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--gray-500); }

/* --- Partner With Us Submit Button (Pill Style) --- */
.contact-form .btn-submit {
    position: relative;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark)) !important;
    color: var(--bg-light) !important;
    border-radius: 9999px !important; 
    padding: 1rem 4rem 1rem 2.5rem !important; 
    width: calc(100% - 1.9rem) !important; /* Adjusted to prevent overflow */
    margin: 1rem 0 0 0 !important;
    box-shadow: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible; 
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-form .btn-submit i {
    position: absolute;
    right: -1rem; 
    top: 50%;
    margin: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-light); 
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transform: translateY(-50%); 
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-form .btn-submit:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
    color: var(--bg-light) !important;
    transform: translateY(0) !important; /* Keep it static to avoid jumping */
}

.contact-form .btn-submit:hover i {
    background: var(--primary-dark);
    transform: translateY(-50%) translateX(6px) rotate(-45deg); 
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

/* Base Form Inputs (Generic) */
.form-input, .form-select, .form-textarea { width: 100%; background: var(--white); border: 1px solid rgba(var(--white-rgb), 0.1); border-radius: 0.75rem; color: var(--black-light); padding: 0.75rem 1rem; font-size: 0.875rem; transition: all 0.3s; }
@media (min-width: 640px) { .form-input, .form-select, .form-textarea { padding: 0.875rem 1rem; font-size: 1rem; } }
.form-input { padding-left: 2.75rem; }
.form-select { padding-left: 2.75rem; padding-right: 2.5rem; appearance: none; cursor: pointer; }
.form-textarea { resize: none; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-600); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 2px var(--black-light); }

/* Light Input Overrides for Contact Form (Reversed) */
.contact-form .form-input, 
.contact-form .form-select, 
.contact-form .form-textarea,
.form-custom-dropdown .custom-dropdown-trigger { 
    background-color: var(--white); 
    border: 1px solid var(--gray-200); 
    color: var(--black-light); 
}

.contact-form .form-input::placeholder, 
.contact-form .form-textarea::placeholder { color: var(--gray-500); }

.contact-form .input-icon { color: var(--gray-500); }

.contact-form .form-input:focus, 
.contact-form .form-select:focus, 
.contact-form .form-textarea:focus, 
.form-custom-dropdown.open .custom-dropdown-trigger { 
    border-color: var(--primary); 
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.1); 
}

.select-opt-disabled { color: var(--gray-400); background: var(--white); }
.form-select option { background: var(--white); color: var(--black-light); }
.select-chevron { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--gray-500); pointer-events: none; }
.btn-submit { width: 100%; margin-top: 0.5rem; font-size: 1rem; }
@media (min-width: 640px) { .btn-submit { font-size: 1.125rem; } }


/* ── Footer (Horizontal Layout) ───────────────────────────── */
.footer {
    background: var(--primary-dark); 
    padding-top: 4rem;
    padding-bottom: 2rem;
    color: var(--gray-400);
    font-family: var(--font-sans);
    border-top: 1px solid rgba(var(--white-rgb), 0.05);
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Rows for horizontal structure */
.footer-row-top,
.footer-row-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Desktop TV & Laptop Layout */
@media (min-width: 1024px) {
    .footer-main { gap: 1rem; }
    .footer-row-top,
    .footer-row-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Brand Logo Text */
.footer-brand {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.footer-brand:hover { transform: scale(1.02); }

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.05em;
    line-height: 1.1;
}
.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

/* Nav Links */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 640px) {
    .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 1.5rem; }
}
@media (min-width: 1024px) {
    .footer-nav { gap: 2.5rem; }
}

.footer-nav .footer-link {
    color: var(--gray-100);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
.footer-nav .footer-link:hover { color: var(--secondary-light); }

.footer-nav .footer-link-jobs {
    color: var(--secondary-light) !important;
    display: flex;
    align-items: center;
}
.footer-nav .footer-link-jobs i { margin-right: 0.5rem; }

/* Contact List */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
   
}

.footer-contact li{
   margin-right: 20px;
}
@media (min-width: 768px) {
    .footer-contact { flex-direction: row; flex-wrap: wrap; gap: .5rem; }
}
.contact-item {
    display: flex;
    font-size: 0.875rem;
    color: var(--gray-100);
    transition: color 0.3s;
    cursor: default;
    line-height: 1.6;
}
.align-center { align-items: center; }
.align-top { align-items: flex-start; }
a.contact-item { cursor: pointer; }
a.contact-item:hover { color: var(--white); }

.contact-icon {
    color: var(--bg-light);
    margin-right: 0.75rem;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 1rem;
}
.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-dark); 
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-light);
    font-size: 1.125rem;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-3px);
}

/* Bottom Copyright Section */
.footer-bottom {
    border-top: 1px solid rgba(var(--white-rgb), 0.08);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
.copyright { font-size: 0.875rem; color: var(--gray-500); }
.footer-tagline { font-size: 0.875rem; font-weight: 600; }

/* ── Scroll Reveal Animation ───────────────────────────────── */
.reveal-element { opacity: 0; transition: opacity 0.6s ease-in-out; will-change: opacity; }
.reveal-element.revealed { opacity: 1; }
.reveal-element:not(.revealed).reveal-delay-100 { transition-delay: 100ms; }
.reveal-element:not(.revealed).reveal-delay-200 { transition-delay: 200ms; }
.reveal-element:not(.revealed).reveal-delay-300 { transition-delay: 300ms; }
.reveal-element:not(.revealed).reveal-delay-400 { transition-delay: 400ms; }

/* ============================================================
   JOB PORTAL SPECIFIC STYLES
   ============================================================ */

/* ── Job Hero Section ── */
.job-hero { 
    background-color: var(--black); 
    background-image: linear-gradient(to right, rgba(var(--black-rgb), 0.85), rgba(var(--black-rgb), 0.6)), url('asset/findjobs.jpg');
    background-size: fill;
    background-position: center;
    padding: 10rem 0 6rem;
    position: relative; 
    overflow: hidden; 
}
.job-hero-title { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 1rem; }
@media (min-width: 768px) { .job-hero-title { font-size: 4rem; } }
.job-hero-subtitle { color: var(--gray-300); font-size: 1rem; margin-bottom: 3rem; font-weight: 500; }

/* Mobile-separated search bar */
.job-search-bar { display: flex; flex-direction: column; gap: 1rem; max-width: 55rem; margin: 0 auto; background: rgba(6,6,6,0.4); border-radius: 10px; }
.search-inputs-wrapper { display: flex; flex-direction: column; background: var(--white); border-radius: 1rem; padding: 0.5rem 0; box-shadow: 0 10px 40px rgba(0,0,0,0.08); border: 1px solid rgba(var(--primary-rgb), 0.2); transition: all 0.3s ease; }
.search-inputs-wrapper:focus-within { box-shadow: 0 15px 50px rgba(var(--primary-rgb), 0.2); border-color: var(--primary); }
.search-input-group { display: flex; align-items: center; flex: 1; padding: 0.75rem 1.5rem; }
.search-icon { color: var(--gray-400); margin-right: 0.75rem; font-size: 1.25rem; }
.search-input { width: 100%; border: none; outline: none; font-size: 1rem; color: var(--primary); background: transparent; }
.search-input::placeholder { color: var(--gray-400); }
.search-divider { display: none; width: 1px; height: 2.5rem; background: var(--gray-200); margin: 0 1rem; }
.search-btn { padding: 0.875rem 2rem; border-radius: 1rem; width: 100%; box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3); }

/* Desktop pill merge */
@media (min-width: 768px) { 
    .job-search-bar { flex-direction: row; align-items: center; background: var(--white); border-radius: 99px; padding: 0.75rem; gap: 0; box-shadow: 0 10px 40px rgba(var(--black-rgb), 0.08); border: 1px solid rgba(var(--primary-rgb), 0.2); transition: all 0.3s ease; }
    .job-search-bar:focus-within { box-shadow: 0 15px 50px rgba(var(--primary-rgb), 0.2); border-color: var(--primary); }
    .search-input { width: 100%; border: none; outline: none; font-size: 1rem; color: var(--black); background: transparent; }
    .search-inputs-wrapper { flex-direction: row; flex: 1; background: transparent; border-radius: 0; padding: 0; box-shadow: none; border: none; }
    .search-inputs-wrapper:focus-within { box-shadow: none; border-color: transparent; }
    .search-input-group { padding: 0 1rem; }
    .search-divider { display: block; }
    .search-btn { width: auto; border-radius: 99px; margin-top: 0; box-shadow: none; }
}

.pt-md { padding-top: 2rem; }
@media (min-width: 640px) { .pt-md { padding-top: 3rem; } }

.category-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 2rem; }
.cat-tag { background-color: var(--primary-dark); color: var(--white); padding: 0.75rem 1.25rem; border-radius: 1rem; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; border: none; text-align: center; box-shadow: 0 6px 15px rgba(var(--slate-rgb), 0.3); }
@media (min-width: 768px) { .category-tags { gap: 1rem; } .cat-tag { padding: 0.875rem 1.75rem; font-size: 1rem; } }
.cat-tag:hover, .cat-tag:focus { background: linear-gradient(135deg, var(--slate-main), var(--primary-main)); color: var(--primary-light); transform: translateY(-3px); box-shadow: 0 6px 15px rgba(var(--primary-rgb), 0.3); }
.cat-tag.active { background: linear-gradient(135deg, var(--primary-main), var(--primary-dark)); color: var(--primary-dark); border: 1px solid rgba(var(--primary-rgb), 0.5); box-shadow: 0 6px 20px rgba(var(--black-rgb), 0.15); transform: translateY(-2px); }
.mt-xl { margin-top: 2rem; }
@media (min-width: 640px) { .mt-xl { margin-top: 4rem; } }

.filter-bar { display: flex; flex-wrap: nowrap; gap: 0.5rem; margin-bottom: 2.5rem; justify-content: space-between; width: 100%; }
@media (min-width: 640px) { .filter-bar { gap: 1rem; justify-content: flex-end; width: auto; } }
.filter-select { flex: 1 1 50%; min-width: 0; padding: 0.625rem 0.5rem; border-radius: 0.5rem; border: 1px solid var(--gray-200); background: var(--white); color: var(--gray-600); font-weight: 500; font-size: 0.75rem; cursor: pointer; outline: none; transition: border-color 0.3s; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
@media (min-width: 640px) { .filter-select { flex: none; padding: 0.75rem 1.5rem; font-size: 0.875rem; } }
.filter-select:focus, .filter-select:hover { border-color: var(--primary); }

.job-listings-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .job-listings-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .job-listings-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.job-card { background: var(--white); border: 1px solid var(--secondary-light); border-radius: 1rem; padding: 2rem; display: flex; flex-direction: column; transition: all 0.3s ease; box-shadow: 0 2px 10px rgba(var(--black-rgb), 0.02); cursor: pointer; }
.job-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(var(--black-rgb), 0.08); border-color: rgba(var(--primary-rgb), 0.3); }
.active-job { border-color: var(--primary) !important; box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.2) !important; transform: translateY(-5px); }

.job-card-header { display: flex; align-items: center; margin-bottom: 1.25rem; }

/* ── Company Logo (1-Second Smooth Hover) ── */
.company-logo { 
    width: 2.5rem; 
    height: 2.5rem; 
    /* Force solid color so it can fade smoothly */
    background-color: var(--white); 
    background-image: none; 
    border-radius: 0.5rem; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.25rem; 
    color: var(--black); 
    margin-right: 1rem; 
    /* 1-second premium smooth curve */
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1); 
}

/* When the user hovers over the job card */
.job-card:hover .company-logo { 
    /* Fade to solid primary-light instead of the non-animating gradient */
    background-color: var(--primary-light); 
    color: var(--bg-light); 
    /* Adds a nice smooth "pop" effect */
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
}

.company-name { font-weight: 700; color: var(--black); font-size: 0.875rem; margin-bottom: 0.125rem; }
.company-loc { font-size: 0.75rem; color: var(--gray-400); }
.job-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--black); margin-bottom: 0.75rem; line-height: 1.3; }
.job-badge { display: inline-block; padding: 0.25rem 0.75rem; background: var(--gray-100); color: var(--gray-600); font-size: 0.75rem; font-weight: 600; border-radius: 99px; margin-bottom: 1rem; align-self: flex-start; }
.job-desc { color: var(--gray-500); font-size: 0.875rem; line-height: 1.6; margin-bottom: 2rem; flex-grow: 1; }

.job-card-footer { border-top: 1px solid var(--gray-100); padding-top: 1.5rem; margin-top: auto; }

/* ── Job Card View Button (1-Second Smooth Hover) ── */
.btn-full-view { 
    display: block; 
    width: 100%; 
    padding: 0.875rem 1.25rem; 
    border-radius: 0.75rem; 
    font-size: 0.9375rem; 
    font-weight: 700; 
    color: var(--white); 
    /* Use solid color instead of gradient so CSS can animate it */
    background-color: var(--primary-light); 
    background-image: none; 
    border: 1px solid var(--secondary-light); 
    box-shadow: 0 2px 4px rgba(var(--black-rgb), 0.02); 
    
    /* Exactly 1 second smooth transition for all properties */
    transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1); 
    text-align: center; 
}

/* When the user hovers over the job card */
.job-card:hover .btn-full-view, 
.active-job .btn-full-view { 
    background-color: var(--primary); /* Smooth 1s fade to main blue */
    border-color: transparent; 
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.25); 
    color: var(--bg-light); 
}

/* When the user hovers directly over the View button */
.btn-full-view:hover { 
    transform: translateY(-4px) scale(1.02); 
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.5) !important; 
    background-color: var(--primary-dark) !important; /* Smooth 1s fade to dark blue */
    color: var(--white) !important; 
}



/* Nav highlight jobs */
.nav-link-highlight { color: var(--secondary-dark) !important; opacity: 0.9; transition: opacity 0.2s ease, drop-shadow 0.2s ease; }
.nav-link-highlight:hover { opacity: 1; color: var(--primary-dark) !important; }
.footer-link-jobs { display: flex; align-items: center; color: var(--secondary-light) }
.footer-link-jobs:hover { opacity: 1; }

/* ── Job Details Page ── */
.jd-hero { background-color: var(--primary-dark); position: relative; padding: 8rem 0 4rem; overflow: hidden; color: var(--white); }
.jd-hero-bg { position: absolute; top: 0; right: 0; bottom: 0; width: 50%; background-image: url('asset/findjobs01.jpg'); background-size: cover; background-position: center; clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%); opacity: 0.6; z-index: 0; }
@media (max-width: 1023px) { .jd-hero-bg { opacity: 0.2; width: 100%; clip-path: none; } }
.jd-hero-container { position: relative; z-index: 10; }
.jd-hero-content { max-width: 45rem; }
.jd-title { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
@media (min-width: 768px) { .jd-title { font-size: 3.5rem; } }
.jd-subtitle { font-size: 1rem; color: var(--gray-300); line-height: 1.6; margin-bottom: 2rem; }
.jd-actions { display: flex; gap: 1rem; margin-bottom: 3rem; }
.btn-outline-white { display: inline-flex; justify-content: center; align-items: center; padding: 0.875rem 2rem; border-radius: 0.75rem; font-size: 0.9375rem; font-weight: 700; color: var(--white); background: transparent; border: 1px solid rgba(var(--white-rgb), 0.3); transition: all 0.3s; }
.btn-outline-white:hover { border-color: var(--white); background: rgba(var(--white-rgb), 0.1); }
.jd-meta-row { display: flex; flex-wrap: wrap; gap: 2rem; padding-top: 2rem; border-top: 1px solid rgba(var(--white-rgb), 0.1); }
.jd-meta-item { display: flex; align-items: center; }
.jd-meta-icon { font-size: 1.5rem; color: var(--primary-light); margin-right: 1rem; opacity: 0.8; }
.jd-meta-label { display: block; font-size: 0.75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.125rem; }
.jd-meta-value { font-weight: 600; font-size: 0.875rem; }

.jd-main-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .jd-main-grid { grid-template-columns: 2fr 1fr; gap: 4rem; } }
.jd-section-label { font-size: 0.75rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 1rem; }
.jd-info-row { display: flex; gap: 3rem; margin-bottom: 2rem; }
.jd-info-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; }
.jd-paragraph { color: var(--gray-600); line-height: 1.7; margin-bottom: 2rem; }
.jd-bullet-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.jd-bullet-list li { position: relative; padding-left: 1.5rem; color: var(--gray-800); line-height: 1.6; }
.jd-bullet-list li::before { content: ''; position: absolute; left: 0; top: 0.5rem; width: 0.5rem; height: 0.5rem; background-color: var(--gray-400); border-radius: 50%; }
.jd-bullet-list li:hover::before { background-color: var(--primary); }

.jd-sidebar { position: sticky; top: 9rem; }
.jd-apply-card { background: var(--white); border-radius: 1.25rem; box-shadow: 0 10px 40px rgba(var(--black-rgb), 0.05); border: 1px solid var(--gray-100); overflow: hidden; margin-bottom: 2rem; position: relative; }
.jd-apply-card::after { content: ''; position: absolute; top: 0; right: 0; width: 8rem; height: 8rem; background: radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.15), transparent 70%); pointer-events: none; }
.jd-apply-header { padding: 2rem 2rem 1.5rem; }
.jd-apply-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--black); margin-bottom: 0.5rem; }
.jd-apply-desc { font-size: 0.875rem; color: var(--gray-500); }
.jd-form { padding: 0 2rem 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.jd-form-label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--gray-500); margin-bottom: 0.5rem; }
.jd-input { width: 100%; border: 1px solid var(--gray-200); border-radius: 0.5rem; padding: 0.75rem 1rem; font-size: 0.875rem; color: var(--black); transition: all 0.3s; }
.jd-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1); }
.jd-dropzone { border: 2px dashed var(--gray-300); border-radius: 0.5rem; padding: 1.5rem 1rem; text-align: center; background: var(--gray-50); position: relative; cursor: pointer; transition: all 0.3s; }
.jd-dropzone:hover { border-color: var(--primary); background: rgba(var(--primary-rgb), 0.02); }
.jd-dropzone-text { display: block; font-weight: 600; font-size: 0.875rem; color: var(--black); }
.jd-dropzone-sub { display: block; font-size: 0.75rem; color: var(--gray-400); margin-top: 0.25rem; }
.jd-file-input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }

.jd-widget { margin-top: 3rem; }
.jd-mini-card { display: flex; align-items: center; padding: 1rem; background: var(--white); border-radius: 0.75rem; margin-bottom: 0.75rem; border: 1px solid var(--gray-100); transition: all 0.3s; }
.jd-mini-card:hover { border-color: var(--primary); box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.1); transform: translateY(-2px); }
.jd-mini-icon { width: 2.5rem; height: 2.5rem; background: var(--secondary-light); color: var(--primary); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; margin-right: 1rem; }
.jd-mini-info { flex: 1; }
.jd-mini-title { font-weight: 700; font-size: 0.875rem; color: var(--black); margin-bottom: 0.125rem; transition: color 0.3s; }
.jd-mini-card:hover .jd-mini-title { color: var(--primary-dark); }
.jd-mini-meta { font-size: 0.75rem; color: var(--gray-500); }
.jd-mini-arrow { font-size: 0.875rem; color: var(--gray-400); transition: transform 0.3s; }

.btn-full-gold { display: inline-block; width: 100%; padding: 0.875rem 1.25rem; border-radius: 0.75rem; font-size: 0.9375rem; font-weight: 700; color: var(--white); background: linear-gradient(135deg, var(--primary-light), var(--primary)); box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.25); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); text-align: center; border: none; cursor: pointer; }
.btn-full-gold:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.5); background:var(--primary); }

.jd-form-overlay { position: absolute; inset: 0; background: rgba(var(--white-rgb), 0.75); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 50; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; border-radius: 1.25rem; padding: 2rem; }
.jd-form-overlay.active { opacity: 1; pointer-events: all; }
.jd-spinner { width: 50px; height: 50px; border: 4px solid var(--gray-200); border-top-color: var(--primary); border-radius: 50%; animation: jd-spin 1s linear infinite; }
@keyframes jd-spin { to { transform: rotate(360deg); } }
.svg-animate { width: 80px; height: 80px; margin-bottom: 1rem; display: block; }
.path-circle { stroke-dasharray: 166; stroke-dashoffset: 166; stroke-width: 4; stroke-miterlimit: 10; stroke: var(--primary); fill: none; animation: strokeAnim 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards; }
.path-check { transform-origin: 50% 50%; stroke-dasharray: 48; stroke-dashoffset: 48; stroke: var(--primary); stroke-width: 4; fill: none; animation: strokeAnim 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards; }
.path-circle-error { stroke: #ef4444; }
.path-cross { transform-origin: 50% 50%; stroke-dasharray: 48; stroke-dashoffset: 48; stroke: #ef4444; stroke-width: 4; fill: none; animation: strokeAnim 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards; }
@keyframes strokeAnim { 100% { stroke-dashoffset: 0; } }

/* --- Custom Filter Dropdowns --- */
.custom-dropdown { position: relative; font-family: var(--font-sans); flex: 1 1 50%; min-width: 0; }
@media (min-width: 640px) { .custom-dropdown { flex: none; min-width: 200px; } }
.custom-dropdown-trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 0.625rem 1rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: 0.5rem; cursor: pointer; color: var(--gray-600); font-size: 0.75rem; font-weight: 500; transition: all 0.2s ease; white-space: nowrap; }
@media (min-width: 640px) { .custom-dropdown-trigger { padding: 0.75rem 1.25rem; font-size: 0.875rem; } }
.custom-dropdown-trigger:hover, .custom-dropdown.open .custom-dropdown-trigger { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.1); color: var(--black); }
.custom-dropdown .chevron-icon { font-size: 10px; transition: transform 0.3s ease; }
.custom-dropdown.open .chevron-icon { transform: rotate(180deg); }
.custom-dropdown-menu { position: absolute; top: calc(100% + 6px); left: 0; width: 100%; background: var(--white); border: 1px solid var(--gray-200); border-radius: 0.5rem; box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.1); padding: 0.5rem 0; list-style: none; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1); z-index: 50; }
.custom-dropdown.open .custom-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.custom-dropdown-item { padding: 0.625rem 1.25rem; font-size: 0.875rem; color: var(--gray-600); cursor: pointer; transition: background 0.2s, color 0.2s; }
.custom-dropdown-item:hover { background: var(--gray-50); color: var(--black); }
.custom-dropdown-item.active { background: rgba(var(--primary-rgb), 0.08); color: var(--primary-dark); font-weight: 600; }

/* Contact Form Specific Dropdown Overrides (Light Theme) */
.form-custom-dropdown .custom-dropdown-trigger { background-color: var(--white); border: 1px solid var(--gray-200); color: var(--black-light); padding-left: 2.75rem; }
.form-custom-dropdown .custom-dropdown-trigger:hover, .form-custom-dropdown.open .custom-dropdown-trigger { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.1); }
.form-custom-dropdown .custom-dropdown-trigger .custom-dropdown-text { color: var(--gray-500) !important; }

/* Dropdown Menu Options (Light Theme) */
.dark-dropdown-menu { background: var(--white); border: 1px solid var(--gray-200); box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.1); }
.dark-dropdown-menu .custom-dropdown-item { color: var(--gray-600); }
.dark-dropdown-menu .custom-dropdown-item:hover { background: var(--gray-50); color: var(--black-light); }
.dark-dropdown-menu .custom-dropdown-item.active { background: rgba(var(--primary-rgb), 0.08); color: var(--primary-dark); font-weight: 600; }
.text-selected { color: var(--black-light) !important; }

/* ============================================================
   ABOUT US PAGE & OTHER MISC
   ============================================================ */
.ref-about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .ref-about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.ref-about-images { position: relative; max-width: 500px; margin: 0 auto; padding: 2rem 2rem 2rem 0; }
.ref-dots-bg { position: absolute; bottom: -1rem; right: -1rem; width: 60%; height: 60%; background-image: radial-gradient(var(--gray-300) 2px, transparent 2px); background-size: 15px 15px; opacity: 0.5; z-index: 0; border-radius: 1.25rem; transition: transform 0.5s ease; }
.ref-img-main { position: relative; width: 85%; height: auto; border-radius: 1.25rem; box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.08); z-index: 1; transition: transform 0.5s ease, box-shadow 0.5s ease; }
.ref-img-overlap { position: absolute; top: 15%; right: -5%; width: 50%; height: auto; border-radius: 1.25rem; border: 8px solid var(--white); box-shadow: 0 15px 35px rgba(var(--black-rgb), 0.1); z-index: 2; transition: transform 0.5s ease, box-shadow 0.5s ease; }
.ref-about-images:hover .ref-img-main { transform: scale(1.02); box-shadow: 0 15px 40px rgba(var(--black-rgb), 0.12); }
.ref-about-images:hover .ref-img-overlap { transform: translate(-10px, -10px) scale(1.05); box-shadow: 0 20px 45px rgba(var(--black-rgb), 0.15); }
.ref-about-images:hover .ref-dots-bg { transform: translate(10px, 10px); }
.ref-about-images:hover .ref-experience-badge { transform: translateY(-10px) scale(1.05); }

.ref-experience-badge { position: absolute; bottom: 10%; left: -10%; z-index: 3; display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; border-radius: 0.75rem; box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.3); color: var(--white); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.badge-tail { position: absolute; bottom: -8px; right: 25px; width: 20px; height: 20px; background: inherit; clip-path: polygon(0 0, 100% 0, 0 100%); }
.badge-icon { font-size: 2rem; opacity: 0.9; }
.badge-text { display: flex; flex-direction: column; }
.badge-num { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; line-height: 1; margin-bottom: 0.25rem; }
.badge-label { font-size: 0.75rem; font-weight: 600; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.8; }
@media (max-width: 640px) {
    .ref-about-images { padding: 0 1rem 3rem 1rem; max-width: 400px; }
    .ref-img-main { width: 90%; margin: 0 auto; display: block; }
    .ref-img-overlap { right: -5%; width: 55%; top: -10%; }
    .ref-experience-badge { left: 0%; bottom: 0; padding: 1rem; }
    .ref-dots-bg { bottom: 2rem; right: -1rem; }
}

.ref-why-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .ref-why-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.rounded-img { border-radius: 1rem; width: 100%; box-shadow: 0 20px 40px rgba(var(--black-rgb), 0.5); }
.ref-why-lists { display: flex; flex-wrap: wrap; gap: 2rem; }
@media (min-width: 640px) { .ref-why-lists { gap: 4rem; } }
.ref-check-list { display: flex; flex-direction: column; gap: 1rem; }
.ref-check-list li { color: var(--white); font-size: 0.9375rem; font-weight: 500; display: flex; align-items: center; }
.list-icon-gold { color: var(--primary); margin-right: 0.75rem; font-size: 1.125rem; }

.ref-vision-grid { display: grid; gap: 3rem; align-items: center;  }
@media (min-width: 1024px) { .ref-vision-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.v-img-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; align-items: stretch; }
.v-img-1 { grid-row: 1 / span 2; width: 100%; height: 100%; object-fit: cover; border-radius: 0.75rem; }
.v-img-2, .v-img-3 { width: 100%; height: 100%; object-fit: cover; border-radius: 0.75rem; }

.ref-num-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem; }
.num-item { display: flex; align-items: flex-start; gap: 1.5rem; }
.num-box { width: 3.5rem; height: 3.5rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--white); border-radius: 0.5rem; }
.num-box-dark { background: var(--black); } 
.num-box-gold { background: var(--primary); } 
.num-title { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--black); margin-bottom: 0.5rem; }
.num-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }


/* ============================================================
   SERVICES PAGE: UPLOADED DESIGN RECREATION 
   ============================================================ */
.pt-xl { padding-top: 4rem; }
@media (min-width: 1024px) { .pt-xl { padding-top: 6rem; } }

.design-intro-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .design-intro-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.design-masonry { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; height: 100%; }
.dm-col-left { display: flex; flex-direction: column; gap: 1rem; }
.dm-img-small { width: 100%; height: 100%; object-fit: cover; border-radius: 1.25rem; box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.05); transition: transform 0.4s ease; }
.dm-img-small:hover { transform: scale(1.03); box-shadow: 0 15px 40px rgba(var(--black-rgb), 0.1); }
.dm-col-right { height: 100%; }
.dm-img-tall-wrap { position: relative; height: 100%; border-radius: 1.25rem; overflow: hidden; box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.08); }
.dm-img-tall { width: 100%; height: 100%; min-height: 416px; object-fit: cover; transition: transform 0.6s ease; }
.dm-img-tall-wrap:hover .dm-img-tall { transform: scale(1.05); }

.design-check-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.design-check-item { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1rem; border-radius: 1rem; transition: background 0.3s ease; }
.design-check-item:hover { background: var(--gray-50); box-shadow: inset 0 0 0 1px rgba(var(--primary-rgb), 0.2); }
.d-check-icon { width: 3rem; height: 3rem; flex-shrink: 0; background: rgba(var(--primary-rgb), 0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; transition: all 0.3s ease; }
.design-check-item:hover .d-check-icon { background: var(--primary); color: var(--white); transform: scale(1.1); box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3); }
.d-check-title { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--black); margin-bottom: 0.25rem; transition: color 0.3s ease; }
.design-check-item:hover .d-check-title { color: var(--primary-dark); }
.d-check-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

.design-expertise-section { position: relative; padding: 6rem 0 12rem; background: var(--black); margin-bottom: 1rem; }
.de-bg-image { position: absolute; inset: 0; background-image: url('goldherobanner2.webp'); background-size: cover; background-position: center; background-attachment: fixed; opacity: 0.4; z-index: 0; }
.de-bg-overlay { position: absolute; inset: 0; background: var(--primary-dark); z-index: 1; }
.de-header { position: relative; z-index: 10; margin-bottom: 4rem; }
.de-cards-wrap { position: relative; z-index: 20; display: grid; gap: 6rem; }
@media (min-width: 768px) { .de-cards-wrap { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.de-card { position: relative; }
.de-card-img { width: 100%; height: 350px; object-fit: cover; border-radius: 1.25rem; box-shadow: 0 20px 40px rgba(var(--black-rgb), 0.5); }
.de-card-box { position: absolute; bottom: -4rem; right: 1.5rem; width: 85%; background: var(--black-light); border: 1px solid rgba(var(--primary-rgb), 0.15); border-radius: 1.25rem; padding: 2rem; box-shadow: 0 15px 40px rgba(var(--black-rgb), 0.6); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.de-card:hover .de-card-box { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.2); }
.de-box-icon { width: 3rem; height: 3rem; background: rgba(var(--white-rgb), 0.05); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; color: var(--primary-light); font-size: 1.25rem; margin-bottom: 1.25rem; transition: all 0.3s ease; }
.de-card:hover .de-box-icon { background: var(--primary); color: var(--white); transform: scale(1.1); }
.de-box-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.de-box-desc { font-size: 0.875rem; color: var(--gray-400); line-height: 1.6; }
@media (max-width: 767px) {
    .design-expertise-section { padding-bottom: 8rem; margin-bottom: 6rem; }
    .de-card-box { bottom: -3rem; right: 5%; width: 90%; padding: 1.5rem; }
}

.design-services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .design-services-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .design-services-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.ds-card { background: var(--white); border-radius: 1.5rem; padding: 2.5rem 2rem; box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.04); border: 1px solid var(--gray-100); display: flex; flex-direction: column; transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease; will-change: transform; backface-visibility: hidden; transform: translateZ(0); }
.ds-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(var(--primary-rgb), 0.15); border-color: rgba(var(--primary-rgb), 0.3); }
.ds-icon-wrap { width: 4rem; height: 4rem; background: var(--gray-50); border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: all 0.4s ease; }
.ds-icon { font-size: 1.75rem; color: var(--primary); transition: transform 0.4s ease; }
.ds-card:hover .ds-icon-wrap { background: var(--primary); }
.ds-card:hover .ds-icon { color: var(--white); transform: scale(1.1); }
.ds-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--black); margin-bottom: 1rem; transition: color 0.3s ease; }
.ds-card:hover .ds-title { color: var(--primary); }
.ds-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; flex-grow: 1; transition: color 0.3s ease; }
.ds-card:hover .ds-desc { color: var(--gray-800); }


/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
#back-to-top {
    position: fixed;
    bottom: 17rem;
    right: 2rem;
    width: 3.5rem;
    height: 4.5rem; 
    background: rgba(var(--black-rgb), 0.1);
    border-radius: 2rem; 
    box-shadow: 0 10px 25px rgba(var(--black-rgb), 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(var(--primary-rgb), 0.05);
    cursor: pointer;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    box-shadow: 0 15px 35px rgba(var(--black-rgb), 0.15);
    transform: translateY(-5px);
    border-color: rgba(var(--primary-rgb), 0.3);
}

/* Tightly stacked chevrons */
#back-to-top i {
    font-size: 1.25rem;
    line-height: 0.4;
    display: block;
    margin: -1px 0;
    transition: color 0.3s;
}

#back-to-top i:nth-child(1) { color: var(--gray-600); opacity: 1; }
#back-to-top i:nth-child(2) { color: var(--gray-500); opacity: 0.6; }
#back-to-top i:nth-child(3) { color: var(--gray-400); opacity: 0.4; }

#back-to-top:hover i:nth-child(1),
#back-to-top:hover i:nth-child(2),
#back-to-top:hover i:nth-child(3) {
    color: var(--primary);
    opacity: 1;
}

@media (max-width: 640px) {
    #back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3rem;
        height: 4rem;
    }
}

.company-name { font-weight: 700; color: var(--black); font-size: 0.875rem; margin-bottom: 0.125rem; }
.company-loc { font-size: 0.75rem; color: var(--gray-400); }
.job-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--black); margin-bottom: 0.75rem; line-height: 1.3; }
.job-badge { display: inline-block; padding: 0.25rem 0.75rem; background: var(--gray-100); color: var(--gray-600); font-size: 0.75rem; font-weight: 600; border-radius: 99px; margin-bottom: 1rem; align-self: flex-start; }
.job-desc { color: var(--gray-500); font-size: 0.875rem; line-height: 1.6; margin-bottom: 2rem; flex-grow: 1; }

.job-card-footer { border-top: 1px solid var(--gray-100); padding-top: 1.5rem; margin-top: auto; }

/* ── Job Card View Button (1-Second Smooth Hover) ── */
.btn-full-view { 
    display: block; 
    width: 100%; 
    padding: 0.875rem 1.25rem; 
    border-radius: 0.75rem; 
    font-size: 0.9375rem; 
    font-weight: 700; 
    color: var(--white); 
    /* Use solid color instead of gradient so CSS can animate it */
    background-color: var(--primary-light); 
    background-image: none; 
    border: 1px solid var(--secondary-light); 
    box-shadow: 0 2px 4px rgba(var(--black-rgb), 0.02); 
    
    /* Exactly 1 second smooth transition for all properties */
    transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1); 
    text-align: center; 
}

/* When the user hovers over the job card */
.job-card:hover .btn-full-view, 
.active-job .btn-full-view { 
    background-color: var(--primary); /* Smooth 1s fade to main blue */
    border-color: transparent; 
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.25); 
    color: var(--bg-light); 
}

/* When the user hovers directly over the View button */
.btn-full-view:hover { 
    transform: translateY(-4px) scale(1.02); 
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.5) !important; 
    background-color: var(--primary-dark) !important; /* Smooth 1s fade to dark blue */
    color: var(--white) !important; 
}

/* ── Footer Logo Responsive Styling ── */
.footer-logo {
    width: auto;
    height: 3.5rem; /* Default size for mobile screens */
    max-width: 100%;
    object-fit: contain; /* Prevents the image from stretching/distorting */
    transition: transform 0.3s ease;
}

/* Tablet (iPad) Size */
@media (min-width: 640px) {
    .footer-logo {
        height: 4rem; /* Scales up slightly for tablets */
    }
}

/* Desktop / Laptop Size */
@media (min-width: 1024px) {
    .footer-logo {
        height: 4.5rem; /* Full size for large screens */
    }
}

/* Smooth hover effect for the brand logo */
.footer-brand:hover .footer-logo {
    transform: scale(1.01);
}


/* Nav highlight jobs */
.nav-link-highlight { color: var(--secondary-dark) !important; opacity: 0.9; transition: opacity 0.2s ease, drop-shadow 0.2s ease; }
.nav-link-highlight:hover { opacity: 1; color: var(--primary-dark) !important; }
.footer-link-jobs { display: flex; align-items: center; color: var(--secondary-light) }
.footer-link-jobs:hover { opacity: 1; }

/* ── Job Details Page ── */
.jd-hero { background-color: var(--primary-dark); position: relative; padding: 8rem 0 4rem; overflow: hidden; color: var(--white); }
.jd-hero-bg { position: absolute; top: 0; right: 0; bottom: 0; width: 50%; background-image: url('asset/findjobs01.jpg'); background-size: cover; background-position: center; clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%); opacity: 0.6; z-index: 0; }
@media (max-width: 1023px) { .jd-hero-bg { opacity: 0.2; width: 100%; clip-path: none; } }
.jd-hero-container { position: relative; z-index: 10; }
.jd-hero-content { max-width: 45rem; }
.jd-title { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
@media (min-width: 768px) { .jd-title { font-size: 3.5rem; } }
.jd-subtitle { font-size: 1rem; color: var(--gray-300); line-height: 1.6; margin-bottom: 2rem; }
.jd-actions { display: flex; gap: 1rem; margin-bottom: 3rem; }
.btn-outline-white { display: inline-flex; justify-content: center; align-items: center; padding: 0.875rem 2rem; border-radius: 0.75rem; font-size: 0.9375rem; font-weight: 700; color: var(--white); background: transparent; border: 1px solid rgba(var(--white-rgb), 0.3); transition: all 0.3s; }
.btn-outline-white:hover { border-color: var(--white); background: rgba(var(--white-rgb), 0.1); }
.jd-meta-row { display: flex; flex-wrap: wrap; gap: 2rem; padding-top: 2rem; border-top: 1px solid rgba(var(--white-rgb), 0.1); }
.jd-meta-item { display: flex; align-items: center; }
.jd-meta-icon { font-size: 1.5rem; color: var(--primary-light); margin-right: 1rem; opacity: 0.8; }
.jd-meta-label { display: block; font-size: 0.75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.125rem; }
.jd-meta-value { font-weight: 600; font-size: 0.875rem; }

.jd-main-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .jd-main-grid { grid-template-columns: 2fr 1fr; gap: 4rem; } }
.jd-section-label { font-size: 0.75rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 1rem; }
.jd-info-row { display: flex; gap: 3rem; margin-bottom: 2rem; }
.jd-info-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; }
.jd-paragraph { color: var(--gray-600); line-height: 1.7; margin-bottom: 2rem; }
.jd-bullet-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.jd-bullet-list li { position: relative; padding-left: 1.5rem; color: var(--gray-800); line-height: 1.6; }
.jd-bullet-list li::before { content: ''; position: absolute; left: 0; top: 0.5rem; width: 0.5rem; height: 0.5rem; background-color: var(--gray-400); border-radius: 50%; }
.jd-bullet-list li:hover::before { background-color: var(--primary); }

.jd-sidebar { position: sticky; top: 9rem; }
.jd-apply-card { background: var(--white); border-radius: 1.25rem; box-shadow: 0 10px 40px rgba(var(--black-rgb), 0.05); border: 1px solid var(--gray-100); overflow: hidden; margin-bottom: 2rem; position: relative; }
.jd-apply-card::after { content: ''; position: absolute; top: 0; right: 0; width: 8rem; height: 8rem; background: radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.15), transparent 70%); pointer-events: none; }
.jd-apply-header { padding: 2rem 2rem 1.5rem; }
.jd-apply-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--black); margin-bottom: 0.5rem; }
.jd-apply-desc { font-size: 0.875rem; color: var(--gray-500); }
.jd-form { padding: 0 2rem 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.jd-form-label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--gray-500); margin-bottom: 0.5rem; }
.jd-input { width: 100%; border: 1px solid var(--gray-200); border-radius: 0.5rem; padding: 0.75rem 1rem; font-size: 0.875rem; color: var(--black); transition: all 0.3s; }
.jd-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1); }
.jd-dropzone { border: 2px dashed var(--gray-300); border-radius: 0.5rem; padding: 1.5rem 1rem; text-align: center; background: var(--gray-50); position: relative; cursor: pointer; transition: all 0.3s; }
.jd-dropzone:hover { border-color: var(--primary); background: rgba(var(--primary-rgb), 0.02); }
.jd-dropzone-text { display: block; font-weight: 600; font-size: 0.875rem; color: var(--black); }
.jd-dropzone-sub { display: block; font-size: 0.75rem; color: var(--gray-400); margin-top: 0.25rem; }
.jd-file-input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }

.jd-widget { margin-top: 3rem; }
.jd-mini-card { display: flex; align-items: center; padding: 1rem; background: var(--white); border-radius: 0.75rem; margin-bottom: 0.75rem; border: 1px solid var(--gray-100); transition: all 0.3s; }
.jd-mini-card:hover { border-color: var(--primary); box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.1); transform: translateY(-2px); }
.jd-mini-icon { width: 2.5rem; height: 2.5rem; background: var(--secondary-light); color: var(--primary); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; margin-right: 1rem; }
.jd-mini-info { flex: 1; }
.jd-mini-title { font-weight: 700; font-size: 0.875rem; color: var(--black); margin-bottom: 0.125rem; transition: color 0.3s; }
.jd-mini-card:hover .jd-mini-title { color: var(--primary-dark); }
.jd-mini-meta { font-size: 0.75rem; color: var(--gray-500); }
.jd-mini-arrow { font-size: 0.875rem; color: var(--gray-400); transition: transform 0.3s; }

.btn-full-gold { display: inline-block; width: 100%; padding: 0.875rem 1.25rem; border-radius: 0.75rem; font-size: 0.9375rem; font-weight: 700; color: var(--white); background: linear-gradient(135deg, var(--primary-light), var(--primary)); box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.25); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); text-align: center; border: none; cursor: pointer; }
.btn-full-gold:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.5); background:var(--primary); }

.jd-form-overlay { position: absolute; inset: 0; background: rgba(var(--white-rgb), 0.75); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 50; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; border-radius: 1.25rem; padding: 2rem; }
.jd-form-overlay.active { opacity: 1; pointer-events: all; }
.jd-spinner { width: 50px; height: 50px; border: 4px solid var(--gray-200); border-top-color: var(--primary); border-radius: 50%; animation: jd-spin 1s linear infinite; }
@keyframes jd-spin { to { transform: rotate(360deg); } }
.svg-animate { width: 80px; height: 80px; margin-bottom: 1rem; display: block; }
.path-circle { stroke-dasharray: 166; stroke-dashoffset: 166; stroke-width: 4; stroke-miterlimit: 10; stroke: var(--primary); fill: none; animation: strokeAnim 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards; }
.path-check { transform-origin: 50% 50%; stroke-dasharray: 48; stroke-dashoffset: 48; stroke: var(--primary); stroke-width: 4; fill: none; animation: strokeAnim 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards; }
.path-circle-error { stroke: #ef4444; }
.path-cross { transform-origin: 50% 50%; stroke-dasharray: 48; stroke-dashoffset: 48; stroke: #ef4444; stroke-width: 4; fill: none; animation: strokeAnim 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards; }
@keyframes strokeAnim { 100% { stroke-dashoffset: 0; } }

/* --- Custom Filter Dropdowns --- */
.custom-dropdown { position: relative; font-family: var(--font-sans); flex: 1 1 50%; min-width: 0; }
@media (min-width: 640px) { .custom-dropdown { flex: none; min-width: 200px; } }
.custom-dropdown-trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 0.625rem 1rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: 0.5rem; cursor: pointer; color: var(--gray-600); font-size: 0.75rem; font-weight: 500; transition: all 0.2s ease; white-space: nowrap; }
@media (min-width: 640px) { .custom-dropdown-trigger { padding: 0.75rem 1.25rem; font-size: 0.875rem; } }
.custom-dropdown-trigger:hover, .custom-dropdown.open .custom-dropdown-trigger { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.1); color: var(--black); }
.custom-dropdown .chevron-icon { font-size: 10px; transition: transform 0.3s ease; }
.custom-dropdown.open .chevron-icon { transform: rotate(180deg); }
.custom-dropdown-menu { position: absolute; top: calc(100% + 6px); left: 0; width: 100%; background: var(--white); border: 1px solid var(--gray-200); border-radius: 0.5rem; box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.1); padding: 0.5rem 0; list-style: none; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1); z-index: 50; }
.custom-dropdown.open .custom-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.custom-dropdown-item { padding: 0.625rem 1.25rem; font-size: 0.875rem; color: var(--gray-600); cursor: pointer; transition: background 0.2s, color 0.2s; }
.custom-dropdown-item:hover { background: var(--gray-50); color: var(--black); }
.custom-dropdown-item.active { background: rgba(var(--primary-rgb), 0.08); color: var(--primary-dark); font-weight: 600; }

/* Contact Form Specific Dropdown Overrides (Light Theme) */
.form-custom-dropdown .custom-dropdown-trigger { background-color: var(--white); border: 1px solid var(--gray-200); color: var(--black-light); padding-left: 2.75rem; }
.form-custom-dropdown .custom-dropdown-trigger:hover, .form-custom-dropdown.open .custom-dropdown-trigger { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.1); }
.form-custom-dropdown .custom-dropdown-trigger .custom-dropdown-text { color: var(--gray-500) !important; }

/* Dropdown Menu Options (Light Theme) */
.dark-dropdown-menu { background: var(--white); border: 1px solid var(--gray-200); box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.1); }
.dark-dropdown-menu .custom-dropdown-item { color: var(--gray-600); }
.dark-dropdown-menu .custom-dropdown-item:hover { background: var(--gray-50); color: var(--black-light); }
.dark-dropdown-menu .custom-dropdown-item.active { background: rgba(var(--primary-rgb), 0.08); color: var(--primary-dark); font-weight: 600; }
.text-selected { color: var(--black-light) !important; }

/* ============================================================
   ABOUT US PAGE & OTHER MISC
   ============================================================ */
.ref-about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .ref-about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.ref-about-images { position: relative; max-width: 500px; margin: 0 auto; padding: 2rem 2rem 2rem 0; }
.ref-dots-bg { position: absolute; bottom: -1rem; right: -1rem; width: 60%; height: 60%; background-image: radial-gradient(var(--gray-300) 2px, transparent 2px); background-size: 15px 15px; opacity: 0.5; z-index: 0; border-radius: 1.25rem; transition: transform 0.5s ease; }
.ref-img-main { position: relative; width: 85%; height: auto; border-radius: 1.25rem; box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.08); z-index: 1; transition: transform 0.5s ease, box-shadow 0.5s ease; }
.ref-img-overlap { position: absolute; top: 15%; right: -5%; width: 50%; height: auto; border-radius: 1.25rem; border: 8px solid var(--white); box-shadow: 0 15px 35px rgba(var(--black-rgb), 0.1); z-index: 2; transition: transform 0.5s ease, box-shadow 0.5s ease; }
.ref-about-images:hover .ref-img-main { transform: scale(1.02); box-shadow: 0 15px 40px rgba(var(--black-rgb), 0.12); }
.ref-about-images:hover .ref-img-overlap { transform: translate(-10px, -10px) scale(1.05); box-shadow: 0 20px 45px rgba(var(--black-rgb), 0.15); }
.ref-about-images:hover .ref-dots-bg { transform: translate(10px, 10px); }
.ref-about-images:hover .ref-experience-badge { transform: translateY(-10px) scale(1.05); }

.ref-experience-badge { position: absolute; bottom: 10%; left: -10%; z-index: 3; display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; border-radius: 0.75rem; box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.3); color: var(--white); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.badge-tail { position: absolute; bottom: -8px; right: 25px; width: 20px; height: 20px; background: inherit; clip-path: polygon(0 0, 100% 0, 0 100%); }
.badge-icon { font-size: 2rem; opacity: 0.9; }
.badge-text { display: flex; flex-direction: column; }
.badge-num { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; line-height: 1; margin-bottom: 0.25rem; }
.badge-label { font-size: 0.75rem; font-weight: 600; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.8; }
@media (max-width: 640px) {
    .ref-about-images { padding: 0 1rem 3rem 1rem; max-width: 400px; }
    .ref-img-main { width: 90%; margin: 0 auto; display: block; }
    .ref-img-overlap { right: -5%; width: 55%; top: -10%; }
    .ref-experience-badge { left: 0%; bottom: 0; padding: 1rem; }
    .ref-dots-bg { bottom: 2rem; right: -1rem; }
}

.ref-why-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .ref-why-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.rounded-img { border-radius: 1rem; width: 100%; box-shadow: 0 20px 40px rgba(var(--black-rgb), 0.5); }
.ref-why-lists { display: flex; flex-wrap: wrap; gap: 2rem; }
@media (min-width: 640px) { .ref-why-lists { gap: 4rem; } }
.ref-check-list { display: flex; flex-direction: column; gap: 1rem; }
.ref-check-list li { color: var(--white); font-size: 0.9375rem; font-weight: 500; display: flex; align-items: center; }
.list-icon-gold { color: var(--primary); margin-right: 0.75rem; font-size: 1.125rem; }

.ref-vision-grid { display: grid; gap: 3rem; align-items: center;  }
@media (min-width: 1024px) { .ref-vision-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.v-img-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; align-items: stretch; }
.v-img-1 { grid-row: 1 / span 2; width: 100%; height: 100%; object-fit: cover; border-radius: 0.75rem; }
.v-img-2, .v-img-3 { width: 100%; height: 100%; object-fit: cover; border-radius: 0.75rem; }

.ref-num-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem; }
.num-item { display: flex; align-items: flex-start; gap: 1.5rem; }
.num-box { width: 3.5rem; height: 3.5rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--white); border-radius: 0.5rem; }
.num-box-dark { background: var(--black); } 
.num-box-gold { background: var(--primary); } 
.num-title { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--black); margin-bottom: 0.5rem; }
.num-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }


/* ============================================================
   SERVICES PAGE: UPLOADED DESIGN RECREATION 
   ============================================================ */
.pt-xl { padding-top: 4rem; }
@media (min-width: 1024px) { .pt-xl { padding-top: 6rem; } }

.design-intro-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .design-intro-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.design-masonry { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; height: 100%; }
.dm-col-left { display: flex; flex-direction: column; gap: 1rem; }
.dm-img-small { width: 100%; height: 100%; object-fit: cover; border-radius: 1.25rem; box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.05); transition: transform 0.4s ease; }
.dm-img-small:hover { transform: scale(1.03); box-shadow: 0 15px 40px rgba(var(--black-rgb), 0.1); }
.dm-col-right { height: 100%; }
.dm-img-tall-wrap { position: relative; height: 100%; border-radius: 1.25rem; overflow: hidden; box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.08); }
.dm-img-tall { width: 100%; height: 100%; min-height: 416px; object-fit: cover; transition: transform 0.6s ease; }
.dm-img-tall-wrap:hover .dm-img-tall { transform: scale(1.05); }

.design-check-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.design-check-item { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1rem; border-radius: 1rem; transition: background 0.3s ease; }
.design-check-item:hover { background: var(--gray-50); box-shadow: inset 0 0 0 1px rgba(var(--primary-rgb), 0.2); }
.d-check-icon { width: 3rem; height: 3rem; flex-shrink: 0; background: rgba(var(--primary-rgb), 0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; transition: all 0.3s ease; }
.design-check-item:hover .d-check-icon { background: var(--primary); color: var(--white); transform: scale(1.1); box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3); }
.d-check-title { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--black); margin-bottom: 0.25rem; transition: color 0.3s ease; }
.design-check-item:hover .d-check-title { color: var(--primary-dark); }
.d-check-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

.design-expertise-section { position: relative; padding: 6rem 0 12rem; background: var(--black); margin-bottom: 1rem; }
.de-bg-image { position: absolute; inset: 0; background-image: url('goldherobanner2.webp'); background-size: cover; background-position: center; background-attachment: fixed; opacity: 0.4; z-index: 0; }
.de-bg-overlay { position: absolute; inset: 0; background: var(--primary-dark); z-index: 1; }
.de-header { position: relative; z-index: 10; margin-bottom: 4rem; }
.de-cards-wrap { position: relative; z-index: 20; display: grid; gap: 6rem; }
@media (min-width: 768px) { .de-cards-wrap { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.de-card { position: relative; }
.de-card-img { width: 100%; height: 350px; object-fit: cover; border-radius: 1.25rem; box-shadow: 0 20px 40px rgba(var(--black-rgb), 0.5); }
.de-card-box { position: absolute; bottom: -4rem; right: 1.5rem; width: 85%; background: var(--black-light); border: 1px solid rgba(var(--primary-rgb), 0.15); border-radius: 1.25rem; padding: 2rem; box-shadow: 0 15px 40px rgba(var(--black-rgb), 0.6); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.de-card:hover .de-card-box { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.2); }
.de-box-icon { width: 3rem; height: 3rem; background: rgba(var(--white-rgb), 0.05); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; color: var(--primary-light); font-size: 1.25rem; margin-bottom: 1.25rem; transition: all 0.3s ease; }
.de-card:hover .de-box-icon { background: var(--primary); color: var(--white); transform: scale(1.1); }
.de-box-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.de-box-desc { font-size: 0.875rem; color: var(--gray-400); line-height: 1.6; }
@media (max-width: 767px) {
    .design-expertise-section { padding-bottom: 8rem; margin-bottom: 6rem; }
    .de-card-box { bottom: -3rem; right: 5%; width: 90%; padding: 1.5rem; }
}

.design-services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .design-services-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .design-services-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.ds-card { background: var(--white); border-radius: 1.5rem; padding: 2.5rem 2rem; box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.04); border: 1px solid var(--gray-100); display: flex; flex-direction: column; transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease; will-change: transform; backface-visibility: hidden; transform: translateZ(0); }
.ds-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(var(--primary-rgb), 0.15); border-color: rgba(var(--primary-rgb), 0.3); }
.ds-icon-wrap { width: 4rem; height: 4rem; background: var(--gray-50); border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: all 0.4s ease; }
.ds-icon { font-size: 1.75rem; color: var(--primary); transition: transform 0.4s ease; }
.ds-card:hover .ds-icon-wrap { background: var(--primary); }
.ds-card:hover .ds-icon { color: var(--white); transform: scale(1.1); }
.ds-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--black); margin-bottom: 1rem; transition: color 0.3s ease; }
.ds-card:hover .ds-title { color: var(--primary); }
.ds-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; flex-grow: 1; transition: color 0.3s ease; }
.ds-card:hover .ds-desc { color: var(--gray-800); }


/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
#back-to-top {
    position: fixed;
    bottom: 17rem;
    right: 2rem;
    width: 3.5rem;
    height: 4.5rem; 
    background: rgba(var(--black-rgb), 0.1);
    border-radius: 2rem; 
    box-shadow: 0 10px 25px rgba(var(--black-rgb), 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(var(--primary-rgb), 0.05);
    cursor: pointer;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    box-shadow: 0 15px 35px rgba(var(--black-rgb), 0.15);
    transform: translateY(-5px);
    border-color: rgba(var(--primary-rgb), 0.3);
}

/* Tightly stacked chevrons */
#back-to-top i {
    font-size: 1.25rem;
    line-height: 0.4;
    display: block;
    margin: -1px 0;
    transition: color 0.3s;
}

#back-to-top i:nth-child(1) { color: var(--gray-600); opacity: 1; }
#back-to-top i:nth-child(2) { color: var(--gray-500); opacity: 0.6; }
#back-to-top i:nth-child(3) { color: var(--gray-400); opacity: 0.4; }

#back-to-top:hover i:nth-child(1),
#back-to-top:hover i:nth-child(2),
#back-to-top:hover i:nth-child(3) {
    color: var(--primary);
    opacity: 1;
}

@media (max-width: 640px) {
    #back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3rem;
        height: 4rem;
    }
}