@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0a2540;
  --secondary: #635bff;
  --accent: #ff6900;
  --accent-light: rgba(255, 105, 0, 0.1);
  --background: #f6f9fc;
  --surface: #ffffff;
  --text-main: #425466;
  --text-dark: #0a2540;
  --text-light: #8898aa;
  
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 15px 35px rgba(50,50,93,0.1), 0 5px 15px rgba(0,0,0,0.07);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background-color: var(--background);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -1.5px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -1px; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Layout Elements */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Redesigned Floating Navbar */
header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 100px;
  padding: 0 15px;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 10px;
}

.logo img {
  height: 35px;
  object-fit: contain;
  margin-top: 5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-left: 40px;
}

.nav-links {
  display: flex;
  gap: 15px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
  padding: 8px 18px;
  border-radius: 100px;
  position: relative;
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--secondary);
  background: rgba(99, 91, 255, 0.08);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  gap: 8px;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--secondary);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(99, 91, 255, 0.39);
}

.btn-primary:hover {
  background: #5046e5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 91, 255, 0.23);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 1px solid var(--secondary);
}

.btn-outline:hover {
  background: rgba(99, 91, 255, 0.05);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(255, 105, 0, 0.39);
}

.btn-accent:hover {
  background: #e65c00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 105, 0, 0.23);
  color: white;
}

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: rgba(99, 91, 255, 0.1);
  border: none;
  font-size: 1.2rem;
  color: var(--secondary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: url('hero_bg_1778874348856.png') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(246, 249, 252, 0.95) 0%, rgba(246, 249, 252, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero h1 {
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--text-dark), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  z-index: 1;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Features/Steps */
.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  margin-bottom: 15px;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.02);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 32px;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.25rem;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, var(--background) 0%, #ffffff 100%);
  padding: 120px 0;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--surface);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.02);
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 3rem;
  color: var(--accent-light);
  opacity: 0.5;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 30px;
  line-height: 1.7;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info h4 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
}

.author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* CTA / App Section */
.cta-section {
  padding: 100px 20px;
  background: var(--background);
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  background: url('cta_bg_1778874666159.png') center/cover no-repeat;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px rgba(10, 37, 64, 0.2);
}

.cta-overlay {
  background: linear-gradient(90deg, rgba(10, 37, 64, 0.95) 0%, rgba(10, 37, 64, 0.6) 100%);
  padding: 80px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.cta-content {
  max-width: 500px;
  color: white;
  z-index: 2;
  position: relative;
}

.cta-content h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
}

.cta-badges {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

/* Featured Locations/Jobs */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.location-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: block;
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 37, 64, 0.9) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.location-overlay h3 {
  color: white;
  margin: 0;
  font-size: 1.5rem;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.location-card:hover img {
  transform: scale(1.05);
}

/* Stats Section */
.stats-section {
  background: var(--primary);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.stats-section h2, .stats-section h3 {
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
  margin-top: 50px;
}

.stat-item h3 {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background: #031424;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 992px) {
  .hero {
    padding: 180px 0 80px;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-image {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  header {
    border-radius: 16px;
    top: 10px;
    padding: 10px;
  }
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav-menu.active {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--surface);
    padding: 20px;
    flex-direction: column;
    display: flex;
    box-shadow: var(--shadow-lg);
    border-radius: 16px;
    margin-left: 0;
  }
  .nav-menu.active .nav-links, .nav-menu.active .nav-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 15px;
    gap: 15px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-overlay {
    padding: 40px 30px;
    text-align: center;
    justify-content: center;
  }
}

/* Page Headers */
.page-header {
  padding: 180px 0 80px;
  background: var(--primary);
  color: white;
  text-align: center;
  position: relative;
  background-image: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.85));
  background-size: cover;
  background-position: center;
}

.page-header.about-bg {
    background-image: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.85)), url('about_bg_1778874366486.png');
}

.page-header.solutions-bg {
    background-image: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.85)), url('solutions_bg_1778874381287.png');
}

.page-header h1 {
  color: white;
  margin-bottom: 20px;
}

.page-header p {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Inner Page Content Layout */
.content-section {
  padding: 100px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-image {
  position: relative;
}

.content-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.content-text h2 {
  margin-bottom: 20px;
}

.content-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
