/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f8fafc;
}

/* ========== RESET & GLOBAL ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #1e293b;
  line-height: 1.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER STYLES (reusable) ========== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #ffffff;
  padding: 12px 5%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #eef2ff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #2563eb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo h2 {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.logo h2 span {
  background: none;
  color: #e11d48;
}

.navbar>ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}

.navbar ul li a {
  text-decoration: none;
  font-weight: 600;
  color: #1f2937;
  transition: 0.2s;
  font-size: 1rem;
}

.navbar ul li a:hover {
  color: #2563eb;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
  border-radius: 16px;
  padding: 12px 0;
  flex-direction: column;
  gap: 0 !important;
  display: none;
  z-index: 100;
  border: 1px solid #e2e8f0;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-weight: 500;
  color: #334155;
}

.dropdown-menu li a:hover {
  background: #eff6ff;
  color: #1e40af;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.btn {
  background: #2563eb;
  color: white;
  padding: 10px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(37,99,235,0.3);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #1d4ed8;
  transform: scale(0.96);
}

/* Responsive Header */
@media (max-width: 850px) {
  .header {
    flex-direction: column;
    gap: 15px;
    padding: 12px 20px;
  }
  .navbar ul {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .dropdown-menu {
    top: 100%;
    left: 0;
  }
}
@media (max-width: 550px) {
  .navbar ul {
    gap: 12px;
  }
  .btn {
    padding: 6px 18px;
    font-size: 0.9rem;
  }
  .logo-img {
    width: 40px;
    height: 40px;
  }
  .logo h2 {
    font-size: 1.4rem;
  }
}

/* ========== GLOBAL BUTTONS ========== */
.btn-primary {
  background: #2563eb;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: #1d4ed8;
  transform: scale(0.98);
}
.btn-secondary {
  background: transparent;
  border: 2px solid #2563eb;
  color: #2563eb;
  padding: 10px 26px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.btn-secondary:hover {
  background: #2563eb;
  color: white;
}

/* ========== HERO SECTION ========== */
.hero {
  padding: 60px 0 40px;
  background: linear-gradient(120deg, #f8fafc 0%, #eff6ff 100%);
}
.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-content {
  flex: 1;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0f172a;
}
.hero-content p {
  font-size: 1.2rem;
  color: #334155;
  margin-bottom: 32px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-img {
  flex: 0.8;
  text-align: center;
}
.hero-img i {
  font-size: 12rem;
  color: #2563eb;
  opacity: 0.8;
}
@media (max-width: 900px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-img i { font-size: 8rem; }
}

/* ========== SECTION TITLES ========== */
section {
  padding: 70px 0;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0f172a;
}
.section-sub {
  text-align: center;
  color: #475569;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* ========== SERVICE & WHY CARDS ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.service-card, .why-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: all 0.2s;
  text-align: center;
  border: 1px solid #e2e8f0;
}
.service-card:hover, .why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -12px rgba(0,0,0,0.1);
  border-color: #bfdbfe;
}
.service-card i, .why-card i {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

/* ========== BRANDS ========== */
.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  row-gap: 24px;
  margin-top: 20px;
}
.brand-item {
  background: #f1f5f9;
  padding: 12px 24px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1.1rem;
  min-width: 100px;
  text-align: center;
}

/* ========== PROCESS STEPS ========== */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.step {
  flex: 1;
  min-width: 150px;
  background: #f8fafc;
  border-radius: 32px;
  padding: 24px 12px;
  text-align: center;
}
.step .step-num {
  background: #2563eb;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-bottom: 16px;
}

/* ========== SERVICE AREAS ========== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}
.area-tag {
  background: #eef2ff;
  padding: 12px;
  border-radius: 40px;
  text-align: center;
  font-weight: 500;
}

/* ========== FAQ ========== */
.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 18px 24px;
  margin-bottom: 16px;
  cursor: pointer;
}
.faq-question {
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  display: none;
  margin-top: 12px;
  color: #334155;
  padding-top: 8px;
}
.faq-item.active .faq-answer {
  display: block;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(110deg, #1e293b, #0f172a);
  color: white;
  border-radius: 40px;
  margin: 30px auto;
  text-align: center;
  padding: 60px 30px;
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.cta-section .btn-primary {
  background: #facc15;
  color: #0f172a;
  margin-top: 20px;
}

/* ========== FOOTER ========== */
footer {
  background: #f1f5f9;
  padding: 32px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #475569;
  margin-top: 40px;
}