
:root {
  --bg-page: #0C0F14;
  --bg-card: #141A21;
  --teal: #14C6B7;
  --blue: #1E7FCE;
  --cyan: #21E0D0;
  --mint: #8FF2C7;
  --heading: #F2F7FA;
  --body-text: #C7D2DA;
  --muted: #7F8C99;
  --border: #2A3440;
  --gradient: linear-gradient(135deg, #1E7FCE, #14C6B7, #21E0D0);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-page);
  color: var(--body-text);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  margin: 0 0 0.5em 0;
  line-height: 1.25;
}

p {
  margin: 0 0 1em 0;
}

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

abbr {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- Layout helpers ---------- */

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Navigation ---------- */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 32px;
  background-color: rgba(12, 15, 20, 0.92);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .logo {
  height: 48px;
  width: auto;
  border-radius: 6px;
}

nav ul {
  list-style-type: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav ul li a {
  color: var(--body-text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

nav ul li a:hover {
  color: var(--teal);
}

@media (max-width: 640px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
  }
  nav ul {
    gap: 16px;
    width: 100%;
  }
}

/* ---------- Header / Hero ---------- */

header.headlabel {
  background: linear-gradient(135deg, rgba(4, 8, 12, 0.82), rgba(4, 8, 12, 0.55)), url("bg.jpg") center/cover no-repeat;
  padding: 90px 32px 70px 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

header.page-hero {
  background: radial-gradient(circle at top right, rgba(30, 127, 206, 0.25), transparent 55%), var(--bg-page);
  padding: 90px 32px 70px 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.overlay {
  max-width: 780px;
  margin: 0 auto;
}


.my-h1,
.about-h1 {
  font-size: clamp(32px, 5vw, 52px);
  background: linear-gradient(135deg, #ffffff, #d7f9f6 40%, #14C6B7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.my-p {
  font-size: 18px;
  color: #f2f7fa;
  max-width: 640px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.contact-hero {
  max-width: 780px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */

.button1 {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background: var(--gradient);
  color: #05100E;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button1:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 198, 183, 0.35);
}

/* ---------- Card grid (services) ---------- */

.box-section {
  padding: 70px 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.box-section > h1 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}

.card h3 {
  color: var(--teal);
  font-size: 20px;
}

.card p {
  color: var(--body-text);
  font-size: 15px;
  margin-bottom: 0;
}

/* ---------- Section 2: statement + CTA ---------- */

.section2 {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 32px;
  text-align: center;
}

.section2 > div {
  max-width: 820px;
  margin: 0 auto;
}

.h4 {
  font-size: clamp(24px, 3.5vw, 34px);
}

.ps2 {
  color: var(--body-text);
  font-size: 16px;
}

/* ---------- Section 3: dark banner statement ---------- */

.headermain2 {
  background: var(--gradient);
  padding: 60px 32px;
}

.overlay2 {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.h1section3 {
  color: #05100E;
  font-size: clamp(22px, 3vw, 32px);
}

.psection3 {
  color: #06231F;
  font-size: 16px;
  max-width: 760px;
  margin: 0 auto;
}

/* ---------- Section 3: What We Do Different ---------- */

.section3 {
  padding: 70px 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.h6 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
}

.section3-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.section3-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section3-box {
  background-color: var(--bg-card);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  padding: 20px 24px;
}

.section3-box h3 {
  font-size: 18px;
  color: var(--heading);
}

.section3-box p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--muted);
}

.pb2 {
  font-size: 15px;
  color: var(--body-text);
}

@media (max-width: 860px) {
  .section3-content {
    grid-template-columns: 1fr;
  }
}

/* ---------- Ticker ---------- */

.ticker-section {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 18px 0;
}

.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 24s linear infinite;
  width: max-content;
}

.ticker-item {
  list-style-type: none;
  color: var(--teal);
  font-weight: 600;
  font-size: 15px;
}

.ticker-item li {
  display: inline;
}

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

/* ---------- Section 4: help & support ---------- */

.section4 {
  padding: 70px 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.h5 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
}

.cards2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card2 {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card2:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
}

.card2 h3 {
  color: var(--cyan);
  font-size: 20px;
}

.card2 p {
  font-size: 15px;
  margin-bottom: 0;
}

/* ---------- Generic content section (service pages) ---------- */

.content-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.content-section img {
  border-radius: 14px;
  border: 1px solid var(--border);
}

.content-section.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.content-section.reverse .content-text {
  order: 2;
}

.content-section.reverse img {
  order: 1;
}

.content-text ul {
  padding-left: 20px;
  color: var(--body-text);
}

.content-text ul li {
  margin-bottom: 10px;
}

@media (max-width: 860px) {
  .content-section,
  .content-section.reverse {
    grid-template-columns: 1fr;
  }
  .content-section.reverse .content-text,
  .content-section.reverse img {
    order: unset;
  }
}

/* ---------- Contact form ---------- */

.contact-form-section,
.contact-form-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 70px 32px;
}

.contact-form-page h1,
.contact-form-section h2 {
  text-align: center;
}

.contact-form-page .my-p {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
}

.contact-form label {
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
}

.contact-form input,
.contact-form textarea {
  background-color: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--heading);
  font-family: inherit;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  margin-top: 20px;
  align-self: flex-start;
}

.contact-details {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px 70px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.contact-details .card h3 {
  font-size: 17px;
}

/* ---------- Blog ---------- */

.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.blog-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.blog-card img {
  border-radius: 0;
}

.blog-card-body {
  padding: 22px;
}

.blog-card-body span {
  color: var(--muted);
  font-size: 13px;
}

.blog-card-body h3 {
  font-size: 19px;
  margin: 8px 0;
  color: var(--heading);
}

.blog-card-body p {
  font-size: 14px;
  color: var(--body-text);
  margin-bottom: 0;
}

/* ---------- Footer ---------- */

footer {
  border-top: 1px solid var(--border);
  background-color: var(--bg-card);
  margin-top: 40px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

.footer-col h4 {
  color: var(--heading);
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-col p {
  color: var(--muted);
  font-size: 14px;
  max-width: 240px;
  margin: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: var(--muted);
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 18px 32px;
  font-size: 13px;
  color: var(--muted);
}

.footer p {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  padding: 20px 0;
}
