

/*--------------------------------------------------------------
# Google Fonts Import
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600;700&display=swap');


/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/

/* Fonts */
:root {
  --default-font: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --heading-font: "Arial", serif;
  --nav-font: "Poppins", sans-serif;
}


/*--------------------------------------------------------------
# Global Colors - Soft Premium Fintech Theme
--------------------------------------------------------------*/

:root { 
  
  /* --background-color: #EEF4F8;  */
  --background-color: #ffffff; 
  /* Soft cool background */
  
  --default-color: #425466; /* Paragraph text */
  
  --heading-color: #07111F; /* Deep navy headings */
  
  /* --accent-color: #2072B9;  */
  --accent-color: #2072B9; 
  /* Primary teal accent */
  
  --surface-color: #F8FBFD; /* Softer card background */
  
  --contrast-color: #ffffff; /* Text on buttons */
}


/*--------------------------------------------------------------
# Nav Menu Colors
--------------------------------------------------------------*/

:root {
  --nav-color: #5A6B7B;
  
  --nav-hover-color: #0066CC;
  
  --nav-mobile-background-color: #F8FBFD;
  
  --nav-dropdown-background-color: #F8FBFD;
  
  --nav-dropdown-color: #425466;
  
  --nav-dropdown-hover-color: #2072B9;
}


/*--------------------------------------------------------------
# Color Presets
--------------------------------------------------------------*/

.light-background {
  --background-color: #F3F7FA;
  --surface-color: #F8FBFD;
}

.dark-background {
  --background-color: #07111F;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #112034;
  --contrast-color: #ffffff;
}


/*--------------------------------------------------------------
# Smooth scroll
--------------------------------------------------------------*/

:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 12px !important;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #0066CC;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 18px !important;
  font-weight: bold;
}

body, p, span, li, a {
  font-size: 16px !important;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  /* --background-color: #000000; */
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1b1933;
  color: var(--contrast-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  backdrop-filter: blur(10px);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  background: var(--contrast-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
    /* height: 90vh; */
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
    height: 90vh;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: var(--background-color);
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: none;
}

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

.footer .footer-bottom .footer-bottom-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: var(--accent-color);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}



.fixed-income-section{
  /* padding:90px 0; */
  /* background:linear-gradient(135deg,#f6f8f9 0%, #eef2f3 100%); */
  overflow:hidden;
  position:relative;
}

.fixed-income-section::before{
  content:'';
  position:absolute;
  width:500px;
  height:500px;
  background:rgba(33,92,92,0.06);
  border-radius:50%;
  top:-220px;
  right:-180px;
}

.investment-card{
  /* background:#fff; */
  /* border-radius:30px; */
  overflow:hidden;
  /* box-shadow:0 20px 60px rgba(0,0,0,0.08); */
  position:relative;
  z-index:2;
}

.image-side{
  position:relative;
  /* background:#000; */
  min-height:100%;
}

.image-side img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s ease;
}

.investment-card:hover .image-side img{
  transform:scale(1.04);
}

.content-side{
  padding:70px 55px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  height:100%;
  position:relative;
}

.mini-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(33,92,92,0.08);
  color:var(--primary);
  font-weight:600;
  padding:5px 10px;
  border-radius:100px;
  font-size:14px;
  width:max-content;
  margin-bottom:25px;
}

.mini-tag span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--accent-color);
  display:block;
}

.content-side h2{
  font-size:30px;
  font-weight:800;
  line-height:1.15;
  margin-bottom:25px;
  color:#111827;
}

.content-side h2 strong{
  color:var(--accent-color);
}

.content-side p{
  font-size:17px;
  line-height:1.9;
  color:var(--text);
  margin-bottom:22px;
}

.highlight-box{
  background:#f7fafb;
  border-left:5px solid var(--accent-color);
  padding:24px 24px;
  border-radius:16px;
  margin-top:12px;
}

.highlight-box p{
  margin:0;
  font-size:16px;
  line-height:1.8;
  color:#374151;
  font-weight:500;
}

.stats-row{
  display:flex;
  gap:20px;
  margin-top:35px;
  flex-wrap:wrap;
}

.stat-card{
  flex:1;
  min-width:150px;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:24px;
  transition:0.3s ease;
}

.stat-card:hover{
  transform:translateY(-5px);
  border-color:rgba(33,92,92,0.3);
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.stat-card h3{
  font-size:30px;
  font-weight:800;
  color:var(--primary);
  margin-bottom:6px;
}

.stat-card p{
  margin:0;
  font-size:14px;
  color:#6b7280;
  line-height:1.5;
}

.btn-custom{
  margin-top:35px;
  display:inline-flex;
  align-items:center;
  gap:12px;
  background:var(--accent-color);
  color:#fff;
  text-decoration:none;
  padding:16px 28px;
  border-radius:14px;
  font-weight:600;
  transition:0.3s ease;
  width:max-content;
}

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

@media(max-width:991px){

  .content-side{
    padding:50px 35px;
  }

  .content-side h2{
    font-size:38px;
  }

  .image-side{
    height:350px;
  }
}

@media(max-width:767px){

  .fixed-income-section{
    padding:60px 0;
  }

  .content-side{
    padding:40px 25px;
  }

  .content-side h2{
    font-size:30px;
  }

  .content-side p{
    font-size:15px;
    line-height:1.8;
  }

  .highlight-box{
    padding:18px;
  }

  .stats-row{
    flex-direction:column;
  }

  .image-side{
    height:260px;
  }
}

/* *-------------------------- */
/* Philosophy section */
/* --------------------------- */

.philosophy-section{
  /* padding:100px 0; */
  /* background:linear-gradient(135deg,#f8fafb 0%, #eef3f4 100%); */
  /* position:relative; */
  /* overflow:hidden; */
}

/* .philosophy-section::before{
  content:'';
  position:absolute;
  width:450px;
  height:450px;
  border-radius:50%;
  background:rgba(33,92,92,0.05);
  top:-180px;
  right:-150px;
} */

.philosophy-wrapper{
  max-width:850px;
  position:relative;
  z-index:2;
}

.philosophy-tag{
  display:inline-block;
  background:rgba(33,92,92,0.08);
  color:var(--accent-color);
  padding:5px 10px;
  border-radius:100px;
  font-size:14px;
  font-weight:600;
  margin-bottom:22px;
}

.philosophy-wrapper h2{
  font-size:30px;
  font-weight:800;
  color:#111827;
  margin-bottom:18px;
  line-height:1.1;
}

.line{
  width:90px;
  height:5px;
  background:var(--accent-color);
  border-radius:20px;
  margin-bottom:30px;
}

.philosophy-wrapper p{
  font-size:19px;
  line-height:2;
  /* color:var(); */
  margin:0;
}

/* Responsive */

@media(max-width:991px){

  .philosophy-wrapper h2{
    font-size:46px;
  }

  .philosophy-wrapper p{
    font-size:17px;
  }

}

@media(max-width:767px){

  .philosophy-section{
    padding:70px 0;
  }

  .philosophy-wrapper h2{
    font-size:36px;
  }

  .philosophy-wrapper p{
    font-size:16px;
    line-height:1.9;
  }

}

/* ------------------------- */
/* sub-classes section */
/* ------------------------- */

.fixed-income-subclasses{
  /* padding:90px 0; */
  /* background:#f3f5f6; */
  /* font-family:'Inter',sans-serif; */
}

.section-heading{
  margin-bottom:35px;
}

.section-heading span{
  font-size:18px;
  font-weight:600;
  color:#d11f1f;
  letter-spacing:0.3px;
}

.income-card{
  background:#fff;
  border:1px solid var(--accent-color);
  padding:32px 28px;
  height:100%;
  transition:all 0.35s ease;
  position:relative;
  overflow:hidden;
}

.income-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:0%;
  height:3px;
  background:var(--primary);
  transition:0.4s ease;
}

.income-card:hover::before{
  width:100%;
}

.income-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.07);
}

.card-icon{
  width:58px;
  height:58px;
  border-radius:14px;
  background:rgba(33,92,92,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:22px;
  transition:0.3s ease;
}

.income-card:hover .card-icon{
  background:var(--accent-color);
}

.card-icon i{
  font-size:24px;
  color:var(--heading-color);
  transition:0.3s ease;
}

.income-card:hover .card-icon i{
  color:#fff;
}

.income-card h3{
  font-size:24px;
  font-weight:800;
  color:#111827;
  margin-bottom:18px;
  line-height:1.3;
}

.income-card p{
  font-size:17px;
  line-height:1.8;
  /* color:var(--text); */
  margin:0;
}

/* Responsive */

@media(max-width:991px){

  .income-card{
    padding:28px 24px;
  }

  .income-card h3{
    font-size:22px;
  }

  .income-card p{
    font-size:16px;
  }

}

@media(max-width:767px){

  .fixed-income-subclasses{
    padding:70px 0;
  }

  .section-heading{
    margin-bottom:28px;
  }

  .section-heading span{
    font-size:16px;
  }

  .income-card{
    padding:25px 22px;
  }

  .income-card h3{
    font-size:20px;
  }

  .income-card p{
    font-size:15px;
    line-height:1.8;
  }

}

/* complex */

.complex-landscape-section{
  /* padding:100px 0; */
  /* background:#f5f7f8; */
  /* font-family:'Inter',sans-serif; */
}


.landscape-card{
  background:#fff;
  border:1px solid var(--default-color);
  border-radius:24px;
  padding:35px 30px;
  height:100%;
  transition:all 0.35s ease;
  position:relative;
  overflow:hidden;
}

.landscape-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:0;
  background:linear-gradient(180deg, rgba(33,92,92,0.04), transparent);
  transition:0.4s ease;
}

.landscape-card:hover::before{
  height:100%;
}

.landscape-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 45px rgba(0,0,0,0.08);
  border-color:rgba(33,92,92,0.15);
}

.icon-box{
  width:65px;
  height:65px;
  border-radius:18px;
  background:rgba(33,92,92,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:25px;
  transition:0.3s ease;
}

.landscape-card:hover .icon-box{
  background:linear-gradient(135deg,var(--accent-color),var(--default-color));
}

.icon-box i{
  font-size:28px;
  color:var(--heading-color);
  transition:0.3s ease;
}

.landscape-card:hover .icon-box i{
  color:#fff;
}

.landscape-card h3{
  font-size:24px;
  font-weight:800;
  line-height:1.35;
  color:#111827;
  margin-bottom:18px;
}

.landscape-card span{
  font-size:16px;
  line-height:1.9;
  color:var(--text);
  display:block;
}

/* Responsive */

@media(max-width:991px){

  .section-header h2{
    font-size:42px;
  }

  .landscape-card{
    padding:30px 25px;
  }

  .landscape-card h3{
    font-size:22px;
  }

}

@media(max-width:767px){

  .complex-landscape-section{
    padding:70px 0;
  }

  .section-header{
    margin-bottom:40px;
  }

  .section-header h2{
    font-size:32px;
  }

  .section-header p{
    font-size:16px;
  }

  .landscape-card{
    padding:26px 22px;
    border-radius:20px;
  }

  .landscape-card h3{
    font-size:20px;
  }

  .landscape-card span{
    font-size:15px;
  }

}


/* ---------------------------> */
/*  */

/* Provided color palette */
/* :root {
  --background-color: #EEF4F8;
  --default-color: #425466;
  --heading-color: #07111F;
  --accent-color: #2072B9;
  --card-bg: #FFFFFF;
  --badge-light: #E0F2F1;
  --tag-bg: rgba(18, 207, 200, 0.12);
  --border-glow: rgba(18, 207, 200, 0.2);
} */

/* body {
  background-color: var(--background-color);
  color: var(--default-color);
  font-family: system-ui, -apple-system, 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  line-height: 1.45;
  padding: 2rem 1.5rem 3rem;
} */

/* .container {
  max-width: 1400px;
  margin: 0 auto;
} */

/* Page heading */
.grid-header {
  margin-bottom: 2.5rem;
  text-align: left;
  border-left: 4px solid var(--accent-color);
  padding-left: 1.2rem;
}
.grid-header h1 {
  font-size: 1.88rem;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}
.grid-header p {
  color: var(--default-color);
  margin-top: 0.5rem;
  font-weight: 500;
  opacity: 0.8;
}

/* One unified responsive grid */
.stages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

/* Tablet: 2 columns */
@media (min-width: 640px) {
  .stages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 3 columns — all 9 cards in one clean matrix */
@media (min-width: 1024px) {
  .stages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card design */
.stage-card {
  background: var(--card-bg);
  border-radius: 1.5rem;
  padding: 1.5rem 1.5rem 1.8rem;
  transition: all 0.25s ease;
  box-shadow: 0 12px 22px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.stage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 36px -14px rgba(0, 0, 0, 0.12);
  border-color: var(--border-glow);
}

/* Category chip (PRIVATE STAGES / TRANSITION etc) */
.category-chip {
  display: inline-block;
  background: var(--tag-bg);
  color: #0B6B66;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 0.25rem 0.9rem;
  border-radius: 40px;
  margin-bottom: 1rem;
  width: fit-content;
  text-transform: uppercase;
  border: 0.5px solid rgba(18, 207, 200, 0.3);
}

/* Title (Early stage, Growth stage, Pre-IPO etc) */
.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.65rem;
}

/* Range / market cap note (like "Pre-revenue" or "£100–500 Cr") */
.range-note {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-color);
  background: rgba(18, 207, 200, 0.1);
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 30px;
  margin-bottom: 0.9rem;
  letter-spacing: 0.2px;
  width: fit-content;
}

/* Description text - exactly as in image */
.card-description {
  color: var(--default-color);
  font-size: 0.94rem;
  line-height: 1.5;
  margin: 0.5rem 0 1.3rem 0;
  flex: 1;
}

/* Tags / fund categories */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.fund-tag {
  background: var(--badge-light);
  color: #085c58;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 40px;
  transition: all 0.1s;
  border: 0.5px solid rgba(18, 207, 200, 0.3);
}

.fund-tag:hover {
  background: rgba(18, 207, 200, 0.2);
}

/* subtle separator */
hr {
  margin: 2.5rem 0 0.5rem;
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0.25;
}
/* .footer {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 2.5rem;
  color: var(--default-color);
  opacity: 0.7;
} */


/*  */
/* ---------------------> */
/* Video Gallery Section */
/* <-------------------- */

.video-gallery-section {
    background: #f7f7f7;
    padding: 22px;
    padding-bottom: 5px;
    /* border-radius: 14px; */
    overflow: hidden;
}

.video-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.video-tab {
    border: none;
    /* background: #ececec; */
    padding: 7px 18px;
    /* border-radius: 30px; */
    font-size: 14px;
    transition: 0.3s ease;
    cursor: pointer;
}

.video-tab.active,
.video-tab:hover {
    background: #dfe9d3;
    color: #2072B9;
}

.video-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    padding-bottom: 5px;
}

.video-slider::-webkit-scrollbar {
    display: none;
}

.video-slider.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.video-card {
    min-width: 305px;
    max-width: 260px;
    /* background: #fff; */
    /* border-radius: 12px; */
    overflow: hidden;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.video-thumbnail {
    position: relative;
    height: 150px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #2072B9;
    transition: 0.3s ease;
    pointer-events: none;
}

.video-thumbnail:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.08);
}

.video-content {
    padding: 14px;
}

.video-content h5 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #222;
}

.video-content p {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 0;
}

.modal-content {
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.ratio iframe {
    border: 0;
}

@media(max-width:768px) {
    .video-card {
        min-width: 220px;
        max-width: 220px;
    }

    .video-thumbnail {
        height: 130px;
    }
}

.video-slider {
  /* scroll-behavior: smooth; */
  -webkit-overflow-scrolling: touch;
}

.video-slider {

  overflow-x: auto;
  scroll-behavior: auto;

}

.br-section{
  background-image: url("../img/1.jpg");
  background-position: bottom;
  background-size: cover;
  padding-top: 160px;
}


/* ============================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 16px !important;
}

body, p, span, li, a {
  font-size: 16px !important;
}