/* ===============================
   ROOT VARIABLES
================================ */
:root {
  --primary-color: #0066cc;
  --secondary-color: #00a8ff;
  --accent-color: #ff6b35;
  --dark-color: #2c3e50;
  --light-color: #f8f9fa;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  padding-top: 76px; /* matches navbar height */
}

/* ===============================
   SECTIONS
================================ */
section {
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* ===============================
   NAVBAR (AUTHORITATIVE)
================================ */
.navbar {
  min-height: 76px;
  padding-top: 0;
  padding-bottom: 0;
}

/* Brand container */
.navbar-brand {
  display: flex;
  align-items: center;
  height: 76px;
  padding: 0;
}

/* LOGO — THIS IS THE KEY FIX */
.navbar-logo {
  height: 68px; /* fills navbar */
  width: auto;
  max-height: 100%;
  display: block;
}

/* Nav links */
.nav-link {
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 700;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary-color);
}

/* ===============================
   HERO SECTION
================================ */
/* ===============================
   HERO – ENTERPRISE FINAL
================================ */

.hero-section {
  background: linear-gradient(135deg, #f1f7ff 0%, #ffffff 100%);
  padding: 120px 0 100px;
}

/* HEADLINE */
.hero-heading {
  font-size: clamp(2.4rem, 3.6vw, 3.1rem);
  font-weight: 700;
  line-height: 1.25;
  color: #16202b; /* DARKER = MORE AUTHORITY */
  margin-bottom: 14px;
}

/* SUBTITLE */
.hero-subheading {
  font-size: 1.1rem;
  font-weight: 500;
  color: #4f5d73;
  margin-bottom: 18px;
}

/* DESCRIPTION */
.hero-description {
  font-size: 1rem;
  line-height: 1.75;
  color: #2f3e52; /* DARKER BODY TEXT */
  max-width: 540px;
  margin-bottom: 30px;
}

/* BADGES */
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* CTA */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* IMAGE */
.hero-image {
  max-width: 115%; /* +15% VISUAL WEIGHT */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.1);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
  .hero-section {
    padding: 90px 0 70px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    max-width: 100%;
  }
}

/* ===============================
   SERVICE CARDS
================================ */
/* ===============================
   SERVICES SECTION – ENTERPRISE
================================ */

.services-section {
  padding: 100px 0;
  background-color: #ffffff;
}

/* Force equal-height columns */
.services-row {
  display: flex;
  flex-wrap: wrap;
}

.service-col {
  display: flex;
}

/* Card structure */
.service-card {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 16px;
  border: none;
  padding: 32px 24px;

  display: flex;
  flex-direction: column;
  align-items: center;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Icon */
.service-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-icon i {
  font-size: 34px;
  color: #ffffff;
}

/* Title (fixed height for alignment) */
.service-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #16202b;
  margin-bottom: 12px;
  min-height: 54px;
}

/* Description grows to equalize height */
.service-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4f5d73;
  flex-grow: 1;
  margin: 0;
}

/* ===============================
   RESPONSIVE REFINEMENTS
================================ */

@media (max-width: 991px) {
  .services-section {
    padding: 70px 0;
  }

  .service-title {
    min-height: auto;
  }
}

/* ===============================
   FLOATING BUTTONS
================================ */
.whatsapp-float,
.phone-float {
  position: fixed;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 60px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s;
}

.whatsapp-float {
  bottom: 20px;
  background: #25d366;
  font-size: 30px;
}

.phone-float {
  bottom: 90px;
  background: var(--primary-color);
  font-size: 25px;
}

.whatsapp-float:hover,
.phone-float:hover {
  transform: scale(1.1);
}

/* ===============================
   CONTACT BOXES
================================ */
.contact-info-box {
  background: var(--light-color);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 4px solid var(--primary-color);
  transition: transform 0.3s;
}

.contact-info-box:hover {
  transform: translateX(5px);
}

/* ===============================
   FOOTER
================================ */
.footer {
  background: var(--dark-color);
  color: white;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  color: var(--secondary-color);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  body {
    padding-top: 64px;
  }

  .navbar {
    min-height: 64px;
  }

  .navbar-brand {
    height: 64px;
  }

  .navbar-logo {
    height: 56px;
  }

  section {
    padding: 60px 0;
    min-height: auto;
  }
}

/* ===============================
   ANIMATIONS
================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}
