/* =====================================================
   ACCIPITER SOLUTIONS – ENTERPRISE UI SYSTEM
   Author: Accipiter Engineering
   Purpose: Corporate, SEO-friendly, Deloitte-style UI
===================================================== */

/* ---------- ROOT VARIABLES ---------- */
:root {
  --primary: #0d6efd;
  --primary-dark: #0a58ca;
  --dark: #0b1c2d;
  --dark-soft: #13293d;
  --light: #f8f9fa;
  --gray: #6c757d;
  --gradient-main: linear-gradient(135deg, #0b1c2d, #1c3f5e);
  --gradient-accent: linear-gradient(135deg, #0d6efd, #3aa0ff);
  --font-main: 'Poppins', sans-serif;
}

/* ---------- GLOBAL RESET ---------- */
body {
  font-family: var(--font-main);
  color: #1f2933;
  line-height: 1.7;
  background: #ffffff;
}
body {
  padding-top: 80px;
}


a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* ---------- NAVBAR FIX ---------- 
.navbar {
  background: var(--primary) !important;
  padding: 18px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.navbar .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  margin-left: 18px;
}

.navbar .btn {
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
}
  */

/* Remove unwanted gap */
body > div[style*="height"] {
  display: none;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(11,28,45,0.92), rgba(11,28,45,0.65)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-section h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-section h1 span {
  color: #7cc4ff;
}

.hero-subtitle {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #dbe7f3;
  max-width: 600px;
}

.hero-actions {
  margin-top: 35px;
}

.hero-actions .btn {
  margin-right: 12px;
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 10px;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: #f1f5f9;
  padding: 18px 0;
  font-weight: 600;
  color: #334155;
}

.trust-bar .col {
  font-size: 0.95rem;
}

/* ---------- SECTION GENERIC ---------- */
.section-padding {
  padding: 90px 0;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
}

.section-subtitle {
  color: var(--gray);
  max-width: 720px;
  margin: 12px auto 0;
}

/* ---------- SERVICES ---------- */
.service-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.service-card img {
  width: 48px;
  margin-bottom: 20px;
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

/* ---------- PRODUCTS ---------- */
.products-section {
  background: var(--gradient-main);
  color: #ffffff;
  padding: 100px 0;
}

.products-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.products-section p {
  color: #dbe7f3;
}

.product-points {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.product-points li {
  margin-bottom: 10px;
}

/* ---------- INDUSTRIES ---------- */
.section-padding .col-md-2 {
  font-weight: 600;
  padding: 18px;
  background: #f8fafc;
  margin: 6px;
  border-radius: 12px;
}

/* ---------- STATS ---------- */
.stats-section {
  background: #0b1c2d;
  color: #ffffff;
  padding: 80px 0;
}

.stats-section h3 {
  font-size: 2.5rem;
  font-weight: 700;
}

.stats-section p {
  color: #cbd5e1;
}

/* ---------- CTA ---------- */
.cta-section {
  background: var(--gradient-accent);
  padding: 90px 0;
  color: #ffffff;
}

.cta-section h2 {
  font-size: 2.6rem;
  font-weight: 700;
}

.cta-section p {
  max-width: 700px;
  margin: 20px auto;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #0b1c2d;
  color: #cbd5e1;
  padding: 70px 0 30px;
}

.footer h5,
.footer h6 {
  color: #ffffff;
  font-weight: 600;
}

.footer a {
  color: #cbd5e1;
}

.footer a:hover {
  color: #ffffff;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 28px;
  right: 28px;
  z-index: 99999;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover img {
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}


