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

:root {
  /* Brand Colors - Dark Professional & Electric Blue */
  --color-primary: #0a0e17; /* Deep Charcoal */
  --color-secondary: #0fc3ff; /* Electric Blue */
  --color-accent: #3b82f6; /* Soft Blue accent */
  
  /* Text Colors */
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  /* Backgrounds */
  --bg-dark: #070B14;
  --bg-darker: #04060b;
  --glass-bg: rgba(15, 23, 42, 0.6);
  --glass-border: rgba(15, 195, 255, 0.15);
  --glass-hover-border: rgba(15, 195, 255, 0.4);
  
  /* Utilities */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Typography Utility */
.text-gradient {
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-highlight { color: var(--color-secondary); }

/* --- Layout & Sections --- */
section {
  padding: 100px 0;
}
.pt-0 { padding-top: 0; }
.pb-new { padding-bottom: 60px; }

/* --- Header / Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

header.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: var(--transition);
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 1px;
}
.logo span { color: var(--color-secondary); }

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--color-secondary);
  transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--color-secondary);
  color: var(--bg-darker);
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn:hover {
  background: #fff;
  color: var(--color-secondary);
  box-shadow: 0 0 20px rgba(15, 195, 255, 0.4);
}

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

.btn-outline:hover {
  background: rgba(15, 195, 255, 0.1);
  box-shadow: none;
  color: #fff;
}

/* --- Mobile Menu --- */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at center, rgba(15,195,255,0.08), transparent 50%), var(--bg-dark);
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero h1 span.text-gradient {
  background: linear-gradient(90deg, #fff, var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

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

/* --- Grids --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

/* --- Section Headers --- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 3rem; margin-bottom: 15px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* --- IT Services 6 Cards --- */
.card {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid var(--glass-border);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-hover-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(15,195,255,0.05);
  background: rgba(15, 23, 42, 0.8);
}

.icon-box {
  width: 50px;
  height: 50px;
  background: rgba(15, 195, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.icon-box svg { width: 24px; height: 24px; stroke: var(--color-secondary); }

.card h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--text-light); }
.card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }

/* --- Digital Marketing 2 Col --- */
.marketing-list li {
  margin-bottom: 20px;
  padding: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.marketing-list li:hover {
  transform: translateX(10px);
  border-color: var(--glass-hover-border);
  background: rgba(15, 195, 255, 0.05);
}
.marketing-list h4 { font-size: 1.2rem; margin-bottom: 5px; color: #fff; }
.marketing-list p { color: var(--text-muted); font-size: 0.9rem; margin:0; }

/* Graphic SVG Graph */
.growth-graph-container {
  background: radial-gradient(circle, rgba(15,195,255,0.1), transparent);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
}
.graph-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawGraph 3s ease-out forwards;
}
@keyframes drawGraph { to { stroke-dashoffset: 0; } }

/* --- Marquee --- */
.marquee-container {
  overflow: hidden;
  background: #020408;
  padding: 30px 0;
  border-top: 1px solid #112240;
  border-bottom: 1px solid #112240;
  white-space: nowrap;
  position: relative;
}
.marquee-container::before, .marquee-container::after {
  content: ''; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2;
}
.marquee-container::before { left: 0; background: linear-gradient(to right, #020408, transparent); }
.marquee-container::after { right: 0; background: linear-gradient(to left, #020408, transparent); }

.marquee-content {
  display: inline-block;
  animation: scroll 20s linear infinite;
}
.marquee-content span {
  font-size: 2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-muted);
  margin: 0 40px;
  display: inline-block;
  transition: color 0.3s;
}
.marquee-content span:hover { color: var(--color-secondary); }

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Multi-Step Form --- */
.contact-section { background: var(--bg-darker); }
.step-form-wrapper {
  background: var(--glass-bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  max-width: 600px;
  margin: 0 auto;
}

.form-step {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.form-step.active {
  display: block;
  opacity: 1;
}

.step-indicator {
  display: flex; gap: 10px; margin-bottom: 30px; justify-content: center;
}
.dot {
  width: 12px; height: 12px; border-radius: 50%; background: #334155; transition: 0.3s;
}
.dot.active { background: var(--color-secondary); box-shadow: 0 0 10px var(--color-secondary); }

.form-group { margin-bottom: 20px; }
.form-control {
  width: 100%; padding: 16px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-family: inherit; font-size: 1rem;
  transition: var(--transition);
}
.form-control:focus {
  outline: none; border-color: var(--color-secondary);
  box-shadow: 0 0 15px rgba(15,195,255,0.2);
}
select.form-control option { background: var(--bg-dark); color: #fff; }

/* --- Footer --- */
footer { background: #010204; padding: 60px 0 20px; border-top: 1px solid #112240; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 20px; color: var(--text-light); }
.footer-col p, .footer-col ul a { color: var(--text-muted); transition: 0.3s; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a:hover { color: var(--color-secondary); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #112240; color: var(--text-muted); font-size: 0.9rem; }

/* --- Animations --- */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 991px) {
  .hero h1 { font-size: 3.5rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--glass-bg); backdrop-filter: blur(15px);
    flex-direction: column; gap: 0; max-height: 0; overflow: hidden; transition: var(--transition);
  }
  .nav-links.active { max-height: 300px; border-bottom: 1px solid var(--glass-border); }
  .nav-links li { text-align: center; padding: 15px 0; border-top: 1px solid rgba(255,255,255,0.05); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.8rem; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; text-align: center; }
}
