body {
    font-family: 'Poppins';
}
@charset "UTF-8";
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Bitter",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #352a26; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #291812; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #eb5f2d; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #352a26;  /* The default color of the main navmenu links */
  --nav-hover-color: #eb5f2d; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #352a26; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #eb5f2d; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #fff9f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* 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 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo i {
  font-size: 24px;
  margin-right: 5px;
  color: var(--accent-color);
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
  display: grid;
  place-items: center;
  font-size: 15px;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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 a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .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;
  }
}

/* Navmenu - Mobile */
@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;
  }

  .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);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    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;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}
/*--------------------------------------------------------------
# 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);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs 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);
  scroll-margin-top: 90px;
  overflow: clip;
  position: relative;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  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;
}
/* Section */
/* ================================
   TESTIMONIAL SECTION
================================ */
.testimonials-section{
    padding:90px 20px;
    background:linear-gradient(135deg,#f5f8ff,#eef3ff);
    position:relative;
    overflow:hidden;
}

/* BACKGROUND GLOW */
.testimonials-section::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(247,158,82,0.10);
    border-radius:50%;
    top:-180px;
    right:-120px;
    z-index:0;
}

.testimonials-section::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(0,23,67,0.07);
    border-radius:50%;
    bottom:-150px;
    left:-120px;
    z-index:0;
}

/* CONTAINER */
.testimonials-section .container{
    max-width:1300px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* HEADER */
.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header h2{
    font-size:42px;
    font-weight:800;
    color:#001743;
    margin-bottom:12px;
    letter-spacing:-0.5px;
}

.section-header p{
    color:#6b7280;
    font-size:18px;
    max-width:650px;
    margin:auto;
    line-height:1.7;
}

/* SLIDER SPACING */
.testimonials-slider{
    margin:0 -12px;
}

/* CARD */
.testimonial-card{
    background:#ffffff;
    border-radius:28px;
    padding:35px 30px;
    margin:15px 12px;
    position:relative;
    overflow:hidden;
    transition:0.4s ease;
    border:1px solid rgba(0,0,0,0.05);
    box-shadow:0 15px 45px rgba(0,0,0,0.08);
    min-height:330px;
    display:flex !important;
    flex-direction:column;
    justify-content:space-between;
}

/* HOVER EFFECT */
.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

/* TOP BORDER */
.testimonial-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,#001743,#f79e52);
}

/* QUOTE ICON */
.testimonial-card::after{
    content:'❝';
    position:absolute;
    top:18px;
    right:22px;
    font-size:70px;
    color:rgba(0,23,67,0.06);
    font-family:serif;
}

/* STARS */
.stars{
    color:#f79e52;
    font-size:22px;
    margin-bottom:20px;
    letter-spacing:2px;
}

/* TEXT */
.testimonial-card p{
    font-size:16px;
    line-height:1.9;
    color:#374151;
    margin-bottom:30px;
    font-weight:400;
}

/* USER INFO */
.user-info{
    display:flex;
    align-items:center;
    gap:16px;
    margin-top:auto;
}

/* AVATAR */
.avatar{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    color:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    flex-shrink:0;
}

/* USER NAME */
.user-info h4{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:#001743;
}

/* LOCATION */
.user-info span{
    font-size:14px;
    color:#6b7280;
}

/* SLICK DOTS */
.slick-dots{
    bottom:-55px;
}

.slick-dots li button:before{
    font-size:12px;
    color:#001743;
    opacity:0.3;
}

.slick-dots li.slick-active button:before{
    color:#f79e52;
    opacity:1;
}

/* ARROWS */
.slick-prev,
.slick-next{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff !important;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    z-index:10;
    transition:0.3s;
}

.slick-prev:hover,
.slick-next:hover{
    background:#f79e52 !important;
}

.slick-prev:before,
.slick-next:before{
    color:#001743;
    font-size:24px;
    opacity:1;
}

.slick-prev:hover:before,
.slick-next:hover:before{
    color:#fff;
}

.slick-prev{
    left:-20px;
}

.slick-next{
    right:-20px;
}

/* RESPONSIVE */
@media(max-width:992px){

    .section-header h2{
        font-size:34px;
    }

    .testimonial-card{
        min-height:auto;
    }
}

@media(max-width:768px){

    .testimonials-section{
        padding:70px 15px;
    }

    .section-header h2{
        font-size:28px;
    }

    .section-header p{
        font-size:15px;
    }

    .testimonial-card{
        padding:28px 22px;
    }

    .testimonial-card p{
        font-size:15px;
        line-height:1.8;
    }

    .slick-prev{
        left:-5px;
    }

    .slick-next{
        right:-5px;
    }
}

@media(max-width:500px){

    .section-header h2{
        font-size:24px;
    }

    .stars{
        font-size:18px;
    }

    .avatar{
        width:55px;
        height:55px;
        font-size:18px;
    }

    .user-info h4{
        font-size:16px;
    }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #fff8e7, #ffe5b4);
  padding: 120px 0;
  overflow: hidden;
}

.hero-section .content h1 {
  font-weight: 700;
  font-size: 3rem;
  color: #1e2b5e;
}

.hero-section .content h1 span {
  color: #d17c00;
}

.hero-section .content p {
  color: #4f4f4f;
  margin-top: 20px;
  line-height: 1.6;
  font-size: 1.05rem;
}

.btn-primary {
  background-color: #ff7a00;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary:hover { background-color: #e26a00; }

.btn-outline-dark {
  border: 2px solid #1e2b5e;
  color: #1e2b5e;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline-dark:hover {
  background-color: #1e2b5e;
  color: #fff;
}

/* Modern Stacked Image Slider */
.image-stack {
  position: relative;
  width: 320px;
  height: 360px;
  margin: auto;
  perspective: 1000px;
}

.img-box {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all 1s ease;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Front image */
.front {
  width: 280px;
  height: 350px;
  top: 0;
  left: 0;
  z-index: 2;
}

/* Back image (slightly offset) */
.back {
  width: 240px;
  height: 310px;
  top: 25px;
  left: 260px;
  z-index: 1;
  opacity: 0.9;
}

/* Simple slider animation */
@keyframes slideSwap {
  0%, 45% { transform: translateX(0); z-index: 2; }
  50% { transform: translateX(30px) scale(0.95); z-index: 1; }
  95%, 100% { transform: translateX(0); z-index: 2; }
}

/* Auto swapping effect */
.image-stack:hover .front {
  transform: translateX(30px) scale(0.95);
  z-index: 1;
}

.image-stack:hover .back {
  transform: translateX(-30px) scale(1.05);
  z-index: 2;
}

@media (max-width: 992px) {
  .hero-section {
    text-align: center;
    padding: 80px 20px;
  }
  .image-stack {
    margin-top: 40px;
  }
}


.featured-bonds-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #313131;
    margin-bottom: 0.5rem;
}

.featured-bonds-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
}

.bond-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
    height: 100%; /* Ensure all cards have same height */
    display: flex;
    flex-direction: column;
}

.bond-card:hover {
    transform: translateY(-5px);
}

.bond-card .card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #313131;
}

.new-badge {
    background-color: #a05a00; /* Darker orange for the 'New' badge */
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.3em 0.7em;
    border-radius: 5px;
}

.bond-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}

.bond-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: #313131;
    margin-bottom: 0;
}

.bond-value.yield {
    color: #ff8c00; /* Orange color for yield percentage */
    font-weight: 700;
    font-size: 1.2rem;
}

.rating-badge {
    padding: 0.4em 0.8em;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.rating-badge.aaa {
    background-color: #d4edda; /* Light green */
    color: #198754; /* Darker green */
}

.rating-badge.aa-plus {
    background-color: #fff3cd; /* Light yellow */
    color: #ffc107; /* Darker yellow */
}

.view-details-btn {
    background-color: #ff8c00; /* Orange background for button */
    border-color: #ff8c00;
    color: #ffffff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    width: 100%;
    margin-top: auto; /* Pushes the button to the bottom */
}

.view-details-btn:hover {
    background-color: #e67e00; /* Slightly darker orange on hover */
    border-color: #e67e00;
}

.view-details-btn i {
    margin-left: 8px;
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
    border-radius: 20px;
}

/* Titles */
.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #001743;
    font-family: 'Poppins', sans-serif;
}

.faq-subtitle {
    font-size: 16px;
    color: #444;
    margin-top: 8px;
}

/* FAQ Image */
.faq-illustration {
    max-width: 85%;
    border-radius: 12px;
}

/* Accordion Box */
.faq-item {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    background: #fff;
}

/* Accordion Button */
.faq-button {
    background: #f2f4ff;
    color: #001743;
    font-weight: 600;
    font-size: 17px;
    padding: 18px;
    border: none;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s ease;
}

.faq-button:not(.collapsed) {
    background: linear-gradient(90deg, #001743, #f79e52);
    color: white;
    box-shadow: none;
}

/* Answer */
.faq-answer {
    padding: 18px 22px;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
    position: relative;
    z-index: 10; /* Ensures it overlaps the footer background if needed */
    margin-top: -100px; /* Adjust this value to control overlap with the section above */
    padding-bottom: 50px; /* Space below the CTA card */
}

.cta-card {
    background-color: #fcf8f3; /* Matching your header/card background color */
    border-radius: 15px;
    padding: 60px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 900px; /* Constrain width as in your image */
    margin: 0 auto;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #313131;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.cta-btn-primary {
    background-color: #ff8c00; /* Orange */
    border-color: #ff8c00;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cta-btn-primary:hover {
    background-color: #e67e00; /* Darker orange */
    border-color: #e67e00;
    color: #ffffff;
}

.cta-btn-primary i {
    margin-left: 8px;
}

.cta-btn-secondary {
    background-color: transparent;
    border: 1px solid #313131;
    color: #313131;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta-btn-secondary:hover {
    background-color: #313131;
    color: #ffffff;
}

.cta-small-text {
    font-size: 0.85rem;
    color: #888;
    margin-top: 1.5rem;
}

/

/* Call to Action Section - Matched to image */
.cta-section-matched {
    background-color: #fcf8f3; /* The very light background of the body/previous sections */
    position: relative;
    padding-bottom: 0; /* No bottom padding here, the actual content has padding */
    margin-bottom: -100px; /* Pulls the CTA content up to overlap the footer background */
    z-index: 10; /* Ensures it is on top of the footer background */
}

/* The actual "card" for the CTA content (mimicking your image) */
.cta-section-matched .container > .text-center {
    background-color: #fcf8f3; /* Explicitly set the same body background color */
    border-radius: 15px; /* Rounded corners as in your image */
    padding: 60px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Subtle shadow */
    max-width: 900px; /* Max width for the content block */
    margin: 0 auto;
}


.cta-title-matched {
    font-size: 2.2rem;
    font-weight: 700;
    color: #313131;
    margin-bottom: 1rem;
}

.cta-subtitle-matched {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.cta-btn-primary-matched {
    background-color: #ff8c00; /* Orange */
    border-color: #ff8c00;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cta-btn-primary-matched:hover {
    background-color: #e67e00; /* Darker orange */
    border-color: #e67e00;
    color: #ffffff;
}

.cta-btn-primary-matched i {
    margin-left: 8px;
}

.cta-btn-secondary-matched {
    background-color: transparent;
    border: 1px solid #313131;
    color: #313131;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta-btn-secondary-matched:hover {
    background-color: #313131;
    color: #ffffff;
}

.cta-small-text-matched {
    font-size: 0.85rem;
    color: #888;
    margin-top: 1.5rem;
}


.social-icons-matched a {
    color: #adb5bd;
    font-size: 1.3rem;
    margin-right: 15px;
    transition: color 0.2s ease;
}

.social-icons-matched a:hover {
    color: #ff8c00; /* Orange hover for social icons */
}



.copyright-text-matched,
.legal-links-matched a {
    font-size: 0.85rem;
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links-matched a:hover {
    color: #ff8c00;
}

.legal-links-matched .list-inline-item:not(:last-child) {
    margin-right: 20px;
}
/* === HERO BANNER SLIDER === */
/* ===== Hero Slider Container ===== */
.hero-container {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  background: #000;
}

/* ===== Hero Slider Track ===== */
.hero-slider {
  display: flex;
  transition: transform 0.8s ease-in-out;
  height: 100%;
}

/* ===== Individual Slide ===== */
.hero-slide-item {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  transition: opacity 1s ease-in-out;
}

/* ===== Dark Overlay for Better Text Visibility ===== */
.hero-slide-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.3) 70%
  );
  z-index: 1;
}
 body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(90deg, #001743, #f79e52);
      overflow-x: hidden;
    }
/* ================= HEADER ================= */
.main-header {
    width: 100%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #eee;
}

/* CONTAINER */
.header-container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo-area img {
    height: 75px;
    width: auto;
}

/* ================= MENU ================= */
.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #244082;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    transition: 0.3s;
}

/* UNDERLINE EFFECT */
.nav-menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #f7941d;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #f7941d;
}

/* ================= BUTTONS ================= */
.header-buttons {
    display: flex;
    align-items: center;
}

.header-buttons a {
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* SIGN IN */
.btn-signin {
    background: #244082;
    color: #fff;
    margin-right: 10px;
}

.btn-signin:hover {
    background: #1e3570;
}

/* LOGIN */
.btn-started {
    background: linear-gradient(90deg, #f79e52, #001743);
    color: white;
}

.btn-started:hover {
    transform: scale(1.05);
}

/* ================= HAMBURGER ================= */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 15px;
        background: #ffffff;
        width: 220px;
        flex-direction: column;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        display: none;
        animation: slideDown 0.3s ease;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        width: 100%;
        padding: 10px 0;
    }

    .header-buttons {
        display: none;
    }
}

/* ================= ANIMATION ================= */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= ANIMATION ================= */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ================= TOP STOCK BAR ================= */
.top-stock-bar {
    width: 100%;
    background: linear-gradient(90deg, #0b1f4d, #244082);
    color: #fff;
    overflow: hidden;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* CONTAINER */
.stock-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 20px;
}

/* LEFT TITLE */
.stock-title {
    font-weight: 600;
    white-space: nowrap;
    color: #fff;
}

/* MARQUEE AREA */
.stock-marquee {
    overflow: hidden;
    position: relative;
    flex: 1;
}

/* MOVING TRACK */
.stock-track {
    display: flex;
    gap: 50px;
    animation: scrollStock 20s linear infinite;
}

/* TEXT */
.stock-track span {
    white-space: nowrap;
    opacity: 0.9;
}

/* ANIMATION */
@keyframes scrollStock {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
.stock-marquee:hover .stock-track {
    animation-play-state: paused;
}

    /* Hero Section */
    .hero {
      padding: 100px 0;
    }

    .hero h1 {
      font-weight: 700;
      font-size: 2.8rem;
    }

    .hero h1 span {
      color: #ffffff;
    }
    .hero h1{
      color:#f7931e;
    }

    .hero p {
      color: #ffffff;
      max-width: 450px;
      margin: 20px 0;
    }

    /* Image Slider */
    .carousel-inner img {
      border-radius: 20px;
      width: 100%;
      height: 400px;
      object-fit: cover;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    .carousel-indicators [data-bs-target] {
      background-color: #f7931e;
    }

    @media (max-width: 992px) {
      .hero {
        text-align: center;
      }
      .hero h1 {
        font-size: 2.2rem;
      }
      .carousel-inner img {
        height: 250px;
      }
    }
    .hero{
      background-image: url('assets/img/bg-hore.png');
      background-size: cover;      
      background-position: center;  
      background-repeat: no-repeat; 
      background: linear-gradient(90deg, #001743, #f79e52);

    }
   /* =========================================
   PREMIUM FEATURES SECTION
========================================= */
.features-section{
    padding:110px 20px;
    background:linear-gradient(135deg,#f5f8ff,#edf3ff);
    position:relative;
    overflow:hidden;
}

/* SOFT BACKGROUND GLOW */
.features-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(247,158,82,0.08);
    border-radius:50%;
    top:-220px;
    right:-150px;
    filter:blur(25px);
}

.features-section::after{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(0,23,67,0.06);
    border-radius:50%;
    bottom:-200px;
    left:-140px;
    filter:blur(25px);
}

/* CONTAINER */
.features-section .container{
    max-width:1280px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* =================================
   SECTION HEADER
================================= */
.section-header{
    text-align:center;
    margin-bottom:80px;
}

.section-header h2{
    font-size:44px;
    font-weight:800;
    color:#001743;
    line-height:1.3;
    max-width:850px;
    margin:auto;
    letter-spacing:-0.6px;
    position:relative;
}

/* LINE */
.section-header h2::after{
    content:'';
    position:absolute;
    width:120px;
    height:5px;
    background:linear-gradient(90deg,#001743,#f79e52);
    border-radius:20px;
    left:50%;
    bottom:-18px;
    transform:translateX(-50%);
}

/* =================================
   FEATURES GRID
================================= */
.features-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* =================================
   CARD DESIGN
================================= */
.feature-box{
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(14px);
    border-radius:32px;
    padding:40px 30px;
    position:relative;
    overflow:hidden;
    transition:0.4s ease;
    box-shadow:
    0 20px 60px rgba(0,0,0,0.08);
    border:1px solid rgba(255,255,255,0.45);

    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

/* TOP BORDER */
.feature-box::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,#001743,#f79e52);
}

/* HOVER EFFECT */
.feature-box:hover{
    transform:translateY(-12px);
    box-shadow:
    0 30px 70px rgba(0,0,0,0.14);
}

/* =================================
   ICON DESIGN
================================= */
.icon-wrapper{
    width:72px;
    height:72px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:28px;
    position:relative;
}

/* ICON BG */
.icon-wrapper.orange{
    background:linear-gradient(135deg,#f79e52,#ffb56d);
    box-shadow:0 15px 35px rgba(247,158,82,0.35);
}

.icon-wrapper.blue{
    background:linear-gradient(135deg,#001743,#1f4aa8);
    box-shadow:0 15px 35px rgba(0,23,67,0.35);
}

/* ICON */
.icon-wrapper i{
    font-size:28px;
    color:#fff;
}

/* =================================
   TITLE
================================= */
.feature-box h3{
    font-size:25px;
    font-weight:700;
    color:#001743;
    margin-bottom:14px;
    line-height:1.4;
}

/* =================================
   TEXT
================================= */
.feature-box p{
    font-size:15px;
    line-height:1.9;
    color:#6b7280;
    margin:0;
}

/* NUMBER STYLE */
.feature-box .feature-no{
    position:absolute;
    right:28px;
    bottom:18px;
    font-size:75px;
    font-weight:800;
    color:rgba(0,23,67,0.05);
    line-height:1;
}

/* =================================
   RESPONSIVE
================================= */
@media(max-width:992px){

    .features-row{
        grid-template-columns:repeat(2,1fr);
    }

    .section-header h2{
        font-size:36px;
    }
}

@media(max-width:768px){

    .features-section{
        padding:85px 15px;
    }

    .features-row{
        grid-template-columns:1fr;
    }

    .section-header{
        margin-bottom:60px;
    }

    .section-header h2{
        font-size:30px;
    }

    .feature-box{
        padding:35px 25px;
    }

    .feature-box h3{
        font-size:22px;
    }

    .icon-wrapper{
        width:65px;
        height:65px;
    }

    .icon-wrapper i{
        font-size:24px;
    }
}

@media(max-width:480px){

    .section-header h2{
        font-size:24px;
    }

    .feature-box{
        border-radius:24px;
        padding:30px 22px;
    }

    .feature-box p{
        font-size:14px;
    }

    .feature-box .feature-no{
        font-size:55px;
    }
}

.testimonials-section {
  padding: 100px 20px;
  background: white;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

/* Header */
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1A2451;
  margin-bottom: 10px;
}

.section-header p {
  color: #5f6b85;
  font-size: 1rem;
  margin-bottom: 60px;
}

/* Grid Layout */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: all 0.3s ease;
  max-width: 360px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Stars */
.stars {
  color: #FFA726;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

/* Text */
.testimonial-card p {
  color: #5f6b85;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* User Info */
.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-info h4 {
  color: #1A2451;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.user-info span {
  color: #6c7a97;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    max-width: 100%;
  }
}

<style>
body {
  margin: 0;
  font-family: "Inter", sans-serif;
}

/* CTA Section */
.cta-section {
  background-color: #ffffff;
  text-align: center;
  padding: 50px 20px 0;
}

.cta-box {
  background-color: #fae7cf;
  border-radius: 16px;
  padding: 40px 20px;
  max-width: 700px;
  margin: auto;
}

.cta-box h2 {
  color: #1b1b3a;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-orange {
  background-color: #f6921e;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-orange:hover {
  background-color: #de810a;
}

.btn-dark {
  background-color: #243f82;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-dark:hover {
  background-color: #1c3366;
}

.note {
  color: #888;
  font-size: 12px;
  margin-top: 10px;
}

/* ---------------- FOOTER MAIN ---------------- */
.footer {
  background: #001743;
  color: #ffffff;
  margin-top: 60px;
  font-family: "Poppins", sans-serif;
}
.footer-main {
  position: relative;
  overflow: hidden;
}

/* SVG CURVE */
.footer-curve svg {
  width: 100%;
  display: block;
  margin-bottom: -5px;
}

/* CTA BOX */
.footer-top {
  text-align: center;
  padding: 60px 20px;
  background: #001743;
}
.footer-top h2 { font-size: 32px; font-weight: 700; }
.footer-top p { opacity: 0.9; }

.footer-buttons {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}
.btn-primary {
  background: linear-gradient(90deg, #001743, #f79e52);
  padding: 12px 24px;
  border-radius: 8px;
  color: #fff;
  border: 1px solid white;
}

/* GRID — Updated to 3 columns */
.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 50px 60px;
  background: #001743;
}

/* Titles */
.footer-col h4 {
  color: #f79e52;
  margin-bottom: 15px;
  font-size: 20px;
}

/* Links */
.footer-col a {
  color: #ffffff;
  opacity: 0.8;
  text-decoration: none;
}
.footer-col a:hover {
  color: #f79e52;
  opacity: 1;
}

/* Social Icons – FIXED (now clearly visible) */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-icons a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(3px);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  transition: 0.35s;
}
.social-icons a:hover {
  background: #f79e52;
  color: #001743;
  transform: translateY(-4px);
}

/* Logo */
.footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  background: #001743;
}
.footer-bottom p { opacity: 0.8; }
.footer-links a { color: #f79e52; }

/* RESPONSIVE */
@media(max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-icons { justify-content: center; }
}

.bond-card-new {
    background: #fff;
    padding: 22px;
    border-radius: 16px;
    width: 100%;
    min-height: 430px;
    border: 1px solid #e4e4e4;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.12);
}

.bond-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bond-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e1e1e;
}

.bond-icon {
    font-size: 22px;
    color: ##12C75;
}

.bond-details-box {
    margin-top: 15px;
}

.bond-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #d2d2d2;
}

.bond-row span {
    font-size: 14px;
    color: #4d4d4d;
}

.bond-row strong {
    font-size: 14px;
    color: #1b1b1b;
    font-weight: 700;
}

.bond-btn {
    background: #FFA726;
    width: 100%;
    padding: 10px 0;
    border-radius: 50px;
    border: none;
    color: #fff;
    margin-top: 20px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.bond-btn:hover {
    background: #4f7128;
}
/* SECTION BACKGROUND */
.investment-bg {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(90deg, #001743, #f79e52);;
    overflow: hidden;
}

/* Wrapper to center the slider properly */
/* Perfect Center Container */
/* MAIN SLIDER BOX */
.zoom-slider {
  width: 100%;
  max-width: 820px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* EACH SLIDE */
.zoom-slide {
  display: none;
  width: 100%;
  animation: fadeEffect 0.6s ease-in-out;
}

/* ACTIVE SLIDE */
.zoom-slide.active {
  display: block;
}

/* IMAGE FIT PERFECTLY */
.zoom-slide img {
  width: 100%;
  height: auto;                /* Auto height according to image */
  display: block;
  object-fit: contain;         /* Full image visible */
  border-radius: 22px;
}

/* FADE ANIMATION */
@keyframes fadeEffect {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}
.banner-content {
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
}

.main-heading {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.main-heading span {
    color: #DA2328; /* Sunrise red */
}

/* Subline */
.sub-heading {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 10px;
    animation: fadeIn 1.2s ease-out;
}

/* Points line */
.highlight-line {
    color: #FFD700;
    font-weight: 500;
    font-size: 18px;
    margin-top: 15px;
    letter-spacing: 1px;
}

/* Paragraph */
.desc {
    margin-top: 15px;
    color: #E4E4E4;
    font-size: 17px;
    line-height: 1.6;
}

/* Button */
.btn-theme-primary {
    background: linear-gradient(90deg, #001743, #f79e52);
    color: #ffffff !important;
    padding: 12px 30px;
    font-size: 17px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-block;
    border: 1px solid white;
}

.btn-theme-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Button Animation */
.animated-btn {
    animation: fadeIn 1.4s ease-out;
}

/* Fade Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonials-section {
  padding: 80px 0;
  background: #f4f6fb;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #001743;
}

.section-header p {
  font-size: 16px;
  color: #6b7280;
  margin-top: 8px;
}

/* ===== SLIDER FIX ===== */
.testimonials-slider .slick-track {
  display: flex;
}

.testimonials-slider .slick-slide {
  height: auto;
  display: flex;
}

/* ===== CARD ===== */
.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  margin: 0 12px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* STARS */
.testimonial-card .stars {
  color: #f79e52;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

/* TEXT */
.testimonial-card p {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* USER INFO */
.user-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 15px;
}

.user-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: #001743;
}

.user-info span {
  font-size: 13px;
  color: #6b7280;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HEADER */
.bp-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

/* CONTAINER */
.bp-container {
  max-width: 1300px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.bp-logo img {
  height: 90px;
}

/* NAV MENU */
.bp-nav {
  display: flex;
  gap: 30px;
}

.bp-nav a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.bp-nav a:hover {
  color: #c8a96a;
}

/* RIGHT SIDE */
.bp-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* BUTTONS */
.bp-btn {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
}

.bp-btn.login {
  background: #2f4a8a;
  color: #fff;
  font-size:20px;
}

.bp-btn.signup {
  background: #2f4a8a;
  color: #fff;
  font-size:20px;
}

/* SEARCH */
.bp-search {
  width: 38px;
  height: 38px;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* TOGGLE (MOBILE) */
.bp-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ✅ RESPONSIVE */
@media (max-width: 992px) {

  .bp-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .bp-nav.active {
    display: flex;
  }

  .bp-toggle {
    display: block;
  }

  .bp-actions .bp-btn,
  .bp-search {
    display: none;
  }
}
.top-bar {
  width: 100%;
  background: #0f1c3f;
  color: #fff;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

.top-bar-track {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
  font-size: 14px;
  font-weight: 500;
}

/* ANIMATION */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

:root{
    --primary:#244082;      /* Blue */
    --secondary:#f7941d;    /* Orange */
    --accent:#ffd200;       /* Yellow */
    --green:#16a34a;
    --text:#0b2c5f;
    --light:#f8fafc;
}

/* ================= SLIDER SECTION ================= */
.bhanix-slider {
    position: relative;
    padding: 90px 20px;
    overflow: hidden;
   background: linear-gradient(135deg, #f4f7ff, #f9fafc);
}

/* LIGHT TEXTURE BG */
.bhanix-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('assets/img/White.jpg') no-repeat center;
    background-size: cover;
    opacity: 0.05;
}

/* ================= CONTAINER ================= */
.slider-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}
 .slider-content h1 span {
    color: #f79e52;
}

.slider-content h1 span {
    all: unset;
    color: #f79e52;
    font-weight: 700;
}


/* ================= LEFT CONTENT ================= */
.slider-content {
    flex: 0 0 55%;
    max-width: 55%;
}

/* TAG BAR */
.tag-bar {
    margin-bottom: 10px;
}

.tag-bar span {
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    margin-right: 8px;
    font-weight: 600;
}

.live { background: #ef4444; color: #fff; }
.issue { background: var(--green); color: #fff; }
.date { background: var(--accent); color: #000; }

/* TITLE */
.slider-content h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--text);
    margin: 20px 0;
}

/* ================= INFO BOX ================= */
.info-boxes {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.info-card {
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    color: #fff;
    padding: 18px;
    border-radius: 15px;
    min-width: 150px;
    flex: 1;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: 0.3s;
}

.info-card:hover {
    transform: translateY(-6px);
}

.info-card p {
    font-size: 20px;
    opacity: 0.8;
}

.info-card h3 {
    font-size: 20px;
    color:white;
    font-weight: 700;
}

/* ================= BUTTON ================= */
.invest-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    padding: 14px 35px;
    border-radius: 50px;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(247,148,29,0.4);
    transition: 0.3s;
}

.invest-btn:hover {
    transform: scale(1.05);
}

/* ================= RIGHT IMAGE ================= */
.slider-image {
    flex: 0 0 45%;
    max-width: 45%;
    text-align: right;
}

.slider-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    image-rendering: auto;
    filter: none !important;
    animation: float 3s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ================= ARROWS (PREMIUM) ================= */
.carousel-control-prev,
.carousel-control-next {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: 0.3s;
}

/* POSITION */
.carousel-control-prev { left: 15px; }
.carousel-control-next { right: 15px; }

/* ICON STYLE */
.carousel-control-prev span,
.carousel-control-next span {
    font-size: 26px;
    font-weight: bold;
    color: var(--primary);
    transition: 0.3s;
}

/* HOVER EFFECT */
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary);
}

.carousel-control-prev:hover span,
.carousel-control-next:hover span {
    color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

    .slider-container {
        flex-direction: column;
        text-align: center;
    }

    .slider-content,
    .slider-image {
        max-width: 100%;
        flex: 100%;
    }

    .slider-content h1 {
        font-size: 28px;
    }

    .info-boxes {
        justify-content: center;
    }

    .slider-image {
        margin-top: 30px;
        text-align: center;
    }

    .slider-image img {
        max-width: 280px;
    }
}
/* ================== RESPONSIVE ================== */

/* TABLET */
@media (max-width: 992px) {

    .slider-container {
        flex-direction: column;
        text-align: center;
    }

    .slider-content {
        max-width: 100%;
    }

    .slider-image {
        max-width: 100%;
        text-align: center;
    }

    .slider-content h1 span {
    color: #f79e52;
}

.slider-content h1 span {
    all: unset;
    color: #f79e52;
    font-size: 30px;
    font-weight: 700;
}
}

/* MOBILE */
@media (max-width: 576px) {

    .bhanix-slider {
        padding: 50px 15px;
    }

    .slider-content h1 {
        font-size: 24px;
    }

    .tag-bar span {
        display: inline-block;
        margin-bottom: 5px;
    }

    .info-boxes {
        flex-direction: column;
    }

    .info-card {
        width: 100%;
    }

    .invest-btn {
        width: 100%;
        text-align: center;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}
/* HIDE DEFAULT BOOTSTRAP ICON */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none !important;
}

/* MAIN BUTTON */
.slider-btn {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

/* POSITION */
.slider-prev {
    left: -10px;
}

.slider-next {
    right: -10px;
}
/* TAG BAR CONTAINER */
.tag-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

/* BASE TAG STYLE */
.tag-bar span {
    position: relative;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* SHINE ANIMATION EFFECT */
.tag-bar span::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.4);
    transform: skewX(-20deg);
    transition: 0.6s;
}

/* HOVER SHINE */
.tag-bar span:hover::before {
    left: 130%;
}

/* HOVER SCALE */
.tag-bar span:hover {
    transform: translateY(-3px) scale(1.05);
}

/* ================= TAG COLORS ================= */

/* LIVE (RED PULSE) */
.live {
    background: linear-gradient(135deg, #22c55e, #15803d);
    animation: pulse 1.5s infinite;
}


/* ================= PULSE ANIMATION ================= */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239,68,68,0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(239,68,68,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239,68,68,0);
    }
}

/* ICON */
.slider-icon {
    font-size: 28px;
    font-weight: bold;
    color: #244082;
}

/* HOVER EFFECT */
.slider-btn:hover {
    background: #244082;
}

.slider-btn:hover .slider-icon {
    color: #fff;
}
/*** Carousel Hero Header End ***/









