.overlay-banner:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	background-color: hsl(0deg 0% 0% / 76%);
	width: 100%;
}

.page-header.static-banner {
	padding: 100px 0;
}


.custom-banner {
    position: relative;
    padding: 100px 0px !important;
}

.custom-banner:before {
      content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(0 37 74), rgb(27 101 175 / 20%)); 
}

.custom-banner .container {
    position: relative;
}

.custom-banner .page-header__content h2 {
    color: #fff;
    margin-top: 40px;
    font-size: 40px;
    text-align: center;
    text-transform: capitalize;
}


.custom-banner .page-header__content p {
    color: #fff;
    font-size: 16px;
}


/* ================================================================intro section css start ================================ */

.blog.intro-section {
    padding:50px 0;
}


  .intro-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4% 0;
  gap: 40px;
}

.intro-content {
  flex: 1;
  max-width: 500px;
}

.intro-content h1 {
  font-size: 50px;
  font-weight: 700;
  color: #1b65af;
  line-height: 1.3;
}

.intro-content h1 span {
  color: #1b65af;
}

.intro-content p {
  margin-top: 20px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Gallery Grid */
.intro-gallery {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-photo {
  width: 300px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
  cursor: pointer;
}

.gallery-photo:hover {
  transform: translateY(-12px) scale(1.05);
  z-index: 10;
}

/* Trading Icon */
.trading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.trading-icon img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 6px solid #cf9a15;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 992px) {
  .intro-section {
    flex-direction: column;
    text-align: center;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .gallery-photo {
    width: 250px;
  }
  .trading-icon img {
    width: 80px;
    height: 80px;
  }
  .intro-content {
  flex: 1;
  max-width: 900px;
  }
  .intro-content h1 {
  font-size: 26px;
  font-weight: 1000;
  color: #1b65af;
  line-height: 1.3;
}

}


/* ================================================================intro section css end ================================ */

/* ================================================================== mission vission section  css start ======================= */

.platform-compare {
  background:#f2f4f6;
  padding: 60px 0;
  text-align: center;
}

.platform-heading h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* Top Box */
.platform-topbox {
  background: #1b65af;
  border-radius: 10px;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  text-align: start;
  gap: 20px;
  position: relative;
}

.topbox-left {
  max-width: 820px;
  gap: 15px;
}

.topbox-left h3 {
  font-size: 30px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.topbox-left p {
  font-size: 16px;
  margin-top: 20px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.topbox-right img {
  width: 400px;
  position: absolute;
  bottom: 10px;
  right: 0;
  height: auto;
  animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Cards Section */
.platform-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.platform-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  flex: 1;
  text-align: left;
}

.card-header {
  display: flex;
  flex-direction: column;
  /* background: linear-gradient(30deg, #de9f17 2%, #cf9a15 31%, #fff68a 68%, #ffcf45 96%); */
  align-items: center;
  background-color: white;
  gap: 12px;
  justify-content: center;
  margin-bottom: 15px;
}

.card-header img {
  width: 150px;
  height: auto;
}

.card-header h4 {
  font-size: 18px;
  color: #000000;
  font-weight: 700;
}

.platform-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
}

.platform-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.platform-card ul li {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.platform-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #d4af37; /* Golden tick */
  font-weight: bold;
}

/* -------------------- Responsive -------------------- */
@media (max-width: 1200px) {
  .topbox-left h3 {
    font-size: 26px;
  }
  .topbox-left p {
    font-size: 15px;
  }
  .topbox-right img {
    width: 300px;
  }
}

@media (max-width: 992px) {
  .platform-topbox {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .topbox-left {
    max-width: 100%;
    text-align: center;
  }
  .topbox-left h3 {
    font-size: 24px;
  }
  .topbox-left p {
    font-size: 14px;
  }
  .topbox-right img {
    position: static;
    margin: 20px auto 0;
    width: 220px;
  }
  .platform-cards {
    flex-direction: column;
    align-items: center;
  }
  .platform-card {
    width: 90%;
    max-width: 500px;
  }

}

@media (max-width: 768px) {
  .platform-heading h2 {
    font-size: 20px;
  }
  .topbox-left h3 {
    font-size: 22px;
  }
  .topbox-left p {
    font-size: 14px;
  }
  .topbox-right img {
    width: 180px;
  }
    .topbox-right img {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .platform-compare {
    padding: 40px 0px;
  }
  .platform-heading h2 {
    font-size: 18px;
  }
  .topbox-left h3 {
    font-size: 20px;
    letter-spacing: 1px;
  }
  .topbox-left p {
    font-size: 13px;
  }
  .platform-card {
    padding: 20px 15px;
  }
  .card-header h4 {
    font-size: 16px;
  }
  .platform-card p {
    font-size: 14px;
  }
  .platform-card ul li {
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .topbox-left h3 {
    font-size: 18px;
  }
  .topbox-right img {
    width: 100%;
  }
  .card-header img {
    width: 30px;
  }
}


/* ================================================================== mission vission section  css end ======================= */

/* ===============================================================certificate section css start ===================== */

.certificates-section {
  background: linear-gradient(135deg, #f7f8fc, #eef2f9);
  background-image: url("../../assets/imgs/images/bg-cer.avif");
  padding: 40px 0px;
  text-align: center;
  position: relative;
  border-top: 4px solid #d19c28;
}

.certificates-title {
  font-size: 32px;
  font-weight: 800;
  color: #123c7b;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.certificates-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #38b1f6;
  margin: 12px auto 0;
  border-radius: 2px;
}

.certificates-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.certificate-box {
  max-width: 520px;
  flex: 1 1 400px;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.certificate-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 3px solid #e4eaf5;
}

.certificate-box:hover {
  transform: translateY(-10px) scale(1.02) rotate(-1deg);
  box-shadow: 0px 12px 30px rgba(56,177,246,0.25);
}

.certificate-box:hover img {
  border-color: #38b1f6;
}

/* Scroll Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------- Responsive -------------------- */
@media (max-width: 1024px) {
  .certificates-title {
    font-size: 28px;
  }
  .certificates-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .certificates-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .certificate-box {
    flex: 1 1 100%;
    max-width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .certificates-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .certificates-grid {
    gap: 20px;
  }
  .certificate-box {
    padding: 12px;
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  .certificates-title {
    font-size: 18px;
    letter-spacing: 0.5px;
  }
  .certificate-box img {
    border-width: 2px;
  }
}

/* ===============================================================certificate section css end ===================== */


/* ====================================================================What sets section css start======================= */

.insurance-section {
  background: #f5f7f9; /* light gray background */
  padding: 60px 20px;
}

.insurance-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.insurance-logo img {
  max-width: 500px;
  height: auto;
  display: block;
}

.insurance-content {
  flex: 1;
  min-width: 300px;
}

.insurance-title {
  font-size: 32px;
  font-weight: 700;
  color: #de9f17;
  margin-bottom: 20px;
}

.insurance-title span {
  color: #1b65af;
}

.insurance-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.insurance-features h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.insurance-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.insurance-features ul li {
  font-size: 18px;
  line-height: 1.6;
 color: rgb(68, 68, 68);;
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.insurance-features ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1b65af;
}

.insurance-note {
  font-size: 15px;
  margin-bottom: 15px;
}

.insurance-link {
  color: #0077cc;
  text-decoration: none;
  font-weight: 600;
}

.insurance-link:hover {
  text-decoration: underline;
}

.news-block-one {
    position: relative;
    display: block;
    background: #f7f7f7;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: .5s;
    box-shadow: 0 10px 50px 10px rgba(0, 0, 0, .08);
}

.news-block-one .inner-box {
    position: relative;
    display: block;
    border-bottom: 1px solid #e5e5e5;
}



.news-block-one img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-details-main {
    padding: 15px;
    background: #fff;
}


.blog-user-head {
    font-size: 14px;
    font-weight: 500;
}

.news-block-one .inner-box h3 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    margin-bottom: 10px;
    min-height: 51px;
}


.blog-details__content h3 {
    font-size: 26px;
    line-height: 1.4;
}

.news-block-one .inner-box p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
    min-height: 65px;
}


.news-block-one .inner-box .link a {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    color: var(--title-color);
    border: 1px solid #003c60;
    padding: 10px 20px;
    border-radius: 33px;
}


.blog-details__item-inner {
    background-color: #ffffff;
    box-shadow: 0 -16px 48px rgba(6, 35, 63, .03), 0 16px 48px rgba(6, 35, 63, .03);
    border-radius: 4px;
    padding: 20px;
}

.blog-details__meta ul {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.blog-details__meta ul li {
    gap: 10px;
    display: inline-flex;
    align-items: center;
}


.blog-details__meta img {
    height: 20px;
    width: auto;
}



/* Responsive */
@media (max-width: 1024px) {
  .insurance-title {
    font-size: 28px;
  }
  .insurance-features ul li {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .insurance-container {
    flex-direction: column;
    text-align: center;
  }

  .insurance-content {
    text-align: left;
  }

  .insurance-logo img {
    margin: 0 auto 20px;
    max-width: 350px;
  }
}

@media (max-width: 576px) {
  .insurance-section {
    padding: 40px 15px;
  }

  .insurance-title {
    font-size: 24px;
  }

  .insurance-desc {
    font-size: 14px;
  }

  .insurance-features h4 {
    font-size: 16px;
  }

  .insurance-features ul li {
    font-size: 14px;
  }

  .insurance-note {
    font-size: 13px;
  }

  .insurance-logo img {
    max-width: 280px;
  }
}

@media (max-width: 400px) {
  .insurance-title {
    font-size: 20px;
  }
  .insurance-features ul li {
    font-size: 13px;
  }
.insurance-logo img {
  max-width: 800px;
  height: auto;
  display: block;
}


.custom-banner .page-header__content h2 {
    margin-top: 30px;
    font-size: 1.5rem;
}

.custom-banner .page-header__content p {
    font-size: 16px;
}



}

