:root {
  --bg:#ffffff;
  --card:#f9fafb;
  --muted:#6b7280;
  --accent:#5515e9;
  --accent-2:#FF0101;
  --max-width:1200px;
}

/* ===== GLOBAL ===== */
* { box-sizing: border-box; }
body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  color: #222;
  line-height: 1.6;
}
a { text-decoration: none; }
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #111;
}
.container {
  max-width: 1250px;
  margin: auto;
  padding: 0 24px;
}
 /* ===== HEADER BASE ===== */
.top-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.container {
  max-width: 1250px;
  margin: auto;
  padding: 0 20px;
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Montserrat','Poppins',sans-serif;
  text-decoration: none;
}

.logo-main { color: #111; }

.logo-accent {
  color: #ff6a00;
  position: relative;
  padding-left: 8px;
}

.logo-accent::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 60%;
  background: #e5e7eb;
  transform: translateY(-50%);
}

/* ===== NAVIGATION ===== */
.nav {
  display: flex;
  align-items: center;
}

.nav a {
  margin: 0 14px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #222;
  text-decoration: none;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ff6a00;
  transition: width .25s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* ===== DROPDOWN ===== */
.nav-dropdown {
  position: relative;
}

.drop-link {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  display: none;
  gap: 40px;
  padding: 24px;
  min-width: 460px;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  z-index: 999;
}

.nav-dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dropdown-title {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.dropdown-menu a {
  font-size: 14px;
  color: #111;
}

.dropdown-menu a:hover {
  color: #ff6a00;
}

.view-all {
  margin-top: 8px;
  font-weight: 600;
}

/* ===== HEADER ACTIONS ===== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.plans, .login {
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  color: #111;
  background: #f3f4f6;
  font-weight: 500;
  transition: background .2s ease;
}

.plans:hover,
.login:hover {
  background: #e5e7eb;
}

.signup {
  background: #ff6a00;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.signup:hover {
  background: #e85f00;
}
/* =========================
   MOBILE MENU ICON
========================= */
.mobile-menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}
/* MOBILE NAV */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #0d0d0d;
  width: 100%;
  position: absolute;
  top: 72px;
  left: 0;
  z-index: 999;
}

.mobile-nav.open {
  display: flex;
  animation: slideDown 0.25s ease forwards;
}

/* MOBILE DROPDOWN */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  background: #161616;
}

.mobile-dropdown.open .mobile-dropdown-menu {
  display: flex;
}

/* ARROW */
.mobile-drop-link {
  position: relative; /* fix arrow */
  cursor: pointer;
}

.mobile-drop-link::after {
  content: "▸";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.mobile-dropdown.open .mobile-drop-link::after {
  transform: rotate(90deg);
}

/* LINKS */
.mobile-nav a,
.mobile-drop-link {
  padding: 14px 20px;
  color: #e6e6e6;
  font-size: 16px;
  text-decoration: none;
  border-top: 1px solid #1c1c1c;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  width: 100%;
}

.mobile-nav a:hover,
.mobile-drop-link:hover {
  color: #ff6a00;
}

/* DROPDOWN TITLES */
.mobile-dropdown-title {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  padding: 10px 20px 6px;
}

/* DROPDOWN LINKS */
.mobile-dropdown-menu a {
  padding: 12px 28px;
  font-size: 15px;
  border-top: 1px solid #222;
}

/* ANIMATION */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MEDIA */
@media (max-width: 992px) {
  .nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-icon {
    display: block;
  }
}

/* IMPORTANT: make top-header relative for absolute mobile nav */
.top-header {
  position: relative;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 522px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  background: radial-gradient(circle at top right, #1e2a3a, #0a101a 80%);
  color: #ffffff;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* Overlay for subtle depth */
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

/* Vector pattern */
.hero-pattern {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://i.ibb.co/2dC3s6v/vector-pattern.png');
  background-repeat: repeat;
  background-size: 180px;
  opacity: 0.05;
  z-index: 0;
}

/* Hero content wrapper */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  width: 100%;
  animation: fadeInUp 1s ease forwards;
}
/* Wrapper for select */
.select-wrap {
  position: relative;
  min-width: 170px;
}

/* Select */
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 100%;
  padding: 13px 42px 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

/* Focus */
.select-wrap select:focus {
  outline: none;
  border-color: rgba(255, 122, 31, 0.6);
  background: rgba(255, 255, 255, 0.09);
}

/* Arrow icon */
.select-wrap::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

/* Dropdown options (limited styling) */
.select-wrap select option {
  background: #0f172a; /* dark panel */
  color: #ffffff;
  font-size: 14px;
}
/* Heading */
.hero-content h1 {
  font-size: 52px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
  color: #fff;
}

/* Glow behind heading */
.hero-content h1::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 150px;
  background: radial-gradient(circle, rgba(255,107,0,0.3) 0%, transparent 80%);
  z-index: -1;
  border-radius: 50%;
}

/* Highlight text */
.hero-content .highlight-download {
  color: #ff7a1f;
  position: relative;
}

/* Subtitle */
.hero-content p {
  font-size: 20px;
  color: #d1d5db;
  margin-bottom: 30px;
  font-weight: 500;
}

/* ================= SEARCH BOX ================= */
.search-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

/* Inputs & Select */
.search-box select,
.search-box input {
  padding: 13px 16px;
  border-radius: 10px; /* less round = more professional */
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 15px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

/* Focus state (important for professional UX) */
.search-box select:focus,
.search-box input:focus {
  border-color: rgba(255, 122, 31, 0.6);
  background: rgba(255, 255, 255, 0.09);
}

/* Sizes */
.search-box select {
  min-width: 170px;
}
.search-box input {
  flex: 1 1 260px;
}

/* Button */
.search-btn {
  padding: 13px 26px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(180deg, #ff8a3d, #ff6b1f);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

/* Button hover (no jump, no childish motion) */
.search-btn:hover {
  box-shadow: 0 6px 16px rgba(255, 122, 31, 0.35);
}

/* Placeholder color */
.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Mobile */
@media (max-width: 768px) {
  .search-box select,
  .search-box input,
  .search-btn {
    width: 100%;
  }
}
/* Popular tags */
.popular {
  margin-top: 15px;
  font-size: 16px;
  color: #aaa;
}
.popular span { margin-right: 6px; }
.popular a {
  color: #ff7a1f;
  margin-right: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.popular a:hover { color: #ffb37f; }

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 36px; }
  .hero-content p { font-size: 16px; }
  .search-box select,
  .search-box input,
  .search-btn { width: 100%; }
}

/* Subtle fade-in animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* ===== CATEGORY ===== */
.category-section {
  padding: 70px 0;
  background: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 36px;
  color: #111827;
}

/* Horizontal scroll */
.category-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 8px 20px;
  scroll-behavior: smooth;
}
.category-grid::-webkit-scrollbar {
  display: none;
}

/* Card */
.category-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* Icon container */
.cat-icon {
  height: 140px;              /* was 120px */
  border-radius: 12px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* Icon image */
.cat-icon img {
  max-width: 90%;             /* was 80% */
  max-height: 90%;
  object-fit: contain;
}

/* Text */
.category-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 6px 0 4px;
  color: #111827;
}

.category-card p {
  font-size: 14.5px;
  color: #6b7280;
  margin-bottom: 10px;
}

.cat-link {
  font-size: 14px;
  font-weight: 600;
  color: #ff7a1f;
  text-decoration: none;
}

.cat-link:hover {
  text-decoration: underline;
}
/* ===== WHY CHOOSE US ===== */
.why-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  background: #0f1115;
  color: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

/* Cards */
.why-card {
  padding: 32px;
  border-radius: 14px;
  background: #141821;
  border: 1px solid #1f232b;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: #2a2f3a;
}

/* Text */
.why-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.why-card p {
  font-size: 15px;
  color: #9aa0a6;
  line-height: 1.6;
}
/* ===== BLOG ===== */
.blog-section {
  padding: 70px 20px;
  background: #ffffff;
}

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

/* Card */
.blog-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  display: block;
  color: #111827;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Text */
.blog-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-card p {
  font-size: 14.5px;
  margin-bottom: 14px;
  color: #6b7280;
  line-height: 1.6;
}

.blog-read {
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
}


/* ================= FOOTER ================= */
.pro-footer {
  position: relative;
  padding: 70px 20px 30px;
  background: #0f1115; /* professional dark gray */
  color: #b3b3b3;
  border-top: 1px solid #1f232b;
  font-family: 'Inter', sans-serif;
}

/* Footer container */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo / Brand */
.footer-logo {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.6;
  color: #9aa0a6;
}

/* Column titles */
.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #ffffff;
}

/* Links */
.footer-col a {
  display: block;
  margin: 8px 0;
  font-size: 14.5px;
  color: #9aa0a6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

/* Newsletter input */
.footer-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #2a2f3a;
  background: #141821;
  color: #ffffff;
  font-size: 14.5px;
}

.footer-input::placeholder {
  color: #7b8088;
}

.footer-input:focus {
  outline: none;
  border-color: #3a4152;
}

/* Button */
.footer-btn {
  width: 100%;
  margin-top: 12px;
  padding: 12px 16px;
  background: #1f232b;
  color: #ffffff;
  border-radius: 8px;
  border: 1px solid #2a2f3a;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.footer-btn:hover {
  background: #2a2f3a;
  border-color: #3a4152;
}

/* Copyright */
.footer-copy {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #1f232b;
  font-size: 13.5px;
  color: #7b8088;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

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

  .footer-col a {
    margin: 6px 0;
  }

  .footer-btn {
    text-transform: none;
    letter-spacing: 0;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width:900px) { .footer-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:768px) {
  .nav { display:none; }
  .mobile-menu-icon { display:block; }
  .hero-content h1 { font-size:28px; }
  .hero-content p { font-size:16px; }
}
@media (max-width:600px) {
  .footer-grid { grid-template-columns:1fr; text-align:center; }
  .footer-col a:hover { transform:none; }
  .footer-btn { width:100%; }
  .footer-logo { margin-bottom:20px; }
  .category-grid { grid-auto-columns:180px; gap:16px; }
  .category-card h3 { font-size:18px; }
  .category-card p { font-size:14px; }
}
@media (max-width:480px) {
  .logo { font-size:20px; }
  .header-actions { flex-direction:column; gap:8px; }
  .hero-content h1 { font-size:22px; }
  .hero-content p { font-size:14px; }
  .category-grid { grid-auto-columns:150px; }
  .why-card h3 { font-size:18px; }
  .why-card p { font-size:14px; }
  .blog-card h3 { font-size:18px; }
  .blog-card p { font-size:14px; }
}
