/***
===================================================================
Google Fonts CDN Link 
===================================================================
 ***/
/* Nunito Sans Google Fonts  */
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Wittgenstein:ital,wght@0,400..900;1,400..900&display=swap");

/* Montserrat Google Fonts  */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Wittgenstein:ital,wght@0,400..900;1,400..900&display=swap");

/*** 

====================================================================
	Reset
====================================================================

 ***/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*** 

====================================================================
	Global Settings
====================================================================

 ***/

body {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  color: #777777;
  line-height: 1.7em;
  font-weight: 400;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-smooth: always;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #0060ff;
}

button,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0px;
  background: none;
  line-height: 1.6rem;
  font-family: "Montserrat", sans-serif;
}

textarea {
  overflow: hidden;
}

p {
  line-height: 1.8rem;
}

/* Typography */

h1 {
  font-size: 72px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

.auto-container {
  max-width: 850px;
}

.medium-container {
  max-width: 850px;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  display: inline-block;
  max-width: 100%;
}

.main-title {
  color: #00317a;
  font-weight: bold;
  text-align: center;
  position: relative;
  line-height: 40px;
}

.main-title::after {
  content: "";
  display: block;
  max-width: 495px;
  height: 7px;
  background-color: #fb9351;
  /* Match color with title */
  margin: 14px auto 0;
  /* Adjust spacing from the title */
}

.main-content {
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
}

/***

====================================================================
	Scroll To Top style
====================================================================

***/

.scroll-to-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  color: #0060ff;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 38px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.scroll-to-top:hover {
  color: #ffffff;
  background-color: #0060ff;
}

/* 
==================================================================================
Custom Burrons Design 
===================================================================================
 */

.btn1 {
  line-height: 50px;
  height: 50px;
  text-align: center;
  width: 200px;
  cursor: pointer;
}

.button-1 {
  /* background-color: #66a182; */
  background-color: #003579;
  width: 200px;
}

.btn-one {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
}

.btn-one::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.1)
  );
  z-index: 1;
  transition: top 0.5s ease-in-out;
}

.btn-one:hover::before {
  top: 0;
}

.btn-one::after {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 2;
  transition: bottom 0.5s ease-in-out;
}

.btn-one:hover::after {
  bottom: 0;
}

.btn-one span {
  position: relative;
  z-index: 3;
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}

.btn-one:hover span {
  transform: scale(1.1);
}

.default-btn {
  background-color: #003579;
  padding: 8px 18px;
  color: white;
  font-size: 17px;
  border: none;
  outline: none;
  border-radius: 3px;
}

/* Custom Button  */
.custom-button {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 10px 25px;
  text-align: center;
  transition: background 0.3s ease;
  border: none;
  outline: none;
}

.custom-button a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.custom-button:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* 
=========================================================================
Breadcrumb Design 
=========================================================================
 */

.bread-crumb {
  background: #2d3e50;
  padding: 90px 0;
}

.breadcrumb-title {
  color: white;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}

.breadcrumb-subtitle {
  color: rgb(232, 225, 225);
  font-size: 18px;
  text-align: center;
  margin-top: 20px;
}

/* 
=========================================================================
Navbar Design 
=========================================================================
 */

.header {
  position: sticky;
  top: -1px;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: hsl(220, 100%, 99%);
  padding: 5px 0;
}

.header ul {
  list-style: none;
}

.nav {
  height: 3.5rem;
  display: block;
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  transition: color 0.3s;
  width: 100%;
}

.nav__logo img {
  height: 4.5rem;
}

.nav__toggle i {
  font-size: 1.25rem;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__toggle-menu,
.nav__toggle-close {
  font-size: 1.25rem;
  color: hsl(220, 48%, 28%);
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 1s, transform 0.4s;
}

.nav__toggle-close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media (max-width: 1118px) {
  .nav__menu {
    /* background-color: var(--body-color); */
    background-color: hsl(220, 100%, 99%);
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    padding-block: 1.5rem 4rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }

  .nav__menu::-webkit-scrollbar {
    width: 0.5rem;
  }

  .nav__menu::-webkit-scrollbar-thumb {
    background-color: hsl(220, 12%, 70%);
  }
}

.nav__link {
  color: white;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
  text-decoration: none;
  text-transform: uppercase;
}

.nav__link:hover {
  background-color: hsl(220, 68%, 97%);
}

/* Show Menu  */
.show-menu {
  opacity: 1;
  top: 3.8rem;
  pointer-events: initial;
}

/* show-icon */
.show-icon .nav__toggle-menu {
  opacity: 0;
  transform: rotate(180deg);
}

.show-icon .nav__toggle-close {
  opacity: 1;
  transform: rotate(180deg);
}

/* Dropdown  */
.dropdown__button {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}

.dropdown__content,
.dropdown__group,
.dropdown__list {
  display: grid;
}

.dropdown__container {
  background-color: hsl(220, 68%, 97%);
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}

.dropdown__content {
  row-gap: 1.7rem;
}

.dropdown__group {
  padding-left: 2.5rem;
}

.dropdown__group:first-child {
  margin-top: 1.5rem;
}

.dropdown__group:last-child {
  margin-bottom: 1.5rem;
}

.dropdown__title {
  font-size: var(--small-font-size);
  font-weight: 600;
  color: hsl(220, 48%, 28%);
}

.dropdown__list {
  row-gap: 0.25rem;
}

.dropdown__link {
  font-size: var(--smaller-font-size);
  font-weight: 500;
  color: hsl(220, 12%, 45%);
  transition: color 0.3s;
  text-decoration: none;
}

.dropdown__link:hover {
  color: #00317a;
}

.dropdown__title:hover {
  color: #00317a;
}

/* Rotate dropdown icon  */
.show-dropdown .dropdown__arrow {
  transform: rotate(180deg);
}

/* ==========BREAKPOINTS========== */
/* For small devices  */

@media (max-width: 300px) {
  .dropdown__group {
    padding-left: 1.5rem;
  }
}

/* For large devices  */
@media (min-width: 1118px) {
  /* Nav  */
  .nav {
    height: calc(3.5rem + 2rem);
    display: flex;
    justify-content: space-between;
  }

  .nav .nav__logo img {
    height: calc(3.5rem + 2rem);
  }

  .nav__toggle {
    display: none;
  }

  .nav__list {
    display: flex;
    column-gap: 4rem;
    height: 100%;
  }

  .nav li {
    display: flex;
  }

  .nav__link {
    padding: 0;
  }

  .nav__link:hover {
    background-color: initial;
  }

  /* Dropdown  */
  .dropdown__button {
    column-gap: 0.25rem;
    pointer-events: none;
  }

  .dropdown__container {
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 6.5rem;
    background-color: hsl(220, 100%, 99%);
    box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }

  .dropdown__content {
    grid-template-columns: repeat(4, max-content);
    column-gap: 6rem;
    max-width: 1120px;
    margin-inline: auto;
  }

  .dropdown__group {
    padding: 2rem 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }

  .dropdown__group:first-child,
  .dropdown__group:last-child {
    margin: 0;
    margin-left: 20px;
  }

  .dropdown__list {
    row-gap: 0.75rem;
  }

  .dropdown__title {
    font-size: var(--normal-font-size);
  }

  .dropdown__link {
    font-size: var(--small-font-size);
    /* margin: 10px 0; */
  }

  .dropdown__link:hover {
    color: #00317a;
  }

  .dropdown__title:hover {
    color: #00317a;
  }

  .dropdown__item {
    cursor: pointer;
    position: relative;
  }

  /* Rotate dropdown icon  */
  .dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
  }

  /* Show dropdoen menu   */
  .dropdown__item:hover > .dropdown__container {
    top: 5.5rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
    width: 210px;
  }
}

@media (max-width: 1152px) {
  .dropdown__container {
    margin-inline: auto;
  }
}

.donate-btn {
  background-color: #fe9150;
  padding: 10px 15px;
  color: white;
  border-radius: 5px;
  font-weight: 600;
  font-family: "Wittgenstein", serif;
  border: none;
  outline: none;
}

.login-btn {
  background-color: #003579;
  padding: 10px 15px;
  color: white;
  border-radius: 5px;
  font-weight: 600;
  font-family: "Wittgenstein", serif;
  border: none;
  outline: none;
}

.nab-bg {
  background-image: linear-gradient(110deg, #fff 260px, #0069b4 261px);
}

.top-header .top-header-left span a {
  color: rgb(62, 58, 58);
  font-size: 16px;
  text-decoration: none;
}

.top-header .top-header-right span a {
  color: rgb(62, 58, 58);
  font-size: 16px;
  text-decoration: none;
}

.top-header .top-header-right span i {
  color: #00317a;
}

/* 
=================================================================================
Hero Section 
==================================================================================
 */

.hero-sec {
  background-color: #edf2f6;
  background-image: url("https://demo.awaikenthemes.com/html-preview/wexico/images/icon-section-bg.svg");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: contain;
  /* Adjusts the image size to fit the area */
  position: relative;
  padding: 15px 0;
}

.hero-sec .hero-title {
  font-size: 54px;
  line-height: 3.6rem;
  font-weight: bold;
  color: #00317a;
}

.hero-sec .hero-content {
  font-size: 18px;
  margin-top: 12px;
}

.hero-sec .home-info {
  /* background-color: #7e57c2; */
  background-color: #00317a;
  color: white;
  padding: 20px;
  border-radius: 10px;
}

.home-info .info-item {
  text-align: center;
}

.info-item i {
  color: white;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 24px;
}

/* 
===============================================================================
Service Section 
===============================================================================
 */

.service-sec {
  background-color: #d6d6d8;
}

.service-block-two {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  /* width: 100%; */
}

.service-block-two .inner-box {
  position: relative;
  overflow: hidden;
  padding: 45px 45px;
  border-radius: 6px;
  background-color: #f5f5f5;
}

.service-block-two .inner-box .shape-one {
  content: "";
  width: 250px;
  height: 250px;
  background: #eb6d6d;
  /* background: #0060ff; */
  border-radius: 50%;
  position: absolute;
  top: -120px;
  opacity: 0.4;
  right: -120px;
  transform: scale(0);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
}

.service-block-two .inner-box:hover .shape-one {
  transform: scale(1);
  webkit-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  transition-delay: 300ms;
}

.service-block-two .inner-box .shape-two {
  content: "";
  width: 373px;
  height: 373px;
  background: #0060ff;
  /* background: #295F8B; */
  border-radius: 50%;
  position: absolute;
  top: -180px;
  right: -180px;
  z-index: 1;
  opacity: 0;
  transform: scale(0);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
}

.service-block-two .inner-box:hover .shape-two {
  opacity: 0.4;
  transform: scale(1);
  webkit-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
  transition-delay: 600ms;
}

.service-block-two .inner-box:before {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 50%;
  opacity: 0;
  /* background-color: #141d38; */
  /* background-color: #295F8B; */
  background-color: #0048ff;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  transition: all 600ms ease;
}

.service-block-two .inner-box:hover::before {
  height: 100%;
  opacity: 1;
}

.service-block-two .inner-box .icon-box {
  position: relative;
  z-index: 2;
}

.service-block-two .inner-box .icon-box {
  position: relative;
  font-size: 65px;
  line-height: 1em;
  color: #0060ff;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.service-block-two .inner-box .icon-box .icon {
  position: relative;
}

.service-block-two .inner-box h5 {
  position: relative;
  z-index: 2;
  color: #222222;
  font-weight: 600;
  line-height: 1.3em;
  margin: 20px 0px 15px;
}

.service-block-two .inner-box h5 a {
  position: relative;
  color: #222222;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.service-block-two .inner-box h5 a:hover,
.service-block-two .inner-box .read-more:hover {
  color: #ff0303;
}

.service-block-two .inner-box .text {
  position: relative;
  color: #222222;
  z-index: 2;
  font-size: 16px;
  line-height: 1.8em;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.service-block-two .inner-box:hover .icon-box,
.service-block-two .inner-box:hover h5 a,
.service-block-two .inner-box:hover .text {
  color: #ffffff;
}

/* 
=============================================================================
Why Choose
=============================================================================
 */

.whychose-sec .title {
  color: #00317a;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.whychose-sec .title::after {
  content: "";
  display: block;
  width: 778px;
  height: 7px;
  background-color: #fb9351;
  margin: 14px auto 0;
}

.whychose-sec .choose-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.choose-items .choose-box {
  background: linear-gradient(90deg, #ff5a2c, #3c7dcb);
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
}

/*---------------------------------------------------------*/

.whychose-sec .card {
  border: 2px solid #00317a;
  border-radius: 25px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whychose-sec .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.whychose-sec .card .arrow-circle {
  background-color: #00317a;
  color: white;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

/* 
=================================================================================
Counter Section 
=================================================================================
 */

.counter-sec {
  background-image: url("https://gaviaspreview.com/wp/modins/wp-content/uploads/2022/12/bg-shape-01.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.counter-box {
  text-align: center;
}

.counter-box h2 {
  font-size: 40px;
  color: white;
  margin-bottom: 10px;
  font-weight: bold;
}

.counter-box p {
  font-size: 20px;
  color: rgb(226, 220, 220);
}

/* 
================================================================================
Financial Dream 
================================================================================
 */

.financial-sec {
  background-color: #edf2f6;
  background-image: url("https://demo.awaikenthemes.com/html-preview/wexico/images/icon-section-bg.svg");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: contain;
  /* Adjusts the image size to fit the area */
  position: relative;
}

.financial-icons ul li img {
  width: 40px;
  padding: 5px;
  border: 2px solid #002b5c;
  border-radius: 50%;
}

.financial-icons ul li span {
  margin-left: 15px;
  color: #333;
  font-weight: bold;
  font-size: 17px;
}

.consultation-title {
  color: #002b5c;
  font-weight: 600;
}

.mission-box {
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  position: relative;
  gap: 10px;
}
.mission-box .icon-box {
  background: linear-gradient(135deg, #002e5f, #00c6ff);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 100px;
  height: 175px;
  position: relative;
  z-index: 1;
}
.icon-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transform: translateY(-100%);
}
.icon-box:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.icon-box i {
  font-size: 36px;
}

.mission-content h5 {
  color: #002b5c;
}

.contact-sec .contact-form input {
  background-color: #002b5c;
}


/* 
============================================================================
Financial Tools 
============================================================================
 */

.financial-tools {
  background-color: #1b365d;
}

.tool-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 50px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
}

.tool-icon {
  font-size: 2.5rem;
  color: #ff5722;
}

.tool-title {
  margin-top: 10px;
  font-weight: 500;
  color: #333;
}

/* 
============================================================================
Benefits Section
============================================================================
 */

.benefit-sec .sub-title {
  font-size: 15px;
  text-align: center;
  font-weight: 500;
}

.benefit-sec .benefit-title {
  color: #00317a;
  font-weight: bold;
  text-align: center;
  position: relative;
  line-height: 2.6rem;
}

.benefit-title::after {
  content: "";
  height: 7px;
  width: 100px;
  background-color: #fb9351;
  margin: 14px auto 0;
  display: block;
}

.benefit-sec .benefit-content {
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
}

.benefit-card {
  position: relative;
}

.benefit-card .benefit-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(
    to top,
    rgba(30, 144, 255, 1),
    rgba(30, 144, 255, 0)
  );
}

.benefit-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-color: #2A39EA; */
  background-color: #28618e;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: 0.5s ease;
}

.benefit-card:hover .benefit-overlay {
  height: 100%;
}

.benefit-overlay p {
  font-size: 18px;
}

.benefit-card .card-text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.text-overlay {
  position: absolute;
  bottom: 10px;
  left: 25px;
  color: white;
}

/* 
=============================================================================
Footer Section
=============================================================================
 */

.footer-sec {
  background-color: #266497;
}

.footer-sec ol,
ul {
  padding-left: 0;
}

.ft-title {
  color: #f4f4f4;
  font-size: 22px;
}

.ft-item li {
  list-style: none;
  margin: 5px 0px;
}

.ft-item li a {
  /* color: rgb(153, 153, 153); */
  color: white;
  text-decoration: none;
}

.text-colour {
  color: gray;
}

.value-sec {
  background-color: #e7e7e7;
  padding: 100px 0px;
}

.write-color {
  color: blue;
}

.progress-bar {
  background-color: orangered;
  height: 6px;
  width: 100%;
  border-radius: 30px;
}

/* 
=============================================================================
Life is a Celebration
=============================================================================
 */

.life-sec {
  background-color: #1b365d;
}

.btn-custom {
  background: linear-gradient(45deg, #ff5722, #ff9800);
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  margin-top: 10px;
}

.btn-custom:hover {
  background: linear-gradient(45deg, #ff9800, #ff5722);
  color: #00317a;
  font-weight: bold;
}

/* 
=============================================================================
Comment Section
=============================================================================
 */

.comment-title {
  color: #00317a;
  font-weight: bold;
  text-align: start;
  line-height: 2.6rem;
}

.testimonial-card {
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin: auto;
  height: 200px;
}

.testimonial-quote {
  color: #007bff;
  font-size: 2rem;
}

.testimonial-name {
  font-weight: bold;
  margin-top: 15px;
}

/* 
=============================================================================
Get Started Section 
=============================================================================
 */

.getstart-sec {
  background-image: url("https://gaviaspreview.com/wp/modins/wp-content/uploads/2023/01/bg-shape-04.png");
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: center; */
}

.getstart-sec .getstart-title {
  color: #00317a;
  font-weight: bold;
  text-align: center;
  position: relative;
  line-height: 2.6rem;
}

.getstart-title::after {
  content: "";
  height: 7px;
  width: 100px;
  background-color: #fb9351;
  margin: 14px auto 0;
  display: block;
}

.getstart-sec .getstart-content {
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
}

/* 
=============================================================================
Partner Section
=============================================================================
 */

.partner-title {
  color: #00317a;
  font-weight: bold;
  text-align: center;
  position: relative;
  line-height: 2.6rem;
}

.partner-title::after {
  content: "";
  height: 7px;
  width: 100px;
  background-color: #fb9351;
  margin: 14px auto 0;
  display: block;
}

/* 
=============================================================================
Contact Information Section
=============================================================================
 */

.contactinfo-sec .address-card {
  background-color: #ebe9e9;
  border: none;
  height: 220px;
}

.address-card .card-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

.address-card .card-content {
  font-size: 16px;
}

/* 
=============================================================================
Contact Section
=============================================================================
*/

.contact-sec {
  background-color: #fff;
}

.contact-sec .contact-title {
  color: #00317a;
  font-weight: bold;
  text-align: start;
  position: relative;
  line-height: 2.6rem;
}

.contact-sec .contact-content {
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
}

.contact-btn {
  padding: 10px 18px;
  border-radius: 3px;
  background-color: #00317a;
  color: white;
  border: none;
  outline: none;
  font-size: 17px;
  text-align: center;
}

.contact-icon-box {
  background-color: #002b5c;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.contact-icon-box img{
  width: 30px;
}

/* 
=============================================================================
About Section
=============================================================================
*/

.about-sec .aout-title {
  color: #00317a;
  font-size: 22px;
  font-weight: 500;
}

.about-sec .about-content {
  font-size: 16px;
  margin-top: 10px;
}

/* 
=============================================================================
Mession Vision Section
=============================================================================
*/

.mission-sec {
  /* background-color: gray; */
  background-color: 0;
}

.mission-sec .card {
  background-color: #fafcff;
}

/* 
=============================================================================
Mutual Section
=============================================================================
*/

.fund-card {
  transition: transform 0.3s, box-shadow 0.3s;
}

.fund-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.mutual-sec .mutual-title {
  color: #00317a;
  font-weight: bold;
  text-align: center;
  position: relative;
  line-height: 2.6rem;
}

.mutual-title::after {
  content: "";
  height: 7px;
  width: 100px;
  background-color: #fb9351;
  margin: 14px auto 0;
  display: block;
}

.performance-title {
  color: #00317a;
  font-weight: bold;
  text-align: center;
  position: relative;
  line-height: 2.6rem;
}

/* 
=============================================================================
 Features Section
=============================================================================
*/

.features-sec {
  background-color: #3d3c59;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.features-sec img {
  height: 50px;
  margin-bottom: 15px;
}

.features-title {
  color: white;
  font-size: 28px;
  font-weight: 500;
}

/* 
=============================================================================
PMS Page Style 
=============================================================================
*/

.feature-box {
  text-align: center;
  padding: 40px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-box h4 {
  margin-top: 20px;
  color: #343a40;
}

/* 
=============================================================================
Financial Section  
=============================================================================
*/

.financial-title {
  color: #00317a;
  font-weight: bold;
  text-align: center;
  position: relative;
  line-height: 2.6rem;
}

.financial-title::after {
  content: "";
  height: 7px;
  width: 100px;
  background-color: #fb9351;
  margin: 14px auto 0;
  display: block;
}

/* 
=============================================================================
NPS Page Style +  NRI Section (Both sections style are here in one style)
=============================================================================
*/

.nps-sec .nps-title {
  color: #00317a;
  font-weight: bold;
  text-align: center;
  position: relative;
  line-height: 2.6rem;
}

.nps-title::after {
  content: "";
  height: 7px;
  width: 100px;
  background-color: #fb9351;
  margin: 14px auto 0;
  display: block;
}

.nps-right {
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.nps-box {
  width: 270px;
  height: 200px;
  background-color: #eef1f8;
  padding: 50px 20px;
  transition: transform 0.3s, z-index 0.3s, opacity 0.3s;
  background-image: url("https://assets.fyers.in/images/website/bg-polygon-blue.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

.nps-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.6), transparent);
  pointer-events: none;
}

.nps-box h5 {
  color: #00317a;
  font-size: 20px;
  font-weight: bold;
}

.nps-box:hover {
  transform: scale(1.2);
  z-index: 10;
  opacity: 1;
}

.nps-box:not(:hover) {
  opacity: 0.85;
}

.nps-sec .nps-left-title {
  color: #02214f;
  font-weight: 700;
  font-size: 35px;
  line-height: 35px;
}

.nps-content img {
  width: 25px;
  /* background-color: red; */
}

/* 
=============================================================================
Fixed Income Page Style
=============================================================================
*/

.fixedincome-sec {
  background-color: #edf2f6;
  background-image: url("https://demo.awaikenthemes.com/html-preview/wexico/images/icon-section-bg.svg");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: contain;
}

.fixedincome-sec .fixed-title {
  font-size: 52px;
  color: #00317a;
  font-weight: 600;
  line-height: 45px;
}

.fixedincome-sec .fixed-subtitle {
  font-size: 20px;
  margin-top: 20px;
  color: black;
}

.fixedincome-sec .fixed-content {
  font-size: 18px;
  margin-top: 20px;
}

.fixedincome-sec .fixed-img {
  border-radius: 15px;
  width: 100%;
}

/* Card Container */
.fixed-left {
  position: relative;
}

/* 
=============================================================================
Why Choose Fixed Income Section
=============================================================================
*/

/* Rotating Icons */
.fixed-left .icons {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  animation: rotate 10s infinite linear;
}

.fixed-left .icon-circle {
  position: absolute;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffa73d;
  color: white;
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.fixed-left .icon-circle img {
  width: 40px;
}

/* Icon Positions (around the circle) */
.fixed-left .icon-1 {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fixed-left .icon-2 {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

.fixed-left .icon-3 {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.fixed-left .icon-4 {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

/* Rotation Animation */
@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.fixed-box {
  width: 100%;
  background-color: #eef1f8;
  padding: 30px 20px;
  transition: transform 0.3s, z-index 0.3s, opacity 0.3s;
  background-image: url("https://assets.fyers.in/images/website/bg-polygon-blue.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  position: relative;
  border-radius: 10px;
}

.fixed-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.6), transparent);
  pointer-events: none;
}

.fixed-box h4 {
  color: #00317a;
  font-size: 20px;
  font-weight: bold;
}

.fixed-box:hover {
  transform: scale(1.1);
  z-index: 10;
  opacity: 1;
}

.fixed-box:not(:hover) {
  opacity: 0.85;
}

/* 
=============================================================================
Info Tazation Section
=============================================================================
*/

.taxation-title {
  color: #00317a;
  font-weight: 650;
}

.taxation-content {
  font-size: 18px;
  margin-top: 10px;
}

/* 
=========================================================================
Timeline Section 
=========================================================================
*/

.timeline-sec {
  position: relative;
  /* background-color: #EDF2F6; */
}

.timeline-sec::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 5px;
  height: 100%;
  background-color: #00317a;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  padding: 30px 10px;
  margin-bottom: 30px;
  background-color: #ebe9e9;
  width: calc(50% - 30px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(odd)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent transparent #ebe9e9;
}

.timeline-item:nth-child(even) {
  left: 52%;
}

.timeline-item:nth-child(even)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: transparent #ebe9e9 transparent transparent;
}

.timeline-item .content h5 {
  color: #00317a;
  font-weight: 650;
}

.timeline-item .content p {
  font-size: 17px;
  margin-top: 10px;
  color: rgb(61, 61, 61);
}

/* 
=========================================================================
Risk Planning Section
=========================================================================
*/

.risk-planning-sec .risk-title {
  font-weight: 700;
  font-size: 35px;
  line-height: 38px;
  color: #00317a;
}

.risk-planning-sec .risk-subtitle {
  font-size: 17px;
}

.custom-image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.custom-image {
  position: relative;
  width: 100%;
  height: auto;
  clip-path: polygon(5% 0%, 100% 0%, 100% 95%, 95% 100%, 0% 100%, 0% 5%);
  transition: clip-path 0.3s ease-in-out;
}

/* Optional hover effect */
.custom-image:hover {
  clip-path: polygon(10% 0%, 100% 0%, 100% 90%, 90% 100%, 0% 100%, 0% 10%);
}

/* 
=========================================================================
Risk Plannning Cards
=========================================================================
*/

.risk-card-sec {
  background-image: url("assets/image/background/bg-3.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.risk-card-sec .risk-card {
  background-color: #eef1f8;
  padding: 30px 20px;
  transition: transform 0.3s, z-index 0.3s, opacity 0.3s;
  background-image: url("https://assets.fyers.in/images/website/bg-polygon-blue.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

.risk-card-sec .risk-card h5 {
  color: #003579;
  font-weight: 500;
}

.risk-card-sec .risk-card p {
  color: #222222;
  font-size: 17px;
}

/* 
=========================================================================
Calculator Section
=========================================================================
*/

.calculator-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: none;
}

.result-section {
  background-color: #ffd700;
  color: #002b5c;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  margin-top: 15px;
}

.calculator-tabs .nav-link.active {
  background-color: #002b5c;
  color: white;
}

/* ---------------------------------------------------------------------------------- */
.open-msg {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 60px;
  height: 60px;
  color: #0060ff;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 62px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.open-msg:hover {
  color: #ffffff;
  background-color: #0060ff;
}

/* Chat Box */
.chat-box {
  position: fixed;
  bottom: 85px;
  /* Above the chat icon */
  padding: 10px;
  right: 15px;
  width: 300px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 101;
  overflow: hidden;
}

.chat-header {
  background-color: #0060ff;
  color: #ffffff;
  padding: 10px;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h3 {
  margin: 0;
  font-size: 16px;
}

.close-btn {
  font-size: 18px;
  cursor: pointer;
}

.chat-body {
  padding: 15px;
  font-size: 14px;
}

.chat-body input {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

/* 
=========================================================================
Cas Upload
=========================================================================
*/

.cas-card {
  max-width: 600px;
  margin: auto;
  margin-top: 50px;
}

.cas-header {
  font-size: 1.5rem;
  background-color: #003579;
}

.list-group-item {
  font-size: 1rem;
}

/* 
=========================================================================

=========================================================================
*/
.hexagon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: orange;
  color: white;
  font-weight: bold;
  font-size: 18px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hex-red {
  background-color: #ff4d4d;
}

.hex-blue {
  background-color: #4da6ff;
}

.hex-green {
  background-color: #5cd65c;
}

.hex-pink {
  background-color: #ff66b2;
}

.hex-purple {
  background-color: #9966ff;
}

.value-proposition-sec h5 {
  margin: 0;
}

.value-proposition-sec p {
  margin: 0;
  color: #555;
}

/***

====================================================================
	Our Service Section 
====================================================================

***/

.service-card {
  border-radius: 10px;
  background: white;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  border: 2px solid black;
}

.service-card:hover {
  transform: translateY(-5px);
}
.service-card img {
  width: 50px;
  margin-bottom: 15px;
}

/* --------------------------------------------------------- */

.comment-sec {
  background-image: url('../image/background/comment.png');
  background-size: contain;
}

.testimonial-box {
  /* background: linear-gradient(135deg, #1a1a75, #1a1a90); */
  background: linear-gradient(135deg, #bc9540, #1a1a90);
  color: #fff;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  /* max-width: 50%; */
}

.testimonial-box::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 50px 0 0;
  border-color: #bc9540 transparent transparent transparent;
}

.testimonial-box .stars {
  color: #00d4ff;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-box p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.testimonial-box .profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-box .profile img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin-right: 15px;
}

.testimonial-box .profile .name {
  font-weight: bold;
  font-size: 1.1rem;
}

.testimonial-box .profile .designation {
  font-size: 0.9rem;
  color: #b0b4f5;
  margin-top: 0px;
}

.about-section {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
.about-heading {
  color: #0056b3;
  font-weight: bold;
  text-align: left;
}
.about-quote {
  font-style: italic;
  color: #444444;
  margin-bottom: 20px;
}
.profile-image img {
  max-width: 100%;
  border-radius: 10px;
}
.about-text p {
  color: #333333;
  line-height: 1.8;
}

/* Add Todo  */
