/* ================= 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-banner {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 18px;
  display: block;
}
.blog-section{
    background:#f4f6f9;
    padding:60px 20px;
    font-family:Arial,sans-serif;
}

.blog-container{
    max-width:1000px;
    margin:auto;
}

.blog-container h1{
    font-size:30px;
    line-height:1.4;
    margin-bottom:20px;
    color:#1e293b;
}

.intro{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:30px;
}

.blog-card{
    background:#fff;
    padding:30px;
    border-radius:14px;
    margin-bottom:25px;
    box-shadow:0 4px 20px rgba(0,0,0,0.06);
}

.blog-card h2{
    margin-bottom:18px;
    color:#0f172a;
}

.blog-card p,
.blog-card li{
    color:#555;
    line-height:1.8;
}

.blog-card ul,
.blog-card ol{
    padding-left:20px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.feature-box{
    background:#f8fafc;
    padding:20px;
    border-radius:10px;
}

.feature-box h3{
    margin-bottom:10px;
    color:#2563eb;
}

.location-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.location-tags span{
    background:#2563eb;
    color:#fff;
    padding:10px 15px;
    border-radius:30px;
    font-size:14px;
}

.table-wrapper{
    overflow-x:auto;
}

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

table th{
    background:#2563eb;
    color:#fff;
}

table th,
table td{
    padding:14px;
    border:1px solid #ddd;
    text-align:center;
}

.faq h4{
    margin-top:20px;
    color:#111827;
}

.cta-box{
    background:#7c0f11;
    color:#fff;
    padding:40px;
    border-radius:16px;
    text-align:center;
}

.cta-box a{
    display:inline-block;
    margin-top:15px;
    background:#fff;
    color:#292929;
    padding:12px 25px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
}

.cta-features{
    margin-top:20px;
}

.cta-features span{
    display:inline-block;
    margin:8px;
    background:rgba(255,255,255,0.15);
    padding:10px 16px;
    border-radius:30px;
}

.social-links{
    text-align:center;
    margin-top:30px;
}

.social-links a{
    margin:0 10px;
    color:#2563eb;
    font-weight:bold;
    text-decoration:none;
}

@media(max-width:768px){

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

.blog-card{
    padding:20px;
}

.cta-box{
    padding:30px 20px;
}

}
/* ================= 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);
}

