:root {
  --primary-color: #1e90ff;
  --dark-bg: #1a1a40;
  --light-bg: #ffffff;
  --text-muted: #b0b0c0;
  --accent-red: #d9534f;
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  color: var(--text-muted);
  border-top: 4px solid var(--accent-red);
  padding: 60px 0 30px;
  font-size: 0.95rem;
}

.footer h5 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-logo {
  height: 60px;
  opacity: 0.8;
  margin-top: 10px;
}

.footer-links,
.footer ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links li,
.footer ul li {
  margin-bottom: 8px;
}

.footer-links a,
.footer a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.footer iframe {
  border-radius: 8px;
  border: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.footer hr {
  border-color: rgba(255,255,255,0.1);
  margin: 30px 0;
}

.footer-bottom {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.social-icons a {
  font-size: 1.2rem;
  margin-left: 15px;
  color: #ccc;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary-color);
}
/* ABOUT PAGE LAYOUT */
.about-wrapper {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.about-subtitle {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* ABOUT CONTENT BLOCKS */
.about-section {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.about-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1c1c3d;
  margin-bottom: 15px;
}

.about-section p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

/* IMAGE BANNER */
.about-banner {
  width: 100%;
  height: 300px;
  background: url('assets/img/about-banner.png') center/cover no-repeat;
  border-radius: 12px;
  margin-bottom: 40px;
  position: relative;
}

.about-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  border-radius: 12px;
}

/* TEAM / SERVICES GRID */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.about-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.about-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-title {
    font-size: 1.8rem;
  }

  .about-banner {
    height: 200px;
  }
}

/* SERVICES PAGE */
.services-wrapper {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.services-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.service-box img {
  height: 80px;
  margin-bottom: 15px;
  object-fit: contain;
}

.service-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1c1c3d;
}

.service-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}