<style>
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Segoe UI', 'Open Sans', sans-serif;
}
html {
  height: 100%;
  overflow-x: hidden;
}
body {
  background: #f8f9fa;
  color: #1D0D5A;
  line-height: 1.6;
  min-height: 100%;
  overflow-y: auto;
  padding-top: 100px;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom right, rgba(255, 240, 220, 0.8), rgba(255,255,255,0.7), rgba(255, 230, 230, 0.8));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
header.scrolled {
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  padding: 6px 18px !important;
}
header.scrolled .logo img {
  height: 50px !important;
}
header.scrolled nav a {
  font-size: 14px !important;
}
header,
header .logo img,
header nav a {
  transition: all 0.3s ease;
}
.logo img {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.08);
}
.logo a {
  display: inline-block;
}
nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 20px;
}
nav a {
  margin: 10px;
  color: #1D0D5A;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #EB5525;
}
.navbar-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.navbar-links li {
  list-style: none;
  position: relative;
}
.dropdown .arrow {
  font-size: 13px;
  margin-left: 3px;
}

/* Mega Dropdown */
.mega-dropdown {
  display: none;
  position: fixed;
  left: 0;
  top: 90px; /* or whatever your header height is */
  width: 100vw;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  padding: 48px 0 40px 0;
  z-index: 2000;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 0 0 28px 28px;
  animation: fadeIn 0.25s ease-in;
}
.dropdown:hover .mega-dropdown {
  display: block;
}
.dropdown-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  justify-content: flex-start;
  padding: 0 60px;
  text-align: left;
}
@media (max-width: 900px) {
  .dropdown-content {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }
  .mega-dropdown {
    padding: 30px 0 25px 0;
  }
}
/* Hamburger Icon Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 36px;
  height: 30px;
  justify-content: center;
  align-items: center;
  z-index: 3001;
  margin-left: 14px;
  margin-right: 4px;
}
.hamburger span {
  display: block;
  height: 4px;
  width: 28px;
  background: #EB5525;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}
/* Responsive Nav */
@media (max-width: 900px) {
  header {
    padding: 8px 12px;
  }
  nav {
    flex-direction: row;
    justify-content: flex-end;
  }
  .navbar-links {
    position: fixed;
    top: 80px; /* below header */
    right: -110vw; /* hide out of view */
    width: 80vw;
    max-width: 340px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 22px rgba(0,0,0,0.08);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    z-index: 2002;
    padding: 30px 24px;
    transition: right 0.3s;
    border-radius: 12px 0 0 12px;
    border-left: 2px solid #EB5525;
  }
  .navbar-links.open {
    right: 0;
  }
  .navbar-links li {
    margin: 0 0 18px 0;
    width: 100%;
  }
  .navbar-links li a {
    font-size: 18px;
    display: block;
    padding: 10px 0;
  }
  .hamburger {
    display: flex;
  }
  /* Dropdown menu in mobile */
  .mega-dropdown {
    position: static !important;
    width: 100%;
    padding: 8px 0 10px 0;
    border-radius: 10px;
    box-shadow: none;
    border-bottom: none;
    background: #f8f9fa;
    z-index: 1;
  }
  .dropdown .mega-dropdown {
    display: none;
  }
  .dropdown.open .mega-dropdown {
    display: block;
  }
  .dropdown-content {
    padding: 0 6px;
    gap: 12px;
    flex-direction: column;
  }
}

/* --- Blogs page styles below --- */
.blogs-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: auto;
}
.section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.blog-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.blog-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1d0d5a;
}
.blog-snippet {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
}
.read-more {
  color: #eb5525;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}
.read-more:hover {
  text-decoration: underline;
}

/* --- Footer styles unchanged (keep as is) --- */
.footer {
  background-color: #00225a;
  color: #ffffff;
  padding: 60px 20px 30px;
  font-family: 'Inter', sans-serif;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
  box-sizing: border-box;
}
.footer-column {
  flex: 1 1 220px;
}
.footer-column.logo-column {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-left: 0;
  padding-left: 0;
  flex: 1 1 280px;
}
.footer-logo {
  width: 200px;
  margin-bottom: 10px;
}
.footer-desc h2 {
  font-size: 18px;
  margin: 0;
  color: #ffffff;
}
.footer-desc p {
  font-size: 13px;
  margin: 4px 0 0;
  color: #cccccc;
}
.footer-column h3 {
  font-size: 20px;
  margin-bottom: 16px;
  border-bottom: 2px solid #EB5525;
  padding-bottom: 6px;
  color: #ffffff;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-column ul li a {
  color: #eeeeee;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}
.footer-column ul li a:hover {
  color: #EB5525;
}
.footer-sub-columns {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.footer-column.contact-info ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #eeeeee;
  line-height: 1.6;
}
.footer-column.contact-info ul li a {
  color: #eeeeee;
  word-break: break-word;
}
.footer-bottom {
  border-top: 1px solid #555;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: #aaa;
  font-size: 13px;
}
.footer-policy-links a {
  color: #aaa;
  margin: 0 8px;
  text-decoration: none;
}
.footer-policy-links a:hover {
  color: #EB5525;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 10px;
  }
  .footer-column {
    width: 100%;
  }
  .footer-sub-columns {
    flex-direction: column;
  }
  .footer-bottom {
    text-align: left;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-list li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #eeeeee;
  }
}
  </style>