html {
  scroll-behavior: smooth;
}

/* ===================================
   GLOBAL TYPOGRAPHY (NYT STYLE)
=================================== */

/* Headings (NYT style) */
h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.5px;
  font-weight: 600;
  color: #111;
}

/* Body text (smooth serif) */
body, p, li, label, input, select, textarea {
  font-family: "Poppins", sans-serif", serif;
  line-height: 1.7;
  color: #222;
}

/* Navbar / small UI text (clean sans) */
.navbar, .btn-primary, .form-section-title {
  font-family: "Inter", Poppins", sans-serif;
}

/* Larger NYT-style typography scale */
h1 {
  font-size: 3rem;
  line-height: 1.15;
}

h2 {
  font-size: 2.3rem;
  line-height: 1.25;
}

h3 {
  font-size: 1.7rem;
  line-height: 1.3;
}

p, li {
  font-size: 1.25rem;
}

label {
  font-size: 1.1rem;
}

input, select, textarea {
  font-size: 1.1rem;
}

.btn-primary {
  font-size: 1.15rem;
  padding: 1rem 2rem;
}

/* ===================================
   RESET (NO FONT OVERRIDE)
=================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffffff;
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===================================
   BRAND COLOURS
=================================== */
:root {
  --rtech-blue: #0640a8;
  --rtech-blue-light: #0b57d0;
  --rtech-gold: #f6c445;
  --rtech-bg-light: #f7f8fc;
  --rtech-text-dark: #222;
}

/* Generic page container */
.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 1.5rem;   /* space from left & right edges */
}

/* Navbar inner container */
.nav-container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 1.5rem;   /* keeps menu away from edges */
}



/* ===============================
   NAVBAR / HEADER
   (styles used by header.html)
================================= */
.navbar {
  background-color: #fff;
  padding: 1.2rem 0;
  border-bottom: 1px solid #eee;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px;
}

.logo a {
  display: inline-block;
  text-decoration: none;
}

.logo a img {
  display: block;
  height: 40px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #13277e;
}

.btn-signup {
  background: linear-gradient(90deg, #fff9d9, #ffe78b);
  color: #13277e !important;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.btn-signup:hover {
  background: linear-gradient(90deg, #fff2b0, #ffd46b);
  color: #000 !important;
}

/* Header Styling */
.main-header {
  background-color: #ffffff;
  padding: 15px 100px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  height: 94px;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-header .logo img {
  height: 46px;
}

.main-nav ul {
  list-style: none;
  display: flex;
}

.main-nav ul li {
  margin-left: 50px;
  margin-top: 14px;
}

.main-nav ul li a {
  text-decoration: none;
  color: #6c6c6c;
  transition: color 0.3s ease;
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
}

/* Generic button base (for header, if needed) */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  cursor: pointer;
  border: none;
  height: 52px;
  width: 150px;
}

.main-nav .btn {
  margin-left: 30px;
}

/* Dropdown Styling */
.nav-links li {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  list-style: none;
  padding: 10px 0;
  min-width: 200px;
  z-index: 999;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #6c6c6c;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: #13277e;
  color: #fff;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}


/* ===================================
   HERO SECTION
=================================== */
.reports-hero {
  background: linear-gradient(135deg, #13277E, #004C99);
  color: #fff;
  padding: 35px 0;
}

.reports-hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}

.reports-hero-text {
  flex: 1 1 320px;
}

.reports-hero-text h1 {
  font-size: 3.5rem;
  color: #ffd54f;
  margin-bottom: 0.4rem;
}

.reports-hero-text p {
  max-width: 520px;
  font-size: 1.3rem;
  color: #fff;
}

.reports-hero-badges {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.reports-hero-badges span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 1rem;
}

/* Hero side card */
.reports-hero-side {
  flex: 0 1 320px;
  display: flex;
  justify-content: flex-end;
   margin-right: 1rem;
}

.reports-highlight-card {
  background: #fff;
  color: var(--rtech-text-dark);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  max-width: 340px;
}

.reports-highlight-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
}

.reports-highlight-card p {
  font-size: 1.2rem;
  margin-bottom: 1.4rem;
}

/* Button (matches your branding) */
.btn-primary {
  display: inline-block;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: var(--rtech-gold);
  color: #1b1b1b;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* ===================================
   INFO CARDS
=================================== */
.reports-info {
  background: #fff;
  padding-top: 10px;
}

.reports-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .reports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.reports-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 2rem 1.8rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.reports-card h2 {
  margin-bottom: 1rem;
  color: #13277E;
}

.reports-card ul {
  margin-left: 1.4rem;
  margin-top: 0.4rem;
}

/* ===================================
   FORM SECTION
=================================== */
.reports-form-section {
  background: var(--rtech-bg-light);
  padding: 4rem 0 5rem;
}

.reports-form-wrapper {
  max-width: 980px;
  margin: 0 auto;
}

.reports-form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.reports-form-header h2 {
  margin-bottom: 0.8rem;
  color: #13277e;
}

.reports-form {
  background: #fff;
  border-radius: 1.2rem;
  padding: 2.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.form-section-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 1.8rem 0 0.9rem;
  color: #13277e;
}

.form-grid {
  display: grid;
  gap: 1.5rem 1.8rem;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #dde2f1;
  border-radius: 0.6rem;
  padding: 0.8rem 0.9rem;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rtech-blue-light);
  box-shadow: 0 0 0 2px rgba(11, 87, 208, 0.12);
}

.reports-form-footer {
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.integrity-note {
  font-size: 1.05rem;
  color: #555;
}



/* ===============================
   NEWSLETTER FOOTER
================================= */
.qei-newsletter {
  position: relative;
  overflow: clip;
  padding: 56px 16px 64px;
  color: #eaf0ff;
  isolation: isolate;
}

/* Gradient background */
.qei-newsletter-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      1100px 600px at 85% 70%,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    radial-gradient(
      900px 500px at 15% 30%,
      rgba(255, 255, 255, 0.07) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(180deg, #4b465a 0%, #0a1d78 60%, #061e64 100%);
  box-shadow: inset 0 40px 60px rgba(0, 0, 0, 0.25);
}

.qei-newsletter-wrap {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

/* Heading */
.qei-newsletter-heading {
  font-weight: 700;
  font-size: clamp(1.4rem, 1.4rem + 1.2vw, 2rem);
  margin: 8px 0 22px;
  letter-spacing: 0.2px;
}

/* Form row */
.qei-newsletter-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}

.qei-newsletter-form input {
  width: min(600px, 88vw);
  flex: 1 1 420px;
  background: transparent;
  color: #eaf0ff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 16px 22px;
  border-radius: 999px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.qei-newsletter-form input::placeholder {
  color: rgba(234, 240, 255, 0.8);
}

.qei-newsletter-form input:focus {
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.qei-newsletter-form button {
  border: 0;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  background: #ffbd66;
  color: #1a2a6b;
  box-shadow: 0 8px 20px rgba(255, 189, 102, 0.35);
  transition: transform 0.08s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.qei-newsletter-form button:hover {
  box-shadow: 0 10px 28px rgba(255, 189, 102, 0.45);
  filter: brightness(1.05);
}

.qei-newsletter-form button:active {
  transform: translateY(1px);
}

/* Footer links */
.qei-newsletter-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 6px 0 14px;
  flex-wrap: wrap;
  font-size: 1.02rem;
}

.qei-newsletter-links a {
  color: #eaf0ff;
  text-decoration: none;
  opacity: 0.95;
  transition: opacity 0.15s;
}

.qei-newsletter-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.qei-newsletter-sep {
  opacity: 0.55;
}

.qei-newsletter-copy {
  margin: 6px 0 0;
  font-size: 1.02rem;
  opacity: 0.9;
}

/* accessibility helper (screen-reader only) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Mobile tweaks */
@media (max-width: 560px) {
  .qei-newsletter-form {
    gap: 10px;
  }

  .qei-newsletter-form button {
    width: 100%;
  }
}


/* ===============================
   RTECH FLOATING CHATBOT
================================= */
.rtech-chatbot {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  font-family: "Poppins", sans-serif;
}

/* Round Floating Button */
.chatbot-toggle {
  width: 65px;
  height: 65px;
  background: #ffd500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.chatbot-toggle:hover {
  transform: scale(1.05);
}

.chatbot-toggle img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

/* Chat Window */
.chatbot-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  display: none;
  overflow: hidden;
  flex-direction: column;
  animation: slideUp 0.3s ease forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header */
.chatbot-header {
  background-color: #ffd500;
  color: #000;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.chatbot-header .bot-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chatbot-header img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.chatbot-header button {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #000;
  font-weight: bold;
}

/* Chat Area */
.chatbot-content {
  padding: 15px;
  height: 250px;
  overflow-y: auto;
  background: #f9f9f9;
}

.bot-msg,
.user-msg {
  max-width: 80%;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.4;
  word-wrap: break-word;
}

.bot-msg {
  background: #f1f1f1;
  align-self: flex-start;
}

.user-msg {
  background: #ffd500;
  color: #000;
  align-self: flex-end;
  margin-left: auto;
}

/* Input Area */
.chatbot-input {
  display: flex;
  border-top: 1px solid #eee;
  padding: 10px;
  background: #fff;
}

.chatbot-input input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px;
  font-size: 14px;
}

.chatbot-input button {
  background: #ffd500;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}