/* =========================================================
   DIGITAL MARKETING PAGE - DA SERVICES
   Author: DA Services Web Team
   ========================================================= */

/* ---------- General Styles ---------- */
body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  color: #212529;
}

p {
  color: #555;
}

/* ---------- Hero Section ---------- */
section.bg-light.text-center {
  background: linear-gradient(135deg, #1C3242 0%, #212529 100%);
  color: white;
  padding: 100px 0;
}

section.bg-light.text-center h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

section.bg-light.text-center p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 20px auto 0;
  color: #fff;
  opacity: 0.9;
}

/* ---------- About Section ---------- */
#digital-about {
  padding: 80px 0;
  background-color: #f9fafb;
}

#digital-about .row {
  display: flex;
  align-items: center;
}

#digital-about img {
  border-radius: 20px;
  max-width: 100%;
  height: auto;
  animation: floatImage 4s ease-in-out infinite;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#digital-about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

#digital-about p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}

/* Floating animation */
@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* ---------- Services Cards ---------- */
.service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 25px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #1C3242;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card h4 {
  color: #222;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
}

/* ---------- Icons ---------- */
.icon-wrapper {
  font-size: 3rem;
  color: #212529;
  background: #ffeaea;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px auto;
  transition: 0.3s ease;
}

.service-card:hover .icon-wrapper {
  background: #212529;
  color: #fff;
  transform: rotate(10deg);
}

/* Responsive */
@media (max-width: 768px) {
  .icon-wrapper {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
  }
}

/* ---------- CTA Section ---------- */
.bg-brand {
  background: linear-gradient(135deg, #1C3242 0%, #212529 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.bg-brand h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #fff;
}

.bg-brand p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.btn-light {
  background-color: #fff;
  color: #111;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 25px;
  transition: 0.3s ease;
}

.btn-light:hover {
  background-color: #ffeaea;
  transform: translateY(-2px);
}
footer {
    background: linear-gradient(0deg, rgba(8, 32, 50, 0.9), rgba(8, 32, 50, 0.9)), url(../img/bg_banner1.jpg), #082032;;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

footer .footer-top {
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    padding-top: 20px;
}

footer .navbar-brand {
    color: #fff;
}

footer p {
    color: #ADB3B9;
}

footer .social-icons a {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-left: 4px;
    margin-right: 4px;
}

/* ---------- Footer ---------- */
footer {
  background-color: #111;
  padding: 30px 0;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
  color: #ccc;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
  #digital-about .row {
    text-align: center;
  }
  #digital-about img {
    margin-bottom: 30px;
  }
}

/* ---------- Hero Section ---------- */
.hero-digital {
  background: linear-gradient(135deg, #fff 0%, #f9fafb 100%);
  padding: 100px 0;
}

.hero-digital h1 {
  font-size: 2.8rem;
  color: #212529;
}

.hero-digital p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.hero-digital .btn-brand {
  background-color: #111;
  color: #fff;
  border-radius: 50px;
  padding: 10px 25px;
  transition: 0.3s ease;
}

.hero-digital .btn-brand:hover {
  background-color: #212529;
  transform: translateY(-2px);
}

.hero-img {
  max-width: 50%;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.03);
}

/* Responsive Fix */
@media (max-width: 992px) {
  .hero-digital {
    text-align: center;
    padding: 60px 0;
  }
  .hero-digital h1 {
    font-size: 2rem;
  }
  .hero-img {
    max-width: 90%;
    margin-top: 30px;
  }
}
