:root {
            --navy: #0F172A;
            --electric-blue: #3B82F6;
            --teal: #06B6D4;
            --light-gray: #F8FAFC;
            --dark-gray: #64748B;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            color: var(--navy);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #FF8C1A; /* metallic orange */
            text-decoration: none;
            display: flex;
            align-items: center;
            letter-spacing: 1px;
            /* metallic effect */
            background: linear-gradient(90deg, #FFB347 0%, #FF8C1A 50%, #FFD580 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .logo span {
            color: var(--electric-blue);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        nav a {
            text-decoration: none;
            color: var(--navy);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: var(--electric-blue);
        }
        /* Desktop nav */

        /* Mobile toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle .nav-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}
/* Responsive */
@media (max-width: 960px) {
  .nav-toggle { display: inline-block; }

  .main-nav {
    position: absolute;
    right: 20px;
    top: 64px; /* sits just below header */
    background: #fff;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 14px 30px rgba(0,0,0,.08);
    border-radius: 12px;
    padding: 12px;
    display: none;
  }
  .main-nav.open { display: block; }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-width: 220px;
  }

  .main-nav a::after { display: none; } /* simpler on mobile */
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color .25s ease;
}

.main-nav a:hover { color: var(--electric-blue); }

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--electric-blue);
  transition: width .25s ease;
}
.main-nav a:hover::after { width: 100%; }

        .cta-button {
            background-color: var(--electric-blue);
            color: white;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
.cta-button:hover {
  background-color: #2563EB;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37,99,235,.28);
}

        
        /* Hero Section */
        .hero {
            background: linear-gradient(to bottom, #0F172A, #1E293B);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 40px;
            color: rgba(255,255,255,0.9);
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }
        
        .secondary-button {
            background-color: transparent;
            color: white;
            border: 1px solid rgba(255,255,255,0.3);
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .secondary-button:hover {
            background-color: rgba(255,255,255,0.1);
        }
        
        .dashboard-preview {
            margin-top: 60px;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
            border-radius: 12px;
            overflow: hidden;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Features Section */
        .features {
            padding: 100px 0;
            background-color: var(--light-gray);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .section-header p {
            color: var(--dark-gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--electric-blue);
        }
        
        .feature-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .feature-card p {
            color: var(--dark-gray);
        }
        
        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            text-align: center;
        }
        .logo img {
  height: 40px;  /* adjust as needed */
  width: auto;
  margin-right: 10px;
}

        
        .logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin: 50px 0;
            opacity: 0.6;
        }
        
        /* Footer */
        footer {
            background-color: var(--navy);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .footer-column ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-column li {
            margin-bottom: 12px;
        }
        
        .footer-column a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
            font-size: 14px;
        }

.hero {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.3), rgba(30, 41, 59, 0.3)),
        url('../assets/hero-main.jpg') center/cover no-repeat;
    color: white;
    height: 200px;   /* adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 0;
}

.features {
  padding: 10px 0;   /* instead of 100px */
}

.logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--navy);
  text-decoration: none;
}

.logo-img {
  height: 36px;
  width: auto;
  margin-right: 10px;
}

/* Header — cleaner, tighter, more premium */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  /* subtle depth + slight blur for a premium feel */
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  backdrop-filter: saturate(130%) blur(6px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}


