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

/* Core Styling variables */
:root {
  --primary: #10B981;
  --primary-glow: rgba(16, 185, 129, 0.15);
  --primary-hover: #059669;
  --primary-light: #E6F7F0;
  
  /* Dark Theme Palette */
  --bg-dark-deep: #090D0B;
  --bg-dark-card: #121815;
  --bg-dark-hover: #1A221E;
  --text-dark-main: #F8FAF9;
  --text-dark-muted: #9EABA5;
  --border-dark-subtle: #1C2621;

  /* Light Theme Palette */
  --bg-light-deep: #FFFFFF;
  --bg-light-card: #F3F7F5;
  --bg-light-hover: #E8EFEA;
  --text-light-main: #0B0E0C;
  --text-light-muted: #5C6762;
  --border-light-subtle: #E2EAE6;

  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Global resets & scrollbar */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light-deep);
  color: var(--text-light-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light-deep);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* SECTION CONTROLS */
section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-dark-deep);
  color: var(--text-dark-main);
}

.section-dark ::-webkit-scrollbar-track {
  background: var(--bg-dark-deep);
}
.section-dark ::-webkit-scrollbar-thumb {
  background: var(--border-dark-subtle);
}

/* HEADER & NAVIGATION */
.navbar-custom {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light-subtle);
  transition: all 0.3s ease;
  z-index: 1050;
}

.navbar-custom.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar-custom .navbar-brand {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.5px;
  color: var(--text-light-main);
}

.navbar-custom .navbar-brand span {
  color: var(--primary);
}

.navbar-custom .nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light-muted);
  padding: 8px 16px !important;
  transition: color 0.2s ease;
}

.navbar-custom .nav-link:hover, 
.navbar-custom .nav-link.active {
  color: var(--primary);
}

/* Custom Nav CTA Button */
.nav-cta-btn {
  background: var(--text-light-main);
  color: var(--bg-light-deep) !important;
  border-radius: 6px;
  padding: 10px 20px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: all 0.2s ease !important;
}

.nav-cta-btn:hover {
  background: var(--primary);
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

/* TYPOGRAPHY */
.tagline-custom {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.heading-display {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

@media (max-width: 768px) {
  .heading-display {
    font-size: 2.5rem;
  }
}

.heading-section {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.text-muted-custom {
  color: var(--text-light-muted);
  font-weight: 300;
  line-height: 1.8;
}

.section-dark .text-muted-custom {
  color: var(--text-dark-muted);
}

/* HERO SECTION */
#home {
  padding-top: 160px;
  padding-bottom: 120px;
  background: radial-gradient(circle at 80% 20%, var(--primary-light) 0%, #FFFFFF 60%);
}

.hero-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light-subtle);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-img-wrapper:hover {
  transform: translateY(-5px) scale(1.01);
}

.hero-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-glow-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* BUTTONS */
.btn-primary-custom {
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 6px;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
}

.btn-primary-custom:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
  color: #FFFFFF;
}

.btn-outline-custom {
  background: transparent;
  color: var(--text-light-main);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 6px;
  border: 2px solid var(--text-light-main);
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: var(--text-light-main);
  color: var(--bg-light-deep);
  transform: translateY(-2px);
}

/* FOR DARK SECTION BUTTONS */
.section-dark .btn-outline-custom {
  color: var(--text-dark-main);
  border-color: var(--text-dark-main);
}
.section-dark .btn-outline-custom:hover {
  background: var(--text-dark-main);
  color: var(--bg-dark-deep);
}

/* PLATFORM WORKFLOW SCREEN */
.showcase-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark-subtle);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.showcase-tab {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tab-link {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-dark-muted);
  text-align: left;
  padding: 16px 24px;
  border-radius: 8px;
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-link:hover {
  color: var(--text-dark-main);
  background: rgba(255, 255, 255, 0.02);
}

.tab-link.active {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
  color: var(--primary);
  font-weight: 600;
  box-shadow: inset 3px 0 0 var(--primary);
}

.showcase-media-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-dark-subtle);
}

.showcase-media-wrapper img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.showcase-content-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* CAPABILITIES & SERVICES ROW */
.capability-card {
  background: var(--bg-light-card);
  border: 1px solid var(--border-light-subtle);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-card:hover {
  transform: translateY(-8px);
  background: #FFFFFF;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--primary);
}

.capability-icon-box {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.capability-card:hover .capability-icon-box {
  background: var(--primary);
  color: #FFFFFF;
}

.capability-title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-light-main);
}

.capability-desc {
  font-size: 14px;
  color: var(--text-light-muted);
  line-height: 1.6;
  margin: 0;
}

/* ELEGANT MEDIA TIMELINE & WORKFLOW */
.media-workflow-section {
  background: radial-gradient(circle at 10% 80%, rgba(16, 185, 129, 0.05) 0%, #FFFFFF 50%);
}

.workflow-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.workflow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 48px;
  bottom: -32px;
  width: 2px;
  background: var(--border-light-subtle);
}

.workflow-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  z-index: 2;
}

.workflow-content {
  padding-top: 6px;
}

.workflow-content h4 {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* INDUSTRIES/SECTORS CARDS */
.sector-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  border: 1px solid var(--border-light-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.sector-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sector-card:hover .sector-img {
  transform: scale(1.08);
}

.sector-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 13, 11, 0) 40%, rgba(9, 13, 11, 0.9) 95%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #FFFFFF;
}

.sector-title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.sector-desc {
  font-size: 14px;
  color: #CBD5E1;
  opacity: 0.9;
  line-height: 1.5;
  margin: 0;
}

/* FORM STYLING & CONTACT */
.contact-form-container {
  background: #FFFFFF;
  border: 1px solid var(--border-light-subtle);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.field-group {
  margin-bottom: 24px;
}

.field-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.form-input-custom {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--border-light-subtle);
  color: var(--text-light-main);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 18px;
  border-radius: 6px;
  outline: none;
  transition: all 0.2s ease;
}

.form-input-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-input-custom::placeholder {
  color: #94A3B8;
}

.info-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.info-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* MINIMAL DESIGN MAP CARD */
.map-wrapper-custom {
  width: 100%;
  height: 250px;
  background: var(--bg-light-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light-subtle);
}

/* FOOTER STYLING */
.footer-custom {
  background: var(--bg-dark-deep);
  color: var(--text-dark-muted);
  border-top: 1px solid var(--border-dark-subtle);
  padding: 80px 0 40px 0;
  font-size: 14px;
}

.footer-logo {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-dark-main);
  text-decoration: none;
}

.footer-logo span {
  color: var(--primary);
}

.footer-link {
  color: var(--text-dark-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--primary);
}

/* TOAST BANNER */
.toast-banner-custom {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: var(--bg-dark-deep);
  color: var(--text-dark-main);
  border: 1px solid var(--border-dark-subtle);
  padding: 18px 28px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  z-index: 10000;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-banner-custom.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* Animations and reveals */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}
