/* ================= 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;
osition: relative;
margin-top: 85px;
}

.blog-featured-image {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.blog-section {
  padding: 60px 20px;
  background: #f8f9fb;
  font-family: Arial, sans-serif;
  color: #222;
}

.blog-container {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.blog-container h1 {
  font-size: 36px;
  color: #1b3c73;
  line-height: 1.3;
  margin-bottom: 25px;
}

.blog-container h2 {
  font-size: 26px;
  color: #1b3c73;
  margin-top: 35px;
  margin-bottom: 15px;
}

.blog-container h3 {
  font-size: 20px;
  color: #333;
  margin-top: 20px;
}

.blog-container p,
.blog-container li {
  font-size: 17px;
  line-height: 1.8;
}

.blog-container ul {
  padding-left: 25px;
  margin-bottom: 20px;
}

.blog-container table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
}

.blog-container th {
  background: #1b3c73;
  color: #fff;
  padding: 14px;
  text-align: left;
}

.blog-container td {
  border: 1px solid #ddd;
  padding: 14px;
}

.cta-box {
  margin-top: 40px;
  padding: 35px;
  background: linear-gradient(135deg, #1b3c73, #2659a8);
  color: #fff;
  border-radius: 14px;
  text-align: center;
}

.cta-box h2,
.cta-box p,
.cta-box li {
  color: #fff;
}

.cta-box a {
  display: inline-block;
  margin: 15px 0;
  padding: 14px 28px;
  background: #fff;
  color: #1b3c73;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
}

.cta-box ul {
  list-style: none;
  padding-left: 0;
}

.cta-box li::before {
  content: "✔ ";
}

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

  .blog-container h1 {
    font-size: 28px;
  }

  .blog-container h2 {
    font-size: 23px;
  }
}
.social-icons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #1b3c73;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
    background: #ffd700;
    color: #1b3c73;
}
/* ================= 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);
}
