/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fb;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= HEADER ================= */
header {
  width: 100%;
  position: fixed;
  top: 0;
left: 0;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  z-index: 100;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  padding: 0 25px;
  flex-wrap: wrap;
}

.logo img {
  height: 58px;
}

/* ================= NAVIGATION ================= */
nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

nav a {
  color: #255c64;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #144a9a, #8b0000);
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* ================= BUTTON ================= */
.btn-header {
  background: linear-gradient(135deg, #8b0000, #c62828);
  color: white;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(139, 0, 0, 0.35);
  transition: 0.3s ease;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 0, 0, 0.45);
}

.menu-toggle {
  display: none;
}
/* ================= BANNER / HERO ================= */
/* ================= BANNER / HERO ================= */
.banner-section.blog-hero {
  width: 100%;
  height: 800px;
  background: url('../images/blog banner img.png') center/cover no-repeat;
  position: relative;
margin-top: 85px;
}

.blog-page {
  padding: 50px 20px;
}

.container {
  max-width: 980px;
  margin: 0 auto;
}

.blog-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}



.blog-card h1 {
  font-size: 34px;
  line-height: 1.3;
  color: #0f172a;
  margin-bottom: 20px;
}

.blog-card h2 {
  font-size: 28px;
  color: #1d4ed8;
  margin-top: 34px;
  margin-bottom: 14px;
}

.blog-card h3 {
  font-size: 22px;
  color: #111827;
  margin-top: 24px;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 17px;
  margin-bottom: 16px;
}

.blog-card ul {
  margin: 10px 0 20px 22px;
}

.blog-card ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.blog-intro {
  font-size: 18px;
}

.cta-box {
  margin-top: 36px;
  padding: 28px;
  border-radius: 12px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  text-align: center;
}

.cta-box h3 {
  margin-top: 0;
  color: #1e3a8a;
}

.cta-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 24px;
  background: #1d4ed8;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

.cta-btn:hover {
  background: #1e40af;
}

@media (max-width: 768px) {
  .blog-card {
    padding: 24px;
  }

  .blog-card h1 {
    font-size: 26px;
  }

  .blog-card h2 {
    font-size: 22px;
  }

  .blog-card h3 {
    font-size: 19px;
  }

  .blog-card p,
  .blog-card ul li {
    font-size: 15px;
  }

  .blog-intro {
    font-size: 16px;
  }
}
.internal-link {
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 600;
}

.internal-link:hover {
  text-decoration: underline;
}

.contact-box {
  margin-top: 40px;
  padding: 25px;
  background: #f1f5f9;
  border-radius: 10px;
}

.external-links {
  margin-top: 15px;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
}

.map-btn {
  background: #1e3a8a;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
}
/* ================= FOOTER ================= */
.footer {
  background: #292929;
  color: #ffffff;
  padding-top: 55px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 20px 45px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #fff7c5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.85);
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff7c5;
  padding-left: 4px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

.footer-about {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-info li {
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 18px 10px;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.15);
}

