:root {
  --oig-primary: #003366;
  --oig-accent: #006aff;
  --oig-light: #e7f1ff;
  --oig-text: #2d3436;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif !important;
  line-height: 1.7;
  color: var(--oig-text);
  background-color: #f4f7f9;
}

/* Headings use Manrope */
.manrope {
  font-family: "Manrope", sans-serif !important;
  letter-spacing: -0.5px !important;
}

/* ================================
   Premium Blog Intro
================================= */

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

.intro-lead {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

/* Big Highlight Quote */
.intro-quote {
    font-family: "Manrope", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--oig-primary);
    background: linear-gradient(90deg, #eef3ff, #ffffff);
    padding: 20px 25px;
    border-left: 5px solid var(--oig-accent);
    border-radius: 8px;
    margin: 20px 0;
    line-height: 1.4;
}

/* Supporting line */
.intro-sub {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 20px;
}

.oig-hero {
  width: 100%;
  min-height: 480px;
  /* optional for better spacing */
  padding: 120px 20px 100px;
  background-color: #eeedfe;
  display: flex;
  align-items: center;
  justify-content: center;
  /* CENTER horizontally */
}

.oig-hero__content {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.oig-hero__title {
  width: 900px;
  margin: auto;
  font-weight: 700;
  font-size: 3rem;
  margin-top: 15px;
}

.hero-breadcrumb {
  font-size: 17px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.btn-hero-cta {
  background: #0066ff !important;
  color: #ffffff !important;
  font-weight: 700;
  padding: 14px 38px;
  border-radius: 40px !important;
  border: none !important;
  box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.45) !important;
}

.breadcrumb-link {
  color: #000000 !important;
  text-decoration: none !important;
  font-weight: 700;
  transition: 0.5s;
}

.breadcrumb-link:hover {
  color: #467ed3 !important;
}

.breadcrumb-current {
  color: #4b4a4a;
  font-weight: 500;
  text-shadow: none !important;
}

.oig-hero__title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
}


.blogBanner_cta {
  background: #0066ff;
  color: white;
  padding: 8px 14px;
  font-weight: 500;
  transition: 0.45s;
  border-radius: 10px;
  font-family: system-ui;
}
.blogBanner_cta:hover {
  background: #0559ea;
  color: #ffffff;
  text-decoration: none;
  box-shadow: inset 0 4px 6px rgba(0, 9, 73, 0.35);
}

.odoo-btnn {
  border: 1px solid #0559ea;
}


@media (max-width:480px) {

  .oig-hero {
    padding: 60px 0 45px;
  }

  .oig-hero__title {
    font-size: 1.5rem;
  }

  .hero-breadcrumb {
    font-size: 0.7rem;
    padding: 4px 12px;
  }
}

@media (max-width: 992px) {
  .oig-hero__title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .oig-hero__title {
    font-size: 26px;
  }

  .hero-breadcrumb {
    font-size: 14px;
  }
}

@media (max-width:768px) {

  .oig-hero {
    padding: 70px 0 55px;
  }

  .oig-hero__title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-breadcrumb {
    font-size: 0.95rem;
  }

  .breadcrumb-current {
    font-size: 0.85rem;
  }
}

@media (max-width:992px) {

  .oig-hero {
    padding: 90px 0 70px;
    text-align: center;
  }

  .oig-hero__title {
    font-size: 2.2rem;
    width: auto;
    max-width: 100%;
  }

  .oig-hero__badge {
    font-size: 0.75rem;
    padding: 5px 14px;
  }
}

@media (max-width:1200px) {
  .oig-hero__title {
    font-size: 2.6rem;
    width: auto;
    max-width: 800px;
  }
}

@media (min-width:1400px) {
  .oig-hero {
    padding: 120px 0 100px;
  }

  .oig-hero__title {
    font-size: 3.5rem;
    max-width: 1000px;
  }
}





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

.cta-card .card {
  background: linear-gradient(180deg, rgba(243, 246, 255, 1), #ffffff);
  border: 1px solid rgba(18, 70, 160, 0.2);
  box-shadow: 0 18px 60px rgba(20, 45, 105, 0.06);
  border-radius: 32px !important;

  padding: 40px 30px;
  /* Good spacing */
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Heading */
.cta-card .card h4 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
}


/* Hover effect */
.cta-card .card:hover {
  transform: translateY(-6px);
  box-shadow: 15px 25px 75px rgba(20, 45, 105, 0.15);
}

/* CTA button */
.btn-cta {
  background: #0066ff;
  color: #fff;
  border: none !important;
  padding: 14px 28px !important;
  font-weight: 600 !important;
  border-radius: 40px !important;
  box-shadow: 0 10px 30px rgba(126, 58, 255, 0.14) !important;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  transition: transform 0.3s ease;
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 15px 15px 20px rgba(126, 58, 255, 0.2);
  color: #fff;
}


.cta-svg-icon {
  width: 22px;
  height: 22px;
  fill: #fff;
  display: block;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

@media (max-width: 576px) {
  .cta-card .card {
    padding: 30px 20px;
  }

  .cta-card .card h4 {
    font-size: 18px;
  }

  .btn-cta {
    width: 100%;
  }
}

@media (max-width: 768px) {

  .cta-card .card {
    padding: 30px 20px;
    text-align: center;
    /* Center everything */
  }

  .cta-card .card h4 {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  /* Stack layout properly */
  .cta-card .row {
    flex-direction: column;
  }

  .cta-card .col-md-8,
  .cta-card .col-md-4 {
    max-width: 100%;
    flex: 0 0 100%;
    text-align: center !important;
  }

  /* Button full width */
  .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 20px !important;
  }
}

@media (max-width: 992px) {
  .cta-card .card h4 {
    font-size: 20px;
    text-align: center;
  }

  .cta-card .card {
    padding-left: 10px;
    padding-right: 10px;
  }

  .cta-card .row {
    flex-direction: column;
  }

  .cta-card .col-md-8,
  .cta-card .col-md-4 {
    max-width: 100%;
    flex: 0 0 100%;
    text-align: center !important;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 20px !important;
  }
}

@media (max-width: 1024px) {

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

  .cta-card .card h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .btn-cta {
    padding: 12px 20px !important;
  }
}

@media (max-width: 1200px) {

  .cta-card .card {
    padding: 32px 24px;
  }

  .cta-card .card h4 {
    font-size: 22px;
    line-height: 1.5;
  }

  .btn-cta {
    padding: 12px 22px !important;
    font-size: 14px;
  }
}

@media (max-width: 1368px) {

  .cta-card .card {
    padding: 35px 28px;
  }

  .cta-card .card h4 {
    font-size: 24px;
  }

  .btn-cta {
    padding: 13px 26px !important;
  }
}

/* SECTION SPACING */
.blog-section {
  margin: 70px 0;
}

/* INTRO TEXT */
.section-intro {
  font-size: 18px;
  color: #555;
  margin-bottom: 25px;
}

/* MODULE CARD */
.module-card {
  background: #f7f9ff;
  padding: 25px 30px;
  border-radius: 16px;
  margin-bottom: 30px;
}

/* STYLED LIST */
.styled-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 per row */
  gap: 14px 40px;
  /* row gap + column gap */
}

/* Individual list item */
.styled-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 500;
}

/* Check icon */
.styled-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #5b6cff;
  font-weight: bold;
}

/* ALL AT ONCE EMPHASIS */
.all-at-once {
  font-weight: 600;
  color: #000000;
  margin-top: 10px;
}

/* HIGHLIGHT BOX */
.highlight-box {
  background: linear-gradient(90deg, #eef2ff, #ffffff);
  border-left: 4px solid #5b6cff;
  padding: 18px 22px;
  border-radius: 8px;
  margin-bottom: 25px;
  font-size: 16px;
}

.normal-list {
  list-style-type: none;
}

.normal-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 500;
}

/* Check icon */
.normal-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #5b6cff;
  font-weight: bold;
}


/* Layout */
.oig-page {
  padding-top: 10px;
}


/* Blog */
.oig-blog {
  padding: 50px;
}

.oig-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  margin: 20px 0 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.oig-blog section {
  scroll-margin-top: 100px;
}

.oig-blog h2 {
  color: var(--oig-primary);
  font-weight: 700;
  margin-top: 20px;
  position: relative;
  padding-bottom: 10px;
  scroll-margin-top: 100px;
}

.oig-blog h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 4px;
  background: linear-gradient(135deg, #00a2ff, #7300ff);
  border-radius: 2px;
}

.oig-quote {
  background: var(--oig-light);
  border-left: 6px solid var(--oig-primary);
  padding: 22px;
  margin: 10px 0;
  font-weight: 600;
  border-radius: 0 8px 8px 0;
}

@media (max-width: 768px) {
  .oig-hero__title {
    font-size: 2rem;
  }

  .oig-blog {
    padding: 25px;
  }
}


/* STYLED LIST */
.style-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 per row */
  gap: 14px 40px;
  /* row gap + column gap */
}

/* Individual list item */
.style-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 500;
}

/* Check icon */
.style-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  color: #5b6cff;
  font-weight: bold;
}

.modules-list li {
  padding-left: 0;
  cursor: default;
}

.modules-list li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--oig-text);
  font-weight: 500;
  transition: 0.3s;
}

.modules-list li a:hover {
  color: var(--oig-accent);
  cursor: pointer;
}

/* Icon styling */
.modules-list li i {
  font-size: 16px;
  color: #5b6cff;
  width: 20px;
}

