/* ---------- IMPORT LOGO FONT (POPPINS) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ---------- GLOBAL VARIABLES ---------- */
:root {
  --black: #000;
  --white: #fff;
  --blue: #1da3c1;
  --grey-light: #f1f1f1;
}

/* ---------- GLOBAL FONT ENFORCEMENT ---------- */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;   /* UPDATED */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

*, *::before, *::after, input, button, textarea, select {
  font-family: 'Poppins', sans-serif !important;   /* UPDATED */
  letter-spacing: 0.5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



/* ---------- TOP BAR ---------- */
.top-bar {
  width: 100%;
  height: 65px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  box-sizing: border-box;
}

.top-bar-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.icon-group {
  display: flex;
  align-items: center;
  gap: 28px;
}

.icon-group i {
  width: 22px;
  height: 22px;
  color: var(--black);
  cursor: pointer;
  transition: color 0.2s ease;
}

.icon-group i:hover {
  color: var(--blue);
}

/* ---------- MAIN HEADER ---------- */
.main-header {
  width: 100%;
  height: 65px;
  background: var(--white);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 6%;
  box-sizing: border-box;
}

.header-inner {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: baseline;
  gap: 45px;
}

.nav-item {
  color: var(--black);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1.5px;
  position: relative;
  transition: color 0.4s ease;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--blue);
  transition: width 0.3s ease;
}

.nav-item:hover {
  color: var(--blue);
}

.nav-item:hover::after {
  width: 100%;
}

.brand-name {
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: 1.5px;
  color: var(--black);
  position: relative;
  top: -3px;
}

/* ---------- HERO SECTION ---------- */
.hero.hero-placeholder {
  position: relative;
  height: 100vh;
  background: url('ChatGPT Image Oct 22, 2025, 05_11_42 PM.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 6%;
  box-sizing: border-box;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.25));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--white);
  letter-spacing: 1.5px;
}

.cta-button {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 0.9rem 2.5rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--white);
  color: var(--black);
  padding: 4rem 6%;
  box-sizing: border-box;
  border-top: 1px solid #ddd;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 1.5px;
}

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

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  text-decoration: none;
  color: var(--black);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: var(--blue);
}

.subscribe-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.subscribe-group input {
  border: none;
  border-bottom: 1px solid var(--black);
  padding: 0.5rem;
  width: 100%;
  font-size: 0.95rem;
  outline: none;
  background: transparent;
  color: var(--black);
  transition: border-color 0.2s ease;
}

.subscribe-group input:focus {
  border-color: var(--blue);
}

.subscribe-group button {
  background: var(--black);
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
}

.subscribe-group button:hover {
  background: var(--blue);
}

.footer-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 3rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
}

.footer-center {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.footer-center a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-center a:hover {
  color: var(--blue);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-right i {
  width: 22px;
  height: 22px;
  color: var(--black);
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-right i:hover {
  color: var(--blue);
}

.copyright {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #666;
}
