/* --- Variables & Reset --- */
:root {
  --primary: #1B7768;    
  --primary-dark: #145a4e;
  --accent: #E86800;     
  --accent-hover: #cc5b00;
  --green-bright: #25D366;
  --text-main: #141414;  
  --text-light: #555;
  --bg-light: #F6F6F6;   
  --white: #ffffff;
  --footer-bg: #111111;
  --font-family: 'Inter', sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 25px rgba(27, 119, 104, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.5rem; }
p { color: var(--text-light); font-size: 1rem; }

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-primary { background: var(--primary); color: white; }
.text-white { color: white; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 24px; border-radius: 6px; font-weight: 600; font-size: 0.95rem; 
  cursor: pointer; border: none; transition: all 0.2s ease;
}
.btn.accent { background: var(--accent); color: var(--white); }
.btn.accent:hover { background: var(--accent-hover); }
.btn.outline-nav {
  background: white; border: 1.5px solid var(--primary); color: var(--primary);
  display: flex; gap: 8px;
}
.btn.green-bright { background: var(--green-bright); color: white; }
.btn.dark-green { background: var(--primary); color: white; }
.btn.large { padding: 14px 28px; font-size: 1rem; }
.btn.full-width { width: 100%; flex: 1; }
.btn.icon-only { width: 44px; padding: 0; border: 1px solid #ddd; background: white; }
.btn.outline-green { border: 1px solid #e0e0e0; color: #25D366; background: white; width: 44px; padding: 0; }

/* Floating Buttons */
.floating-actions { position: fixed; bottom: 30px; right: 30px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.float-btn {
  width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: transform 0.2s;
}
.float-btn.whatsapp { background: #25D366; }
.float-btn.call { background: var(--primary); }

/* --- Navbar (Updated) --- */
.navbar { padding: 12px 0; background: var(--white); box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.4rem; font-weight: 800; color: var(--text-main); display: flex; align-items: center; gap: 10px; }
.logo-icon { 
  width: 32px; height: 32px; background: var(--primary); color: white; border-radius: 6px; 
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.desktop-nav { display: flex; gap: 30px; }
.desktop-nav a { font-weight: 500; font-size: 0.95rem; color: var(--text-light); }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--primary); }
.nav-actions { display: flex; gap: 15px; }

/* --- Hero Section --- */
.hero {
  background: linear-gradient(rgba(20, 80, 70, 0.85), rgba(27, 119, 104, 0.7)), url('../images/hero-bg.jpg'); 
  background-size: cover; background-position: center;
  padding: 80px 0 100px 0; color: var(--white); text-align: center;
}
.hero p { color: rgba(255,255,255,0.9); margin-bottom: 30px; }
.hero .pill { background: rgba(255,255,255,0.2); padding: 4px 12px; border-radius: 20px; font-size: 0.85rem; margin-bottom: 1rem; display: inline-block; }
.highlight { color: #FFD166; }

/* Search Box */
.search-box {
  background: var(--white); padding: 8px; border-radius: 50px;
  display: inline-flex; align-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  max-width: 800px; width: 100%; margin-bottom: 30px;
}
.input-group { display: flex; align-items: center; padding: 0 15px; flex: 1; }
.search-box select { border: none; width: 100%; font-size: 1rem; outline: none; background: transparent; }
.divider { width: 1px; height: 30px; background: #ddd; }
.search-btn { border-radius: 40px; padding: 12px 30px; }

/* View All Jobs Hero Btn */
.hero-cta-group { margin-bottom: 40px; }
.view-all-hero-btn {
  display: inline-block;
  color: white;
  font-weight: 600;
  text-decoration: underline;
  background: rgba(255,255,255,0.15);
  padding: 12px 30px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.3);
  transition: 0.3s;
}
.view-all-hero-btn:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

.trust-stats { display: flex; justify-content: center; gap: 40px; }
.stat-item { display: flex; flex-direction: column; }
.stat-item strong { font-size: 1.5rem; color: white; }
.stat-item span { opacity: 0.8; }

/* --- Categories (Updated Grid) --- */
.section-header { text-align: center; margin-bottom: 40px; }
.categories-grid-new {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.cat-card {
  background: white; border-radius: 12px; padding: 25px 15px; text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02); border: 1px solid #eee;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.cat-icon {
  width: 50px; height: 50px; background: #EAF7F5; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--primary);
  margin-bottom: 5px;
}
.cat-card h4 { font-size: 0.95rem; margin: 0; color: #333; }
.cat-card span { font-size: 0.8rem; color: #888; }

/* --- Jobs Grid --- */
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.job-card {
  background: var(--white); padding: 24px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.03);
}
.card-top { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.85rem; color: #888; }
.verified-badge { background: #EAF7F5; color: var(--primary); padding: 4px 8px; border-radius: 4px; display: flex; align-items: center; gap: 4px; font-weight: 700; }
.job-details { margin: 15px 0; display: flex; flex-direction: column; gap: 8px; }
.detail-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: #444; }
.job-actions { display: flex; gap: 10px; }
.center-cta { text-align: center; margin-top: 30px; }
.view-all { color: var(--primary); font-weight: 600; border-bottom: 1px solid; }

/* --- Process Section (5 Steps Horizontal) --- */
.badge-title { color: var(--primary); font-weight: 700; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 10px; }
.process-wrapper { position: relative; margin-top: 40px; padding: 0 20px; }
.process-line {
  position: absolute; top: 35px; left: 50px; right: 50px; height: 1px; background: #ddd; z-index: 0;
}
.process-grid { 
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; text-align: center; position: relative; z-index: 1; 
}
.step-icon-box {
  width: 70px; height: 70px; background: #EAF7F5; border-radius: 12px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center; position: relative; border: 2px solid white;
}
.step-number {
  position: absolute; top: -10px; right: -10px; background: var(--accent); color: white;
  width: 24px; height: 24px; border-radius: 50%; font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; border: 2px solid white;
}
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: #666; line-height: 1.4; }

/* --- UPDATED TRUST SECTION --- */
.trust-section-padding { padding: 100px 0; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.15); color: white;
  padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.2);
}
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.trust-card {
  background: rgba(255,255,255,0.1); padding: 20px; border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease;
}
.trust-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.15); }
.trust-icon { 
  width: 50px; height: 50px; background: rgba(255,255,255,0.1); color: white; 
  border-radius: 12px; display: flex; align-items: center; justify-content: center; 
  margin-bottom: 20px;
}
.trust-card h4 { font-size: 1.1rem; margin-bottom: 8px; color: white; }
.trust-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.5; margin: 0; }
.badge-title.light { color: #80dfd0; }

/* --- Testimonials --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card {
  background: white; border: 1px solid #eee; padding: 30px; border-radius: var(--radius-lg);
}
.stars { color: #FFC107; margin-bottom: 15px; }
.user-profile { display: flex; align-items: center; gap: 12px; }
.avatar { 
  width: 40px; height: 40px; background: #333; color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.avatar.blue { background: #3B82F6; }
.avatar.green { background: var(--primary); }

/* --- CTA Section (White Card) --- */
.cta-card-white {
  background: white; border-radius: 20px; padding: 50px; text-align: center;
  max-width: 900px; margin: 0 auto; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.hiring-pill {
  display: inline-block; background: #FFF4E5; color: var(--accent);
  padding: 6px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; margin-bottom: 20px;
}
.cta-card-white h2 { font-size: 2.2rem; margin-bottom: 10px; }
.cta-sub { color: #666; margin-bottom: 30px; }
.cta-actions { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; flex-wrap: wrap; }
.cta-footer { 
  display: flex; justify-content: center; gap: 20px; color: #666; font-size: 0.9rem;
}

/* --- Dark Footer (Updated) --- */
.footer-dark { background: var(--footer-bg); color: #999; padding: 70px 0 20px 0; font-size: 0.9rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.logo.white { color: white; }
.logo-icon.white-bg { background: var(--primary); color: white; }
.footer-brand p { margin: 20px 0; line-height: 1.5; font-size: 0.9rem; }
.social-icons { display: flex; gap: 10px; }
.social-icons a { 
  width: 36px; height: 36px; background: #222; color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.footer-col h4 { color: white; margin-bottom: 25px; font-size: 1rem; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a:hover { color: var(--primary); }

.contact-item { display: flex; gap: 12px; margin-bottom: 20px; align-items: flex-start; }
.contact-item strong { display: block; color: white; }
.contact-item span { font-size: 0.85rem; }

.footer-bottom { 
  border-top: 1px solid #222; pt: 25px; display: flex; justify-content: space-between; 
}
.links { display: flex; gap: 20px; }

/* COntact html */
/* --- CONTACT PAGE STYLES --- */


/* Branded Dropdown Styling */
.search-box select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background: transparent;
  border: none;
  outline: none;

  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #0f3d37;

  width: 100%;
  padding: 14px 38px 14px 12px;
  cursor: pointer;
}

/* Dropdown container look */
.search-box .input-group {
  position: relative;
  display: flex;
  align-items: center;
}

/* Custom arrow */
.search-box .input-group::after {
  content: "▾";
  position: absolute;
  right: 14px;
  font-size: 14px;
  color: #1B7768;
  pointer-events: none;
}

/* Dropdown list (limited control, browser dependent) */
.search-box select option {
  font-size: 14px;
  padding: 10px;
}

/* Hover + focus */
.search-box select:focus {
  outline: none;
}

.search-box select:hover {
  color: #1B7768;
}

.brand-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #0f3d37;
  width: 100%;
  padding: 14px 38px 14px 12px;
  cursor: pointer;
}



/* 1. Fix: Set Body to Light Grey so White Cards Pop */
body {
  background-color: var(--bg-light); /* #F6F6F6 */
}

/* Contact Header */
.contact-header {
  background-color: var(--primary);
  color: white;
  text-align: center;
  padding: 80px 20px 100px 20px; /* Increased padding for better look */
}

.contact-header h1 { 
  font-size: 2.5rem; 
  margin-bottom: 15px; 
  color: white; 
}

/* 2. Fix: Force the paragraph text to be White */
.contact-header p { 
  color: rgba(255, 255, 255, 0.9) !important; /* Overrides global dark grey */
  font-size: 1.1rem; 
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Methods Grid (Floating) */
.contact-methods-section {
  margin-top: -50px; /* Moves cards up to overlap green header */
  padding-bottom: 60px;
  position: relative;
  z-index: 10;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.method-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Stronger shadow for pop */
  text-align: center;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 15px;
  transition: transform 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
}

.method-icon {
  width: 60px; height: 60px;
  background: #EAF7F5; 
  color: var(--primary);
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin-bottom: 5px;
}

.method-card h3 { font-size: 1.2rem; margin: 0; color: var(--text-main); }
.method-card p { font-size: 0.95rem; color: #666; margin-bottom: 10px; }

.btn.outline-green-text {
  border: 1px solid var(--primary); 
  color: var(--primary); 
  background: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  width: 100%;
}
.btn.dark-green.full-width { width: 100%; }
.btn.green-bright.full-width { width: 100%; }

/* Contact Layout (Form + Sidebar) */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Contact Form */
.contact-form-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-form-card h3 { font-size: 1.6rem; margin-bottom: 5px; color: var(--text-main); }
.form-sub { margin-bottom: 30px; color: #666; font-size: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; color: #333;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  outline: none; transition: 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); 
  box-shadow: 0 0 0 3px rgba(27, 119, 104, 0.1);
}

/* Contact Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 25px; }

/* Office Info Card */
.office-card {
  background: white; 
  padding: 35px; 
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.office-card h3 { font-size: 1.3rem; margin-bottom: 25px; color: var(--text-main); }

.info-item { display: flex; gap: 15px; margin-bottom: 25px; align-items: flex-start; }
.info-icon {
  width: 44px; height: 44px; 
  background: #EAF7F5; 
  color: var(--primary);
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0;
}
.info-item strong { display: block; font-size: 1rem; margin-bottom: 4px; color: #333; }
.info-item p { margin: 0; font-size: 0.95rem; color: #666; line-height: 1.6; }

/* Map Card */
.map-card {
  background: #E5E7EB;
  border-radius: var(--radius-lg);
  height: 250px;
  display: flex; flex-direction: column; 
  align-items: center; justify-content: center;
  text-align: center; color: #888; gap: 15px;
  border: 2px dashed #ccc;
}

/* =========================================
   UNIVERSAL HEADER STYLES (Copy to style.css)
   ========================================= */

/* 1. Navbar Container - Fixed Height for Consistency */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    height: 80px; /* Locks the header height */
    width: 100%;
    position: relative; /* Essential for mobile menu positioning */
    z-index: 1000;
}

.navbar .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Fills the 80px height */
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px; /* Consistent side padding */
}

/* 2. Logo - Locked Size */
.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 50px; /* FIXED HEIGHT: Changes here apply everywhere */
    width: auto;
    object-fit: contain;
    display: block;
}

/* 3. Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 30px;
    height: 100%;
    align-items: center;
}

.desktop-nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #1B7768; /* Brand Green */
    font-weight: 700;
}

/* 4. Right Side Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Desktop Call Button */
.btn-nav-call {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1B7768;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #1B7768;
    padding: 8px 16px;
    border-radius: 6px;
    transition: 0.3s;
    white-space: nowrap;
}

/* Primary "Apply/Post Job" Button */
.btn-nav-primary {
    background-color: #e86800; /* Orange Accent */
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 6px;
    white-space: nowrap;
    transition: background 0.3s;
}

.btn-nav-primary:hover {
    background-color: #d05d00;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none; /* Hidden on Desktop */
    background: none;
    border: none;
    cursor: pointer;
    color: #1B7768;
    padding: 0;
}

/* 5. Mobile Menu Dropdown */
.mobile-nav {
    display: none;
    position: absolute;
    top: 80px; /* Exact height of navbar */
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f9f9f9;
}

/* =========================================
   RESPONSIVE RULES
   ========================================= */
@media (max-width: 900px) {
    .desktop-nav { display: none; }
    .desktop-only-phone { display: none !important; }
    .menu-toggle { display: block; }
    
    .navbar .nav-content {
        padding: 0 15px; /* Slightly tighter padding on mobile */
    }
    
    .logo img {
        height: 42px; /* Slightly smaller logo on mobile if desired */
    }
}

/* Responsive */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-header { padding: 60px 20px 80px 20px; }
}



/* Responsive */
@media (max-width: 992px) {
  .categories-grid-new { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .process-line { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .categories-grid-new { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }
  .nav-actions { display: none; } 
  .footer-top { grid-template-columns: 1fr; }
  .search-box { flex-direction: column; padding: 20px; border-radius: 16px; }
  .divider { display: none; }
}