.aosc-footer {
    background-color: #131f4c;
    color: #fff;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .aosc-footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .aosc-footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  
  .aosc-footer-logo-img {
    width: 130px;
    height: 130;
    margin-bottom: 15px;
  }
  
  .aosc-footer-logo p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .aosc-footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #fff;
  }
  
  .aosc-footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .aosc-footer-col ul li {
    margin-bottom: 10px;
  }
  
  .aosc-footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  
  .aosc-footer-col ul li a:hover {
    color: #fff;
  }
  
  .aosc-footer-col p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .aosc-social-icons a {
    color: #fff;
    margin-right: 10px;
    font-size: 18px;
    transition: opacity 0.3s ease;
  }
  
  .aosc-social-icons a:hover {
    opacity: 0.7;
  }

  
  /* Section Base Styling */
.section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px;
  background-color: #ffffff;
  flex-wrap: wrap;
}

/* Text Styling */
.section .text-content {
  flex: 1;
  max-width: 50%;
}

.section .text-content h2 {
  font-size: 36px;
  color: #0d1a73;
  margin-bottom: 20px;
  font-weight: bold;
}

.section .text-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

/* Image Styling */
.section img {
  flex: 1;
  max-width: 45%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .section .text-content,
  .section img {
    max-width: 100%;
  }

  .section .text-content {
    margin-bottom: 30px;
  }
}


/* CSS */
.service-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.service-section h2 {
  font-size: 2.2rem;
  color: #0b1940;
  text-align: center;
  margin-bottom: 20px;
}

.service-section .intro {
  font-size: 1.1rem;
  color: #444;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.dm-services {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.dm-services li {
  background: #fff;
  padding: 15px 20px;
  margin: 10px 0;
  border-left: 4px solid #0b1940;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-size: 1rem;
  line-height: 1.6;
}

.dm-services li strong {
  color: #0b1940;
}

/* Cards */
.dm-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.dm-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 300px;
  flex: 1 1 250px;
  transition: transform 0.3s ease;
}

.dm-card:hover {
  transform: translateY(-5px);
}

.dm-card img {
  width: 100%;
  height: auto;
  display: block;
}

.dm-card h3 {
  font-size: 1.2rem;
  color: #0b1940;
  margin: 15px;
}

.dm-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 15px 15px 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .service-section h2 {
    font-size: 1.8rem;
  }

  .dm-services li {
    font-size: 0.95rem;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .service-section {
    padding: 40px 15px;
  }

  .service-section h2 {
    font-size: 1.5rem;
  }

  .service-section .intro {
    font-size: 1rem;
  }

  .dm-cards {
    flex-direction: column;
    align-items: center;
  }
}
