:root {
  --bg-dark: #0B1120;
  --bg-secondary: #0F172A;
  --accent: #00C2FF;
  --accent2: #00FFFF;
  --text-light: #ffffff;
  --text-muted: #9CA3AF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-secondary));
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ===== CANVAS BACKGROUND ===== */

#waveCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.35;
}

/* ===== LAYOUT ===== */

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

/* ===== NAVIGATION ===== */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  position: relative;
  min-height:100px;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 30px;
  font-weight: 500;
  transition: 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #0F172A;
    position: absolute;
    right: 0;
    top: 70px;
    width: 220px;
    padding: 20px;
    border-radius: 12px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* ===== HERO ===== */

.hero {
  padding: 10px 0;
  opacity: 1 !important;
transform: non !important;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  background: linear-gradient(
    90deg,
    #007BFF 0%,
    #5BCBFF 40%,
    #FFFFFF 75%,
    #FFFFFF 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease-in-out infinite;
}

.hero2 h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  background: linear-gradient(
    90deg,
    #007BFF 0%,
    #5BCBFF 40%,
    #FFFFFF 75%,
    #FFFFFF 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes gradientShift {
  to { background-position: 200% center; }
}

.hero p {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 40px;
  max-width: 600px;
}

/* ===== BUTTONS ===== */

.btn-primary {
  background: var(--accent);
  color: #000;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 25px rgba(0,194,255,0.4);
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(0,194,255,0.7);
}

.btn-secondary {
  border: 1px solid var(--text-muted);
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-light);
  margin-left: 20px;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== SECTIONS ===== */

section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 700px;
}

/* ===== GRID ===== */

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

.card {
  background: rgba(255,255,255,0.03);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,194,255,0.2);
  border-color: var(--accent);
}

/* ===== THIN GLOWING SECTION LINE ===== */

.section-line {
  height: 2px;
  width: 60%;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    transparent,
    #00C2FF,
    #00FFFF,
    #00C2FF,
    transparent
  );
  box-shadow:
    0 0 10px rgba(0,194,255,0.8),
    0 0 25px rgba(0,194,255,0.5);
  border-radius: 50px;
  animation: pulseLine 4s ease-in-out infinite;
}

@keyframes pulseLine {
  0%,100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ===== SCROLL REVEAL ===== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.5s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CONTACT FORM ===== */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
}

.contact-form input,
.contact-form textarea{
  padding: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: white;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(0,194,255,0.4);
}

/* ===== FOOTER ===== */

footer {
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== UTILITIES ===== */

.center {
  text-align: center;
}

.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

.typing-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  background: linear-gradient(
    90deg,
    #007BFF 0%,
    #5BCBFF 40%,
    #FFFFFF 75%,
    #FFFFFF 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease-in-out infinite;
}

.cursor {
  display: inline-block;
  width: 1ch;
  color: #FFFFFF;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.logo img {
  height: 80px;
  width: auto;
  max-height: none;
  display: block;
}


input[type=text], select {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 40px;
  box-sizing: border-box;
}

input[type=submit] {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Email + Tel Inputs */
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 40px;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 14px;
}

/* Textarea tweak */
textarea {
  min-height: 140px;
  resize: vertical;
  border-radius: 20px; /* Slightly less round for better look */
}


/* INDUSTRIES SECTION    */

.industry-section {
  padding: 120px 40px;
  text-align: center;
}

.industry-header h2 {
  font-size: 2.2rem;
  margin-bottom: 60px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.industry-card {
  padding: 40px 30px;
  border-radius: 16px;
  transition: 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
}

.industry-icon svg {
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
  fill: none;
  stroke: white;
  stroke-width: 2;
}