/* ================= 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-section {
    padding: 60px 20px;
    background: #f8fafc;
}

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

.blog-container h1 {
    font-size: 38px;
    color: #1f2937;
    margin-bottom: 25px;
    line-height: 1.4;
}

.blog-container h2 {
    font-size: 30px;
    color: #0f4c81;
    margin-top: 40px;
    margin-bottom: 15px;
}

.blog-container h3 {
    font-size: 22px;
    color: #111827;
    margin-top: 25px;
}

.blog-container p {
    font-size: 17px;
    line-height: 1.9;
    color: #4b5563;
    margin-bottom: 15px;
}

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

.blog-container ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #374151;
}

.feature-box {
    background: #f1f5f9;
    padding: 20px;
    border-left: 5px solid #0f4c81;
    border-radius: 8px;
}

.table-responsive {
    overflow-x: auto;
    margin: 25px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th {
    background: #0f4c81;
    color: #fff;
    padding: 14px;
}

table td {
    padding: 14px;
    border: 1px solid #e5e7eb;
}

table tr:nth-child(even) {
    background: #f8fafc;
}

.faq-item {
    background: #f9fafb;
    border-left: 4px solid #0f4c81;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.faq-item h4 {
    margin-bottom: 10px;
    color: #0f4c81;
}

.cta-box {
    margin-top: 40px;
    padding: 35px;
    text-align: center;
    background: linear-gradient(135deg, #0f4c81, #1e3a8a);
    border-radius: 12px;
    color: #fff;
}

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

.cta-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 30px;
    background: #fff;
    color: #0f4c81;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #facc15;
    color: #111827;
}

@media (max-width: 768px) {

    .blog-container {
        padding: 25px;
    }

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

    .blog-container h2 {
        font-size: 24px;
    }

    .blog-container p,
    .blog-container li {
        font-size: 16px;
    }
}
/* ================= 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);
}

/* Featured Image */

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

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: 0.4s ease;
}

.blog-featured-image img:hover {
    transform: scale(1.03);
}

/* Social Share */

.social-share {
    margin-top: 40px;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #e5e7eb;
}

.social-share h3 {
    margin-bottom: 20px;
    color: #0f4c81;
}

.social-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 8px;
    color: #fff;
    font-size: 20px;
    transition: 0.3s ease;
}

.facebook {
    background: #1877f2;
}

.instagram {
    background: #e4405f;
}

.youtube {
    background: #ff0000;
}

.linkedin {
    background: #0077b5;
}

.social-icon:hover {
    transform: translateY(-5px);
    opacity: 0.9;
}
