/* RJ Cloud Tech — simple stylesheet */

:root {
  --navy: #0b1a33;
  --navy-dark: #071426;
  --navy-light: #14294a;
  --cyan: #00b4d8;
  --cyan-dark: #0096b7;
  --text: #444e5c;
  --heading: #0b1a33;
  --grey: #f4f7fb;
  --line: #e3e9f1;
  --white: #fff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { color: var(--cyan-dark); text-decoration: none; }
a:hover { color: var(--cyan); }

h1, h2, h3 { color: var(--heading); line-height: 1.25; }
h1 { font-size: 40px; }
h2 { font-size: 30px; }
h3 { font-size: 19px; }
p { margin-bottom: 15px; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.grey { background: var(--grey); }
.center { text-align: center; }

.section-title { margin-bottom: 40px; }
.section-title h2 { margin-bottom: 12px; }
.section-title p { max-width: 700px; margin: 0 auto; }
.section-title span {
  display: block;
  color: var(--cyan);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ---------- top bar ---------- */
.topbar {
  background: var(--navy-dark);
  color: #a9bdd6;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container { display: flex; flex-wrap: wrap; gap: 8px 25px; justify-content: space-between; }
.topbar a { color: #a9bdd6; }
.topbar a:hover { color: var(--cyan); }

/* ---------- header ---------- */
header {
  background: var(--navy);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo img { width: 40px; height: 40px; }
.logo b { color: #fff; font-size: 20px; display: block; line-height: 1.2; }
.logo small { color: var(--cyan); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }

nav ul { list-style: none; display: flex; gap: 6px; align-items: center; }
nav a { color: #d5e0ee; padding: 8px 13px; display: block; font-size: 15px; }
nav a:hover { color: var(--cyan); }

.btn {
  display: inline-block;
  background: var(--cyan);
  color: #fff;
  padding: 12px 26px;
  border: 2px solid var(--cyan);
  border-radius: 4px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}
.btn:hover { background: var(--cyan-dark); border-color: var(--cyan-dark); color: #fff; }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }
nav .btn { padding: 9px 18px; margin-left: 8px; }

.menu-btn {
  display: none;
  background: none;
  border: 1px solid #40567a;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(rgba(7, 20, 38, .88), rgba(11, 26, 51, .92)),
              url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 0h60v60H0z' fill='%230b1a33'/%3E%3Cpath d='M0 .5h60M.5 0v60' stroke='%231b3358'/%3E%3C/svg%3E");
  color: #cad7e8;
  padding: 90px 0;
  text-align: center;
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 span { color: var(--cyan); }
.hero p { max-width: 720px; margin: 0 auto 28px; font-size: 18px; }
.hero .btn { margin: 6px; }

/* ---------- stats ---------- */
.stats { background: var(--cyan); color: #fff; padding: 35px 0; }
.stats .row { text-align: center; gap: 0; }
.stats .col { flex: 1 1 200px; padding: 10px; }
.stats b { display: block; font-size: 32px; line-height: 1.2; }
.stats span { font-size: 14px; }

/* ---------- cards ---------- */
.row { display: flex; flex-wrap: wrap; gap: 24px; }
.col-3 { width: calc(33.333% - 16px); }
.col-2 { width: calc(50% - 12px); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--cyan);
  border-radius: 4px;
  padding: 28px 24px;
}
.col-3 .card { height: 100%; }   /* equal-height cards in the 3-across grid only */
.card:hover { box-shadow: 0 6px 20px rgba(11, 26, 51, .10); }
.card img { width: 46px; height: 46px; margin-bottom: 16px; }
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 12px; font-size: 15px; }
.card ul { list-style: none; font-size: 14px; }
.card ul li { padding-left: 18px; position: relative; margin-bottom: 4px; }
.card ul li:before { content: "\2713"; color: var(--cyan); position: absolute; left: 0; }

/* ---------- about / why ---------- */
.why-list { list-style: none; }
.why-list li { padding-left: 30px; position: relative; margin-bottom: 16px; }
.why-list li:before {
  content: "\2713";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  background: var(--cyan); color: #fff;
  border-radius: 50%;
  font-size: 12px; line-height: 20px; text-align: center;
}
.why-list b { color: var(--heading); display: block; }

/* ---------- partners ---------- */
.partners { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 40px; }
.partners span { color: #8e9cb0; font-size: 18px; font-weight: bold; }

/* ---------- contact ---------- */
.contact-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px;
}
.contact-box h3 { margin-bottom: 18px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 14px; font-weight: bold; color: var(--heading); margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 12px;
  font: inherit;
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fbfcfe;
}
.form-group textarea { height: 120px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--cyan); background: #fff;
}
.form-note { font-size: 13px; color: #7c8798; margin-top: 10px; }
.hide { position: absolute; left: -9999px; }

.info-list { list-style: none; }
.info-list li { display: flex; gap: 14px; margin-bottom: 20px; }
.info-list .ic {
  flex: none; width: 40px; height: 40px;
  background: var(--cyan); color: #fff;
  border-radius: 4px;
  text-align: center; line-height: 40px; font-size: 18px;
}
.info-list b { display: block; color: var(--heading); font-size: 14px; }

/* ---------- cta strip ---------- */
.cta { background: var(--navy); color: #c6d3e5; text-align: center; padding: 55px 0; }
.cta h2 { color: #fff; margin-bottom: 12px; }
.cta p { margin-bottom: 22px; }

/* ---------- footer ---------- */
footer { background: var(--navy-dark); color: #93a5bd; font-size: 15px; padding: 50px 0 0; }
footer h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
footer ul { list-style: none; }
footer li { margin-bottom: 8px; }
footer a { color: #93a5bd; }
footer a:hover { color: var(--cyan); }
footer .logo b { font-size: 18px; }
footer .col-3 p { font-size: 14px; margin-top: 14px; }
.copyright {
  border-top: 1px solid #1c3050;
  margin-top: 30px;
  padding: 18px 0;
  text-align: center;
  font-size: 14px;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .col-3 { width: calc(50% - 12px); }
}
@media (max-width: 780px) {
  h1 { font-size: 30px; }
  h2 { font-size: 24px; }
  .menu-btn { display: block; }
  nav { display: none; width: 100%; }
  nav.open { display: block; }
  header .container { flex-wrap: wrap; gap: 12px; }
  nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  nav a { padding: 11px 0; border-bottom: 1px solid #1c3050; }
  nav .btn { margin: 12px 0 0; text-align: center; }
  .col-3, .col-2 { width: 100%; }
  .topbar .container { justify-content: center; text-align: center; }
}
