/* ===============================
   HERO RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 992px) {

  .hero {
    padding: 100px 0 80px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero h2 {
    font-size: 20px;
  }

  .hero p {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-buttons {
    gap: 12px;
  }
}

/* Mobile */
@media (max-width: 600px) {

  .hero {
    padding: 90px 0 70px;
    text-align: center;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .hero h2 {
    font-size: 18px;
  }

  .hero p {
    font-size: 14px;
    margin: 12px auto;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* =====================
   COMMON
===================== */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  cursor: pointer;
}



.logo {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
}

.logo span {
  font-weight: 400;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  color: #eaf4ff;
  margin-left: 18px;
  font-size: 14px;
}

.btn-outline {
  border: 1px solid #fff;
  padding: 6px 14px;
  border-radius: 5px;
}


/* =====================
   FEATURES
===================== */
.features {
  padding: 90px 0;
  text-align: center;
}

.features h2 {
  font-size: 32px;
  margin-bottom: 50px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature {
  padding: 30px 20px;
}

.icon {
  font-size: 40px;
  margin-bottom: 15px;
}

/* =====================
   CTA STRIPS
===================== */
.cta {
  padding: 50px 0;
  color: #fff;
}

.advertiser-cta {
  background: linear-gradient(120deg, #0b4f8a, #0e6db4);
}

.publisher-cta {
  background: linear-gradient(120deg, #6bcf3d, #7ad03a);
}

.cta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta h2 {
  font-size: 26px;
}

.cta p {
  opacity: 0.9;
  margin-top: 6px;
}

/* =====================
   TECHNOLOGY
===================== */
.technology {
  padding: 90px 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.tech-content h2 {
  font-size: 32px;
}

.tech-content ul {
  margin: 20px 0;
  padding-left: 18px;
}

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

.tech-visual {
  background: var(--blue-light);
  border-radius: 14px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  color: #1b5fa7;
}

/* =====================
   AD FORMATS
===================== */
.ad-formats {
  background: #f8fafc;
  padding: 80px 0;
  text-align: center;
}

.ad-formats h2 {
  font-size: 30px;
  margin-bottom: 40px;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

.format-card {
  background: #fff;
  padding: 22px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* =====================
   STATS
===================== */
.stats {
  padding: 90px 0;
  text-align: center;
}

.stats h2 {
  font-size: 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.stat-box h3 {
  font-size: 36px;
  color: #0b6fb3;
}

/* =====================
   CLIENTS
===================== */
.clients {
  background: #f8fafc;
  padding: 80px 0;
  text-align: center;
}

.clients h2 {
  font-size: 30px;
}

.client-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
  font-weight: 600;
  opacity: 0.75;
}

/* =====================
   FOOTER
===================== */
.footer {
  background: #082f4e;
  color: #cfe6ff;
  text-align: center;
  padding: 22px;
  font-size: 14px;
}

/* =====================
   MOBILE RESPONSIVE
===================== */
@media (max-width: 992px) {
  .feature-grid,
  .formats-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-flex {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  nav {
    display: none; /* simple mobile hide */
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero h2 {
    font-size: 20px;
  }

  .hero-buttons a {
    display: block;
    margin-bottom: 14px;
  }

  .feature-grid,
  .formats-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}


/* ===============================
   ADVERTISER PAGE STYLES
   (AdPortalPro)
================================ */

/* HERO */
.adv-hero {
  background: linear-gradient(120deg, #082f4e, #0e6db4);
  color: #fff;
  padding: 110px 0;
}

.adv-hero h1 {
  font-size: 46px;
  font-weight: 700;
}

.adv-hero h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 12px 0;
}

.adv-hero p {
  max-width: 720px;
  opacity: 0.9;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  background: #1b5fa7;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 20px;
}

/* FEATURES */
.adv-features {
  padding: 90px 0;
  text-align: center;
}

.adv-features h2 {
  font-size: 32px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  padding: 25px;
}

.feature-card .icon {
  font-size: 40px;
  margin-bottom: 10px;
}

/* FORMATS */
.adv-formats {
  background: #f8fafc;
  padding: 80px 0;
  text-align: center;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.formats-grid div {
  background: #fff;
  padding: 22px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  font-weight: 600;
}

/* BUDGET STRIP */
.adv-budget {
  background: linear-gradient(120deg, #0b4f8a, #0e6db4);
  color: #fff;
  padding: 60px 0;
}

.budget-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TARGETING */
.adv-targeting {
  padding: 90px 0;
}

.targeting-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}

.adv-targeting ul {
  padding-left: 18px;
  margin: 20px 0;
}

.dashboard-mock {
  background: #f2f7fc;
  height: 260px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* FINAL CTA */
.adv-final-cta {
  background: #082f4e;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .feature-grid,
  .formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .targeting-grid {
    grid-template-columns: 1fr;
  }

  .budget-flex {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .feature-grid,
  .formats-grid {
    grid-template-columns: 1fr;
  }

  .adv-hero h1 {
    font-size: 34px;
  }
}


/* ===============================
   PUBLISHERS PAGE STYLES
================================ */

.pub-hero {
  background: linear-gradient(120deg, #082f4e, #0e6db4);
  color: #fff;
  padding: 110px 0;
}

.pub-hero h1 {
  font-size: 46px;
  font-weight: 700;
}

.pub-hero h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 12px 0;
}

.pub-hero p {
  max-width: 720px;
  opacity: 0.9;
}

/* BENEFITS */
.pub-benefits {
  padding: 90px 0;
  text-align: center;
}

.pub-benefits h2 {
  font-size: 32px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  padding: 25px;
}

.benefit-card .icon {
  font-size: 40px;
  margin-bottom: 12px;
}

/* FORMATS */
.pub-formats {
  background: #f8fafc;
  padding: 80px 0;
  text-align: center;
}

/* PAYMENTS */
.pub-payments {
  padding: 90px 0;
}

.pay-flex {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.pay-visual {
  background: #f2f7fc;
  height: 260px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}

/* FINAL CTA */
.pub-final-cta {
  background: #082f4e;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pay-flex {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .pub-hero h1 {
    font-size: 34px;
  }
}


/* ===============================
   COMPANY PAGE STYLES
================================ */

.company-hero {
  background: linear-gradient(120deg, #082f4e, #0e6db4);
  color: #fff;
  padding: 110px 0;
}

.company-hero h1 {
  font-size: 46px;
  font-weight: 700;
}

.company-hero h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 12px 0;
}

.company-hero p {
  max-width: 720px;
  opacity: 0.9;
}

/* ABOUT */
.company-about {
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  background: #f2f7fc;
  height: 260px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}



.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  padding: 25px;
}

.value-card .icon {
  font-size: 38px;
  margin-bottom: 12px;
}



.tech-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.tech-visual {
  background: #f2f7fc;
  height: 260px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}

/* MISSION */
.company-mission {
  background: #082f4e;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

/* CTA */
.company-cta {
  padding: 90px 0;
  text-align: center;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .about-grid,
  .tech-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .company-hero h1 {
    font-size: 34px;
  }
}




/* ===============================
   CONTACT PAGE STYLES
================================ */

/* HERO */
.contact-hero {
  background: linear-gradient(120deg, #082f4e, #0e6db4);
  color: #fff;
  padding: 110px 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 46px;
  font-weight: 700;
}

.contact-hero p {
  font-size: 18px;
  opacity: 0.9;
  margin-top: 10px;
}

/* INTRO */
.contact-intro {
  padding: 50px 0;
}

.contact-intro p {
  max-width: 900px;
  margin-bottom: 10px;
  color: #555;
}

/* CONTENT */
.contact-content {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info h3 {
  margin-top: 20px;
  font-size: 18px;
}

.contact-info p {
  color: #555;
  margin-top: 4px;
}

.btn-support {
  display: inline-block;
  margin-top: 20px;
  background: #f97316;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
}

/* FORM */
.contact-form h3 {
  font-size: 22px;
}

.form-note {
  color: #777;
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.checkbox {
  font-size: 14px;
  color: #555;
}

.btn-submit {
  margin-top: 10px;
  background: #f97316;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

/* CLIENTS */
.contact-clients {
  background: linear-gradient(120deg, #082f4e, #0e6db4);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.contact-clients h2 {
  font-size: 28px;
}

.contact-clients p {
  opacity: 0.85;
  margin-bottom: 30px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-hero h1 {
    font-size: 34px;
  }
}


/* ===============================
   LOGIN PAGE STYLES
================================ */

.login-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 60px 20px;
}

.login-box {
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.login-box h2 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
}

/* ROLE */
.login-role {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
  font-size: 14px;
}

.login-role input {
  margin-right: 5px;
}

/* FORM */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  text-align: left;
}

.form-group label {
  font-size: 14px;
  color: #555;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 5px;
}

.forgot-link {
  font-size: 12px;
  color: #4ade80;
  float: right;
  margin-top: 6px;
}

/* REMEMBER */
.remember {
  font-size: 13px;
  color: #555;
  text-align: left;
}

/* CAPTCHA */
.captcha-box {
  border: 1px solid #ddd;
  padding: 14px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.captcha {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

/* BUTTON */
.btn-login {
  margin-top: 20px;
  background: #84cc16;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.btn-login:hover {
  background: #65a30d;
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .login-box {
    padding: 0 10px;
  }

  .login-role {
    flex-direction: column;
    align-items: center;
  }
}


/* ===============================
   REGISTER PAGE STYLES
================================ */

.register-wrapper {
  padding: 80px 20px;
}

.register-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* LEFT INFO */
.register-info {
  background: #1e5fa3;
  color: #fff;
  padding: 40px;
  border-radius: 6px;
}

.register-info h3 {
  font-size: 26px;
}

.register-info .highlight {
  color: #7ddc65;
  margin: 10px 0 20px;
}

.register-info ul {
  list-style: none;
  padding: 0;
}

.register-info li {
  margin-bottom: 12px;
}

.register-info blockquote {
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.9;
}

.register-info span {
  display: block;
  margin-top: 10px;
  font-style: italic;
}

/* FORM */
.register-form h3 {
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.role-select {
  padding: 4px 6px;
  font-size: 14px;
}

.form-note {
  color: #777;
  margin-bottom: 20px;
}

.register-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.register-form input {
  padding: 11px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.captcha-box {
  border: 1px solid #ddd;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-activation {
  background: #f97316;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
}

.terms {
  font-size: 13px;
}

.terms a {
  color: #1e5fa3;
}

.btn-register {
  background: #1e5fa3;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .register-container {
    grid-template-columns: 1fr;
  }

  .register-info {
    text-align: center;
  }
}


/* ===============================
   PUBLISHER REGISTER PAGE
================================ */

.publisher-register {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.publisher-box {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.publisher-box h2 {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.circle-plus {
  width: 36px;
  height: 36px;
  background: #84cc16;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.sub-text {
  color: #666;
  margin: 10px 0 30px;
}

/* FORM */
.publisher-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  align-items: center;
}

.form-row label {
  font-size: 14px;
  text-align: right;
  color: #555;
}

.form-row input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* CAPTCHA */
.activation-note {
  font-size: 14px;
  color: #666;
}

.captcha-box {
  border: 1px solid #ddd;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BUTTONS */
.btn-activation {
  background: #f97316;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-publisher-register {
  background: #84cc16;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
}

/* AGREEMENTS */
.agreements {
  text-align: left;
  font-size: 13px;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row label {
    text-align: left;
  }
}




/* SOCIAL MENU STYLE */
.social-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
}




/* =================================================
   RESET & ROOT
================================================= */
:root {
  --primary: #0f766e;     /* teal-blue */
  --primary-dark: #115e59;
  --primary-light: #e6f4f1;
  --accent: #84cc16;
  --text: #1f2937;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, sans-serif;
}

body {
  background: #ffffff;
  color: var(--text);
  line-height: 1.6;
  padding-top: 70px; /* EXACT HEADER HEIGHT */
}

/* =================================================
   CONTAINER
================================================= */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* =================================================
   HERO
================================================= */
.hero {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  color: #ffffff;
  padding: 100px 0;
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  font-size: 42px;
}

.hero h2 {
  font-size: 22px;
  font-weight: 400;
  margin: 10px 0;
}

.hero p {
  opacity: 0.9;
}

.hero-buttons {
  margin-top: 28px;
}

.hero-buttons a {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  margin-right: 10px;
  color: #ffffff;
}

.btn-green {
  background: var(--accent);
}

.btn-blue {
  background: #155e75;
}

/* =================================================
   SECTIONS (GLOBAL)
================================================= */
section {
  padding: 80px 0;
}

/* FEATURES */
.features {
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.icon {
  font-size: 36px;
  margin-bottom: 12px;
}

/* CTA */
.cta {
  color: #ffffff;
}

.advertiser-cta {
  background: linear-gradient(120deg, #155e75, #0f766e);
}

.publisher-cta {
  background: linear-gradient(120deg, #65a30d, #84cc16);
}

.cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =================================================
   FOOTER (NORMAL – NOT FIXED)
================================================= */
.site-footer {
  background: #0b2f2b;
  color: #ffffff;
  font-size: 13px;
  padding: 16px 0;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left a {
  color: #ffffff;
  margin-right: 12px;
  text-decoration: none;
}

.footer-left a:hover {
  text-decoration: underline;
}

/* BACK TO TOP */
#backToTop {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: none;
}

/* =================================================
   RESPONSIVE
================================================= */
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-flex {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  
  .hero h1 {
    font-size: 32px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}



/* ===============================
   SELF SERVE PLATFORM SECTION
================================ */

.platform-section {
  padding: 90px 0;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 60px;
  color: #1f2937;
}

/* GRID */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.platform-card {
  background: linear-gradient(135deg, #f5faff, #ffffff);
  border-radius: 14px;
  padding: 32px 36px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  box-shadow: 0 12px 35px rgba(15, 111, 178, 0.08);
  transition: all 0.35s ease;
  cursor: pointer;
}

/* HOVER EFFECT */
.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(15, 111, 178, 0.18);
  background: linear-gradient(135deg, #eaf4ff, #ffffff);
}

/* ICON */
.icon-circle {
  min-width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1b6fb3, #2491e2);
  color: #ffffff;
  font-size: 28px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.platform-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #0f172a;
}

.platform-card p {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.6;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .platform-card {
    flex-direction: row;
  }
}


/* ===============================
   BIDVERTISER-STYLE STRIPS
================================ */

.strip {
  padding: 55px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.advertiser-strip {
  background: linear-gradient(135deg, #0d3b66, #165a9f);
}

.publisher-strip {
  background: linear-gradient(135deg, #0d3b66, #165a9f);
}

.strip::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 380px;
  height: 380px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.strip-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.strip-text h2 {
  font-size: 30px;
  margin-bottom: 6px;
}

.strip-text p {
  opacity: 0.9;
  max-width: 600px;
}

/* BUTTONS */
.strip-btn {
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.strip-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.3);
}

.strip-btn.blue {
  background: #1e5fa3;
}

.strip-btn.green {
  background: #7ad03a;
  color: #1b3a1b;
}

/* ===============================
   TECHNOLOGY (CLEANER LOOK)
================================ */

.modern-tech {
  padding: 90px 0;
}

.modern-gear {
  font-size: 130px;
  color: #1e5fa3;
  background: #f1f6fb;
  border-radius: 18px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   AD FORMATS (WIDE CARDS)
================================ */

.modern-formats {
  padding: 80px 0;
  background: #f8fafc;
  text-align: center;
}

.formats-grid.wide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.format-card {
  background: #fff;
  padding: 26px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.format-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .strip-flex {
    flex-direction: column;
    text-align: center;
  }

  .formats-grid.wide {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .formats-grid.wide {
    grid-template-columns: 1fr;
  }

  .strip-text h2 {
    font-size: 24px;
  }
}


/* =========================
   MODERN AD FORMATS
========================= */

.modern-formats {
  background: #f7fafc;
  padding: 80px 0;
  text-align: center;
}

.modern-formats h2 {
  font-size: 30px;
  margin-bottom: 45px;
  color: #1f2937;
}

/* GRID – WIDE CARDS */
.formats-grid.wide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

/* CARD */
.format-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;

  font-weight: 600;
  font-size: 15px;
  color: #0f3c64;

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  cursor: default;
}

/* ICON */
.format-card i {
  font-size: 26px;
  color: #2a6fae; /* Bidvertiser-like but softer */
}

/* TEXT */
.format-card span {
  white-space: nowrap;
}

/* HOVER EFFECT */
.format-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(42, 111, 174, 0.25);
  background: linear-gradient(135deg, #edf5ff, #ffffff);
}

.format-card:hover i {
  color: #1b5fa7;
}

/* MOBILE */
@media (max-width: 600px) {
  .format-card {
    justify-content: flex-start;
    padding-left: 20px;
  }
}


/* Advertiser Features */
.adv-features {
  padding: 90px 0;
  background: #ffffff;
  text-align: center;
}

.adv-features h2 {
  font-size: 34px;
  margin-bottom: 60px;
  color: #1f2937;
}

/* Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.feature-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 36px 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
}

/* Hover + Touch */
.feature-card:hover,
.feature-card:active,
.feature-card:focus-within {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(14, 109, 180, 0.25);
}

/* Icon */
.feature-card .icon {
  font-size: 42px;
  margin-bottom: 18px;
  color: #0e6db4;
}

/* Title */
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0b4f8a;
}

/* Text */
.feature-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 30px 20px;
  }
}

/* ===============================
   ADVERTISER SPLIT SECTION
================================ */

.adv-split {
  padding: 90px 0;
  background: #ffffff;
}

.adv-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.adv-text h2 {
  font-size: 32px;
  color: #1f2937;
  margin-bottom: 16px;
}

.adv-intro {
  color: #555;
  font-size: 16px;
  margin-bottom: 24px;
}

.adv-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.adv-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: #374151;
  font-size: 15px;
}

.adv-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #0e6db4;
  font-weight: bold;
}

.adv-note {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 28px;
  max-width: 520px;
}

.adv-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  background: #1b5fa7;
  color: #fff;
}

/* RIGHT IMAGE */
.adv-image {
  background: #f2f7fc;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.adv-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .adv-split-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .adv-list li {
    text-align: left;
  }

  .adv-note {
    margin: auto;
  }
}

/* ===============================
   PUBLISHER FEATURES SECTION
================================ */

.publisher-features {
  padding: 90px 0;
  background: #f4f8fc;
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #0b3a63;
}

.section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 10px auto 50px;
  color: #556b82;
  font-size: 16px;
}

.publisher-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.publisher-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(11, 58, 99, 0.08);
  transition: all 0.35s ease;
  cursor: pointer;
}

.publisher-card i {
  font-size: 42px;
  color: #0e6db4;
  margin-bottom: 16px;
  display: inline-block;
}

.publisher-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0b3a63;
}

.publisher-card p {
  font-size: 14px;
  color: #5b6f86;
  line-height: 1.6;
}

/* HOVER EFFECT */
.publisher-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(11, 58, 99, 0.15);
}

.publisher-card:hover i {
  color: #1b5fa7;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1200px) {
  .publisher-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .publisher-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .publisher-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }
}


/* =========================
   ABOUT HERO
========================= */
.about-hero {
  background: linear-gradient(120deg, #0a2f4f, #0e6db4);
  color: #fff;
  padding: 90px 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.about-hero p {
  max-width: 760px;
  margin: 12px auto 0;
  opacity: 0.9;
}

/* =========================
   ABOUT CONTENT
========================= */
.about-content {
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.about-text .intro {
  font-size: 17px;
  color: #374151;
  margin-bottom: 30px;
}

.about-block {
  margin-bottom: 28px;
}

.about-block h3 {
  font-size: 20px;
  color: #0e6db4;
  margin-bottom: 8px;
}

.about-block p {
  color: #4b5563;
  line-height: 1.7;
}

/* =========================
   IMAGE PLACEHOLDER
========================= */
.about-visual {
  display: flex;
  justify-content: center;
}

.image-placeholder {
  width: 100%;
  height: 320px;
  background: #f2f7fc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #e5e7eb;
}

/* STRIP SECTION */
.strip {
  background: linear-gradient(120deg, #082f4e, #0e6db4);
  padding: 70px 0;
  color: #fff;
}

/* FLEX LAYOUT */
.strip-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* BOX */
.strip-box {
  background: rgba(255, 255, 255, 0.06);
  padding: 40px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

/* HEADINGS */
.strip-box h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

/* TEXT */
.strip-box p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 22px;
  line-height: 1.6;
}

/* BUTTONS */
.btn-blue,
.btn-green {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-blue {
  background: #1b5fa7;
}

.btn-blue:hover {
  background: #144c86;
}

.btn-green {
  background: #7ad03a;
}

.btn-green:hover {
  background: #63b82d;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .strip-flex {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}


/* ===============================
   COMPANY VALUES – PREMIUM CARDS
================================ */

.company-values {
  background: #f8fafc;
  padding: 90px 0;
  text-align: center;
}

.company-values h2 {
  font-size: 34px;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  background: #ffffff;
  padding: 40px 26px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15, 111, 178, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* subtle top accent */
.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #0f6fb2, #4fa3e3);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.value-card:hover::before {
  opacity: 1;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(15, 111, 178, 0.18);
}

.value-card .icon {
  font-size: 42px;
  margin-bottom: 18px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.value-card p {
  color: #5b6775;
  font-size: 15px;
  line-height: 1.6;
}

/* ===============================
   COMPANY TECHNOLOGY – MODERN SPLIT
================================ */

.company-tech {
  padding: 100px 0;
  background: #ffffff;
}

.company-tech h2 {
  font-size: 34px;
  margin-bottom: 18px;
}

.company-tech ul {
  margin-top: 20px;
  padding-left: 18px;
}

.company-tech li {
  margin-bottom: 12px;
  color: #4b5563;
}

.tech-visual {
  background: linear-gradient(135deg, #0f6fb2, #1b8ad8);
  color: #ffffff;
  height: 300px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  box-shadow: 0 20px 50px rgba(15, 111, 178, 0.25);
  transition: transform 0.35s ease;
}

.tech-visual:hover {
  transform: scale(1.04);
}

/* ===============================
   COMPANY MISSION – ELEGANT BLOCK
================================ */

.company-mission {
  background: linear-gradient(120deg, #0f6fb2, #0b4f8a);
  color: #ffffff;
  padding: 90px 0;
  text-align: center;
}

.company-mission h2 {
  font-size: 34px;
  margin-bottom: 14px;
}

.company-mission p {
  max-width: 780px;
  margin: auto;
  font-size: 17px;
  opacity: 0.95;
  line-height: 1.7;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .tech-visual {
    height: 220px;
    font-size: 90px;
  }
}

/* ==========================
   ADVERTISER SIGNUP
========================== */
.adv-signup {
  padding: 80px 0;
  background: #f6f9fc;
}

.adv-signup-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: stretch;
}

/* LEFT PANEL */
.adv-info {
  background: linear-gradient(135deg, #0b4f87, #0f6fb2);
  color: #fff;
  padding: 40px;
  border-radius: 12px;
}

.adv-info h2 {
  font-size: 30px;
  margin-bottom: 8px;
}

.adv-info .subtitle {
  color: #cfe6ff;
  margin-bottom: 30px;
}

.adv-points {
  list-style: none;
}

.adv-points li {
  margin-bottom: 20px;
  padding-left: 28px;
  position: relative;
}

.adv-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #7ad03a;
  font-weight: bold;
}

.adv-points strong {
  display: block;
  font-size: 16px;
}

.adv-points span {
  font-size: 14px;
  color: #e6f2ff;
}

.adv-info blockquote {
  margin-top: 30px;
  font-style: italic;
  font-size: 14px;
  color: #eaf4ff;
}

.adv-info blockquote span {
  display: block;
  margin-top: 6px;
  font-weight: 600;
}

/* RIGHT FORM */
.adv-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.adv-form h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.form-sub {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

.adv-form input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1px solid #dce3ec;
  border-radius: 6px;
  font-size: 14px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.checkbox {
  font-size: 13px;
  color: #475569;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}

.btn-primary {
  width: 100%;
  padding: 12px;
  background: #0f6fb2;
  color: #fff;
  border-radius: 6px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary:hover {
  background: #0b5f9b;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .adv-signup-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   HEADER – CLEAN & FIXED
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  
  z-index: 9999;
}

body {
  padding-top: 70px;
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.logo span {
  font-weight: 400;
}

/* NAV LINKS (DESKTOP) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  padding: 6px 8px;
}

/* =========================
   DROPDOWN
========================= */

.dropdown {
  position: relative;
}

.dropdown > a {
  cursor: pointer;
}

/* Dropdown box */
.dropdown-menu {
  position: absolute;
  top: 100%;            /* FIXED */
  right: 0;
  min-width: 180px;
  background: #125f97;
  display: none;
  flex-direction: column;
  padding: 8px 0;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 9999;        /* FIXED */
}

/* Dropdown items */
.dropdown-menu a {
  padding: 10px 16px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(255,255,255,0.15);
}

/* Desktop hover */
.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Prevent clipping */
.header,
.nav,
.nav-links {
  overflow: visible;
}



/* =========================
   MOBILE NAV
========================= */

@media (max-width: 768px) {

  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0f6fb2;
    flex-direction: column;
    display: none;
    padding: 15px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }

  .dropdown-menu {
    position: static;
    background: #0b5a95;
  }

  .dropdown:hover .dropdown-menu {
    display: none; /* disable hover on mobile */
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }
}

/* Nav alignment */
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* Dropdown trigger = normal nav item */
.dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  line-height: normal;   /* FIX */
  cursor: pointer;
}


/* Arrow icon */
.dropdown > a::after {
  content: "▾";
  font-size: 12px;
  position: relative;
  top: 1px;
  transition: transform 0.25s ease;
}

/* Rotate arrow */
.dropdown:hover > a::after,
.dropdown.active > a::after {
  transform: rotate(180deg);
}


/* =========================
   ACTIVE NAV MENU
========================= */

.nav-links a {
  position: relative;
  color: #e6f2ff;
  text-decoration: none;
}

/* underline */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

/* hover underline */
.nav-links a:hover::after {
  width: 100%;
}

/* active menu */
.nav-links a.active {
  color: #ffffff;
  font-weight: 600;
}

.nav-links a.active::after {
  width: 100%;
}

/* SHOW dropdown arrow */
.dropdown > a::after {
  content: " ▾";
  font-size: 12px;
  margin-left: 4px;
}
.dropdown:hover > a::after,
.dropdown.active > a::after {
  transform: rotate(180deg);
  display: inline-block;
}


/* =========================
   NAV BAR
========================= */

.nav {
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* =========================
   NORMAL NAV LINKS
========================= */
/* =========================
   PREVENT CLIPPING
========================= */
.header,
.nav,
.nav-links {
  overflow: visible;
}



.container.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* =========================
   LOGO
========================= */
.logo {
  display: flex;
  align-items: center;
  margin-right: auto;   /* 🔥 forces logo to stay left */
}

.logo img {
  height: 62px;
  width: auto;
  display: block;
}


/* =========================
   NAV LINKS (BLUE)
========================= */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links > a {
  position: relative;
  color: #0b5ed7;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 0;
}

/* underline */
.nav-links > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #0b5ed7;
  transition: width 0.3s ease;
}

.nav-links > a:hover::after,
.nav-links > a.active::after {
  width: 100%;
}

.nav-links > a.active {
  font-weight: 600;
}

/* =========================
   DROPDOWN (NO UNDERLINE)
========================= */
.dropdown {
  position: relative;
}

/* dropdown trigger */
.dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  color: #0b5ed7;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

/* remove underline */
.dropdown > a::before,
.dropdown > a::after {
  all: unset;
}

/* arrow */
.dropdown > a::after {
  content: " ▾";
  font-size: 12px;
  margin-left: 4px;
  transition: transform 0.25s ease;
}

.dropdown:hover > a::after,
.dropdown.active > a::after {
  transform: rotate(180deg);
}

/* =========================
   DROPDOWN MENU (WHITE)
========================= */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #ffffff;
  display: none;
  flex-direction: column;
  padding: 8px 0;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  z-index: 9999;
}

.dropdown-menu a {
  padding: 10px 16px;
  color: #0b5ed7;
  font-size: 14px;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: rgba(11,94,215,0.1);
}

/* desktop hover */
.dropdown:hover .dropdown-menu {
  display: flex;
}

/* =========================
   HAMBURGER
========================= */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

/* DARK BLUE HAMBURGER */
.hamburger {
  color: #084298;   /* dark blue */
  font-size: 26px;
}

.hamburger img {
  width: 28px;
  height: 28px;
}

/* =========================
   MOBILE NAV
========================= */
@media (max-width: 992px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    display: none;
    padding: 15px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links > a,
  .dropdown > a {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }
}

/* ACTIVE NAV MENU – DARK BLUE */
.nav-links > a.active {
  color: #084298;          /* DARK BLUE */
  font-weight: 600;
}

/* active underline */
.nav-links > a.active::after {
  background: #084298;     /* DARK BLUE */
}

.container.nav {
  display: flex;
  align-items: center;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: auto;   /* 🔥 keeps logo fully left */
}

.logo img {
  height: 62px;
  width: auto;
  display: block;
}


/* =========================
   HEADER SCROLL EFFECT
========================= */

/* default (top) */
.header {
  background: #ffffff;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* text default */
.header .nav-links > a,
.header .dropdown > a {
  color: #0b5ed7;
  transition: color 0.3s ease;
}

/* logo image transition (optional) */
.logo img {
  transition: filter 0.3s ease;
}

/* =========================
   SCROLLED STATE
========================= */
.header.scrolled {
  background: #0f6fb2; /* BLUE */
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

/* nav text white */
.header.scrolled .nav-links > a,
.header.scrolled .dropdown > a {
  color: #ffffff;
}

/* active menu */
.header.scrolled .nav-links > a.active {
  color: #ffffff;
}

/* remove underline color conflicts */
.header.scrolled .nav-links > a::after {
  background: #ffffff;
}

/* hamburger white */
.header.scrolled .hamburger {
  color: #ffffff;
}

/* dropdown menu stays white */
.header.scrolled .dropdown-menu {
  background: #ffffff;
}

.header.scrolled .dropdown-menu a {
  color: #0b5ed7;
}

/* =========================
   FORCE MOBILE MENU COLORS
========================= */
@media (max-width: 992px) {

  /* mobile menu background */
  .header .nav-links {
    background: #0f6fb2 !important; /* BLUE */
  }

  /* main nav links */
  .header .nav-links > a {
    color: #84cc16 !important; /* GREEN */
    font-weight: 600;
  }

  /* dropdown trigger */
  .header .dropdown > a {
    color: #84cc16 !important;
  }

  /* dropdown box */
  .header .dropdown-menu {
    background: #0b5a95 !important;
  }

  /* dropdown items */
  .header .dropdown-menu a {
    color: #84cc16 !important;
    font-weight: 600;
  }

  /* arrow */
  .header .dropdown > a::after {
    color: #84cc16 !important;
  }
}

@media (max-width: 992px) {

  /* disable hover completely on mobile */
  .dropdown:hover .dropdown-menu {
    display: none;
  }

  /* show dropdown ONLY when active */
  .dropdown.active .dropdown-menu {
    display: flex;
  }
}


/* =================================================
   COMPANY PAGE + ABOUT TEXT – RESPONSIVE
   Paste at END of main.css
================================================= */

img {
  max-width: 100%;
  height: auto;
}

body {
  overflow-x: hidden;
}

/* COMPANY HERO – SAFE & CONSISTENT */
.company-hero {
  padding: 110px 0;
  display: flex;
  align-items: center;
}

.company-hero .container {
  width: 100%;
}

/* Tablet */
@media (max-width: 992px) {
  .company-hero {
    padding: 100px 0;
    text-align: center;
  }

  .company-hero h1 {
    font-size: 38px;
  }

  .company-hero h2 {
    font-size: 20px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .company-hero {
    padding: 90px 0;
  }

  .company-hero h1 {
    font-size: 32px;
  }

  .company-hero h2 {
    font-size: 18px;
  }

  .company-hero p {
    font-size: 14.5px;
  }
}


/* ================= ABOUT SECTION ================= */

/* Tablet */
@media (max-width: 992px) {

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  /* image first, text below */
  .about-visual {
    order: 1;
  }

  .about-text {
    order: 2;
  }

  .about-text {
    max-width: 720px;
    margin: auto;
  }
}

/* Mobile */
@media (max-width: 600px) {

  .about-content {
    padding: 70px 0;
  }

  .about-text {
    text-align: left; /* better reading */
  }

  .about-text .intro {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .about-block {
    margin-bottom: 26px;
  }

  .about-block h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .about-block p {
    font-size: 14.5px;
    line-height: 1.7;
  }

  .image-placeholder {
    height: auto;
  }
}

/* ================= STRIP (ADVERTISER / PUBLISHER) ================= */

@media (max-width: 900px) {
  .strip-flex {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .strip-card {
    width: 100%;
  }
}

/* ================= VALUES ================= */

@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .company-values h2 {
    font-size: 28px;
  }
}

/* ================= TECHNOLOGY ================= */

@media (max-width: 992px) {
  .company-tech .tech-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .company-tech ul {
    text-align: left;
    max-width: 480px;
    margin: 20px auto 0;
  }
}

@media (max-width: 600px) {
  .tech-visual {
    height: 220px;
    font-size: 90px;
  }
}

/* ================= MISSION ================= */

@media (max-width: 768px) {
  .strip-text.center {
    text-align: center;
  }

  .strip-text.center h2 {
    font-size: 28px;
  }

  .strip-text.center p {
    font-size: 15px;
  }
}

/* ================= CTA ================= */

@media (max-width: 600px) {
  .company-cta {
    padding: 70px 0;
    text-align: center;
  }

  .company-cta h2 {
    font-size: 28px;
  }

  .company-cta p {
    font-size: 15px;
  }

  .company-cta a {
    width: 100%;
    max-width: 260px;
    margin-top: 14px;
  }
}

/* ================= FOOTER ================= */

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* ======================================
   PUBLISHER REGISTER – CARD WRAPPER
====================================== */

.publisher-register {
  padding: 90px 20px;
  background: #f4f8fc;
  display: flex;
  justify-content: center;
}

/* CARD */
.publisher-box {
  background: #ffffff;
  width: 100%;
  max-width: 620px;
  padding: 40px 36px;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* TITLE */
.publisher-box h2 {
  font-size: 24px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ICON */
.circle-plus {
  width: 38px;
  height: 38px;
  background: #84cc16;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* SUBTEXT */
.sub-text {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 28px;
}

/* FORM */
.publisher-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ROW */
.form-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  align-items: center;
}

/* LABEL */
.form-row label {
  font-size: 14px;
  color: #475569;
  text-align: right;
}

/* INPUT */
.form-row input {
  padding: 11px 12px;
  border: 1px solid #dce3ec;
  border-radius: 6px;
  font-size: 14px;
}

/* CAPTCHA */
.captcha-box {
  border: 1px solid #e5e7eb;
  padding: 14px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

/* NOTE */
.activation-note {
  font-size: 14px;
  color: #64748b;
  margin-top: 8px;
}

/* BUTTONS */
.btn-activation {
  background: #f97316;
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.btn-publisher-register {
  background: #84cc16;
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
}

/* AGREEMENTS */
.agreements {
  text-align: left;
  font-size: 13px;
  color: #475569;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ===============================
   RESPONSIVE
================================ */

/* Mobile */
@media (max-width: 600px) {

  .publisher-box {
    padding: 32px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row label {
    text-align: left;
  }

  .publisher-box h2 {
    font-size: 22px;
  }
}

/* SIDEBAR BASE */
.dark-sidenav {
    background: #0f0f0f;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

/* DIVIDER */
.dark-divider {
    border-color: #222;
}

/* NAV LINKS */
.dark-sidenav .nav-link {
    color: #b5b5b5;
    border-radius: 8px;
    margin: 4px 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

/* ICONS */
.dark-sidenav .material-symbols-rounded {
    font-size: 22px;
    color: #888;
}

/* HOVER */
.dark-sidenav .nav-link:hover {
    background: #1a1a1a;
    color: #fff;
}

.dark-sidenav .nav-link:hover .material-symbols-rounded {
    color: #fff;
}

/* ACTIVE */
.dark-sidenav .nav-link.active {
    background: linear-gradient(135deg, #222, #000);
    color: #fff;
    box-shadow: inset 0 0 0 1px #333;
}

.dark-sidenav .nav-link.active .material-symbols-rounded {
    color: #4f9cff;
}

/* LOGOUT */
.logout-btn {
    color: #ff4d4d;
}

.logout-btn:hover {
    background: #1a1a1a;
    color: #ff6b6b;
}

.logout-btn .material-symbols-rounded {
    color: #ff4d4d;
}
.create-btn{
  width: 20%;
}

input[type="file"] {
    padding: 8px;
}
