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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif !important;
  color: var(--oig-text);
}
/* ================================
   Premium Blog Intro
================================= */

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

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

.oig-hero {
  width: 100%;
  min-height: 480px;
  padding: 120px 20px 100px;
  background-color: #ebe9ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.oig-hero__title {
  width: 1000px;
  letter-spacing: -2px;
  margin: auto;
  font-weight: 700;
  font-size: 3rem;
  margin-top: 15px;
   font-family: "Manrope", sans-serif;
}

.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;
  text-decoration: none;
  font-weight: 700;
  transition: 0.5s;
}

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

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

.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: 15px;
}

/* 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-arrow {
  display: inline-block;
  margin-right: 10px;
  font-weight: 700;
  color: var(--oig-accent);
}

.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: 10px;
  letter-spacing: -1px;
  word-spacing: 2px;
   font-family: "Manrope", sans-serif;
  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;
}

/* Form */
.oig-form__title {
  font-weight: 800;
  margin-bottom: 10px;
}

.oig-form__desc {
  color: #6c757d;
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.oig-input {
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #ddd;
}

.oig-btn {
  background: var(--oig-accent);
  color: #fff;
  border-radius: 8px;
  padding: 12px;
  font-weight: 700;
  transition: 0.25s;
}

.oig-btn:hover {
  background: var(--oig-primary);
  color: #fff;
  transform: translateY(-2px);
}

.oig-help {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: #6c757d;
}

.oig-help--error {
  color: #dc3545;
}

.oig-alert {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.92rem;
}

.oig-alert--success {
  background: #e8fff1;
  border: 1px solid #bff0d1;
}

.oig-alert--error {
  background: #fff0f0;
  border: 1px solid #f2c2c2;
}

/* Footer */
.oig-footer {
  background: #001529;
  color: #a0a0a0;
  padding: 40px 0;
  margin-top: 80px;
}

/* intl-tel-input width fix */
.iti {
  width: 100%;
}

.iti__flag-container {
  border-radius: 8px 0 0 8px;
}

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

  .oig-blog {
    padding: 20px 0px;
  }
}


/* Container spacing */
.blog-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

/* Individual button wrapper */
/* .blog_pg_btn a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #ddd;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
}

.blog_pg_btn a:hover {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
} */

/* Mobile responsive */
@media (max-width: 576px) {
    .blog-button {
        flex-direction: column;
        gap: 12px;
    }

    .blog_pg_btn {
        width: 100%;
        text-align: center;
    }

    .blog_pg_btn a {
        justify-content: center;
        width: 100%;
    }
}

/* Clear float helper (optional) */
.clear {
    clear: both;
}

    /* Share section wrapper */
/* Layout */
.btShareColumn {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 12px;
    flex-wrap: wrap;
}

/* Title */
.btShareTitle {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-right: 8px;
}

/* Icon container */
.bt_bb_icon {
    display: inline-flex;
}

/* Circle social button */
.bt_bb_icon_holder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Facebook */
.btIcoFacebook .bt_bb_icon_holder {
    background: #1877f2;
}
.btIcoFacebook .bt_bb_icon_holder:hover {
    background: #1b1b1b;
    transform: translateY(-3px);
}

/* Twitter / X */
.btIcoTwitter .bt_bb_icon_holder {
    background: #000;
}
.btIcoTwitter .bt_bb_icon_holder:hover {
      background: #1b1b1b;
    transform: translateY(-3px);
}

/* LinkedIn (if used later) */
.btIcoLinkedin .bt_bb_icon_holder {
    background: #0a66c2;
}
.btIcoLinkedin .bt_bb_icon_holder:hover {
    background: #084c94;
    transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 600px) {
    .btShareColumn {
        justify-content: center;
        text-align: center;
    }

    .btShareTitle {
        width: 100%;
        margin-bottom: 6px;
    }
}
