/* =========================================
   NordVPN Deals - Final Blue Theme (Clean)
   ========================================= */

@charset "UTF-8";

/* ====== Reset & Base ====== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style: none !important;
  outline: none !important;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  color: #1a1a1a;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  background: #f8fbff;
  overflow-x: hidden;
}

/* ====== Typography ====== */
h1, h2, h3, h4, h5, h6 {
  color: #0a1930;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  margin: 0 0 15px;
  text-align: left;
}

p {
  color: #333333;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 15px;
  text-align: left;
}

/* ====== Lists with Blue Arrows ====== */
ul, ol {
  padding-left: 20px;
  margin-bottom: 20px;
  text-align: left;
}

ul li, ol li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
  color: #000000; /* black text for list items */
  font-weight: 400;
}

ul li::before, ol li::before {
  content: "➜";
  position: absolute;
  left: 0;
  color: #007bff; /* blue arrow */
  font-weight: bold;
}

/* ====== Links ====== */
a {
  color: #007bff;
  transition: 0.3s ease;
}

a:hover {
  color: #0056b3 !important;
  text-decoration: underline;
}

/* ====== Navbar ====== */
.navbar {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1030;
  padding: 15px 0;
  transition: all 0.4s ease;
}

.navbar .navbar-brand img {
  width: 150px;
}

.navbar .nav-item {
  margin: 0 10px;
}

.navbar .nav-item a {
  color: #0a1930;
  font-weight: 400;
}

.navbar .nav-item a:hover {
  color: #007bff !important;
}

.nav-scroll {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ====== Banner Section ====== */
.banner {
  background: url("images/bg1.jpg") no-repeat center center / cover;
  color: #ffffff;
  text-align: left;
  width: 100%;
}

.banner-overlay {
  background: linear-gradient(to right, rgba(10,25,48,0.9), rgba(0,123,255,0.8));
  padding: 180px 0 140px;
}

.banner h1 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 20px;
}

.banner p {
  max-width: 650px;
  font-size: 17px;
  color: #eaf2ff;
  margin-bottom: 30px;
}

.banner-btn {
  background: #007bff;
  padding: 14px 40px;
  font-size: 16px;
  border-radius: 30px;
  color: #ffffff !important;
  transition: 0.3s;
  display: inline-block;
  font-weight: 500;
}

.banner-btn:hover {
  background: #0056b3;
  color: #ffffff !important; /* keep text white */
  transform: translateY(-2px);
}

/* ====== Section General ====== */
.section-padding {
  padding: 100px 0;
  background: #ffffff;
  color: #0a1930;
}

.section-title {
  padding-bottom: 60px;
  text-align: left;
}

.section-title h3 {
  color: #007bff;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-title p {
  color: #4c5f87;
  max-width: 700px;
}

/* ====== Service Box ====== */
.service-box {
  background: #f5f8ff;
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 5px 30px rgba(10, 25, 48, 0.08);
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box .icon i {
  font-size: 40px;
  color: #007bff;
}

.icon-text h4 {
  font-size: 18px;
  color: #0a1930;
  margin: 15px 0;
}

.icon-text p {
  color: #333333;
}

/* ====== Testimonials ====== */
.testimonials {
  background: #e9f2ff;
  width: 100%;
  text-align: left;
  padding: 80px 0;
}

.testimonials h5 {
  color: #007bff;
}

.testimonials h6 {
  color: #0a1930;
}

.testimonials p {
  color: #333333;
}

/* ====== Buttons ====== */
.btn, .bttn {
  position: relative;
  cursor: pointer;
  color: #fff;
  background: #007bff;
  padding: 12px 45px;
  font-size: 15px;
  border-radius: 30px;
  margin-top: 30px;
  border: none;
  transition: 0.3s ease;
}

.btn:hover, .bttn:hover {
  background: #0056b3;
  color: #ffffff !important; /* keep white on hover */
}

/* ====== Contact Section ====== */
.contact-form input, .contact-form textarea {
  border: none;
  border-bottom: 1px solid #007bff;
  background: transparent;
  padding: 10px 0;
  color: #0a1930;
  width: 100%;
  margin-bottom: 25px;
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: #0056b3;
  outline: none;
}

/* ====== Footer ====== */
.footer-copy {
  background: #0a1930;
  color: #b3d7ff;
  font-size: 13px;
  text-align: center;
  padding: 15px 0;
}

.footer-copy a {
  color: #66b3ff;
}

.footer-copy a:hover {
  color: #ffffff;
}

/* ====== Responsive ====== */
@media all and (max-width: 991px) {
  .navbar .navbar-collapse {
    overflow: auto;
    background: rgba(10, 25, 48, 0.95);
    color: #fff !important;
    text-align: center;
    padding: 15px 0;
  }

  .banner-overlay {
    padding: 130px 0 100px;
  }
}

@media all and (max-width: 768px) {
  .banner h1 {
    font-size: 30px;
  }

  .section-title {
    padding-bottom: 30px;
  }

  .section-padding {
    padding: 60px 0;
  }
}
/* Force all headings to blue */
h4, h5, h6 {
    color: #0a1930 !important; /* dark blue */
}

h2 {
    color: #007bff !important; /* dark blue */
}
.ilinks {
  --bg: #f7fbfd;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --brand: #04a6d4;      /* accent line */
  --hover: #0ea5e9;      /* hover accent */
  --radius: 14px;
  --shadow: 0 4px 14px rgba(2, 6, 23, 0.08);
  background: var(--bg);
  border: 1px solid rgba(2, 6, 23, 0.06);
  border-radius: var(--radius);
  padding: 18px 18px 12px;
  position: relative;
  overflow: hidden;
}

.ilinks::before,
.ilinks::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 6px;
  background:
    repeating-linear-gradient(90deg,
      transparent 0 18px,
      var(--brand) 18px 34px);
  opacity: 0.25;
  border-radius: 4px;
}
.ilinks::before { top: 10px; }
.ilinks::after  { bottom: 10px; }

.ilinks-title {
  margin: 0 0 12px;
  font: 700 20px/1.3 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  color: var(--text);
  display: inline-block;
  padding: 0 10px 2px 0;
  border-bottom: 3px solid var(--brand);
}

.ilinks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.ilink {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  background: var(--card);
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(2, 6, 23, 0.06);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.ilink:hover {
  border-color: var(--hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(2, 6, 23, 0.12);
}

.ilink-text {
  font-weight: 600;
  line-height: 1.35;
}

.ilink-arrow {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.12);
  color: var(--hover);
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.ilink:hover .ilink-arrow {
  background: rgba(14, 165, 233, 0.22);
  transform: translateX(2px);
}

/* Dark mode (auto) */
@media (prefers-color-scheme: dark) {
  .ilinks { --bg: #0b1220; --card:#0f172a; --text:#e5e7eb; --muted:#94a3b8; border-color:#1f2937; }
  .ilink { border-color:#1f2937; }
}
/* Vars */
.fixed-offer {
  --bg-top: #081028;
  --bg-btm: #07113a;
  --text: #ffffff;
  --muted: #e5e7eb;
  --cta-bg: #ef4444;
  --cta-bg-h: #dc2626;
  --cta-text: #ffffff;
  --shadow: 0 -8px 24px rgba(0,0,0,.28);
  --h: 64px;            /* bar height desktop */
  --h-m: 72px;          /* bar height mobile */
  --maxw: 1200px;       /* inner wrap width */
}

/* Base: full clickable strip */
.fixed-offer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: block;
  text-decoration: none;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-top), var(--bg-btm));
  box-shadow: var(--shadow);
  -webkit-tap-highlight-color: transparent;
}

/* Inner layout */
.fixed-offer .fo-wrap {
  height: var(--h);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
}

/* Left: logo + headline */
.fo-left {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.fo-logo {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  font-weight: 800;
}

.fo-headline {
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Right: tag + button */
.fo-right {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 14px;
}

.fo-tag {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.fo-cta {
  background: var(--cta-bg);
  color: var(--cta-text);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: transform .15s ease, background-color .15s ease;
  box-shadow: 0 2px 0 rgba(0,0,0,.18) inset;
}

/* Hover/focus states (entire bar is a link) */
.fixed-offer:hover .fo-cta,
.fixed-offer:focus-visible .fo-cta {
  background: var(--cta-bg-h);
  transform: translateY(-1px);
}

/* Spacer equals bar height; adjust on mobile */
.fixed-offer-spacer {
  height: var(--h);
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .fixed-offer .fo-wrap { height: var(--h-m); padding: 0 12px; }
  .fixed-offer-spacer { height: var(--h-m); }
  .fo-right { gap: 10px; }
  .fo-tag { display: none; }           /* keep it clean on small screens */
  .fo-cta { padding: 12px 14px; }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
  .fixed-offer { --bg-top:#040817; --bg-btm:#050b26; --muted:#cbd5e1; }
}
