/* =========================
   Global Styles
========================= */
:root {
  --brand-blue: #2563eb; /* Tailwind blue-600 */
  --brand-dark: #1e3a8a; /* Tailwind blue-900 */
  margin: 0;
  box-sizing: border-box;
}
/* CSS */



body {
   font-family: 'SUSE+Mono', sans-serif;
  background-color: #ffffff;
  scroll-behavior: smooth;
}

section {
  padding: 4rem 0;
}

/* =========================
   Topbar
========================= */
.topbar {
  background: var(--brand-dark);
  color: #ffffff;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  text-align: center;
}

/* =========================
   Navbar
========================= */

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--brand-blue);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--brand-blue);
}

.nav-link:hover::after {
  width: 100%;
}

/* =========================
   Banner Section
========================= */
.banner-btn {
  display: inline-block;
  background: var(--brand-blue);
  color: #ff0000;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.banner-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}


.line-section{
  font-family: 'Rajdhani', sans-serif;
  font-size: 149px;
  padding: 70px 0 100px;
  font-weight: 700;
  line-height: 150px;
  display: inline-block;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--brand-blue);
  text-transform: capitalize;
}
/* =========================
   Services Cards
========================= */
.service-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* =========================
   Testimonials
========================= */
.testimonial-card {
  background: #f9fafb;
  border-left: 4px solid var(--brand-blue);
  padding: 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* =========================
   Contact Form
========================= */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.contact-form button {
  background: var(--brand-blue);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: var(--brand-dark);
}

/* =========================
   Footer
========================= */
.footer {
  background: var(--brand-dark);
  color: #e5e7eb;
  padding: 3rem 1rem;
}

.footer h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer a {
  display: block;
  margin-bottom: 0.5rem;
  color: #d1d5db;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #9ca3af;
}
