﻿:root {

  --purple-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --orange-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #333;
  overflow-x: hidden;
}

/* Top Contact Bar */
.top-bar {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 15px 0;
  color: white;
}

.top-bar .contact-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-number {
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: all 0.3s;
}

.phone-number:hover {
  color: #ffd700;
}

.btn-callback {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-callback:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Main Header */
.main-header {
  background: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header h1 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin: 0;
}

/* Hero Section */
.hero-section {
  /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
  padding: 60px 0;
}

.illustration-box {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}

.govt-badge {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.illustration-svg {
  width: 100%;
  max-width: 350px;
  height: 250px;
  margin: 0 auto;
}

.house {
  fill: #e74c3c;
}

.person {
  fill: #3498db;
}

.coin {
  fill: #f39c12;
}
.leftcapitalimg{transition:0.3s;}
.leftcapitalimg:hover {transform: scale(1.08);border-radius:15px}}


/* Content Section */
.content-section {
  padding: 60px 0;
  background: white;
}

.info-box {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.info-box h2 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 25px;
}

.info-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.display-4 {
  font-size: 34px;
}

.highlight {
  color: #e74c3c;
  font-weight: 700;
}

/* Investment Cards Section */
.investment-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.section-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 40px;
  text-align: center;
}

.investment-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.invest-card {
  background: var(--purple-gradient);
  border-radius: 20px;
  padding: 40px 30px;
  color: white;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.invest-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transition: all 0.6s;
  opacity: 0;
}

.invest-card:hover::before {
  opacity: 1;
  transform: translate(25%, 25%);
}

.invest-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.invest-card:nth-child(2) {
  background: var(--orange-gradient);
}

.invest-card i {
  font-size: 3rem;
  margin-bottom: 20px;
}

.invest-card h3 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.invest-card p {
  margin-bottom: 25px;
  opacity: 0.9;
}


.invest-card:nth-child(2) .btn-invest {
  color: #f5576c;
}

.btn-invest:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

/* Explore More */
.explore-section {
  padding: 50px 0;
  text-align: center;
  background: white;
}

.explore-section h2 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
}

.explore-icon {
  font-size: 50px;
  color: #e74c3c;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .prdoducediv {
    width: 100%;
  }

  .main-header h1 {
    font-size: 1.8rem;
  }

  .top-bar .contact-info {
    flex-direction: column;
    gap: 15px;
  }

  .investment-cards-wrapper {
    grid-template-columns: 1fr;
  }

  .info-box {
    padding: 25px;
  }
}

/************************************************************************/


/* Title Animation */
.main-title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin: 40px 0;
  position: relative;
  z-index: 1;
  animation: fadeInDown 1s ease;
}


@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Feature Cards */

/*
.feature-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  opacity: 0;
  transform: translateY(30px);
}

    .feature-card {
      position: relative;
    }
    
    .feature-card::after {
      content: '\f061';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      right: -15px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 24px;
      color: #667eea;
      z-index: 1;
    }
    
    .feature-card:last-child::after {
      display: none;
    }
    

    @media (max-width: 767px) {
      .feature-card::after {
        content: '\f063';
        right: auto;
        left: 50%;
        top: auto;
        bottom: -30px;
        transform: translateX(-50%);
      }
    }
 

.feature-card.animate {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgb(220 220 220);
  background: #ffffff !important;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.icon-wrapper i {
  font-size: 2.5rem;
  color: white;
}

.feature-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.feature-text {
  color: #64748b;
  line-height: 1.8;
  font-size: 1.05rem;
}

.highlight {
  color: var(--primary-color);
  font-weight: 700;
}
*/
/* Info Section */
.info-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
  width: 100%;
}

.sectiontitlep {
  font-size: 15px;
  text-align: center;
  padding-bottom: 0px;
  margin-bottom: 4px;
  font-weight: normal;
  padding-top: 3px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

/* Investment Cards */
.investment-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.investment-card:hover {
  border-color: var(--primary-color);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.investment-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #e0e7ff, #ddd6fe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.cta-button {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.cta-section {
  text-align: center;
  padding: 60px 0;
}

/* Floating Animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .main-title {
    font-size: 2rem;
  }

  .feature-card {
    padding: 30px;
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 17px !important;
  }
}

/* Badge */
.badge-custom {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}


/*******************************/

/********************************/


:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --light-bg: #f8f9fa;
}


.header {
  background: linear-gradient(135deg, var(--primary-color), #1a2530);
  color: white;
  padding: 2rem 0;
  margin-bottom: 2rem;
  border-bottom: 5px solid var(--secondary-color);
}

.bond-card {
  /* border-radius: 10px; */
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  overflow: hidden;
  border: none;
}

.bond-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.bond-header {
  background-color: #4b4b8c;
  color: white;
  padding: 0px;
  text-align: center;
  padding-bottom: 0px;
  padding-top: 5px;
  padding-bottom: 0px;
}

.bond-header h4 {
  font-size: 23px;
  color: #ffffff;
  padding-bottom: 0px;
  margin-bottom: 1px;
}

.bond-header p {
  font-size: 11px;
  padding-bottom: -8px;
  margin-bottom: 3px;
}

.bond-body {
  padding: 9px;
  background-color: white;
}

.bond-details {
  margin-bottom: 7px;
  font-size: 15px;
}

.bond-detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}

.bond-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.btn-invest {
  background-color: #9b9045;
  color: white;
  border: none;
  flex: 1;
  font-size: 14px;
  font-weight: normal;
  padding: 8px 0px;
}

.btn-download {
  background-color: var(--light-bg);
  color: var(--primary-color);
  border: 1px solid #ddd;
  flex: 1;
  font-size: 14px;
  padding: 8px 0px;
  font-weight: normal;
}

.btn-invest:hover,
.btn-download:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.read-more {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  display: block;
  /* font-size: 17px; */
  text-align: center;
  margin-top: 11px;
  font-size: 14px;
  padding: 4px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.read-more:hover,
.read-more.active {
  background-color: var(--secondary-color);
  color: white;
}

.collapse-content {
  background-color: var(--light-bg);
  padding: 1.5rem;
  border-left: 3px solid #918741;
  width: 100%;
  z-index: 1;
  border-right: 3px solid #918741;
  margin-top: -22px;
  margin-bottom: 26px;
}

.rating {
  color: gold;
  font-weight: bold;
}

.bond-icon {
  width: 44px;
  padding: 0.2rem;
  background-color: #fff;
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border-radius: 8px;
  align-items: center;
  text-align: justify;
  margin-top: 0px;
  margin-left: 7px;
  margin-right: 7px;
  margin-bottom: 5px;
}
}

@media (max-width: 768px) {
  .bond-actions {
    flex-direction: column;
  }
}

/**************************/
/********************************/

.section-title {
  color: var(--primary-color);
  margin-bottom: 29px;
  padding-bottom: -7px !important;
  /* border-bottom: 2px solid var(--secondary-color); */
  margin-top: 0px;
}

.card {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  overflow: hidden;
  border: none;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
  background-color: #999051;
  color: white;
  padding: 10px;
  font-weight: 600;
}

.highlight-box {
  background-color: white;
  border-left: 4px solid #52529f;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.benefit-icon {
  background-color: #52529f;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.feature-table {
  width: 100%;
  border-collapse: collapse;
}

.feature-table th,
.feature-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
  border: 1px solid #ccc;
}

.feature-table th {
  background-color: var(--light-bg);
  color: var(--primary-color);
  font-weight: 600;
}

.step-card {
  text-align: center;
  padding: 1.5rem;
  height: 100%;
}

.step-number {
  background-color: #52529f;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: bold;
}

.document-list {
  list-style-type: none;
  padding-left: 0;
}

.document-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.document-list li:before {
  content: "�";
  color: var(--secondary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.interest-rate-badge {
  background-color: var(--success-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1rem;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--secondary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
}

.bond-issuer-logo {
  height: 60px;
  margin-bottom: 1rem;
}

.tab-content {
  padding: 1.5rem 0;
}

.nav-tabs .nav-link {
  color: var(--primary-color);
  font-weight: 500;
}

.nav-tabs .nav-link.active {
  background-color: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}


/* Feature Cards */
.feature-card {
  /* background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgb(218 216 219 / 10%) 49%); */
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  height: 100%;
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #667eea;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
}

.feature-icon {
  width: 80px;
  /* height: 80px; */
  background: wite;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #4b4b8c;
  transition: all 0.4s ease;
  /* border: 2px solid #4b4b8c; */
}

.feature-card:hover .feature-icon {
  transform: rotate(360deg) scale(1.1);
}

/* Benefits Section */
.benefits-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

.benefit-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
}

/* FAQ Section */
.faq-section {
  padding: 0px 0px;
  background: #ffffff;
}

.accordion-button {
  background: white;
  color: #333;
  font-weight: 600;
  border-radius: 15px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: #f3f1f1;
  border-radius: 0px !important;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;

}

.document .accordion-button:not(.collapsed) {
  background: White !important;
  color: #000000 !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
}

.document accordion-button:not(.collapsed)::after {
  filter: none !important;
}

.taxbenifit .accordion-button:not(.collapsed) {
  background: White !important;
  /* color: #000000 !important; */
  background-color: #52529f !important;
  box-shadow: none !important;
}

.taxbenifit .accordion-button {
  background: #f8f8f8 !important;
}

.accordion-button:not(.collapsed):focus {
  border: 0px solid #cccccc !important;
}


.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 0px;
  overflow: hidden;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

/**************************************************/
.containeripo .ipo-section {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.containeripo .ipo-text h5 {
  color: #4a4949;
  font-size: 44px;

  font-weight: bold;
}

.containeripo .ipo-text p {
  color: #4b4b8c;
  margin-bottom: 0;
  font-size: 20px;
}

.containeripo .btn-custom {
  border: none;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  color: #fff;
  transition: all 0.3s ease;
}

.containeripo .btn-download {
  background-color: #a58e43;
}

.containeripo .btn-download:hover {
  background-color: #917c3a;
}

.containeripo .btn-help {
  background-color: #218c60;
  position: relative;
}

.containeripo .btn-help:hover {
  background-color: #1b744f;
}

.containeripo .btn-callback {
  background-color: #4b4b8c;
}

.containeripo .btn-callback:hover {
  background-color: #0f0e96;
}

.containeripo .call-text {
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 4px;
  text-align: center;
}

.containeripo {
  /* box-shadow: 4px 4px 24px 0 rgba(31, 72, 114, .048); */
  margin-top: -20px;
}

.ipo-page-container {
  box-shadow: 4px 4px 24px 0 rgba(31, 72, 114, .048);
}

/* Contact info popup */
.contact-info-detail {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 12px 18px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 100;
  width: 250px;
  text-align: left;
}

.btn-help:hover .contact-info-detail {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

.contact-info-detail p {
  margin: 6px 0;
  font-size: 15px;
  padding: 11px 0px;
}

.contact-info-detail a {
  text-decoration: none;
  color: #333;
}

.contact-info-detail i {
  color: #c79c3c;
  margin-right: 8px;
  font-size: 20px;
}

.contact-info-detail a:hover {
  color: #5c63d8;
}

.process-section {
  padding: 4px 10px;
  background: white;
}


.process-container {
  position: relative;
  margin: 2rem auto;
  max-width: 1200px;
}

.process-step {
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
}

.step-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #1a3a8f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
}

.step-circle:hover {
  transform: scale(1.1);
  background: #2c5aa0;
}

.step-content {
  background: white;
  padding: 7px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 273px;
  transition: all 0.3s ease;
}

.step-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-content h5 {
  color: #9b9045;
  margin-bottom: 1rem;
  font-weight: 600;
  margin-top: 10px;
}

.step-content p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
  padding-top: 0px;
}

/* Connection lines */
.process-connector {
  position: absolute;
  top: 50px;
  height: 4px;
  background: #1a3a8f;
  z-index: 1;
}

.process-connector.dashed {
  background: repeating-linear-gradient(to right,
      #1a3a8f,
      #1a3a8f 10px,
      transparent 10px,
      transparent 20px);
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .process-connector {
    display: none;
  }

  .step-circle {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }
}

.bond1 {
  margin: auto;
  height: 78px;
  width: 62px;
}

.section-title1 {
  color: var(--primary-color);
  margin-bottom: 1px;
  padding-bottom: -7px !important;
  /* border-bottom: 2px solid var(--secondary-color); */
  margin-top: 0px;
  text-align: left;
  font-size: 28px;
}

.sectiontitle1 {
  margin-bottom: 0px;
  margin-top: 0px;
  /* font-size: 36px; */
  text-align: center;
  align-items: center;
  font-size: 25px;
  color: var(--primary-color);
}

.needhelpcontact {
  font-size: 18px;
  color: #9b9045;
}

.hlptxt {
  font-size: 13px;
}


/*******************************/

.modaldiv .demo-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
}

.modaldiv .modal-content {
  border: none;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  background: #ffffff;
}

.modaldiv .modal-header {
  border: none;
  padding: 11px 15px;
  background: linear-gradient(135deg, #7676db 0%, #252546 100%);
  position: relative;
  overflow: hidden;
}

.modaldiv .modal-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.modaldiv .modal-header .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.modaldiv .modal-header .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.modaldiv .modal-title {
  color: #ffffff;
  font-weight: 600;
  font-size: 19px;
  text-align: center;
  width: 100%;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.modaldiv .modal-body {
  padding: 2rem;
}

.modaldiv .subtitle {
  color: #6c757d;
  font-size: 1.05rem;
  margin-bottom: 5px;
  text-align: center;
  font-weight: 400;
}

.modaldiv .investment-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.modaldiv .form-control {
  border: 2px solid #e9ecef;
  border-radius: 16px !important;
  padding: 14px 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.modaldiv .form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
  background: #ffffff;
  transform: translateY(-2px);
}

.modaldiv .input-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.modaldiv .input-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #667eea;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.modaldiv .form-control:focus~.input-icon {
  transform: translateY(-50%) scale(1.2);
}

.modaldiv .btn-invest {
  background: bb9654;
  border: none;
  border-radius: 9px;
  padding: 10px 3px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  width: 51%;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.modaldiv .btn-invest::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.modaldiv .btn-invest:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.modaldiv .btn-invest:hover::before {
  left: 100%;
}

.modaldiv .btn-invest:active {
  transform: translateY(-1px);
}

.modaldiv .info-text {
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

.modaldiv .info-text i {
  color: #667eea;
  margin-right: 5px;
}

/* Floating animation for decorative elements */
.modaldiv .floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Modal entrance animation */
.modaldiv .modal.show .modal-dialog {
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Success animation */
@keyframes successPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.modaldiv .success-feedback {
  animation: successPulse 0.5s ease;
}

/* Loading animation */
.modaldiv .btn-invest.loading {
  pointer-events: none;
}

.modaldiv .btn-invest.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btnsection {
  border: 1px solid red;
}

.custom-button {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid #9b9045;
  background-color: white;
  color: #6d621b;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-button:hover {
  background-color: #9b9045;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(211, 84, 0, 0.3);
}

.custom-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#examplebank .submodaldiv {
  max-width: 900px !Important;
}

#examplebank .submodaldiv .modal-header .btn-close {
  padding: 4px 10px;
  margin-bottom: 5px;
}

.tablediv {
  width: 97%;
  margin: AUTO;
  border: 1px solid #b5b5b5;
  margin-top: 13px;
}

.tablediv td {
  border: 1px solid #cccccc;
}

.tablediv th {
  border: 1px solid #cccccc;
}

.bg-success1 {
  background: #9b9045;
  text-align: center;
}

.container54ecdetail {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4px;
  align-items: center;
}

.container54ecdetail .left-section {
  background: white;
  padding: 21px;
  border-radius: 19px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: slideInLeft 1s ease-out forwards;
  margin: auto;
}

.container54ecdetail .right-section {
  background: white;
  padding: 16px 23px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: slideInRight 1s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.container54ecdetail .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #6f672f 0%, #9b9045 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
}

.container54ecdetail .badge::before {
  content: "✓";
  font-size: 18px;
  font-weight: bold;
}

.container54ecdetail .illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.container54ecdetail .person {
  width: 80px;
  height: 120px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 50% 50% 30% 30%;
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.container54ecdetail .person::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 50%;
  top: -25px;
  left: 15px;
}
.blogcontainer
{
 width:87% !important;
}
.container54ecdetail .coin {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #9e9dcf 0%, #6564d1 100%);
  border-radius: 50%;
  position: absolute;
  top: 20px;
  right: -10px;
  animation: bounce 2s ease-in-out infinite;
}

.container54ecdetail .coin::after {
  content: "₹";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.container54ecdetail .house {
  width: 100px;
  height: 80px;
  background: linear-gradient(135deg, #6564d1 0%, #8887c1 100%);
  position: relative;
  border-radius: 5px;
  animation: float 3s ease-in-out infinite 0.5s;
}

.container54ecdetail .house::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 50px solid #6564d1;
  top: -45px;
  left: -10px;
}

.container54ecdetail .window {
  width: 25px;
  height: 25px;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  border-radius: 3px;
}

.container54ecdetail .window:nth-child(1) {
  top: 20px;
  left: 15px;
}

.container54ecdetail .window:nth-child(2) {
  top: 20px;
  right: 15px;
}

.container54ecdetail .door {
  width: 30px;
  height: 40px;
  background: rgb(101 100 209);
  position: absolute;
  bottom: 0;
  left: 35px;
  border-radius: 5px 5px 0 0;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(180deg);
  }
}

.container54ecdetail h1 {
  color: #2d3748;
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 700;
}

.container54ecdetail h2 {
  color: #9b9045;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.container54ecdetail p {
  color: #4a5568;
  line-height: 24px;
  margin-bottom: 9px;
  font-size: 16px;
}

.container54ecdetail .highlight {
  color: #9b9045;
  font-weight: 700;
  background: rgba(102, 126, 234, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.container54ecdetail .info-box {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  padding: 10px;
  border-radius: 10px;
  border-left: 4px solid #9b9045;
  margin-top: 12px;
}

@media (max-width: 968px) {
  .container {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) and (max-width: 1280px) {
  .btn-invest {
    padding: 4px 0px;
    font-size: 14px;
    line-height: 27px;
  }

  .btn-download {
    padding: 4px 0px;
    font-size: 14px;
  }
}

.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all .3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: .4s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-content {
  padding: 20px;
}

.blog-title {
  font-size: 18px;
  font-weight: 700;
}

.blog-desc {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
}

.read-more {
  margin-top: 12px;
  display: inline-block;
  font-weight: 600;
  color: #0d6efd;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Slick adjustments */
.slick-slide {
  margin: 15px;
}

.slick-prev:before,
.slick-next:before {
  color: #000;
  font-size: 30px;
}


/*athorised section css start */

.container_authorised .card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 13px;
  padding: 0px 21px;
  box-shadow: none;
  animation: fadeIn 0.6s ease-out;
  padding-bottom: 37px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container_authorised .header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 23px;
  padding-bottom: 20px;
  border-bottom: 3px solid #667eea;
  background: none;
  padding: 15px 2px;
}

.container_authorised .badge {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.container_authorised .badge svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.container_authorised h1 {
  font-size: 34px;
  color: #2d3748;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.container_authorised .content {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #4a5568;
}

.container_authorised .highlight {
  color: #667eea;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.container_authorised .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  opacity: 0.3;
}

.container_authorised .stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.container_authorised .stat-card {
  background: linear-gradient(135deg, #667eea 0%, #1a3a8f 100%);
  padding: 9px 5px;
  border-radius: 17px;
  color: white;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container_authorised .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.container_authorised .stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.container_authorised .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.collapse-content {
  transition: 0.3s ease;
}

.track1 {
  border: 2px solid #9b9045;
  padding: 9px 9px;
  border-radius: 16px;
  line-height: 37px;
}

.track1:hover {
  color: #9b9045;
}

.slick-prev:before,
.slick-next:before {
  color: #451fb3;
}

  @media (max-width: 768px) {
    .container_authorised .card {
      padding: 30px 25px;
    }

    .container_authorised h1 {
      font-size: 1.8rem;
    }

    .container_authorised .content {
      font-size: 1rem;
    }

    .container_authorised .header {
      flex-direction: column;
      text-align: center;
    }
  }

  /*
        .mobile_readmore
            {
               display:none;
            }
         .mobileread
            {
             display:none;
            }
        */
 

  @media (max-width:1024px) {
    .prdoducediv {
      width: 100% !important;
    }
  }
  
  
  /*how to invest itoms */
    .feature-card {
      background: #fff;
      border-radius: 12px;
      padding: 4px 34px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      height: 100%;
    }
    
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    }
    
    .feature-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #7d7dc5 0%, #4b4b8c 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 10px;
      font-size: 27px;
      color: white;
    }
    
    .hlptxt {
      font-size: 14px;
      margin-bottom: 0px;
    }
    
    .needhelpcontact {
      color: #667eea;
      text-decoration: none;
      font-weight: 600;
    }
    
    .needhelpcontact:hover {
      color: #764ba2;
    }
    
    .fw-600 {
      font-weight: 600;
    }
    
    /* Arrow styles */
    .step-wrapper {
      position: relative;
    }
    
    .step-wrapper::after {
      content: '\f061';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      right: -15px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 24px;
      color: #667eea;
      z-index: 1;
    }
    
    .step-wrapper:last-child::after {
      display: none;
    }
    
    /* Responsive adjustments */
    @media (max-width: 767px) {
      .step-wrapper::after {
        content: '\f063';
        right: auto;
        left: 50%;
        top: auto;
        bottom: -30px;
        transform: translateX(-50%);
      }
    }
    
    .animate-on-scroll {
      opacity: 0;
      animation: fadeInUp 0.6s ease forwards;
    }
    
    .animate-on-scroll:nth-child(1) { animation-delay: 0.1s; }
    .animate-on-scroll:nth-child(2) { animation-delay: 0.2s; }
    .animate-on-scroll:nth-child(3) { animation-delay: 0.3s; }
    .animate-on-scroll:nth-child(4) { animation-delay: 0.4s; }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  /*end css*/
          .contentdiv .bond-card {
            border-radius: 12px;
            padding: 1px 8px;
            margin: 1.5rem 0;
            transition: all 0.3s ease;
            padding-left: 12px;
            padding-bottom: 15px;
        }
        
        .contentdiv .bond-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }
        
         .contentdiv .bond-header {
            display: flex;
            align-items: center;
            margin-bottom: 0px;
            padding-bottom: 0px;
            border-bottom: blueviolet;
            background:none;
        }
        
       .contentdiv  .bond-icon {
            background: linear-gradient(135deg, #4f46e5 0%, #7c73e6 100%);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.25rem;
            font-size: 1.75rem;
            box-shadow: 0 4px 8px rgba(79, 70, 229, 0.2);
        }
        
         .contentdiv .bond-title {
            color: #1e293b;
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 20px;
        }
        
         .contentdiv.bond-subtitle {
            color: #64748b;
            font-size: 1rem;
            margin-bottom: 0;
        }
        
         .contentdiv .bond-content {
            color: #475569;
            line-height: 23px;
            font-size: 1.05rem;
        }
          .contentdiv .bond-content p
          {
              /* color:Red; */
              margin-bottom: 2px;
          }
        
         .contentdiv .highlight {
            color: #9b9045;
            font-weight: bold;
        }
        
         .contentdiv .tax-benefit {
            background: linear-gradient(135deg, #4f46e5 0%, #7c73e6 100%);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            margin-top: 1.5rem;
            font-weight: 600;
            box-shadow: 0 4px 8px rgba(79, 70, 229, 0.25);
        }
        
         .contentdiv .tax-benefit i {
            margin-right: 0.75rem;
            font-size: 1.2rem;
        }
        
        @media (max-width: 768px) {
            .contentdiv .bond-card {
                padding: 1.75rem;
            }
            
             .contentdiv .bond-header {
                flex-direction: column;
                text-align: center;
            }
            
             .contentdiv .bond-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
             .contentdiv .bond-title {
                font-size: 1.5rem;
            }
        }
        @media (max-width:1350px) 
        {
            .bond-icon {
            width: 30px;
            padding: 0px;
            min-width: 30px;
            height: 30px;
            }
            .bond-header h4 {
            font-size: 20px;
            }
            .bond-body {
             padding-bottom: 0px;
            }
            .containertop
            {
            margin-top:80px !important;
            }
            .feature-card {
            padding-bottom: 0px !important;
            }
            .btn-download {
            padding: 2px 0px;
            }
            .btn-invest
            {
            padding: 2px 0px;
            }
            .containeripo {

                margin-top: -26px;
            }
            .feature-icon {
            width: 50px;
            height: 50px;
            }
            .collapse-content
            {
            margin-top:0px;
            }
    
}
        .investfont
        {
            color: #302e2e;
            font-size: 18px;
            font-weight: normal !important;
        }
        
    @media (max-width:576px) {
  
    .leftcapitalimg {
      max-width: 100% !important;
    }

    .ipomrgnbtm .sectiontitle1 {
      margin-bottom: -1px !important;
      margin-top: 34px;
    }

    .containeripo .btn-custom {
      padding: 7px 7px !important;
    }

    .ipo-text {
      margin-bottom: 20px;
    }

    .marginbtm1 {
      margin-bottom: 5px;
    }

    .prdoducediv {
      width: 100% important;
    }

    .slick-prev:before,
    .slick-next:before {
      color: #451fb3;
      font-size: 40px;
      font-weight: normal;
    }

    .ipo-text {
      margin-bottom: 6px;
    }

    .sectiontitle1 {
      margin-bottom: 15px !important;
    }
    .bond-card
    {
     margin-bottom:9px !important; 
    }
    .feature-card {
     padding: 42px 34px !important;
    }
    .feature-icon {
        width: 70px !important;
        height: 70px !important;
  }
  .left-section
  {
      display:none;
  }
  .contentdiv .bond-card
  {
   padding:0px;
  }
  .contentdiv
  {
        margin-bottom: 20px;
  }
  .contentdiv .bond-card {
  padding: 3px 15px !important;
  margin-top:0px;
  }
  .bondheader1
        {
        background-color: #4b4b8c;
        color: white;
        padding: 0px;
        text-align: center;
        padding-bottom: 0px;
        padding-top: 5px;
        padding-bottom: 0px;
        background: #4b4b8c  !important;
        border-radius:13px 13px 0px 0px  !important;
        }
    
        .contentdiv .bond-title {
        font-size: 22px !important;
        color: #ffffff !important;
        padding: 8px 8px !important;
    }
    .contentdiv .bond-content p {
    /* color: Red; */
    margin-bottom: 14px;
    margin-top: 5px;
    padding: 4px 0px;
    text-align: justify;
    line-height: 28px;
}
.btn-invest
{
    border-radius:5px !Important;
    padding:10px !important;
}

.btn-download
{
    border-radius:5px !Important;
    padding:10px !important;
}
 .contentdiv .bond-title
  {
   font-size: 19px !important;
  }
  .contentdiv {
   margin-bottom: 20px;
   margin-top: -5px !important;
    }
        .bond-icon {
        width: 50px;
        padding: 0px;
        min-width: 50px;
        height: 50px;
    }
        .section-title {
        font-size: 23px;
        margin-bottom: 4px !important;
    }
    .read-more
    {
      padding:12px 4px;
    }
  }     