/* ================= 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 IMAGES
========================================= */

.blog-image {
    margin: 35px 0 45px;
}

.blog-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 720px;
    object-fit: cover;
    border-radius: 16px;
}

.blog-image figcaption {
    margin-top: 10px;
    color: #777;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 600px) {

    .blog-image {
        margin: 28px 0 35px;
    }

    .blog-image img {
        border-radius: 10px;
        max-height: 350px;
    }
}
/* =========================================
   BLOG PAGE
========================================= */

.blog-page {
    background: #ffffff;
    color: #222222;
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.8;
}

.blog-container {
    width: min(1140px, calc(100% - 40px));
    margin: 0 auto;
    padding: 80px 0;
}

.blog-article {
    max-width: 920px;
    margin: 0 auto;
}


/* =========================================
   BLOG HEADING
========================================= */

.blog-heading {
    margin-bottom: 60px;
}

.blog-category {
    display: inline-block;
    margin-bottom: 18px;
    color: #b78b2e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.blog-heading h1 {
    margin: 0 0 24px;
    color: #102a43;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.blog-intro {
    max-width: 820px;
    margin: 0;
    color: #555555;
    font-size: 19px;
    line-height: 1.9;
}


/* =========================================
   NORMAL BLOG SECTIONS
========================================= */

.blog-section {
    margin-bottom: 65px;
}

.blog-section h2 {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 15px;
    color: #102a43;
    font-size: 31px;
    font-weight: 700;
    line-height: 1.35;
}

.blog-section h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 3px;
    border-radius: 50px;
    background: #b78b2e;
}

.blog-section h3 {
    margin: 0 0 8px;
    color: #102a43;
    font-size: 19px;
    font-weight: 600;
}

.blog-section p {
    margin: 0 0 20px;
    color: #555555;
    font-size: 16.5px;
}

.blog-section strong {
    color: #243b53;
    font-weight: 600;
}


/* =========================================
   CHECK LIST
========================================= */

.blog-check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.blog-check-list li {
    position: relative;
    padding: 16px 18px 16px 47px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    background: #fafafa;
    color: #3f4d5a;
    font-size: 15px;
}

.blog-check-list li::before {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 18px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #102a43;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 21px;
    text-align: center;
    transform: translateY(-50%);
}


/* =========================================
   HIGHLIGHT
========================================= */

.blog-highlight {
    position: relative;
    margin-top: 32px;
    padding: 25px 28px;
    border-left: 4px solid #b78b2e;
    border-radius: 0 8px 8px 0;
    background: #f8f6f1;
    color: #34495e;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.75;
}


/* =========================================
   INVESTMENT CARDS
========================================= */

.investment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.investment-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.investment-card:hover {
    border-color: rgba(183, 139, 46, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(16, 42, 67, 0.09);
}

.card-number {
    display: block;
    margin-bottom: 18px;
    color: #b78b2e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.investment-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.investment-card p {
    margin: 0;
    font-size: 15px;
}


/* =========================================
   IMPORTANT NOTE
========================================= */

.important-note {
    margin-top: 30px;
    padding: 24px 28px;
    border-radius: 10px;
    background: #102a43;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.75;
}

.important-note strong {
    color: #e9c46a;
}


/* =========================================
   STEPS
========================================= */

.steps-wrapper {
    margin-top: 35px;
    border-top: 1px solid #e5e9ed;
}

.step-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 22px;
    padding: 27px 0;
    border-bottom: 1px solid #e5e9ed;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #102a43;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.step-item p {
    margin: 0;
}


/* =========================================
   TAGS
========================================= */

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.tag-list span {
    padding: 11px 19px;
    border: 1px solid #dedede;
    border-radius: 50px;
    background: #ffffff;
    color: #34495e;
    font-size: 14px;
    font-weight: 500;
}


/* =========================================
   VELAVAN SECTION
========================================= */

.velavan-section {
    padding: 42px;
    border-radius: 16px;
    background: #f7f9fb;
}


/* =========================================
   CTA
========================================= */

.blog-cta {
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    padding: 60px;
    border-radius: 18px;
    background: #102a43;
}

.blog-cta::after {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.cta-small {
    display: inline-block;
    margin-bottom: 14px;
    color: #e9c46a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.blog-cta h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.25;
}

.blog-cta p {
    max-width: 620px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-radius: 6px;
    background: #b78b2e;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.cta-button:hover {
    background: #9e7624;
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-button span {
    font-size: 20px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .blog-container {
        padding: 60px 0;
    }

    .blog-check-list,
    .investment-grid {
        grid-template-columns: 1fr;
    }

    .blog-heading h1 {
        letter-spacing: -0.8px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .blog-container {
        width: min(100% - 30px, 1140px);
        padding: 45px 0;
    }

    .blog-heading {
        margin-bottom: 45px;
    }

    .blog-heading h1 {
        margin-bottom: 18px;
        font-size: 32px;
        line-height: 1.25;
    }

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

    .blog-section {
        margin-bottom: 50px;
    }

    .blog-section h2 {
        font-size: 25px;
    }

    .blog-section p {
        font-size: 15.5px;
    }

    .blog-check-list li {
        padding: 14px 15px 14px 43px;
    }

    .investment-card {
        padding: 24px;
    }

    .step-item {
        grid-template-columns: 45px 1fr;
        gap: 15px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .velavan-section {
        padding: 28px 22px;
    }

    .blog-cta {
        margin-top: 55px;
        padding: 38px 25px;
    }

    .blog-cta h2 {
        font-size: 28px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

}
