@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

.dm-category-card {
  color: inherit;
  display: block;
  text-decoration: none;
}

.dm-category-card:hover,
.dm-category-card:focus {
  color: inherit;
  text-decoration: none;
}

/* ==============================
   Navbar
   Styles for the main website navigation.
   ============================== */

/* Gives the navbar a clean light grey background and subtle separation. */
.site-navbar {
  background-color: #f1f1f1;
  border-bottom: 1px solid #dedede;
}

/* Makes the brand name stand out without making the navbar heavy. */
.site-navbar .navbar-brand {
  color: #222222;
  font-weight: 700;
}

/* Keeps menu links readable and neatly spaced. */
.site-navbar .nav-link {
  color: #333333;
  font-weight: 500;
  padding-left: 14px;
  padding-right: 14px;
}

/* Adds clear feedback for hover, focus, and active menu states. */
.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.site-navbar .nav-link.active {
  color: #000000;
}

/* Keeps the mobile menu button aligned with the light navbar style. */
.site-navbar .navbar-toggler {
  border-color: #cfcfcf;
}

/* =========================
   HERO SECTION STYLES
========================= */

/* The hero creates the first strong brand message visitors see on the page. */
.hero-section {
  min-height: 90vh;
  background: #eef1f7;
  color: #121826;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  padding: 96px 0;
  position: relative;
}

/* This subtle layer adds depth while keeping the background clean and premium. */
.hero-section::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(52, 120, 246, 0.14), transparent 32%),
    radial-gradient(circle at 80% 30%, rgba(0, 180, 216, 0.14), transparent 30%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

/* Keeps all hero content above the decorative background layer. */
.hero-section .container {
  position: relative;
  z-index: 1;
}

/* Main Heading Styles */
.hero-eyebrow {
  color: #4a5568;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero-title-small {
  color: #111827;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.hero-title-large {
  color: #062f6f;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

/* The subtitle supports the headline without competing with it visually. */
.hero-subtitle {
  color: #4b5563;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.8;
  max-width: 760px;
}

/* CTA Button Styles */
.hero-btn {
  align-items: center;
  border: 0;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.14);
  display: inline-flex;
  font-size: 1rem;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  min-height: 56px;
  min-width: 210px;
  overflow: hidden;
  padding: 14px 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #0844a4 0%, #08a7d8 100%);
  color: #ffffff;
}

.hero-btn-secondary {
  background: linear-gradient(135deg, #111827 0%, #3b82f6 100%);
  color: #ffffff;
}

/* Hover Effects */
.hero-btn:hover,
.hero-btn:focus {
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.2);
  color: #ffffff;
  transform: translateY(-4px);
}

.hero-btn.is-pressed {
  transform: translateY(-1px) scale(0.98);
}

.hero-btn i {
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.hero-btn:hover i,
.hero-btn:focus i {
  transform: translateX(4px);
}

/* Entrance Animation */
.hero-section [class*="hero-"] {
  animation: heroFadeUp 0.8s ease both;
}

.hero-subtitle {
  animation-delay: 0.12s;
}

.hero-actions {
  animation-delay: 0.24s;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: 88vh;
    padding: 72px 0;
  }

  .hero-subtitle {
    line-height: 1.7;
  }

  .hero-actions,
  .hero-btn {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .hero-btn {
    min-width: 100%;
  }
}

/* =========================
   SERVICES SECTION STYLES
========================= */

/* The services section quickly explains what the company can deliver. */
.services-section {
  background: linear-gradient(180deg, #f8fafc 0%, #eef1f7 100%);
  font-family: "Poppins", sans-serif;
  padding: 96px 0;
}

/* Section Heading */
.services-title {
  color: #101828;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
}

.services-intro {
  color: #5b6472;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 720px;
}

/* Service Card Structure */
.service-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  color: inherit;
  display: block;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* The image bar gives every service a strong visual identity. */
.service-image {
  align-items: center;
  color: #ffffff;
  display: flex;
  height: 150px;
  justify-content: center;
}

.service-image i {
  font-size: 3.4rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.service-image-marketing {
  background: linear-gradient(135deg, #0f4c81 0%, #21a5d5 100%);
}

.service-image-web {
  background: linear-gradient(135deg, #14213d 0%, #3b82f6 100%);
}

.service-image-printing {
  background: linear-gradient(135deg, #364156 0%, #7b8da8 100%);
}

.service-image-qr {
  background: linear-gradient(135deg, #063970 0%, #00a6a6 100%);
}

.service-image-whatsapp {
  background: linear-gradient(135deg, #075e54 0%, #25d366 100%);
}

.service-image-menus {
  background: linear-gradient(135deg, #1f2937 0%, #f59e0b 100%);
}

/* Card Text Content */
.service-content {
  padding: 26px 24px 30px;
}

.service-name {
  color: #102a56;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 12px;
}

.service-text {
  color: #667085;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Hover Effects */
.service-card:hover,
.service-card:focus {
  border-color: rgba(8, 68, 164, 0.22);
  box-shadow: 0 26px 55px rgba(15, 23, 42, 0.14);
  color: inherit;
  transform: translateY(-8px);
}

.service-card:hover .service-image i,
.service-card:focus .service-image i {
  transform: scale(1.08);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .services-section {
    padding: 80px 0;
  }
}

@media (max-width: 575.98px) {
  .services-section {
    padding: 64px 0;
  }

  .service-image {
    height: 132px;
  }

  .service-content {
    padding: 24px 22px 28px;
  }
}

/* =========================
   OUR CLIENTS SECTION STYLES
========================= */

/* The clients section builds trust by showing the industries served. */
.clients-section {
  background: #f8fafc;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  padding: 86px 0;
}

/* Section Heading */
.clients-title {
  color: #101828;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
}

.clients-subtitle {
  color: #5b6472;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 680px;
}

/* Client Card Styles */
.clients-marquee {
  position: relative;
  width: 100%;
}

.clients-marquee::before,
.clients-marquee::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 120px;
  z-index: 2;
}

.clients-marquee::before {
  background: linear-gradient(90deg, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
  left: 0;
}

.clients-marquee::after {
  background: linear-gradient(270deg, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
  right: 0;
}

.clients-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.clients-marquee-group {
  animation: clientsScroll 26s linear infinite;
  display: flex;
  flex-shrink: 0;
  gap: 24px;
}

.client-card {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  color: #102a56;
  display: flex;
  gap: 14px;
  min-height: 86px;
  min-width: 260px;
  padding: 22px 26px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.client-card i {
  align-items: center;
  background: linear-gradient(135deg, #0844a4 0%, #08a7d8 100%);
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  flex: 0 0 44px;
  font-size: 1.25rem;
  height: 44px;
  justify-content: center;
  line-height: 1;
  width: 44px;
}

.client-card span {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

/* Scrolling Animation */
.clients-marquee:hover .clients-marquee-group {
  animation-play-state: paused;
}

@keyframes clientsScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 24px));
  }
}

/* Hover Effects */
.client-card:hover {
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
  transform: translateY(-6px);
}

/* Responsive Design */
@media (max-width: 767.98px) {
  .clients-section {
    padding: 72px 0;
  }

  .clients-marquee::before,
  .clients-marquee::after {
    width: 60px;
  }

  .client-card {
    min-width: 230px;
    padding: 20px 22px;
  }
}

@media (max-width: 575.98px) {
  .clients-section {
    padding: 64px 0;
  }

  .clients-marquee-group {
    animation-duration: 22s;
    gap: 18px;
  }

  .clients-marquee-track {
    gap: 18px;
  }

  .client-card {
    min-width: 210px;
  }
}

/* =========================
   WHATSAPP CONTACT SECTION STYLES
========================= */

/* This section gives visitors a fast support option before the full contact details. */
.whatsapp-section {
  background: linear-gradient(135deg, #f8fafc 0%, #ecfdf5 48%, #eef1f7 100%);
  font-family: "Poppins", sans-serif;
  padding: 86px 0;
}

/* The large WhatsApp icon makes the support action instantly recognizable. */
.whatsapp-icon {
  align-items: center;
  background: linear-gradient(135deg, #075e54 0%, #25d366 100%);
  border-radius: 50%;
  box-shadow: 0 20px 45px rgba(37, 211, 102, 0.28);
  color: #ffffff;
  display: flex;
  height: 92px;
  justify-content: center;
  width: 92px;
}

.whatsapp-icon i {
  font-size: 3rem;
  line-height: 1;
}

/* Section Heading */
.whatsapp-title {
  color: #101828;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
}

.whatsapp-subtitle {
  color: #5b6472;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 680px;
}

/* WhatsApp CTA Button */
.whatsapp-btn {
  align-items: center;
  background: linear-gradient(135deg, #075e54 0%, #25d366 100%);
  border: 0;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.3);
  color: #ffffff;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 58px;
  min-width: 250px;
  padding: 15px 30px;
  transition: box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.whatsapp-btn i {
  font-size: 1.3rem;
  line-height: 1;
}

/* Hover Effects */
.whatsapp-btn:hover,
.whatsapp-btn:focus {
  box-shadow: 0 24px 50px rgba(37, 211, 102, 0.38);
  color: #ffffff;
  transform: translateY(-4px);
}

/* Responsive Design */
@media (max-width: 767.98px) {
  .whatsapp-section {
    padding: 72px 0;
  }

  .whatsapp-btn {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .whatsapp-icon {
    height: 78px;
    width: 78px;
  }

  .whatsapp-icon i {
    font-size: 2.5rem;
  }
}

/* =========================
   CONTACT SECTION STYLES
========================= */

/* The contact section gives visitors immediate ways to call or find the office. */
.contact-section {
  background: linear-gradient(180deg, #eef1f7 0%, #ffffff 100%);
  font-family: "Poppins", sans-serif;
  padding: 96px 0;
}

/* Section Heading */
.contact-title {
  color: #101828;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
}

.contact-intro {
  color: #5b6472;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 760px;
}

/* Contact Details Card */
.contact-info {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  padding: 34px;
}

.contact-item {
  align-items: flex-start;
  display: flex;
  gap: 18px;
}

/* Icons make contact details easier to scan quickly. */
.contact-icon {
  align-items: center;
  background: linear-gradient(135deg, #0844a4 0%, #08a7d8 100%);
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  flex: 0 0 52px;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.contact-icon i {
  font-size: 1.25rem;
  line-height: 1;
}

.contact-label {
  color: #102a56;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-link {
  color: #0844a4;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-link:hover,
.contact-link:focus {
  color: #062f6f;
  transform: translateX(4px);
}

.contact-text {
  color: #667085;
  font-size: 1rem;
  line-height: 1.7;
}

/* Google Map */
.contact-map {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  min-height: 420px;
  overflow: hidden;
}

.contact-map-frame {
  border: 0;
  display: block;
  height: 100%;
  min-height: 420px;
  width: 100%;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-map,
  .contact-map-frame {
    min-height: 360px;
  }
}

@media (max-width: 575.98px) {
  .contact-section {
    padding: 64px 0;
  }

  .contact-info {
    padding: 26px 22px;
  }

  .contact-item {
    gap: 14px;
  }

  .contact-icon {
    flex-basis: 46px;
    height: 46px;
    width: 46px;
  }

  .contact-map,
  .contact-map-frame {
    min-height: 320px;
  }
}

/* =========================
   FOOTER STYLES
========================= */

.site-footer {
  background-color: #f8fafc;
  border-top: 1px solid #eef1f7;
  font-family: "Poppins", sans-serif;
}

.footer-logo {
  color: #111827;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-description {
  color: #667085;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-heading {
  color: #102a56;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: #0844a4;
  padding-left: 8px;
}

.footer-contact-item {
  color: #4b5563;
}

.footer-contact-item a {
  color: inherit;
  text-decoration: none;
}

.footer-divider {
  border-color: #e2e8f0;
  opacity: 1;
}
