/* General Reset */
/* body, */
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    background-color: #ffffff;
    
    border-bottom: 1px solid #ddd;
    
  
}

.navbar-brand {
    font-weight: bold;
    color: #007bff;
    
    font-size: 1.5rem;
}

.navbar .logo-img {
    height: 50px;
    
    margin-right: 10px;
    
}

.nav-item a {
    font-weight: 600;
   
    color: #333;
    
    transition: color 0.3s ease-in-out;
}

.nav-item .nav-link{
    margin:0 15px;
}
.nav-item a:hover {
    color: #007bff;
    
}

.navbar .dropdown:hover .dropdown-menu {
    display: block;
    
    animation: slideDown 0.3s ease-in-out;
    
}

.dropdown-menu {
    border: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.dropdown-menu a {
    color: #333;
    padding: 10px 20px;
}

.dropdown-menu a:hover {
    background-color: #f0f0f0;
    color: #007bff;
}

/* Hero Section */
.hero-section {
    background: 
    radial-gradient(
      circle, 
      rgba(173, 216, 230, 0.6) 30%, 
      rgba(135, 206, 250, 0.8) 70%, 
      rgba(100, 149, 237, 0.9) 100% 
    ),
    url('/public/images/unsplash_BgcRLmTrR9Q.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px;
  text-align: center;
  /* color: #fff;  */
  border-bottom-left-radius: 100px; 
  border-bottom-right-radius: 100px; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

.hero-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.hero-subheading {
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 30px;
}

.hero-btn {
    background-color: #007bff;
    color: #fff;
    font-weight: 600;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

.hero-btn:hover {
    background-color: #0056b3;
}

/* Image Styling */
.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.hero-image {
    width: 25%;
    
    max-width: 800px;
    
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .hero-image {
        width: 90%;
        
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Investment Section */

.investment-section {
    background-color: #fff;
    padding: 60px 20px;
}

.investment-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.heading-with-line {
    position: relative;
    text-align: center;
    display: inline-block;
    margin-bottom: 20px;
    padding: 0 20px;
    
}

.heading-with-line::after {
    content: '';
    display: block;
    width: 120%;
    max-width: 500px;
    height: 8px;
    background-color: #007bff;
    margin: 0 auto;
    margin-top: 10px;
    border-radius: 1px 1px 10px 1px;
    position: relative;

}

.investment-section p {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 15px;
}

.investment-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
    
    background-color: #aedcfa;
    
    border-radius: 125px;
    
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    
}

@media (max-width: 768px) {
    .investment-section {
        text-align: center;
    }

    .investment-section h2 {
        font-size: 1.5rem;
    }

    .investment-image {
        max-width: 100%;
        margin-top: 20px;
    }
}


.section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-top: 5px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #000000;
    font-size: 1.2rem;
}

.chart-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.chart-img {
    width: 100%;
    height: auto;
}

.vertical-label {
    position: absolute;
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
    text-orientation: mixed;
    font-weight: bold;
    background-color: snow;
    padding: 1rem;
    border-radius: 10px;
}


.section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.card-custom {
    background-color: #a0cfff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
}

.card-side {
    background-color: #a0cfff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
   
}

.img-bg {
    background: #fff;
    border-radius: 30px;
    padding: 5px;
}

.card-img-top {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.card-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.card-text {
    font-size: 0.9rem;
    color: #666;
}

.main-card {
    background-color: #a0cfff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
}

.main-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    background-color: white;
    padding: 10px;
}

.invest-section {
    background-color: #e8f4fb;
}

.steps .step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.steps .step p {
    font-size: 1rem;
    color: #000000;
}



.card {
    border-radius: 15px;
}

.card-body p {
    font-size: 0.95rem;
}

.card-body .bi-calendar2 {
    font-size: 1.2rem;
    color: #6c757d;
}

.testimonial-section {
    background-color: #f8f9fa;
}



.overlay {
    border-radius: 15px;
}


.text-uppercase {
    letter-spacing: 0.1rem;
}


/* Gradient Background */
footer {
    background: 
    linear-gradient(
        to right, 
        rgba(216, 236, 255, 0.5) 0%,    
        transparent 30%,                
        transparent 70%,                
        rgba(216, 236, 255, 0.5) 100%  
    ),
    url('/public/images/footerimg.png'); 
background-size: cover;
background-position: center;
background-repeat: no-repeat;
text-align: center;

}

footer h6 {
    font-weight: bold;
    color: black;
}

footer ul {
    padding-left: 0;
    
}

footer ul li {
    margin-bottom: 0.5rem;
   
}


footer .bi {
    font-size: 1.25rem;
    transition: color 0.3s ease;
    color: #007bff;
}

footer .bi:hover {
    color: #002041;
   
}

footer .row.align-items-start {
    align-items: flex-start;
   
}


/*real-state*/

.real-estate-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
   
    background-color: #e0f3ff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
   
  
  }
  
  .content {
    flex: 1;
    max-width: 600px;
    margin-right: 20px;
  }
  
  .real-estate-section  h1 {
    color: #007bff;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .real-estate-section h3 {
    color: #333;
    font-weight: normal;
    margin-bottom: 20px;
  }
  
  .real-estate-section .content p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .content ul {
    margin-bottom: 20px;
    padding-left: 20px;
  }
  
  .content ul li {
    margin-bottom: 10px;
    color: #444;
  }
  
  .content h2 {
    color: #007bff;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .image-section {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .image-section img {
    max-width: 100%;
    height: auto;

  }


  /* login page */

  .left-section {
    /* background-color: #f8f9fa; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem;
  }
  .right-section {
    background-color: #21252936;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    border-top-left-radius: 50px;
  }

  .form-container {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 550px;
  }
  .btn-continue {
    background-color: #007bff;
    color: white;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
  }
  .btn-continue:hover {
    background-color: #0056b3;
  }
  .illustration img {
    max-width: 100%;
    height: auto;
  }


  .gradient{
    background: linear-gradient(to right, rgba(216, 236, 255, 0.5) 0%, transparent 30%, /* Gradually fades to transparent */ transparent 70%, /* Center remains clear */ rgba(216, 236, 255, 0.5) 100% /* Light blue on the right edge */), url(/public/images/unsplash_rgJ1J8SDEAY.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 10rem;
    
}

.gradient h1 {
    color: #000000;
    font-weight: bold;
    font-size: 3.5rem;
    /* text-transform: uppercase; */
    text-align: center;
    margin-bottom: 0rem;
    letter-spacing: 0.1rem;
    text-shadow: 2px 2px 5px rgb(0 0 0 / 10%);
    /* font-family: revert-layer; */
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-decoration-color: #007bff;
}

.hero-section-real {
    padding: 50px 20px;
}
.hero-section-real h1 {
    color: #007bff;
    /* Blue color */
    font-size: 2.5rem;
    font-weight: 700;
}

.hero-section-real h3 {
    color: #5a5a5a;
    /* Grayish color */
    font-weight: 500;
}

.property-section {
    padding: 50px 20px;
    background-color: #f3f9fc;
}
.strength-section {
    background-color: #f3f9fc;
    padding: 50px 20px;
}

.im-section {
    padding: 50px 20px;
    background-color: #85bffc;
}
.residential-section {
    padding: 50px 20px;
    background-color: #80bdfe;
}
.advantages-section {
    padding: 50px 20px;
    background-color: #ffffff;
}
.flipping-section {
    padding: 50px 20px;
    background-color: #ffffff;
}
.contentreal p,
.contentreal ul {
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.8;
}

.contentreal ul {
    margin-top: 15px;
}

.im-section img {
    max-width: 100%;
}
/* .icon-text-box {
    background-color: #d0ecff;
    border-radius: 8px;
    padding: 15px;
    width: 250px;
    font-weight: 500; */
/* } */

.icon-text-box img {
    margin-right: 10px;
}

.info-state {
    background-color: #d0ecff;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
}

.info-state-title {
    font-weight: bold;
    color: #000;
}

.info-state-description {
    color: #000;
}

.state {
    background-color: #fff;
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.state-text {
    font-weight: bold;
    color: #01579b;
}

.state img {
    max-width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
    padding: 25px;
}

.feature-box {
    background-color: #b3e5fc;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 15px;
}

.feature-box-light {
    background-color: #badced;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 15px;
}

.assets {
    background-color: #70bcfc;
    border-radius: 10px;
    border: none;
    padding: 1.6rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.headingreal {
    text-align: center;

    font-size: 30px;
    font-weight: bold;
}

.subheadingreal {
    text-align: center;
    margin-bottom: 40px;
    color: #151414;
    font-size: 1.4rem;
}

.cardresd {
    border: none;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cardresd h5 {
    font-weight: bold;
}

.cardresd img {

    width: 100%;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 20px;

}
.adv img {
    /* max-width: 100%; */
    /* height: auto; */
    border-radius: 10px 10px 0 0;
    padding: 85px;
    /* height: auto; */
    /* width: 100%; */
    /* margin-bottom: 15px; */
    /* font-size: 36px; */


}

.adv {
    background-color: #b3e5fc;
    border: none;
    border-radius: 8px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.description {
    text-align: center;
    font-size: 16px;
    color: #000000;
    margin: 0 20px;
}



/* login after */

@font-face {
    font-family: "f1";
    src: url("../fonts/Overpass-Regular.ttf");
  }
  @font-face {
    font-family: "f2";
    src: url("../fonts/Overpass-Medium.ttf");
  }
  @font-face {
    font-family: "f3";
    src: url("../fonts/Overpass-Bold.ttf");
  }
  
  @font-face {
    font-family: "f4";
    src: url("../fonts/Overpass-ExtraBold.ttf");
  }
  @font-face {
    font-family: "f5";
    src: url("../fonts/Overpass-Black.ttf");
  }
  
  
  
  /* General Reset */
  /* body,
  html {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: system-ui;
      background: #f6f9ff;
  } */
  /* body, html {
      background: #f6f9ff;
      font-family: f1;
      margin: 0;
      padding: 0;
  } */
  
  .navbar {
      /* background-color: #ffffff; */
      background-color: #2450a6;
      border-bottom: 1px solid #ddd;
      
    
  }
  
  .navbar-brand {
      font-weight: bold;
      color: #007bff;
      
      font-size: 1.5rem;
  }
  
  .navbar .logo-img {
      height: 50px;
      
      margin-right: 10px;
      
  }
  
  .nav-item a {
      font-weight: 600;
     
      color: #333;
      
      transition: color 0.3s ease-in-out;
  }
  
  .nav-item .nav-link{
      margin:0 15px;
  }
  .nav-item a:hover {
      color: #007bff;
      
  }
  
  .navbar .dropdown:hover .dropdown-menu {
      display: block;
      
      animation: slideDown 0.3s ease-in-out;
      
  }
  
  .dropdown-menu {
      border: none;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
  }
  
  .dropdown-menu a {
      color: #333;
      padding: 10px 20px;
  }
  
  .dropdown-menu a:hover {
      background-color: #f0f0f0;
      color: #007bff;
  }
  
   .icon-bg {
      background: #ebf5fd;
      color: #000;
      height: 35px;
      width: 35px;
          align-items: center;
      border-radius: 100%;
      box-shadow: 0 0 5px rgba(52, 51, 51, .251);
      display: flex ;
      justify-content: center;
  }
  
  
  
   .user-bg img {
      border-radius: 100%;
      height: 38px;
      width: 38px;
      
  }
  
  .ref_box {
      border: 2px solid #0a3f89;
      border-radius: 5px;
      font-weight: 600;
      margin: 0 10px;
      padding: 7px;
      color: #0a3f89 !important;
  }
  
  
  /* Hero Section */
  .hero-section {
      background: 
      radial-gradient(
        circle, 
        rgba(173, 216, 230, 0.6) 30%, 
        rgba(135, 206, 250, 0.8) 70%, 
        rgba(100, 149, 237, 0.9) 100% 
      ),
      url('/public/images/unsplash_BgcRLmTrR9Q.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    text-align: center;
    /* color: #fff;  */
    border-bottom-left-radius: 100px; 
    border-bottom-right-radius: 100px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
  }
  
  .hero-heading {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #333;
  }
  
  .hero-subheading {
      font-size: 1.2rem;
      font-weight: 500;
      color: #666;
      margin-bottom: 30px;
  }
  
  .hero-btn {
      background-color: #007bff;
      color: #fff;
      font-weight: 600;
      padding: 10px 25px;
      border: none;
      border-radius: 5px;
      text-decoration: none;
      transition: background-color 0.3s ease-in-out;
  }
  
  .hero-btn:hover {
      background-color: #0056b3;
  }
  
  /* Image Styling */
  .hero-image-container {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 20px;
  }
  
  .hero-image {
      width: 25%;
      
      max-width: 800px;
      
      height: auto;
      display: block;
  }
  
  @media (max-width: 768px) {
      .hero-image {
          width: 90%;
          
      }
  }
  
  @keyframes slideDown {
      from {
          opacity: 0;
          transform: translateY(-10px);
      }
  
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  /* Investment Section */
  
  .investment-section {
      background-color: #fff;
      padding: 60px 20px;
  }
  
  .investment-section h2 {
      font-size: 2rem;
      margin-bottom: 20px;
  }
  
  .heading-with-line {
      position: relative;
      text-align: center;
      display: inline-block;
      margin-bottom: 20px;
      padding: 0 20px;
      
  }
  
  .heading-with-line::after {
      content: '';
      display: block;
      width: 100%;
      max-width: 500px;
      height: 8px;
      background-color: #007bff;
      margin: 0 auto;
      margin-top: 10px;
      border-radius: 1px 1px 10px 1px;
      position: relative;
  
  }
  
  .investment-section p {
      font-size: 1.2rem;
      color: #000000;
      margin-bottom: 15px;
  }
  
  .investment-image {
      width: 100%;
      max-width: 500px;
      height: auto;
      border-radius: 10px;
      
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
      padding: 40px;
      
      background-color: #aedcfa;
      
      border-radius: 125px;
      
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      
  }
  
  @media (max-width: 768px) {
      .investment-section {
          text-align: center;
      }
  
      .investment-section h2 {
          font-size: 1.5rem;
      }
  
      .investment-image {
          max-width: 100%;
          margin-top: 20px;
      }
  }
  
  
  .section-title {
      font-size: 2rem;
      font-weight: bold;
      text-align: center;
      margin-top: 5px;
  }
  
  .section-subtitle {
      text-align: center;
      margin-bottom: 40px;
      color: #000000;
      font-size: 1.2rem;
  }
  
  .chart-container {
      position: relative;
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
  }
  
  .chart-img {
      width: 100%;
      height: auto;
  }
  
  .vertical-label {
      position: absolute;
      left: -150px;
      top: 50%;
      transform: translateY(-50%);
      text-orientation: mixed;
      font-weight: bold;
      background-color: snow;
      padding: 1rem;
      border-radius: 10px;
  }
  
  
  .section-title {
      font-size: 2rem;
      font-weight: bold;
      text-align: center;
      margin-top: 20px;
      margin-bottom: 40px;
  }
  
  .card-custom {
      background-color: #a0cfff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      margin-bottom: 20px;
  }
  
  .card-side {
      background-color: #a0cfff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
     
  }
  
  .img-bg {
      background: #fff;
      border-radius: 30px;
      padding: 5px;
  }
  
  .card-img-top {
      width: 100px;
      height: auto;
      margin-bottom: 15px;
  }
  
  .card-title {
      font-weight: bold;
      margin-bottom: 10px;
  }
  
  .card-text {
      font-size: 0.9rem;
      color: #666;
  }
  
  .main-card {
      background-color: #a0cfff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      margin-bottom: 20px;
  }
  
  .main-card img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      background-color: white;
      padding: 10px;
  }
  
  .invest-section {
      background-color: #e8f4fb;
  }
  
  .steps .step h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
  }
  
  .steps .step p {
      font-size: 1rem;
      color: #000000;
  }
  
  
  
  .card {
      border-radius: 15px;
  }
  
  .card-body p {
      font-size: 0.95rem;
  }
  
  .card-body .bi-calendar2 {
      font-size: 1.2rem;
      color: #6c757d;
  }
  
  .testimonial-section {
      background-color: #f8f9fa;
  }
  
  
  
  .overlay {
      border-radius: 15px;
  }
  
  
  .text-uppercase {
      letter-spacing: 0.1rem;
  }
  
  
  /* Gradient Background */
  footer {
      background: 
      linear-gradient(
          to right, 
          rgba(216, 236, 255, 0.5) 0%,    
          transparent 30%,                
          transparent 70%,                
          rgba(216, 236, 255, 0.5) 100%  
      ),
      url('/public/images/footerimg.png'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  
  }
  
  footer h6 {
      font-weight: bold;
      color: black;
  }
  
  footer ul {
      padding-left: 0;
      
  }
  
  footer ul li {
      margin-bottom: 0.5rem;
     
  }
  
  
  footer .bi {
      font-size: 1.25rem;
      transition: color 0.3s ease;
      color: #007bff;
  }
  
  footer .bi:hover {
      color: #002041;
     
  }
  
  footer .row.align-items-start {
      align-items: flex-start;
     
  }
  
  
  /*real-state*/
  
  .real-estate-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
     
      background-color: #e0f3ff;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     
    
    }
    
    .content {
      flex: 1;
      max-width: 600px;
      margin-right: 20px;
    }
    
    .real-estate-section  h1 {
      color: #007bff;
      font-size: 1.8rem;
      margin-bottom: 10px;
    }
    
    .real-estate-section h3 {
      color: #333;
      font-weight: normal;
      margin-bottom: 20px;
    }
    
    .real-estate-section .content p {
      color: #333;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    
    .content ul {
      margin-bottom: 20px;
      padding-left: 20px;
    }
    
    .content ul li {
      margin-bottom: 10px;
      color: #444;
    }
    
    .content h2 {
      color: #007bff;
      font-size: 1.5rem;
      margin-bottom: 10px;
    }
    
    .image-section {
      flex: 1;
      max-width: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .image-section img {
      max-width: 100%;
      height: auto;
  
    }
  
  
    /* login page */
  
    .left-section {
      /* background-color: #f8f9fa; */
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 5rem;
    }
    .right-section {
      background-color: #21252936;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 4rem;
      border-top-left-radius: 50px;
    }
    .form-container {
      background-color: #fff;
      border-radius: 1rem;
      padding: 2rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 550px;
    }
    .btn-continue {
      background-color: #007bff;
      color: white;
      border-radius: 0.5rem;
      padding: 0.5rem 1rem;
    }
    .btn-continue:hover {
      background-color: #0056b3;
    }
    .illustration img {
      max-width: 100%;
      height: auto;
    }
  
  
    .gradient{
      background: linear-gradient(to right, rgba(216, 236, 255, 0.5) 0%, transparent 30%, /* Gradually fades to transparent */ transparent 70%, /* Center remains clear */ rgba(216, 236, 255, 0.5) 100% /* Light blue on the right edge */), url(/public/images/unsplash_rgJ1J8SDEAY.png);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      text-align: center;
      padding: 2rem;
      
  }
  
  .gradient h1 {
      color: #000000;
      font-weight: bold;
      font-size: 3.5rem;
      /* text-transform: uppercase; */
      text-align: center;
      margin-bottom: 0rem;
      letter-spacing: 0.1rem;
      text-shadow: 2px 2px 5px rgb(0 0 0 / 10%);
      /* font-family: revert-layer; */
      text-decoration: underline;
      text-decoration-thickness: 4px;
      text-decoration-color: #007bff;
  }
  
  .hero-section-real {
      padding: 50px 20px;
  }
  .hero-section-real h1 {
      color: #007bff;
      /* Blue color */
      font-size: 2.5rem;
      font-weight: 700;
  }
  
  .hero-section-real h3 {
      color: #5a5a5a;
      /* Grayish color */
      font-weight: 500;
  }
  
  .property-section {
      padding: 50px 20px;
      background-color: #f3f9fc;
  }
  .strength-section {
      background-color: #f3f9fc;
      padding: 50px 20px;
  }
  
  .im-section {
      padding: 50px 20px;
      background-color: #85bffc;
  }
  .residential-section {
      padding: 50px 20px;
      background-color: #80bdfe;
  }
  .advantages-section {
      padding: 50px 20px;
      background-color: #ffffff;
  }
  .flipping-section {
      padding: 50px 20px;
      background-color: #ffffff;
  }
  .contentreal p,
  .contentreal ul {
      color: #4a4a4a;
      font-size: 1rem;
      line-height: 1.8;
  }
  
  .contentreal ul {
      margin-top: 15px;
  }
  
  .im-section img {
      max-width: 100%;
  }
  .icon-text-box {
      background-color: #d0ecff;
      border-radius: 8px;
      padding: 15px;
      width: 250px;
      font-weight: 500;
  }
  
  .icon-text-box img {
      margin-right: 10px;
  }
  
  .info-state {
      background-color: #d0ecff;
      border-radius: 8px;
      padding: 20px;
      height: 100%;
  }
  
  .info-state-title {
      font-weight: bold;
      color: #000;
  }
  
  .info-state-description {
      color: #000;
  }
  
  .state {
      background-color: #fff;
      border-radius: 10px;
      border: none;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .state-text {
      font-weight: bold;
      color: #01579b;
  }
  
  .state img {
      max-width: 100%;
      height: auto;
      border-radius: 10px 10px 0 0;
      padding: 25px;
  }
  
  .feature-box {
      background-color: #b3e5fc;
      border-radius: 10px;
      margin-bottom: 10px;
      padding: 15px;
  }
  
  .feature-box-light {
      background-color: #badced;
      border-radius: 10px;
      margin-bottom: 10px;
      padding: 15px;
  }
  
  .assets {
      background-color: #70bcfc;
      border-radius: 10px;
      border: none;
      padding: 1.6rem;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .headingreal {
      text-align: center;
  
      font-size: 30px;
      font-weight: bold;
  }
  
  .subheadingreal {
      text-align: center;
      margin-bottom: 40px;
      color: #151414;
      font-size: 1.4rem;
  }
  
  .cardresd {
      border: none;
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .cardresd h5 {
      font-weight: bold;
  }
  
  .cardresd img {
  
      width: 100%;
      max-height: 150px;
      object-fit: contain;
      margin-bottom: 20px;
  
  }
  .adv img {
      /* max-width: 100%; */
      /* height: auto; */
      border-radius: 10px 10px 0 0;
      padding: 85px;
      /* height: auto; */
      /* width: 100%; */
      /* margin-bottom: 15px; */
      /* font-size: 36px; */
  
  
  }
  
  .adv {
      background-color: #b3e5fc;
      border: none;
      border-radius: 8px;
      text-align: center;
      padding: 20px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .description {
      text-align: center;
      font-size: 16px;
      color: #000000;
      margin: 0 20px;
  }
  
  /* -------------dashboard--- */
  
  .dcGKGT {
      transform-origin: 50% 65%;
  }
  .iHGMyC {
      stroke-dasharray: 17;
      animation: 2.5s cubic-bezier(0.35, 0.04, 0.63, 0.95) 0s infinite normal none running YXrNl;
  }
  .top-head h5 {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 0 4px hsla(0, 1%, 45%, .122);
      color: #0a3f89;
      margin: auto;
      padding: 20px;
      text-align: center;
      text-transform: uppercase;
      width: 90%;
      font-weight: 700;
  }
  .my-4 {
      margin-bottom: 1.5rem !important;
      margin-top: 1.5rem !important;
  }
  .w-90 {
      margin: auto;
      width: 90%;
  }
  
  .my-2 {
      margin-bottom: .5rem !important;
      margin-top: .5rem !important;
  }
  .notify-page table {
      background: #fff;
      width: 100%;
  }
  table {
      border-collapse: collapse;
      caption-side: bottom;
  }
  .notify-page table tr {
      border: 12px solid #f6f9ff;
  }
  .notify-page table tr td {
      padding: 10px;
  }
  .btn-web, .login-btn {
      align-items: center;
      color: #fff !important;
      display: flex ;
      font-family: f2;
      font-size: 14px;
      justify-content: center;
      /* margin: auto; */
      padding: 10px;
      width: 150px;
  }
  .login-btn {
      background: #0a3f89;
      border: 0;
      border-radius: 10px;
  }
  .my-3 {
      margin-bottom: 1rem !important;
      margin-top: 1rem !important;
  }
  
  .invest-type img {
      background: #fff;
      border-radius: 100%;
      box-shadow: 0 0 6px hsla(0, 0%, 51%, .42);
      height: 40px;
      padding: 7px;
      width: 40px;
  }
  /* -----------nav copy----- */
  .invest-list {
      background: #ebf5fd;
      padding: 10px;
  }
   .invest-list a.active {
      background: #f0fef0 !important;
      color: #40a13f !important;
  }
  /* .invest-list a {
      margin-top: 10px;
  } */
  .d-flex-al-jb {
      /* align-items: center;
      justify-content: space-between; */
      text-align-last: justify;
      
  }
  
  .nav-link-copy {
      color: #000;
      display: block;
      font-size: var(--bs-nav-link-font-size);
      font-weight: var(--bs-nav-link-font-weight);
      padding: 0.5rem 1rem;
      text-decoration: none;
      transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
  }
  .d-flex-al-jc{
      display: flex ;
      /* flex-wrap: inherit; */
      align-items: center;
      justify-content: space-between;
  }
  
  .login-btn{
          text-decoration: none;
      font-family: system-ui;
      font-size: 14px;
      font-weight: 600;
  }
  .line-control-paragragh-box p{
      font-family: system-ui;
      font-size: 16px;
          font-weight: 400;
  }
  .inves-box {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 0 6px rgba(0, 0, 0, .129);
      cursor: pointer;
      overflow: hidden;
      padding: 13px;
      position: relative;
  }
  .progress {
      height: 8px;
  }
  .progress-bar {
      background-color: #5fbc5f;
  }
   .inves-box span {
      color: #000;
      font-weight: bold;
  }
  
   .inves-box button {
      background-color: #0a3f89 !important;
      border-color:  #0a3f89 !important;
      width: 100%;
  }
  .inves-box .view-detail a {
      color: #fff !important;
  }
  
  .d-flex-al, .d-flex-al-jd {
      align-items: center;
      display: flex ;
      flex-wrap: wrap;
  }
  .inves-box .view-detail a svg {
      font-size: 20px;
      margin-left: 10px;
  }
  .inves-box .view-detail {
      background: #0a3f89;
      bottom: -30%;
      height: 60px;
      left: 0;
      position: absolute;
      transition: all .9s;
      width: 100%;
  }
   .inves-box:hover .view-detail {
      bottom: 0;
      transition: all .9s;
  }
  
   .inves-box .view-detail {
      background: #0a3f89;
      bottom: -30%;
      height: 60px;
      left: 0;
      position: absolute;
      transition: all .9s;
      width: 100%;
  }
  
  
  .hidden-content {
        display: none;
      }
  /* detail-investment- */
      .invest-now {
      background: #ebf5fd;
      border-radius: 7px;
      box-shadow: 0 0 4px rgba(0, 0, 0, .169);
      overflow: hidden;
      position: -webkit-sticky;
      position: sticky;
      top: 10%;
  }
  .invest-now .inve-calc {
      background: #fff;
      padding: 10px;
  }
  .invest-now .inve-calc h5 {
      color: #5fbc5f;
      font-weight: 600;
  }
  .invest-now .inve-calc .input-des {
      position: relative;
  }
  .invest-now .inve-calc .input-des input {
      background: #efefef;
      border: 0;
      border-radius: 7px;
      font-family: f3;
      padding: 10px 10px 10px 55px;
      width: 100%;
  }
  .invest-now .inve-calc .input-des .rupes {
      align-items: center;
      background-color: #fff;
      border-radius: 7px;
      color: #0a3f89;
      display: flex ;
      height: 30px;
      justify-content: center;
      left: 15px;
      position: absolute;
      top: 6px;
      width: 30px;
      font-weight: 500;
  }
  .cent,  .d-flex-al-ja {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
  }
  .invest-now .inve-calc .input-des span {
      background: #ebf5fd;
      border-radius: 9px;
      cursor: pointer;
      font-size: 14px;
      margin: 0;
      padding: 7px;
          font-family: system-ui;
      font-weight: 500;
  }
  .invest-now .inve-calc .input-des .arrow-des {
      background-color: #fff;
      border-radius: 100%;
      bottom: -45px;
      height: 40px;
      left: 50%;
      position: absolute;
      -webkit-transform: translate(-50%);
      transform: translate(-50%);
      width: 40px;
      justify-content: space-evenly;
      display: inline-grid;
      align-content: center;
  }
  .invest-now .inve-calc .input-des .arrow-des img {
      width: 25px;
      vertical-align: middle;
  }
  .invest-now .leasing-calc {
      padding: 17px;
      text-align: center;
  }
  .leasing-calc h5 {
      color: #0a3f89;
      font-size: 17px;
      margin: 10px 0;
  }
  :focus-visible {
      outline: 0 !important;
  }
  .inve-view .inves-head h5 {
      color: #0a3f89;
  }
  .inve-view .inves-head .inves-baner {
      position: relative;
  }
  .inve-view .inves-head .inves-baner img {
      border-radius: 15px;
  }
  .inve-view .inves-head .inves-baner button {
      background-color: #5fbc5f !important;
      border: 0;
      position: absolute;
      right: 16px;
      top: 16px;
      width: 50%;
  }
  .inve-view .inves-head .due-dat h6 {
      color: #000;
      font-size: 18px;
      font-weight: 600;
  }
  .inve-view .inves-head .due-dat h6 span {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      font-weight: 400;
  }
  .inve-view .inves-head .inv-details {
      background: #fff;
      box-shadow: 0 0 6px rgba(0, 0, 0, .129);
      padding: 12px;
  }
  .inve-view .inves-head .inv-details p {
      margin-bottom: 12px;
  }
  .inve-view .inves-head .inv-details h6 {
      color: #000;
      font-size: 18px;
      margin: 0;
      font-weight: 600;
  }
  .inve-view .inves-head .inv-details h4 {
      color: #5fbc5f;
      font-size: 18px;
      margin: 0;
      font-weight: 700;
  }
  .inve-view .inves-head h5 {
      color: #0a3f89;
      font-weight: 600;
  }
  .inve-view .inves-head .abt-company p, .inve-view .inves-head .inv-faq p {
      line-height: 2;
      text-align: justify;
      font-size: 16px;
      font-weight: 400;
  }
  .inve-view .inves-head .inves-baner {
      position: relative;
  }
  .inve-view .inves-head .inves-baner img {
      border-radius: 15px;
  }
  
  .w-80 {
      margin: auto;
      width: 80%;
  }
  .bg-sha {
      background: #fff;
      border-radius: 4px;
      box-shadow: 0 0 9px rgba(0, 0, 0, .149);
      padding: 12px;
      text-decoration: none;
      color: #000;
  }
  
  /* -----more-info----- */
  .inve-page .leasing-ti h5 {
      color: #0a3f89;
      font-size: 22px;
      font-weight: 700;
  }
  
  /* -----refer earn------ */
  .w-100 {
      width: 100% !important;
  }
  .ref-earn h5 {
      text-align: center;
      font-weight: 700;
  }
  .ref-earn .ref-box {
      background: #fff;
      border-radius: 7px;
      box-shadow: 0 0 4px rgba(0, 0, 0, .251);
      padding: 15px;
  }
  .ref-side {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
  }
  .ref-earn .ref-box h4 {
      color: #0a3f89;
      font-size: 18px;
      font-weight: 700;
  }
  .ref-earn .ref-box input {
      background: #fff;
      border: #fff;
      box-shadow: 0 0 3px rgba(0, 0, 0, .149);
      padding: 4px 12px;
  }
  .ref-earn .ref-box button {
      width: auto;
  }
  .ref-earn .ref-box .ref_boxs input {
      border: 1px solid rgba(0, 0, 0, .278);
      padding: 15px;
  }
  .ref-earn .ref-box .ref_boxs {
      position: relative;
  }
  .ref-earn .ref-box input {
      background: #fff;
      border: #fff;
      box-shadow: 0 0 3px rgba(0, 0, 0, .149);
      padding: 4px 12px;
  }
  .ref-earn .ref-box .ref_boxs .inv_btn {
      background: #e4edfa;
      border-radius: 8px;
      color: #0a3f89 !important;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      padding: 12px;
      font-weight: 500;
      position: absolute;
      right: 9px;
      top: 3px;
      text-decoration: none;
  }
  .ref-earn .ref-box input {
      background: #fff;
      border: #fff;
      box-shadow: 0 0 3px rgba(0, 0, 0, .149);
      padding: 4px 12px;
  }
  .ref_box121 svg {
      align-items: center;
      display: flex;
      height: 91%;
      position: absolute;
      right: 10px;
      top: 0;
  }
  .ref_box121 {
      position: relative;
  }
  .ref-earn .ref-deta {
      background: #b8e4ff;
      padding: 15px;
      text-align: center;
  }
  .ref-earn .ref-deta h4 {
      color: #18b718;
      font-family: 500;
      font-size: 15px;
  }
  .ref-earn .ref-deta img {
      margin: 10px 0;
      width: 80px;
  }
  .ref-earn .your-ref h5 {
      color: #0a3f89;
      text-align: start;
  }
  
  .ref-earn .your-ref table {
      width: 100%;
  }
  .ref-earn .your-ref table tr {
      background: #fff;
      border: 10px solid #ebf5fd;
      padding: 10px;
  }
  /* -----product------ */
  .leas_dest {
      background: url(../../images/pages/product.png) no-repeat;
      background-size: cover;
      height: 100%;
  }
  .leas_dest h1 {
      color: #0a3f89;
      font-weight:700;
      font-size: 30px;
  }
  .leas_dest h4 {
      color: #5fbc5f;
      font-weight: 700;
      font-size: 24px;
  }
  .cou_tree {
      position: relative;
      text-align: center;
  }
  .cou_tree img {
      width: 30%;
  }
  .cou_tree .coud_leas p {
      margin: 0;
  }
  .cou_tree .coud_leas h5 {
      font-size: 19px;
      margin: 0;
      font-weight: 600;
  }
  .cou_tree .coud_leas {
      background: #fff;
      border-radius: 8px;
      left: 7%;
      padding: 10px;
      position: absolute;
      text-align: start;
      top: -6%;
      width: 150px;
  }
  
  .cou_tree .coud_leas1 {
      background: #fff;
      border-radius: 8px;
      padding: 10px;
      position: absolute;
      right: 7%;
      text-align: start;
      top: 7%;
      width: 150px;
  }
  .cou_tree .coud_leas1 p {
      margin: 0;
  }
  .cou_tree .coud_leas1 h5 {
      font-size: 19px;
      margin: 0;
      font-weight: 600;
  }
  .leas-page .ben-lea h1 {
      text-align: center;
      color: #0a3f89;
      font-weight: 700;
  }
  .leas-page .ben-lea .leas-box {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 10px 13px rgba(2, 2, 2, .1);
      height: 100%;
      padding: 12px;
      text-align: center;
  }
  .leas-page .ben-lea .leas-box .cir-beni {
      align-items: center;
      background: #d9f5ff;
      border-radius: 100%;
      display: flex;
      height: 130px;
      justify-content: center;
      margin: auto;
      overflow: hidden;
      width: 130px;
  }
  .leas-page .ben-lea .leas-box .cir-beni img {
      width: 100px;
  }   
  .leas-page .ben-lea h5 {
      font-weight: 700;
      text-align: center;
      color: #0a3f89;
  }
  .due_di {
      background: #dbffe0;
      border-radius: 10px;
      padding: 20px;
  }
  .due_di h1 {
      color: #0a3f89;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      font-weight: 700;
  }
  @media (min-width: 1200px) {
      .due_di .h1, h1 {
          font-size: 2.5rem;
      }
  }
  
  .img_pos {
      position: relative;
  }
  .img_pos .abs_img {
      align-items: center;
      display: flex;
      height: 100%;
      justify-content: center;
      left: -10px;
      position: absolute;
      top: -45px;
      width: 100%;
  }
  .img_pos .abs_img img {
      width: 180px;
  }
  .img_pos .des-box {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 10px 13px rgba(2, 2, 2, .1);
      height: 100%;
      padding: 12px;
      text-align: center;
  }
  .img_pos .des-box h5 {
      color: #5fbc5f;
      font-weight: 700;
  }
  .img_pos .des-box ul li {
      margin-left: 20px;
      margin-top: 10px;
      position: relative;
      text-align: start;
  }
  .leas-page h5 {
      color: #0a3f89;
      font-weight: 600;
  }
  .box-leas {
      border-radius: 6px;
      box-shadow: 0 4px 15px rgba(2, 2, 2, .15);
      height: 100%;
      padding: 10px;
  }
  .box-leas img {
      width: 150px;
  }
  .leas-page h5 {
      color: #0a3f89;
      font-weight: 700;
  }
  .d-flex-al-jb, .d-flex-jc {
      /* display: flex; */
      flex-wrap: wrap;
  }
  .d-flex-jc {
      justify-content: center;
  }
  .leas-page h5 {
      color: #0a3f89;
      font-weight: 700;
  }
  ul {
      list-style: none;
      padding: 0;
  }
  .leas-page .dif-leas li {
      margin-top: 15px;
  }
  
  .cc_ic {
      color: #ffb400;
      margin-right: 5px;
  }
  
  
  .leas-page .dif-leas .dif_po {
      background: #dff6ff;
      border-radius: 10px;
      box-shadow: 0 10px 13px rgba(2, 2, 2, .1);
      margin-bottom: 30px;
      padding: 20px 20px 15px;
  }
  .leas-page .dif-leas .dif_po1 {
      background: #fcefda;
      border-radius: 10px;
      box-shadow: 0 10px 13px rgba(2, 2, 2, .1);
      margin-bottom: 30px;
      padding: 20px 20px 15px;
  }
  .leas-page .dif-leas .dif_po2 {
      background: #dbffe0;
      border-radius: 10px;
      box-shadow: 0 10px 13px rgba(2, 2, 2, .1);
      margin-bottom: 30px;
      padding: 20px 20px 15px;
  }
  .flow-conten {
      position: relative;
  }
  .flow-conten h1 {
      color: rgba(0, 0, 0, .129);
      font-size: 70px;
      opacity: 0;
      font-weight: 600;
  }
  .flow-conten .flow-abs {
      position: absolute;
      top: 38px;
  }
  .flow-abs  h4 {
      color: #5fbc5f;
      font-weight:600;
      font-size: 24px;
  }
  .pad-legy {
      padding-left: 50px;
  }
  .pad-third {
      padding-left: 110px;
  }
  .pad-fit {
      padding-left: 30px;
  }
  .real_easta .leas-box img {
      margin: 10px 0;
      width: 300px;
  }
  .abouts_iconss .box-iocn {
      align-items: center;
      background: #dbeafb;
      border-radius: 10px;
      display: flex
  ;
      height: 100px;
      justify-content: center;
      margin: auto;
      text-align: center;
      width: 100px;
  }
  .abouts_iconss .box-iocn img {
      width: 50px;
  }
  .abouts_iconss h5 {
      color: #0a3f89;
      font-size: 16px;
      text-align: center;
      font-weight: 700;
  }
  .abouts_iconss p {
      line-height: 1.6;
      opacity: .8;
      font-size: 16px;
  }
  .flip-design img {
      -webkit-filter: invert(1);
      filter: invert(1);
      -webkit-transform: rotate(180deg);
      transform: rotate(180deg);
      width: 50px;
  }
  
  .w-95 {
      margin: auto;
      width: 95%;
  }
  
  
  /* ----------------about page------- */
  .top-bans {
      position: relative;
  }
  .baner-page img {
      height: 30vh;
      width: 100%;
  }
  .front-head h5 {
      align-items: center;
      color: #fff;
      display: flex;
      font-weight: 500;
      font-size: 25px;
      height: 100%;
      justify-content: center;
      position: absolute;
      text-transform: uppercase;
      top: 0;
      width: 50%;
  }
  .faq-deal .help-deal .help-ceny img {
      background: #fff;
      border-radius: 7px;
      box-shadow: 0 15px 20px rgba(0, 0, 0, .1);
      height: 50px;
      margin-right: 10px;
      padding: 10px;
      width: 50px;
  }
  h4 {
      color: #5fbc5f;
      font-weight: 600;
      font-size: 24px;
  }
  .faq-pro {
      position: relative;
  }
   .nav-link-copy .box-des {
      background-color: #dbeafe;
      border: 3px solid #fff;
      border-radius: 10px;
      box-shadow: 0 0 6px hsla(0, 0%, 61%, .6);
      font-family: f3;
      font-size: 17px;
      padding: 15px;
          align-self: baseline;
  }
   .gener-tabs img {
      background: #0a3f89;
      border-radius: 7px;
      height: 50px;
      margin-right: 10px;
      padding: 10px;
      width: 50px;
  }
  .px-3 {
      padding-left: 1rem !important;
      padding-right: 1rem !important;
  }
  .nav-link-copy .progress {
      height: 80px;
      position: relative;
      width: 9px;
  }
  .nav-link-copy.active .progress-bar {
      background-color: #0a3f89 !important;
  }
   .nav-link-copy .progress .progress-bar {
      background-color: #ebf5fd;
  }
  .our-vis img {
      margin-bottom: 20px;
  }
  .w-50 {
      margin: auto;
      width: 50%;
  }
  .faq-deal .faq-secc h5 {
      color: #0a3f89;
      font-weight: 500;
      font-size: 25px;
  }
  .faq-deal .faq-secc p {
      line-height: 2;
      text-align: start;
  }
  .our-team h5 {
      color: #0a3f89;
      font-size: 20px;
      font-weight: 700;
  }
  
  @media only screen and (max-device-width: 768px){
          
    .front-head h5 {
        align-items: center;
        color: #fff;
        display: flex;
        font-weight: 500;
        font-size: 25px;
        height: 100%;
        justify-content: center;
        position: absolute;
        text-transform: uppercase;
        top: 0;
        width: 100%;
    }

    .btn-close {
        top: 14px!important;  
        right: 10px !important;
        transform: translate(50%, -50%);
        border: 2px solid #000;
        background-color: #fff;
    }

    .modal-body {
        
        margin-top: 30px;
    
    }
    
    #proceedToPayment {

        width: auto !important; 
        text-align: center;
        margin: auto;
        
    }
    
    #rtgs-form button {
        
         width: auto !important;

    }
        
    .inve-view .inves-head .inves-baner button {
        background-color: #5fbc5f !important;
        border: 0;
        position: absolute;
        right: 16px;
        top: 31px;
        width: 50%;
        padding: 5px;
    }

    .tab button {
        background-color: inherit;
        float: left;
        border: none;
        border-right: 1px solid #ccc;
        outline: none;
        cursor: pointer;
        color: white;
        padding: 7px 12px !important;
        transition: 0.3s;
        font-size: 14px !important ;
    }
    
    .nav-pills .nav-link {
        border-radius: 0.25rem;
        padding: 10px !important;
        font-size: 14px !important;
        text-align: left;
        margin-bottom: 2rem;
        background-color: #b7b3b394 !important;
        border: none !important;
    }
    .nav-pills .nav-link.active {
        /* background-color: #007bff; */
        background-color: #2450a6  !important;
        color: white;
    }
    .invest-type img {
        background: #fff;
        border-radius: 100%;
        box-shadow: 0 0 6px hsla(0, 0%, 51%, .42);
        height: 33px;
        padding: 7px;
        width: 33px;
        margin-right: 10px;
    }
    
    .abt-company { 
    
        padding: 10px;
    
    }

}
      
