/* best-it-service-company-behror.css */
:root {
  --primary-color: #007bff;
  --accent-color: #00e5ff;
  --bg-color: #0f172a;
  --card-bg: rgba(30, 41, 59, 0.7);
  --text-color: #e2e8f0;
  --text-muted: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(15, 23, 42, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

a:hover {
  color: #fff;
}

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

.redirect-button {
  position: fixed;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  z-index: 100;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #fff;
}

.redirect-button:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

/* HERO */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, #1e3a8a 0%, var(--bg-color) 60%);
  padding: 100px 20px 60px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.pill {
  display: inline-block;
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.1);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.meta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cta {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 30px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-color);
  cursor: pointer;
}

.btn:hover {
  background: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
  color: #fff;
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-color);
}

.btn.ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}

.prose {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.prose p {
  margin-bottom: 15px;
}

.prose ul {
  text-align: left;
  display: inline-block;
  margin: 20px auto;
}

.prose li {
  margin-bottom: 10px;
  list-style-type: disc;
  margin-left: 20px;
}

/* GRID & CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(255,255,255,0.2);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.card p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.note {
  font-size: 0.95rem;
  background: rgba(0, 229, 255, 0.05);
  padding: 10px 15px;
  border-left: 3px solid var(--accent-color);
  border-radius: 0 8px 8px 0;
}

/* SERVICES LIST */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.service-item {
  background: linear-gradient(145deg, rgba(30,41,59,0.8), rgba(15,23,42,0.8));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.1);
  transform: scale(1.02);
}

.service-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.check-list {
  list-style: none;
  margin: 20px 0;
}

.check-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  color: var(--text-muted);
}

.check-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #10b981;
}

.benefit {
  font-weight: 600;
  color: #fff;
  margin-top: 20px;
  padding: 15px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
}

/* TWO COL SECTION */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.num-list {
  padding-left: 20px;
  color: var(--text-muted);
}

.num-list li {
  margin-bottom: 15px;
}

.num-list strong {
  color: #fff;
}

.highlight-bg {
  background: linear-gradient(135deg, rgba(239,68,68,0.1), rgba(30,41,59,0.8));
  border-color: rgba(239,68,68,0.2);
}

/* FORMULA SECTION */
.formula-section {
  text-align: center;
  background: url('data:image/svg+xml;utf8,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h40v40H0z" fill="none"/><path d="M0 39.5h40" stroke="rgba(255,255,255,0.03)" stroke-width="1"/><path d="M39.5 0v40" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>') repeat;
}

.formula-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.formula-item {
  background: var(--card-bg);
  border: 1px solid var(--accent-color);
  border-radius: 16px;
  padding: 30px;
  width: 220px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1);
  transition: transform 0.3s;
}

.formula-item:hover {
  transform: translateY(-10px);
}

.formula-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.formula-plus {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-muted);
}

.formula-conclusion {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-top: 30px;
}

/* FOCUS SECTION */
.focus-section {
  background: linear-gradient(to right, rgba(0,123,255,0.05), rgba(0,229,255,0.05));
  border-top: 1px solid rgba(0,229,255,0.1);
  border-bottom: 1px solid rgba(0,229,255,0.1);
  padding: 100px 20px;
}

.focus-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
}

.feature {
  background: rgba(255,255,255,0.05);
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.feature:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.motto {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--accent-color);
}

/* CTA SECTION */
.cta-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.action-box {
  background: linear-gradient(135deg, var(--card-bg), rgba(0, 123, 255, 0.15));
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  padding: 50px 30px;
  margin-top: 40px;
  box-shadow: 0 10px 40px rgba(0, 123, 255, 0.2);
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* FOOTER UPDATES */
.footer {
  background-color: #0b1120;
  padding: 60px 20px 20px;
  border-top: 1px solid var(--glass-border);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-brand-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.footer h2 {
  font-size: 1.5rem;
}

.footer h2, .footer h3 {
  color: #fff;
  margin-bottom: 20px;
}

.footer p {
  color: var(--text-muted);
  margin-bottom: 10px;
}

.seo-keywords-list {
  list-style: none;
}

.seo-keywords-list li {
  margin-bottom: 8px;
}

.seo-keywords-list a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.3s;
  display: inline-block;
}

.seo-keywords-list a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .two-col { grid-template-columns: 1fr; }
  .formula-grid { flex-direction: column; }
  .formula-plus { transform: rotate(90deg); margin: 10px 0; }
  .cta { flex-direction: column; width: 100%; }
  .cta .btn { width: 100%; justify-content: center; }
  .footer-container { text-align: center; }
  .seo-keywords-list a:hover { transform: translateY(-2px); padding-left: 0; }
  .footer-links { align-items: center; }
}
