/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* North Star Business Solutions Color System - Based on Logo */
  --primary-blue: #0066cc;
  --primary-dark-blue: #004c99;
  --secondary-blue: #3399ff;
  --accent-silver: #a8b8c8;
  --accent-gray: #6c7a89;
  --dark: #1a1a1a;
  --dark-gray: #2c2c2c;

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--secondary-blue) 100%
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--accent-silver) 0%,
    var(--accent-gray) 100%
  );
  --gradient-overlay: linear-gradient(
    135deg,
    rgba(0, 102, 204, 0.9) 0%,
    rgba(0, 76, 153, 0.9) 100%
  );
  --gradient-hero: linear-gradient(
    135deg,
    rgba(0, 102, 204, 0.95) 0%,
    rgba(0, 76, 153, 0.95) 100%
  );

  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f5f7fa;
  --cream: #f8f9fb;
  --gray: #6c757d;
  --border-gray: #e1e8ed;
  --black: #1a1a1a;

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-secondary: "ADLaM Display", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 102, 204, 0.08);
  --shadow-md: 0 4px 6px rgba(0, 102, 204, 0.12);
  --shadow-lg: 0 10px 25px rgba(0, 102, 204, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 102, 204, 0.2);

  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* Base Typography */
body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}
h2 {
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-bold);
  color: var(--dark);
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
}

/* Container */
.container {
  /* max-width: 1200px; */
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  /* background: rgba(255, 255, 255); */
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition-normal);
  border-bottom: 1px solid var(--border-gray);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.nav-container {
  /* max-width: 1200px; */
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo .logo-image {
  height: 70px;
  width: auto;
}

.nav-logo h2 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: var(--font-weight-extrabold);
  font-size: 1.5rem;
  letter-spacing: -0.025em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
}

.nav-link {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: var(--font-weight-medium);
  transition: var(--transition-fast);
  position: relative;
  padding: var(--spacing-xs) 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Mobile Navigation */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 3px;
  transition: var(--transition-fast);
}

/* Hero Section - Modern */
.hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: var(--gradient-primary); */
  /* background-color: rgba(27, 3, 82, 0.5); */
  background-color: #1a1a1a;
  opacity: 0.5;
  z-index: 1;
}

.hero-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-xxl) 0;
}

.hero-text-area {
  color: var(--white);
  max-width: 900px;
  text-align: center;
  margin-top: -198px !important;
}

.hero-badge {
  /* display: inline-block; */
  display: none;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-md);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-main-title {
  font-family: var(--font-secondary);
  font-size: clamp(2.5rem, 6vw, 1.5rem);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: var(--font-weight-normal);
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
  line-height: 1.7;
}

.hero-action-group {
  /* display: flex; */
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  background: var(--white);
  color: var(--primary-blue);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: var(--font-weight-semibold);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-lg);
  margin-bottom: 12px;
  margin-right: 5px;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-hero-secondary {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: var(--font-weight-semibold);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: var(--transition-normal);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.hero-visual-element {
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-xl);
}

.card-metric {
  text-align: center;
  color: var(--white);
}

.metric-number {
  display: block;
  font-size: 2.5rem;
  font-weight: var(--font-weight-extrabold);
  margin-bottom: var(--spacing-xs);
}

.metric-label {
  display: block;
  font-size: 1rem;
  opacity: 0.9;
}

.hero-scroll-prompt {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator-modern {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator-modern::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
  0%,
  100% {
    top: 8px;
    opacity: 1;
  }
  50% {
    top: 20px;
    opacity: 0.5;
  }
}

/* Section Styling */
section {
  padding: var(--spacing-xxl) 0;
}

.section-subtitle {
  color: var(--primary-blue);
  font-weight: var(--font-weight-semibold);
  font-size: 1.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-secondary);
}

/* Introduction Section */
.intro-section {
  background: var(--white);
}

.intro-content {
  text-align: center;
  width: 100%;
}

.intro-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--dark);
  margin-bottom: var(--spacing-md);
}

.intro-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

/* Services Section */
.services-modern {
  background: var(--light-gray);
}

.services-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.services-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--dark);
  margin-bottom: var(--spacing-md);
}

.services-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.services-layout {
  display: grid;
  gap: var(--spacing-xl);
}

.service-highlight {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.service-highlight:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.service-image {
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
  transition: var(--transition-slow);
}

.service-highlight:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-content h3 {
  font-size: 1.75rem;
  font-weight: var(--font-weight-bold);
  color: var(--dark);
  margin-bottom: var(--spacing-md);
}

.service-content p {
  color: var(--gray);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.service-features {
  display: flex;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
}

.feature-tag {
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
}

/* Value Section */
.value-section {
  background: var(--white);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.value-card {
  background: var(--light-gray);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.value-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-5px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  color: var(--dark);
  margin-bottom: var(--spacing-md);
}

.value-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* About Section */
.about-section {
  background: var(--light-gray);
}

.about-content {
  text-align: center;
  width: 100%;
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--dark);
  margin-bottom: var(--spacing-md);
}

.about-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.highlight-item {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary-blue);
}

.highlight-item strong {
  display: block;
  color: var(--primary-blue);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
}

/* Why Section */
.why-section {
  background: var(--white);
}

.why-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.why-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--dark);
  margin-bottom: var(--spacing-md);
}

.why-tagline {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.why-card {
  background: var(--light-gray);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-primary);
  transition: var(--transition-normal);
}

.why-card:hover::before {
  height: 100%;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.why-number {
  font-size: 2.5rem;
  font-weight: var(--font-weight-extrabold);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-md);
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  color: var(--dark);
  margin-bottom: var(--spacing-md);
}

.why-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* Team Section */
.team-section {
  background: var(--light-gray);
}

.team-section-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.team-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
  margin-bottom: var(--spacing-xxl);
}

.team-points {
  display: grid;
  grid-template-columns: repeat(3, 4fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xxl);
}

.team-image-side img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.team-content-side h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--dark);
  margin-bottom: var(--spacing-md);
}

.team-content-side > p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: var(--spacing-xl);
  line-height: 1.8;
}

.team-points {
  display: grid;
  gap: var(--spacing-lg);
}

.team-point {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary-blue);
}

.team-point h4 {
  color: var(--dark);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
}

.team-point p {
  color: var(--gray);
  line-height: 1.7;
}

/* CTA Section */
.cta-modern {
  background: var(--gradient-primary);
  color: var(--white);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
}

.btn-cta-primary {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  background: var(--white);
  color: var(--primary-blue);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: var(--font-weight-semibold);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-lg);
  font-size: 1.1rem;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.cta-contact span {
  opacity: 0.9;
}

/* Footer */
.footer-modern {
  /* background: var(--dark); */
  background: #333333;
  color: var(--white);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--spacing-xxl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand .footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: var(--spacing-md);
  /* background: white; */
  /* padding: 0.5rem; */
  border-radius: var(--radius-md);
}

.footer-brand p {
  opacity: 0.8;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-semibold);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-section a:hover {
  color: var(--secondary-blue);
}

.footer-contact p {
  margin-bottom: var(--spacing-xs);
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  text-align: center;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-lg) 0;
  }

  .about-highlights,
  .team-points {
    grid-template-columns: 1fr;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .service-highlight {
    grid-template-columns: 1fr;
  }

  .team-layout {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .hero-text-area {
    margin-top: 0 !important;
  }

  .hero-text-area h2 {
    display: none;
  }

  .hero-badge {
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .hero-action-group {
    flex-direction: column;
  }

  .hero-visual-element {
    display: none;
  }
}

.powered {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px; /* adjust as needed */
  color: #00a2b1; /* normal text color */
  text-decoration: none;
}

/* new heros */

/* Hero Section - Modern */
.heros-modern {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  padding-top: 140px;
  overflow: hidden;
}

.heros-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.heros-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heros-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: var(--gradient-primary); */
  /* background-color: rgba(27, 3, 82, 0.5); */
  background-color: #1a1a1a;
  opacity: 0.5;
  z-index: 1;
}

.heros-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-xxl) 0;
}

.heros-text-area {
  color: var(--white);
  max-width: 900px;
  text-align: center;
}

.heros-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-md);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.heros-main-title {
  font-family: var(--font-secondary);
  font-size: clamp(3.5rem, 6vw, 1.5rem);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

.heros-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: var(--font-weight-normal);
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
  line-height: 1.7;
}

.heros-action-group {
  /* display: flex; */
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.footer-contact .social-links a {
  margin-right: 10px;
  color: #fff; /* or any color that suits your footer */
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

/* .footer-contact .social-links a:hover {
  color: #ff0000;
} */
