.slide-item {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.5);
  z-index: 1;
}

.container-banner {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: auto;
  text-align: center;
  padding: 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-box {
  width: 100%;
  text-align: center;
}

.content-box {
  max-width: auto;
  text-align: center;
}

.content-box h2 {
  font-size: 80px;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.3;
}

.content-box p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #ddd;
  text-align: center;
}

.tgmenu__action {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tgmenu__action a.btn, 
.tgmenu__action a.btn-two {
    font-size: 16px;
    min-width:275px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}



.btn {
  background: linear-gradient(
    30deg,
    #de9f17 2%,
    #cf9a15 31%,
    #fff68a 68%,
    #ffcf45 96%
  );
  color: #000000;
  padding: 12px 24px;
  border-radius: 33px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
  line-height: 30px;
}

.btn:hover {
  background-color: #1b65af;
  color: #333;
}

.btn-two {
  background: #1b65af;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 33px;
  /* font-weight: 600; */
  font-size: 18px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-two:hover {
  background-color: #f0f0f0;
  color: #1b65af;
}

@media (max-width: 768px) {
  .slide-item {
    position: relative;
    width: 100%;
    height:60vh;
    overflow: hidden;
  }

  .container-banner {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
  }

  .content-box {
    padding: 1rem;
  }
}

.content-box h2 {
  font-size: 1.8rem;
}

.content-box p {
  font-size: 1rem;
}

.container {
  justify-content: center;
  text-align: center;
}

@media (max-width: 480px) {
  .content-box {
    max-width: 100%;
    padding: 1rem;
  }

  .content-box h2 {
    font-size: 1.5rem;
  }

  .content-box p {
    font-size: 0.95rem;
  }

  .tgmenu__action {
    flex-direction: column;
    align-items: center;
  }

  .tgmenu__action .btn,
  .tgmenu__action .btn-two {
    padding: 8px 25px;
    text-align: center;
    font-size: 14px;
  }

  .btn,
  .btn-two {
    /* width: 100%; */
    padding: 8px;
    text-align: center;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .container-banner {
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
  }

  .content-box {
    max-width: 90%;
  }

  .tgmenu__action {
    justify-content: center;
  }

  .slide-item {
    position: relative;
    width: 100%;
    height: 40vh;
    overflow: hidden;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container-banner {
    padding: 2rem;
  }

  .content-box h2 {
    font-size: 50px;
  }

  .slide-item {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
  }

  .content-box p {
    font-size: 1.05rem;
  }
}

@media (min-width: 769px) {
  .container-banner {
    padding: 2rem;
  }

  .content-box h2 {
    font-size: 50px;
  }

  .content-box p {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

/* -----------------------------------------------------------banner css end----------------------------------------- */

/* --------------------------------------------------------------count css---------------------------------------- */

.trusted-platforms {
  background-color: #f9f9f9;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 20px;
  animation: scrollLeft 25s linear infinite;
  width: max-content;
  align-items: center;
}

.trusted-platforms:hover .slider-track {
  animation-play-state: paused;
}

.logo-slide {
  flex: 0 0 auto;
  width: 150px;
  /* height: 100px; */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.logo-slide:hover {
  transform: scale(1.05);
}

.logo-slide img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}

/* Animation Keyframes */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .logo-slide {
    width: 140px;
    height: 80px;
  }

  .logo-slide img {
    max-height: 50px;
  }
}

@media (max-width: 480px) {
  .logo-slide {
    width: 120px;
    height: 70px;
  }

  .logo-slide img {
    max-height: 40px;
  }
}

/* -----------------------------------------count css end ---------------------------------- */

/* -----------------------------------------About 1 section css------------------------------------------- */

.financial-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 40px 0px;
  gap: 90px;
  /* font-family: "Segoe UI", sans-serif; */
}

.financial-image {
  max-width: 70%;
  width: 50%;
  position: relative;
  text-align: center;
}

.financial-image img {
  max-width: 100%;
  display: flex;
  float: right;
  border-radius: 23px;
}

.financial-content {
  margin-left: 10%;
  max-width: 600px;
}

.financial-content h2 {
  font-size: 40px;
  font-weight: 600;
  text-transform: capitalize;
  color: #0c0c2f;
  line-height: 1.4;
  max-width: 650px;
}

.financial-content h2 strong {
  font-weight: 900;
  color: #0c0c2f;
}

.financial-content p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  max-width: 700px;
}

.open-account-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background-color: #000828;
  color: #00f5e1;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.open-account-btn:hover {
  background-color: #001040;
}

@media (max-width: 768px) {
  .financial-content {
    padding: 20px 10px;
  }

  .financial-content h2 {
    font-size: 24px;
  }
}

/* Responsive layout for medium screens (tablets) */
@media (max-width: 1024px) {
  .financial-section {
    flex-direction: column;
    padding: 30px 20px;
    gap: 50px;
    text-align: center;
  }

  .financial-image,
  .financial-content {
    width: 100%;
  }

  .financial-content h2 {
    font-size: 28px;
  }

  .financial-content p {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .financial-section {
    padding: 20px 15px;
    gap: 30px;
  }

  .financial-content h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .financial-content p {
    font-size: 14px;
  }

  .open-account-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.asset-card {
  background-image: url("../images/icons/bg-chart-red.svg");
  /* background:transparent; */
  border-radius: 15px;
  padding: 10px;
  width: 100%;
  border: 1px solid rgb(177, 176, 176);
  max-width: 400px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  top: 90px;
  left: 80px;
}

.asset-title {
  color: #050505;
  font-size: 14px;
  text-align: start;
  font-weight: bold;
  text-transform: uppercase;
}

.asset-details {
  /* display: flex; */
  justify-content: space-between;
  /* align-items: center; */
}

.asset-value {
  color: #070707;
  text-align: start;
  font-size: 24px;
  font-weight: bold;
}

.asset-change {
  color: #00cc00;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.asset-change::before {
  content: "▲";
  font-size: 10px;
}

.asset-today {
  color: #999;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.user-card {
  /* background-image: url("../images/icons/bg-chart-red.svg"); */
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  padding: 10px;
  max-width: 300px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  display: flex;
  border: 1px solid rgb(177, 176, 176);
  align-items: center;
  gap: 15px;
  position: absolute;
  top: 40%;
  left: 210px;
}

.user-card-icon {
  width: 40px;
  height: 40px;
}

.user-card-title {
  color: #0e0e0e;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.profit-card {
  /* background-image: url("../images/icons/bg-chart-red.svg"); */
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  padding: 10px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #cfcfcf;
  position: absolute;
  bottom: 20%;
  left: 0;
  gap: 15px;
  background-color: rgba(255, 255, 255, 0.6);
  /* fallback blur */
}

.profit-card-content {
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
}

.profit-card-title {
  font-size: 36px;
  font-weight: 700;
  text-align: start;
  color: linear-gradient(
    30deg,
    #de9f17 2%,
    #cf9a15 31%,
    #fff68a 68%,
    #ffcf45 96%
  );
  margin: 0;
}

.profit-card-grid {
  display: flex;
  gap: 15px;
}

.profit-card-metric {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.metric-label {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  color: #222;
}

.metric-value {
  font-size: 13px;
  color: #12b512;
  font-weight: 500;
  margin: 0;
}

.profit-card-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Tablets and below */
@media (max-width: 1024px) {
  .financial-section {
    flex-direction: column;
    gap: 50px;
    padding: 30px 20px;
  }

  .financial-content {
    margin-left: 0;
    text-align: center;
    max-width: 100%;
  }

  .financial-content h2 {
    font-size: 28px;
  }

  .financial-image {
    width: 100%;
    max-width: 100%;
  }

  .asset-card {
    position: static;
    margin: 20px auto;
    max-width: 90%;
  }

  .user-card {
    position: static;
    margin: 20px auto;
    max-width: 90%;
  }

  .profit-card {
    position: static;
    margin: 20px auto;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .profit-card-icon {
    align-self: center;
  }

  .profit-card-grid {
    flex-direction: row;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    width: 100%;
  }

  .profit-card-metric {
    align-items: flex-start;
    width: 48%;
    margin-top: 10px;
  }
}

/* Mobile phones */
@media (max-width: 600px) {
  .financial-content h2 {
    font-size: 22px;
  }

  .financial-content p {
    font-size: 14px;
  }

  .open-account-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .asset-card,
  .user-card,
  .profit-card {
    padding: 12px;
    max-width: 100%;
  }

  .profit-card-title {
    font-size: 24px;
  }

  .metric-label,
  .metric-value {
    font-size: 12px;
  }

  .profit-card-grid {
    flex-direction: row;
    gap: 10px;
  }

  .profit-card-metric {
    width: 100%;
  }
}

/* ------------------------------- about 1 section end ------------------------------------- */

/* -------------------------------------------------- why choose us css start ------------------------------------- */

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

.why-ftm-section {
  background: linear-gradient(to right, #000000, #071d33);
  padding: 30px 0px;
  text-align: center;
  border-top: 5px solid #1b65af;
  border-bottom: 5px solid #1b65af;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.why-ftm-title {
  font-size: 36px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.why-ftm-subtitle {
  font-size: 16px;
  color: #c0d1e3;
  margin-bottom: 50px;
}

.why-ftm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 50px;
}

.why-ftm-card {
  position: relative;
  border-radius: 16px;
  padding: 30px;
  flex: 1 1 220px;
  overflow: hidden;
}

.why-ftm-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 8, 21, 0) 0%,
    #1b65af 50%,
    rgba(0, 8, 21, 0) 100%
  );
  border-radius: 100px;
}

.why-ftm-icon {
  width: 80px;
  height: 80px;
  border: 1px solid #1b65af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #1b65af;
  font-size: 16px;
}

.icon-green {
  border-color: #1b65af;
  color: #1b65af;
  font-size: 40px;
}

.why-ftm-card-title {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.why-ftm-card-desc {
  font-size: 16px;
  color: #b5c3d6;
}

.why-ftm-button {
  padding: 12px 30px;
  border-radius: 10px;
  background-color: #1b65af;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
  /* border: 2px solid #00cfff; */
}

.why-ftm-button:hover {
  background: #1b65af;
  color: #030303;
}

/* Extra Small Devices (max-width: 480px) */
@media (max-width: 480px) {
  .why-ftm-title {
    font-size: 24px;
  }

  .why-ftm-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .why-ftm-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .why-ftm-card {
    padding: 20px;
  }

  .why-ftm-card-title {
    font-size: 18px;
  }

  .why-ftm-card-desc {
    font-size: 14px;
  }

  .why-ftm-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
    margin-bottom: 12px;
  }

  .why-ftm-button {
    font-size: 14px;
    padding: 10px 24px;
  }
}

/* Small Devices (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .why-ftm-title {
    font-size: 28px;
  }

  .why-ftm-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .why-ftm-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 20px;
  }

  .why-ftm-card {
    padding: 24px;
  }

  .why-ftm-card-title {
    font-size: 18px;
  }

  .why-ftm-card-desc {
    font-size: 15px;
  }

  .why-ftm-icon {
    width: 70px;
    height: 70px;
    font-size: 36px;
  }

  .why-ftm-button {
    font-size: 15px;
    padding: 12px 28px;
  }
}

/* Medium Devices (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .why-ftm-title {
    font-size: 32px;
  }

  .why-ftm-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 30px;
  }

  .why-ftm-card {
    padding: 28px;
  }
}
/* ---------------------------------------------------------why choose us css end ----------------------------- */

/* ------------------------------------------------------trading css start------------------------------ */

.trading-section {
  /* font-family: Arial, sans-serif; */
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 20px 10px;
}

.why-ftm-title {
  font-size: 36px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.trade {
  padding: 50px 0px 30px;
}

.trading-title {
  font-size: 36px;
  font-weight: 600;
  color: rgb(14, 13, 13);
  margin-bottom: 10px;
  text-align: center;
}

.trading-subtitle {
  font-size: 16px;
  color: #080808;
  text-align: center;
  /* margin-bottom: 50px; */
}

.tabContent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tradeContainer {
  border-radius: 10px;
  margin: 0px 0 30px;
}

.navPanel {
  padding: 20px;
  gap: 40px;
}

.navPanel ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navPanel ul li {
  padding: 10px 35px;
  margin: 0px 0 20px;
  background: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid rgb(255, 247, 247);
  border-radius: 30px;
  text-align: center;
  font-size: 17px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.navPanel ul li.tradingActive {
  background: #1b65af;
  color: #fff;
}

.mainSection {
  flex-grow: 1;
  padding: 20px;
  color: gray;
  border: 1px solid #fdf9ee;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.mainSection h1 {
    margin-top: 16px;
    color: #d69c27;
    font-size: 20px;
    text-align: start;
    font-weight: 600;
    padding-bottom: 15px;
    line-height: 1.4;
}

.mainSection p {
  line-height: 1.6;
  font-size: 18px;
  margin: 0px 0px 25px;
  color: gray;
  max-width: 575px;
}

.featureList {
  margin: 20px 0;
}

.featureList ul {
  list-style: none;
  padding: 0;
}

.featureList ul li {
  margin: 5px 0;
}

.featureList ul li::before {
  content: "✔";
  color: #1b65af;
  margin-right: 10px;
}

.imageDisplay {
  text-align: center;
  width: 40%;
}

.imageDisplay img {
  max-width: 100%;
  border-radius: 10px;
}

.actionButtons {
  margin-top: 20px;
}

.actionButtons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.actionButtons button {
  background: linear-gradient(
    30deg,
    #de9f17 2%,
    #cf9a15 31%,
    #fff68a 68%,
    #ffcf45 96%
  );
  color: #000000;
  border: none;
  padding: 10px 40px;
  border-radius: 30px;
  cursor: pointer;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.actionButtons button:hover {
  background: linear-gradient(
    30deg,
    #ffcf45 2%,
    #fff68a 31%,
    #cf9a15 68%,
    #de9f17 96%
  );
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

button.download-btn {
  background: linear-gradient(30deg, #2066ad 2%, #2273c5 31%, #347ec9 68%, #1072d5 96%);
  color: #fff;
  transition: background 0.3s ease, transform 0.2s ease;
}

button.download-btn:hover {
  background: linear-gradient(30deg, #1072d5 2%, #347ec9 31%, #2273c5 68%, #2066ad 96%);
  transform: translateY(-2px);
}

button.download-btn a {
    color: #fff;
}

.actionButtons a {
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}

.appIcons {
  margin-top: 20px;
}

.appIcons img {
  width: 120px;
  margin-right: 10px;
}

.hiddenTab {
  display: none;
}
/* Tablets and smaller: Stack layout and adjust sizes */
@media (max-width: 1024px) {
  .tabContent {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .imageDisplay {
    width: 100%;
    text-align: center;
  }

  .navPanel {
    width: 100%;
    padding: 15px;
  }

  .mainSection {
    /* padding: 15px; */
  }

  .tradeContainer {
    flex-direction: column;
    /* padding: 20px; */
  }

  .mainSection p {
    max-width: 100%;
  }

  .appIcons img {
    width: 100px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .trading-title {
    font-size: 28px;
  }

  .trading-subtitle {
    font-size: 14px;
    /* margin-bottom: 30px; */
  }

  .navPanel ul {
    display: flex;
    flex-direction: row;
    gap: 4px;
  }

  .navPanel ul li {
    font-size: 14px;
    padding: 8px;
  }

  .mainSection h1 {
    font-size: 22px;
  }

  .mainSection p {
    font-size: 16px;
  }

  .featureList ul li {
    font-size: 14px;
  }

  .appIcons img {
    width: 90px;
    margin-bottom: 10px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .why-ftm-title,
  .trading-title {
    font-size: 24px;
  }

  .navPanel,
  .mainSection {
    /* padding: 10px; */
  }

  .navPanel ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .navPanel ul li {
    padding: 15px;
    margin: 3px 0;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgb(255, 247, 247);
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
    font-size: 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  .tradeContainer {
    margin: 10px;
  }

  .mainSection h1 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.5;
  }

  .mainSection p {
    font-size: 14px;
  }

  .appIcons img {
    width: 80px;
  }
}

/* ------------------------------------------------------trading css end------------------------------ */

/* ---------------------------------------------------------why css start-------------------------------------- */

.main-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* Left Side */
.left-panel {
  background-color: #fffbeb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 40%;
  padding: 60px 125px;
}

.header-text {
  font-size: 48px;
  color: #1a2a44;
  line-height: 64px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: left;
}

.sub-text {
  font-size: 18px;
  color: #1a2a44;
  text-align: left;
}

/* Right Side */
.right-panel {
  background-color: #0e1236;
  width: 60%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding: 80px;
  color: #fff;
  align-content: flex-start;
}

.info-block {
  width: 100%;
  max-width: 240px;
  margin: auto;
}

.highlight-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.detail-content {
  font-size: 14px;
  color: #dcdcdc;
  line-height: 1.6;
}

.line-separator {
  width: 60%;
  height: 2px;
  background-color: #1a2a44;
  margin: 30px 0;
}

/* -------------------- Tablet: max-width 992px -------------------- */
@media (max-width: 992px) {
  .main-wrapper {
    flex-direction: column;
  }

  .left-panel,
  .right-panel {
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    align-items: center;
  }

  .left-panel {
    align-items: center;
  }

  .header-text {
    font-size: 36px;
    line-height: 50px;
    text-align: center;
  }

  .sub-text {
    font-size: 16px;
    text-align: center;
  }

  .right-panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px 20px;
    justify-items: center;
  }

  .info-block {
    max-width: 100%;
    text-align: center;
  }

  .line-separator {
    width: 80%;
    margin: 20px auto;
  }
}

/* -------------------- Mobile: max-width 576px -------------------- */
@media (max-width: 576px) {
  .right-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .header-text {
    font-size: 28px;
    line-height: 40px;
    text-align: center;
  }

  .sub-text {
    font-size: 14px;
    text-align: center;
  }

  .info-block {
    margin: 10px 0;
    text-align: center;
  }

  .line-separator {
    width: 90%;
  }
}

/* ---------------------------------------------------------why css end-------------------------------------- */

/* ---------------------------------------------------------------about 2 css start------------------------------------- */

.section-about {
  position: relative;
  /*background-image: url("../images/icons/about-bg.avif");*/
  background-size: contain;
  background-position: center;
  z-index: 1;
}

.section-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 2;
}

.section-about > * {
  position: relative;
  z-index: 3;
}

.insurance-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 40px 0px;
}

.insurance-text-block {
  flex: 1;
  max-width: 50%;
}

.insurance-text-block h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--primary-color);
  font-family: var(--primary-font);
  text-align: start;
  margin-bottom: 20px;
}

.insurance-text-block h2 span {
  color: #1b65af;
}

.insurance-text-block p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: start;
  color: #333;
}

.insurance-image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.insurance-image-block img {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
}

/* Extra Small Devices (max-width: 480px) */
@media (max-width: 480px) {
  .insurance-section {
    gap: 20px;
    padding: 20px 15px;
  }

  .insurance-text-block h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .insurance-text-block p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .insurance-image-block img {
    max-width: 100%;
  }
}

/* Small Devices (481px to 768px) */
@media (max-width: 768px) {
  .insurance-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }

  .insurance-text-block {
    flex: 1;
    max-width: 100%;
  }

  .insurance-section {
    gap: 30px;
    padding: 30px 20px;
  }

  .insurance-text-block h2 {
    font-size: 26px;
  }

  .insurance-text-block p {
    font-size: 15px;
    line-height: 1.6;
  }

  .insurance-image-block img {
    max-width: 95%;
  }
}

/* Medium Devices (769px to 991px) */
@media (min-width: 769px) and (max-width: 991px) {
  .insurance-text-block h2 {
    font-size: 28px;
  }

  .insurance-text-block p {
    font-size: 15.5px;
  }

  .insurance-image-block img {
    max-width: 90%;
  }
}

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .insurance-section {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }

  .insurance-text-block,
  .insurance-image-block {
    max-width: 100%;
    width: 100%;
  }

  .insurance-text-block h2 {
    font-size: 28px;
  }

  .insurance-text-block p {
    font-size: 15px;
  }

  .insurance-image-block img {
    max-width: 100%;
  }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .insurance-section {
    padding: 25px 15px;
    gap: 30px;
  }

  .insurance-text-block h2 {
    font-size: 24px;
  }

  .insurance-text-block p {
    font-size: 14.5px;
  }

  .insurance-image-block img {
    max-width: 100%;
  }
}

/* Extra small devices (max-width: 480px) */
@media (max-width: 480px) {
  .insurance-section {
    padding: 20px 10px;
    gap: 25px;
  }

  .insurance-text-block h2 {
    font-size: 20px;
  }

  .insurance-text-block p {
    font-size: 14px;
  }

  .insurance-image-block img {
    max-width: 100%;
  }
}

/* ---------------------------------------------------------------about 2 css end------------------------------------- */

/* ----------------------------------------------------------------process section css --------------------------- */

.process-section-five {
  padding: 80px 0;
  /* background-color: #1b65af; */
  position: relative;
  background-image: url("../../assets/images/background/bg-step.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  overflow: hidden;
  z-index: 1;
}

.process-section-five::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1b65af;
  /* opacity: 0.85; */
  z-index: 0;
}

/* Ensure content stays above the overlay */
.process-section-five > * {
  position: relative;
  z-index: 1;
}

.process-section-five .sub-title-two {
  /* background-color: #ffffff0f; */
  color: #ffffff;
}

.heading-title {
  color: white;
  text-align: center;
  max-width: 75%;
  margin: 25px auto;
}

.process-section-five a.process {
  background: linear-gradient(
    30deg,
    #de9f17 2%,
    #cf9a15 31%,
    #fff68a 68%,
    #ffcf45 96%
  );
  color: black;
  border: none;
  border-radius: 33px;
}

.process-box-five.one,
.process-box-five.two {
  padding-right: 50px;
}

.process-box-five.three,
.process-box-five.four {
  padding-left: 50px;
}

.process-box-five.one,
.process-box-five.four {
  margin-top: 279px;
}

.process-box-five.two {
  margin-left: -30px;
}

.process-box-five.three {
  margin-right: -30px;
}

.process-box-five {
  color: var(--uniqo-light);
  text-align: center;
  position: relative;
  z-index: 1;
}

/*.process-image-five {
    position: relative;
    margin-bottom: 33px;
    height: 244px;
    width: 244px;
    border-radius: 100%;
}*/

.process-image-five {
  position: relative;
  height: 244px;
  width: 244px;
  border-radius: 100%;
  margin: auto 20px 40px auto;
}

.process-image-five img {
  border-radius: 50%;
  height: 15rem;
  object-fit: cover;
  border: #fee16d 4px solid;
}

.process-image-five::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  background-color: #00000082;
  transition: all 0.5s;
  height: 0;
  width: 0;
}

.process-box-five:hover .process-image-five::after {
  height: 100%;
  width: 100%;
  border: #ffffff 4px solid;
}

.process-image-five span {
  height: 47px;
  width: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: linear-gradient(
    30deg,
    #de9f17 2%,
    #cf9a15 31%,
    #fff68a 68%,
    #ffcf45 96%
  );
  color: #000;
  position: absolute;
  bottom: -22px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  font-weight: 600;
}

.process-box-five h4 {
  margin-bottom: 4px;
  font-size: 22px;
  color: #e7ba1e;
  font-weight: 600;
}

.lead {
  color: #c1e0ff;
  text-align: center;
}

.process-box-outer {
  position: relative;
}

.process-box-outer::after {
  content: "";
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  height: 1200px;
  width: 1200px;
  border-radius: 100%;
  border: 1px solid #97979757;
}

.process-box-outer::before {
  content: "";
  position: absolute;
  bottom: -940px;
  left: 50%;
  transform: translateX(-50%);
  height: 1200px;
  width: 1200px;
  background-color: var(--uniqo-black);
  z-index: 1;
}

.process-info-five {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: -150px;
}

.process-info-five::after {
  content: "";
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
  height: 580px;
  width: 580px;
  border-radius: 100%;
  border: 1px solid #f1f1f169;
  border-bottom: transparent;
  border-left: transparent;
  border-right: transparent;
  z-index: -1;
}

/* Tablets (768px to 1024px) */
@media (max-width: 1024px) {
  .process-box-five.one,
  .process-box-five.four {
    margin-top: 150px;
    padding: 0 30px;
  }

  .process-box-five.two,
  .process-box-five.three {
    margin: 0;
    padding: 0 30px;
  }

  .process-image-five {
    height: 180px;
    width: 180px;
    margin-bottom: 20px;
  }

  .process-image-five img {
    height: 12rem;
  }

  .process-box-five h4 {
    font-size: 20px;
  }

  .process-box-outer::after,
  .process-box-outer::before,
  .process-info-five::after {
    height: 800px;
    width: 800px;
  }

  .process-info-five {
    margin-top: -100px;
  }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .process-section-five {
    padding: 60px 20px;
    background-size: cover;
  }

  .process-box-five {
    padding: 0 !important;
    margin: 50px 0 0 0 !important;
  }

  .process-image-five {
    height: 150px;
    width: 150px;
    margin: 0 auto 20px auto;
  }

  .process-image-five img {
    height: 10rem;
  }

  .process-box-five h4 {
    font-size: 18px;
  }

  .process-box-outer::after,
  .process-box-outer::before,
  .process-info-five::after {
    height: 500px;
    width: 500px;
  }

  .process-info-five {
    margin-top: -80px;
    padding: 0 15px;
  }

  .heading-title {
    font-size: 24px;
    text-align: center;
    /* margin-top: 112px; */
  }

  .lead {
    font-size: 14px;
    text-align: center;
  }
}

.trade-section {
  padding: 40px 0 30px;
}

.trade-header {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
}

.trade-header h2 {
  font-size: 36px;
  /* font-weight: 800; */
  text-align: center;
}

.trade-header h2 span {
  color: #1b65af;
}

.trade-header p {
  font-size: 16px;
  color: #333;
  max-width: 800px;
  margin: 10px auto;
  text-align: center;
}

.trade-container {
  max-width: 1400px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.tab-sidebar {
  background-color: #1b65af;
  padding: 15px;
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 25px;
  overflow-x: auto;
  /* Add this line to enable horizontal scrolling when needed */
}

/* Optional: For a cleaner look, you can hide the scrollbar while keeping the scroll functionality */
.tab-sidebar {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.tab-sidebar::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

.tab-button {
  background: none;
  border: #3f81c5 1px solid;
  text-align: left;
  color: #fff;
  padding: 4px 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  border-radius: 20px;
  gap: 12px;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.tab-button.active,
.tab-button:hover {
  background: linear-gradient(
    30deg,
    #de9f17 2%,
    #cf9a15 31%,
    #fff68a 68%,
    #ffcf45 96%
  );
  color: #000;
  border: #fed960 1px solid;
}

.tab-button img {
  width: 24px;
  height: 24px;
}

.tab-content-area {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 15px 0px 0;
  border-radius: 0px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 500;
  text-align: start;
  text-transform: uppercase;
  padding-left: 20px;
}

.table-wrapper {
  overflow-x: auto;
}

.trade-table {
  width: 100%;
  border-collapse: collapse;
}

.trade-table th,
.trade-table td {
  padding: 10px 20px;
  white-space: nowrap;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  text-align: left;
}

.trade-table thead th {
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  background-color: #dae0e5;
  padding: 5px 20px;
  color: #333;
}

.trade-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
  /* Light gray for even rows */
}

.trade-table tbody tr:hover {
  background-color: #f9f9f9;
}

.asset-info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
}

.asset-info-img {
  transition: all 0.3s ease;
  width: 40px;
}

.asset-info-img img {
  width: 100%;
}

.asset-info-text {
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin-bottom: 0px;
    text-transform: uppercase;
    color: #333;
}

.positive {
  color: #28a745;
}

.negative {
  color: #dc3545;
}

.trade-btn {
  background-color: #b8dbff;
  color: rgb(56, 56, 56);
  padding: 0px 15px;
  font-weight: 600;
  border: none;
  border-radius: 33px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 11px;
}

.trade-btn:hover {
  background-color: #1b65af;
  color: #fff;
}

.cta-buttons {
  margin-top: 30px;
  text-align: center;
  /* width: 100%; */
}

.cta-buttons button {
  margin: 0;
  padding: 12px 20px;
  border: none;
  font-size: 16px;
  width: 18%;
  font-weight: 600;
  cursor: pointer;
  border-radius: 33px;
  display: inline-block;
}

.live-btn {
  background: linear-gradient(
    30deg,
    #de9f17 2%,
    #cf9a15 31%,
    #fff68a 68%,
    #ffcf45 96%
  );
  color: #353434;
}

.demo-btn {
  background: #1b65af;
  color: #ffffff;
}

@media screen and (max-width: 1024px) {
  .trade-container {
    flex-direction: column;
  }

  .tab-sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding: 10px;
    gap: 5px;
  }

  .tab-button {
    padding: 10px 14px;
    flex-shrink: 0;
    justify-content: center;
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .tab-content-area {
    padding: 30px 20px;
  }

  .trade-header h2 {
    font-size: 28px;
  }

  .trade-header p {
    font-size: 14.5px;
  }

  .cta-buttons button {
    padding: 10px 18px;
    font-size: 15px;
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  .trade-header h2 {
    font-size: 24px;
  }

  .trade-header p {
    font-size: 13.5px;
  }

  .tab-content-area {
    padding: 20px 15px;
  }

  .tab-button {
    font-size: 13px;
    padding: 8px 10px;
  }

  .tab-sidebar {
    gap: 15px;
    padding: 8px;
  }

  .cta-buttons button {
    padding: 10px 14px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .trade-header h2 {
    font-size: 20px;
  }

  .trade-header p {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .tab-content-area {
    padding: 15px 10px;
  }

  .tab-content h3 {
    font-size: 16px;
  }

  .cta-buttons button {
    width: 100%;
    margin: 6px 0;
  }

  .tab-sidebar {
    /* flex-wrap: wrap; */
    justify-content: start;
  }

  .trade-table th,
  .trade-table td {
    padding: 15px 10px;
    white-space: nowrap;
    border-bottom: 1px solid #eee;
    font-size: 14px;
  }

  .tab-button {
    gap: 10px;
    padding: 3px 20px;
    font-size: 10px;
  }

  .tab-button img {
    width: 18px;
    height: 18px;
  }
}

/* --------------------------------------------------------------------------------- trading css end ---------------------------------------- */

/* -----------------------------------------count platform css start ---------------------------------- */

.funfact-section {
  position: relative;
  padding: 50px 0px;
  background-color: #0d0d0d;
}

.funfact-section .container {
  position: relative;
}

.funfact-section.home_five {
  padding: 0;
  background-color: transparent;
}

.funfact-section.inner_page {
  background: transparent;
  padding: 0px;
  padding-bottom: 150px;
}

.funfact-section.inner_page .funfact-block-one h6 {
  color: #0d0d0d;
}

.funfact-section.inner_page .funfact-block-one .count-box {
  color: #0d0d0d;
}

.funfact-section .bg_layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.funfact-block-one {
  text-align: center;
}

.funfact-block-one h6 {
  color: #fff;
  font-family: var(--secondary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.home_five .funfact-block-one h6 {
  color: #0d0d0d;
}

.funfact-block-one .count-box {
  color: #fff;
  font-family: var(--primary-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.home_five .funfact-block-one .count-box {
  color: #0d0d0d;
}
/* -----------------------------------------count platform css end ---------------------------------- */

/* --------------------------------------------------------------work propcess css------------ */
.work_process_section.bg_dark {
  position: relative;
  background: #181626;
  padding-bottom: 100px;
}

.work_process_section.bg_dark {
  position: relative;
  background: #181626;
  padding-bottom: 120px;
}

.work_process_section.bg_dark .credit_card {
  position: absolute;
  left: 0;
  top: 155px;
}

.work_process_section.bg_dark .master_card {
  position: absolute;
  right: 0;
  bottom: 95px;
  width: 200px;
}

.process_block_one.style_two h4 {
  color: #fff;
}

.process_block_one.style_two p {
  color: #fff;
}

/* ----------------------------------------------- work propcess end css-------------------------- */

/* ---------------------------------------------------------------------blog section css start ------------------------------------ */

.blog-section-four {
  padding-bottom: 40px;
  margin-top: 35px;
  margin-bottom: 20px;
}

.blog-section-four .sub-title {
  margin-bottom: 25px;
}

.blog-section-four .heading-title {
  margin-bottom: 40px;
}

.blog-heading-title {
  color: black;
  margin: 40px 0;
  font-size: 2.5rem;
}

.blog-box-four {
  position: relative;
  height: 500px;
  border-radius: 15px;
  overflow: auto;
  background-blend-mode: multiply;
  display: flex;
  flex-direction: column;
  padding: 30px;
  padding-right: 60px;
  background-position: center;
  background-size: cover;
}

.blog-box-four::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 25%) 37%, #1b242966 90.33%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  border-radius: 12px;
}

.blog-box-four .blog-content {
  position: relative;
  z-index: 1;
}

.blog-section-four .col-lg-4:nth-child(2) .blog-box-four {
  background: linear-gradient(
      180deg,
      rgba(86, 115, 108, 0.4) 0%,
      #1b2429 65.33%
    ),
    url(../images/blog/blog-four-2.jpg);
  background-blend-mode: multiply;
  background-position: center;
  background-size: cover;
}

.blog-section-four .col-lg-4:nth-child(3) .blog-box-four {
  background: linear-gradient(
      180deg,
      rgba(86, 115, 108, 0.4) 0%,
      #1b2429 65.33%
    ),
    url(../images/blog/blog-four-3.jpg);
  background-blend-mode: multiply;
  background-position: center;
  background-size: cover;
}

.blog-date-four {
  height: 90%;
}

.blog-date-four a {
  padding: 8px 12px;
  border-radius: 6px;
  display: inline-flex;
  background-color: white;
  flex-direction: column;
  align-items: center;
  color: var(--uniqo-dark-text);
  font-size: 18px;
  font-weight: 600;
}

.blog-date-four a span:first-child {
  font-size: 35px;
}

.blog-date-four a span:last-child {
  /* margin-top: -15px; */
}

ul.blog-four-tag {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 14px;
  color: var(--uniqo-light);
}

ul.blog-four-tag li a {
  color: #fff;
  font-size: 15px;
  background: #4aa4ff;
  padding: 5px 15px;
  border-radius: 33px;
}

.blog-box-four h4 {
  margin-bottom: 20px;
}

.blog-box-four h4 a {
  color: var(--uniqo-light);
  background-image: linear-gradient(transparent calc(100% - 1px), #ffffff 1px);
  background-repeat: no-repeat;
  background-position-y: -1px;
  color: white;
  font-weight: 500;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  animation: 1s cubic-bezier(0.215, 0.61, 0.355, 1) underline forwards;
  font-size: 21px;
  text-align: start;
  /* Line clamp */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Show only 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 15px;
}

.blog-box-four h4 a:hover {
  animation: 1s cubic-bezier(0.215, 0.61, 0.355, 1) underline-hover forwards;
}

.blog-four-btn {
  height: 45px;
  width: 45px;
  border-radius: 100%;
  border: 0px solid gray;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(
    30deg,
    #de9f17 2%,
    #cf9a15 31%,
    #fff68a 68%,
    #ffcf45 96%
  );
}

.blog-box-four {
  position: relative;
  overflow: hidden;
}

@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@keyframes circle {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@media (max-width: 1199px) {
  .blog-box-four {
    height: 460px;
    padding: 25px;
    padding-right: 40px;
  }
}

@media (max-width: 991px) {
  .blog-section-four .col-lg-4 {
    margin-bottom: 30px;
  }

  .blog-box-four {
    height: 420px;
    padding: 20px;
    padding-right: 30px;
  }

  .blog-box-four h4 a {
    font-size: 20px;
    -webkit-line-clamp: 2;
  }

  .blog-date-four a {
    font-size: 16px;
  }

  .blog-date-four a span:first-child {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .blog-box-four {
    height: auto;
    padding: 20px;
    padding-right: 20px;
  }

  .blog-box-four h4 a {
    font-size: 18px;
    -webkit-line-clamp: 2;
  }

  ul.blog-four-tag {
    flex-wrap: wrap;
    row-gap: 6px;
    font-size: 14px;
  }

  .blog-four-btn {
    height: 45px;
    width: 45px;
  }

  .blog-date-four a {
    padding: 6px 10px;
    font-size: 15px;
  }

  .blog-date-four a span:first-child {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .blog-box-four {
    height: auto;
    padding: 15px;
    padding-right: 15px;
  }

  .blog-box-four h4 a {
    font-size: 17px;
  }

  .blog-date-four a {
    font-size: 14px;
  }

  ul.blog-four-tag {
    column-gap: 6px;
    font-size: 13px;
  }
}

/* ---------------------------------------------------------------------blog section css end ------------------------------------ */

.testimonials-section {
  padding: 40px 0;
  background-color: #f8f9fa;
  background-image: url("../../assets/images/background/bg-img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px;
  border: 1px solid #115181;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-img {
  width: 100px;
  /* Slightly smaller image */
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 5px solid #115181;
}

.testimonial-text {
  font-size: 1rem;
  /* Adjusted font size */
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
  /* Allows text to take up available space */
}

.testimonial-author {
  font-weight: 600;
  color: #333;
  text-align: start;
  margin-bottom: 5px;
  font-size: 18px;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #777;
  text-align: start;
}

.star-rating {
  color: #ffc107;
  font-size: 14px;
  margin-bottom: 0;
  text-align: left;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  border-radius: 50%;
  padding: 15px;
  color: black;
}

.testimonials-section .carousel-control-prev {
  left: -9.5%;
}

.testimonials-section .carousel-control-next {
  right: -9.5%;
}

.testimonials-section .carousel-control-prev-icon,
.testimonials-section .carousel-control-next-icon {
  background-color: #115181;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 20px;
}

/* Media query for smaller screens */
@media (max-width: 767px) {
  .testimonials-section .carousel-inner .carousel-item > div {
    display: none;
  }

  .testimonials-section .carousel-inner .carousel-item > div:first-child {
    display: block;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 15%;
    /* Make controls easier to tap */
  }

  .carousel-control-prev {
    left: -8%;
  }

  .carousel-control-next {
    right: -8%;
  }
}

.testimonials-section .carousel-inner .carousel-item.active,
.testimonials-section .carousel-inner .carousel-item-next,
.testimonials-section .carousel-inner .carousel-item-prev {
  display: flex;
}

/* Hiding the non-active testimonials on smaller screens */
@media (max-width: 767px) {
  .testimonials-section .carousel-inner .carousel-item-end.active,
  .testimonials-section .carousel-inner .carousel-item-start.active,
  .testimonials-section .carousel-inner .carousel-item-next,
  .testimonials-section .carousel-inner .carousel-item-prev {
    display: flex;
  }

  .testimonials-section .carousel-inner .carousel-item-end,
  .testimonials-section .carousel-inner .carousel-item-start {
    transform: translateX(0);
  }
}
/* ---------------------------------------------------------------------Testimonials section css ---------------------------------------- */

/* -----------------------------------------------faq section css start -------------------------------------- */

.faq-section {
  margin-top: 50px;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-section h2 {
  font-size: 35px;
  color: black;
  text-align: center;
}

.faq-left {
  flex: 1 1 40%;
  min-width: 280px;
}

.faq-left h2 {
  font-size: 30px;
  font-weight: 800;
  color: #1a1a1a;
}

.underline {
  width: 60px;
  height: 4px;
  /* background:#1b65af; */
  margin: 12px 0 20px;
  border-radius: 3px;
}

.faq-left p {
  color: #5a5a5a;
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 16px;
}

.btn-fund {
  display: inline-block;
  background: linear-gradient(to right, #1b65af, #d4b300);
  color: white;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.btn-fund:hover {
  background: linear-gradient(to right, #d4b300, #1b65af);
  color: black;
}

.btn-fund span {
  margin-left: 8px;
  font-weight: 700;
}

.faq-img {
  width: 80%;
  margin-top: 10px;
  border-radius: 12px;
}

.faq-right {
  flex: 1 1 55%;
  min-width: 320px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: 0.3s ease;
  border-left: 5px solid transparent;
}

.faq-item.active {
  border-left-color: #1b65af;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #2d003f;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
  text-align: left;
}

.faq-question:hover {
  background-color: #fdf9e9;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 22px;
  color: #888;
  top: 50%;
  transform: translateY(-50%);
}

.faq-item .faq-question::after {
  content: "+";
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fdf9e9;
  color: #333;
  font-size: 15px;
  padding: 0 20px;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 10px 0 16px;
  line-height: 1.6;
}

/* Read All Link */
.faq-readall {
  display: inline-block;
  margin-top: 20px;
  color: #1b65af;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}

.faq-readall span {
  margin-left: 6px;
}

@media (max-width: 991px) {
  .faq-left h2 {
    font-size: 26px;
  }

  .faq-left p {
    font-size: 15px;
  }

  .btn-fund {
    font-size: 14px;
    padding: 10px 20px;
  }

  .faq-question {
    padding: 16px;
    font-size: 15px;
  }

  .faq-question::after {
    font-size: 20px;
  }

  .faq-answer {
    padding: 0 16px;
    font-size: 14px;
  }

  .faq-answer p {
    padding: 8px 0 14px;
  }

  .faq-readall {
    font-size: 15px;
  }

  .faq-img {
    width: 100%;
    margin-top: 20px;
  }
}

/* Tablets and small laptops (768px to 990px) */
@media (max-width: 990px) {
  .faq-container {
    flex-direction: column;
    gap: 30px;
  }

  .faq-left,
  .faq-right {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .faq-left h2 {
    font-size: 24px;
    text-align: center;
  }

  .faq-left p {
    text-align: center;
  }

  .faq-img {
    display: block;
    margin: 20px auto 0;
    max-width: 100%;
  }

  .faq-readall {
    text-align: center;
    display: block;
  }
}

/* Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {
  .faq-container {
    padding: 0 0px;
  }

  .faq-left h2 {
    font-size: 22px;
  }

  .faq-left p {
    font-size: 14px;
    line-height: 1.6;
  }

  .btn-fund {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
  }

  .faq-question {
    padding: 14px;
    font-size: 14px;
  }

  .faq-question::after {
    font-size: 18px;
    right: 15px;
  }

  .faq-answer {
    padding: 0 14px;
    font-size: 13.5px;
  }

  .faq-answer p {
    padding: 6px 0 12px;
  }

  .faq-img {
    width: 100%;
    margin-top: 15px;
  }

  .faq-readall {
    font-size: 14px;
    text-align: center;
  }
}

/* Extra small devices (max-width: 480px) */
@media (max-width: 480px) {
  .faq-left h2 {
    font-size: 20px;
  }

  .faq-left p {
    font-size: 13px;
  }

  .faq-question {
    font-size: 13px;
  }

  .faq-answer {
    font-size: 13px;
  }

  .faq-readall {
    font-size: 13px;
  }

  .btn-fund {
    font-size: 13px;
    padding: 8px 16px;
  }
}

/* -----------------------------------------------faq section css end -------------------------------------- */

/* -----------------------------------------------------------------------cta section css start--------------------------- */

.cta_inner {
  position: relative;
  border-radius: 10px;
  padding: 80px 60px;
  margin: 40px 0;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(111deg, #e4c45b 19.42%, #e9944f 73.08%);
}

.cta_inner h3 {
  color: #fff;
  font-family: var(--primary-font);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 46px;
  margin-bottom: 35px;
  text-transform: capitalize;
}

.cta_inner .subscribe-inner input {
  color: #9f9d9d;
  font-family: var(--secondary-font);
  font-size: 16px;
  font-style: normal;
  width: 15%;
  font-weight: 400;
  line-height: 30px;
  height: 55px;
  border-radius: 55px;
  background: #fff;
}

.cta_inner .subscribe-inner button {
  border-radius: 60px;
  height: 55px;
  background: #0d0d0d;
  flex-shrink: 0;
}

.cta_inner .subscribe-inner button:hover {
  background: transparent;
}

.cta_inner .subscribe-inner .form-group {
  margin-bottom: 0;
}

.cta_inner .cta_shape {
  position: absolute;
  left: 60px;
  bottom: 18px;
  z-index: -99;
}

.cta_inner .cta_image {
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: -99;
}

/* -----------------------------------------------------------------------cta section css end--------------------------- */

.economic-calendar-section {
  padding: 50px 0px;
  background-color: #ffffff;
}

.calendar-header {
  text-align: center;
  margin-bottom: 40px;
}

.calendar-header h2 {
  font-size: 2.5rem;
  color: #222;
  text-align: center;
  margin-bottom: 10px;
}

.calendar-header h2 span {
  color: #1b65af;
}

.calendar-header p {
  color: #666;
  font-size: 1rem;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

/* Tabs */
.calendar-tabs-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: linear-gradient(
    30deg,
    #de9f17 2%,
    #cf9a15 31%,
    #fff68a 68%,
    #ffcf45 96%
  );
  margin-bottom: 30px;
}

.calendar-tabs-wrapper::-webkit-scrollbar {
  height: 6px;
}

.calendar-tabs-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.calendar-tabs-wrapper::-webkit-scrollbar-thumb {
  background-color: linear-gradient(
    30deg,
    #de9f17 2%,
    #cf9a15 31%,
    #fff68a 68%,
    #ffcf45 96%
  );
  border-radius: 5px;
}

.calendar-tabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
  min-width: max-content;
  padding-bottom: 10px;
}

.calendar-tab-button {
  padding: 10px 40px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  background: #e4e6eb;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendar-tab-button:hover,
.calendar-tab-button.active {
  background: #1b65af;
  color: white;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

/* Tab Content */
.calendar-tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.calendar-tab-content.active {
  display: block;
}

/* Table Style */
.table-container {
  overflow-x: auto;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.calendar-table th,
.calendar-table td {
  padding: 10px 20px;
  text-align: left;
  white-space: nowrap;
  font-size: 16px;
}

.calendar-table thead tr {
  background: #f1f3f5;
  border-bottom: 1px solid #eee;
}

.calendar-table th {
  font-weight: 600;
  color: #444;
  font-size: 18px;
}

.calendar-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background 0.3s ease;
}

.calendar-table tbody tr:last-child {
  border-bottom: none;
}

.calendar-table tbody tr:hover {
  background: #f9f9f9;
}


.star-rating-calendar { 
  display: flex;
  gap: 1px;
}
.star-rating-calendar i {
  font-size: 14px;
  color: #DE9F17;
}
.star-filled {
  color: #DE9F17;
}
.star-empty {
  color: #DE9F17;
}
.value-green {
  color: green;
  font-weight: bold;
}




/* Responsive */
@media (max-width: 768px) {
  .table-container {
    overflow-x: auto;
  }

  .calendar-tab-button {
    padding: 7px 30px;
    font-size: 14px;
  }

  .calendar-table th,
  .calendar-table td {
    padding: 10px 30px;
    text-align: left;
    white-space: nowrap;
    font-size: 14px;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------------------------------------------acount type--------------------------------------------------- */

.why-ftm-section {
  background: linear-gradient(to right, #000000, #071d33);
  padding: 30px 0px;
  text-align: center;
  border-top: 5px solid #e3b841;
  border-bottom: 5px solid #e3b841;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.why-ftm-title {
  font-size: 36px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.why-ftm-subtitle {
  font-size: 16px;
  color: #c0d1e3;
  margin-bottom: 50px;
}

.why-ftm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 50px;
}

.why-ftm-card {
  position: relative;
  border-radius: 16px;
  padding: 30px;
  flex: 1 1 220px;
  overflow: hidden;
}

.why-ftm-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 8, 21, 0) 0%,
    #e3b841 50%,
    rgba(0, 8, 21, 0) 100%
  );
  border-radius: 100px;
}

.why-ftm-icon {
  width: 80px;
  height: 80px;
  border: 1px solid #e3b841;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #e3b841;
  font-size: 16px;
}

.icon-green {
  border-color: #e3b841;
  color: #e3b841;
  font-size: 40px;
}

.why-ftm-card-title {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.why-ftm-card-desc {
  font-size: 16px;
  color: #b5c3d6;
}

.why-ftm-button {
  padding: 12px 30px;
  border-radius: 10px;
  background-color: #e3b841;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
  /* border: 2px solid #00cfff; */
}

.why-ftm-button:hover {
  background: #e3b841;
  color: #030303;
}

.funding-main {
    background-color: #f8f8f8;
    padding: 40px 0px 50px;
}

.funding-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    
    width: fit-content;
    margin: 15px auto;
    gap: 50px;
}


.funding-bar span {
  font-weight: 600;
  color: #000000;
  letter-spacing: 1px;
  font-size: 16px;
}

.funding-bar img {
  height: 25px;
}

.payment-box {
    background-color: #ffffff;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    cursor: pointer; /* optional: makes it feel clickable */
}

.payment-box img {
    width: 120px;
    height: fit-content;
}

/* Hover effect */
.payment-box:hover {
    transform: translateY(-5px); /* lift up */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* stronger shadow */
    border-color: #bdbdbd; /* subtle border change */
}


/* Extra Small Devices (max-width: 480px) */
@media (max-width: 480px) {
  .why-ftm-title {
    font-size: 24px;
  }

  .why-ftm-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .why-ftm-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .why-ftm-card {
    padding: 20px;
  }

  .why-ftm-card-title {
    font-size: 18px;
  }

  .why-ftm-card-desc {
    font-size: 14px;
  }

  .why-ftm-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
    margin-bottom: 12px;
  }

  .why-ftm-button {
    font-size: 14px;
    padding: 10px 24px;
  }
}

/* Small Devices (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .why-ftm-title {
    font-size: 28px;
  }

  .why-ftm-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .why-ftm-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 20px;
  }

  .why-ftm-card {
    padding: 24px;
  }

  .why-ftm-card-title {
    font-size: 18px;
  }

  .why-ftm-card-desc {
    font-size: 15px;
  }

  .why-ftm-icon {
    width: 70px;
    height: 70px;
    font-size: 36px;
  }

  .why-ftm-button {
    font-size: 15px;
    padding: 12px 28px;
  }
}

/* Medium Devices (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .why-ftm-title {
    font-size: 32px;
  }

  .why-ftm-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 30px;
  }

  .why-ftm-card {
    padding: 28px;
  }
}

@media (max-width: 767px) {
  .funfact-block-one .count-box {
    font-size: 26px;
    line-height: 40px;
    margin-bottom: 15px;
  }

  .funfact-block-one {
    margin-bottom: 20px;
  }

  .calendar-header h2 {
    font-size: 1.5rem;
  }

  .faq-section h2 {
    font-size: 22px;
  }

  .blog-heading-title {
    margin: 20px 0;
    font-size: 1.8rem;
  }

  .how-does-it-work {
    display: none !important;
  }

  .funding-bar {
    padding: 10px 30px;
    width: fit-content;
    margin: 25px auto;
    gap: 20px;
  }

  .funding-bar span {
    font-size: 13px;
    white-space: nowrap;
  }

  .funding-bar img {
    height: 20px;
  }
}

/* ----------------------------------------------------------Header Style -------------------------------- */

.header-top {
  background-color: #f7f7fb;
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
  /* font-family: 'Segoe UI', sans-serif; */
  font-size: 14px;
}

.header-top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 20px;
}

.header-top-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 15px;
  /* width: 20%; */
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Optional: Translate Plugin override */
.goog-te-gadget {
  font-size: 0 !important;
}

.goog-te-combo {
  font-size: 14px !important;
  padding: 4px 6px;
  color: #333;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* Flag icon */
.flag-icon {
  width: 24px;
  height: 16px;
  background-image: url("https://flagcdn.com/us.svg");
  background-size: cover;
}

.navbar {
  position: static;
  /*position: fixed;*/
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 1000;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.navbar {
  transition: all 0.3s ease;
}

header.navbar.header-fixed {
  -webkit-animation: 0.5s fadeInDown;
  -moz-animation: 0.5s fadeInDown;
  -ms-animation: fadeInDown 0.5s;
  -o-animation: 0.5s fadeInDown;
  animation: 0.5s fadeInDown;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.navbar-container {
  /* max-width: 1800px; */
  width: 100%;
  margin: auto;
  padding: 0px 20px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 10px;
}

.logo img {
  height: fit-content;
  width: 30%;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #0c263a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  font-size: 16px;
}

.nav-links a:hover {
  color: linear-gradient(
    30deg,
    #de9f17 2%,
    #cf9a15 31%,
    #fff68a 68%,
    #ffcf45 96%
  );
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-icons i {
  font-size: 1.2rem;
  background: #1f1f1f;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
}

.btn-register {
  background-color: #1b65af;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 33px;
  font-weight: 500;
  font-size: 16px;
  width: 126px;
  cursor: pointer;
  transition: background 0.3s;
  text-align: center;
}

.btn-register:hover {
  background-color: #1b65af;
}

.btn-signin {
  background: linear-gradient(
    30deg,
    #de9f17 2%,
    #cf9a15 31%,
    #fff68a 68%,
    #ffcf45 96%
  );
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 33px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.mobile-menu-icon {
  display: none;
  font-size: 1.5rem;
  color: black;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-block;
  padding: 10px 0;
  position: relative;
  white-space: nowrap;
}

/* Ensure icon has transition */
.nav-item > a .icon {
  display: inline-block;
  transition: transform 0.3s ease;
  position: relative;
  top: 1px;
  left: 2px;
}

/* Rotate icon on hover */
.nav-item:hover > a .icon {
  transform: rotate(180deg);
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  padding: 4px 0;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
  border-radius: 4px;
}

.dropdown a {
  display: block;
  padding: 3px 16px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.3s;
}

.dropdown a:hover {
  color: #333;
  background: linear-gradient(
    30deg,
    #de9f17 2%,
    #cf9a15 31%,
    #fff68a 68%,
    #ffcf45 96%
  );
}

@media (min-width: 1025px) {
  .nav-item:hover .dropdown {
    display: block;
  }
}

@media (max-width: 1024px) {
  .navbar {
    position: static;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgb(255, 255, 255);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .btn-register {
    margin-top: 20px;
    width: 50%;
  }

  .btn-signin {
    width: 40%;
    margin-top: 30px;
  }

  .navbar-container {
    /* width: 80%; */
  }

  .nav-links,
  .nav-icons {
    display: none;
  }

  .mobile-menu-icon {
    display: inline-block;
    font-size: 25px;
    color: rgb(0, 0, 0);
    cursor: pointer;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #1a1a1a;
    padding: 1rem 2rem;
  }

  .mobile-nav.active {
    display: flex;
  }
}

/* Always define base styles outside media queries */

.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #1a1a1a;
  padding: 1rem 1rem;
}

.mobile-nav a {
  padding: 0.5rem 0;
  color: rgb(10, 10, 10);
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid #333;
  font-size: 18px;
}

.mobile-nav a:hover {
  color: #f1f1f1;
}

.mobile-nav.active {
  display: flex;
  width: 100%;
}

/* Mobile dropdown toggle */
@media (max-width: 1024px) {
  .mobile-nav .dropdown {
    display: none;
    flex-direction: column;
    /* padding-left: 1rem; */
    color: white;
  }

  .logo img {
    height: 40%;
    width: 70%;
  }

  .mobile-nav .nav-item.open .dropdown {
    display: flex;
    padding: 0;
  }

  .mobile-nav .nav-item.open .dropdown a {
    font-size: 14px;
    padding:5px 0;
    border-bottom: #ccc 1px solid;
  }

  .mobile-nav .nav-item.open .dropdown a:last-child {
    border-bottom: none;
  }

  .mobile-nav .nav-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: white;
  }

  .logo img {
    width: 90px;
  }

  .mobile-nav .nav-item > a i {
    transition: transform 0.3s ease;
  }

  .mobile-nav .nav-item.open > a i {
    transform: rotate(180deg);
  }
}

/* Hide mobile menu on large screens */
@media (min-width: 1025px) {
  .mobile-menu-icon {
    display: none;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px;
    width: 30%;
  }

  .mobile-nav {
    display: none !important;
  }
}

@media (min-width: 1280px) {
  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px;
    width: 30%;
  }
}

/* Updated and enhanced header-top styles */

.header-top {
  background: rgb(255, 255, 255);
  /* background-color: #f7f7fb; */
  /* padding: 10px 0; */
  width: 100%;
  font-size: 15px;
  border-bottom: 1px solid #dbdbdb;
  font-family: "Segoe UI", sans-serif;
}

.header-top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  /* gap: 10px; */
}

.header-top-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.header-top-menu li a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 16px;
}

.header-top-menu li a:hover {
  color: #000;
}

.demo-btn {
  gap: 6px;
  font-weight: 600;
  font-size: 16px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  text-decoration: none;
  border-radius: 33px;
  transition: background 0.3s;
}

.demo-btn:hover {
  background-color: #e6f0fa;
  color: #1b65af;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
}

.language-switcher .selected-language-flag {
  width: 24px;
  height: 16px;
  border: 1px solid #1b65af;
  border-radius: 3px;
  font-size: 14px;
  background-size: cover;
  background-position: center;
}

.language-switcher select {
  padding: 5px 8px;
  border: 1px solid #1b65af;
  font-size: 14px;
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer;
}

/* Google Translate Style Override */
.goog-te-gadget {
  font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
  font-size: 14px !important;
  color: #333;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .header-top-wrapper {
    /* flex-direction: column; */
    align-items: center;
    gap: 10px;
  }

  .header-top-menu {
    flex-wrap: wrap;
    gap: 15px;
  }

  .demo-btn {
    margin-top: 0px;
  }

  .language-switcher {
    margin-top: 0px;
  }
}

.language-switcher {
  position: relative;
  /* width: 220px; */
  font-family: Arial, sans-serif;
}

.selected-language {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #1b65af;
  padding: 0px 10px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  width: 127px;
}

.selected-language img {
  width: 20px;
  height: 14px;
  margin-right: 10px;
}

.language-list {
  position: absolute;
  top: 110%;
  left: 0;
  /* width: 100%; */
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 100;
}

.language-option {
  display: flex;
  align-items: center;
  padding: 0px 15px;
  cursor: pointer;
  font-size: 12px;
}

.language-option:hover {
  background-color: #f5f5f5;
}

.language-option img {
  width: 20px;
  height: 14px;
  margin-right: 10px;
}

@media (max-width: 640px) {
  .header-top-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .header-top-menu {
    flex-wrap: wrap;
    gap: 15px;
  }

  .demo-btn {
    margin-top: 0px;
  }

  .language-switcher {
    margin-top: 0px;
  }
}

/* ----------------------------------------------------------global.css Style -------------------------------- */

:root {
  --primary-color: #0d0d0d;
  --secondary-color: #1b65af;
  --theme-color: #1b65af;
  --primary-font: "Poppins", sans-serif;
  --secondary-font: "Poppins", sans-serif;
}

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}

body {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: #6a6a6a;
  background-size: cover;
  font-style: normal;
  font-family: var(--secondary-font);
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-font-smoothing: antialiased;
}

.boxed_wrapper {
  position: relative;
  overflow-x: hidden;
  margin: 0 auto;
  width: 100%;
  background-color: #ffffff;
  min-width: 300px;
}

.container-fulid {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

.container {
  max-width: 1320px;
  width: 100%;
}

a {
  text-decoration: none;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

a:hover {
  text-decoration: none;
  outline: none;
}

input,
button,
select,
textarea {
  font-weight: 400;
  font-size: 14px;
  background: transparent;
}

::-webkit-input-placeholder {
  color: inherit;
}

::-moz-input-placeholder {
  color: inherit;
}

::-ms-input-placeholder {
  color: inherit;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

button:focus,
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
}

p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  color: var(--primary-color);
  font-family: var(--secondary-font);
  text-align: start;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--primary-color);
  font-family: var(--primary-font);
}

h1 {
  font-size: 64px;
  font-weight: 700;
}

h2 {
  font-weight: 600;
  text-align: start;
}

h3 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
}

h4 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

h5 {
  font-size: 20px;
  line-height: 30px;
}

h6 {
  font-size: 16px;
  line-height: 28px;
}

.centred {
  text-align: center;
}

figure {
  margin: 0px;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

/** Defult Form **/

.form-group {
  position: relative;
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  border-radius: 5px;
  padding: 10px 30px;
  font-family: var(--secondary-font);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.form-group textarea {
  height: 170px;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondary-color);
}

/** End Defult Form **/

/** Button Style One **/

.btn_style_one {
  position: relative;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  z-index: 1;
  display: inline-block;
  border-radius: 60px;
  color: var(--bs-white);
  overflow: hidden;
  padding: 10px 25px 10px 25px;
  font-family: var(--primary-font);
  background: linear-gradient(
    30deg,
    #de9f17 2%,
    #cf9a15 31%,
    #fff68a 68%,
    #ffcf45 96%
  );
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.btn_style_one::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  content: "";
  z-index: -1;
  background: linear-gradient(275deg, #1b65af 11.27%, #f5c815 88.73%);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.btn_style_one:hover:before {
  width: 100%;
}

/** End Button Style One **/

.btn_style_two {
  position: relative;
  display: flex;
  padding: 10px 25px 10px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  border-radius: 60px;
  z-index: 1;
  overflow: hidden;
  background: transparent;
  border: 1px solid #fdfb6d;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.btn_style_two span {
  border-radius: 60px;
  background: linear-gradient(106deg, #e7d170 11.27%, #f7f479 88.73%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn_style_two:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  content: "";
  z-index: -1;
  background: #1b65af;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.btn_style_two:hover:before {
  height: 100%;
}

.btn_style_two:hover span {
  background: #ffffff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tabs-box .tab {
  position: relative;
  display: none;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.tabs-box .tab.active-tab {
  display: block;
}

.tabs-box .tab {
  transform: scale(0.9, 0.9) translateY(0px);
}

.tabs-box .tab.active-tab {
  transform: scale(1) translateY(0px);
}

.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-y;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-y;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-y;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.float-bob-x {
  animation-name: float-bob-x;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-x;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-x;
  -moz-animation-duration: 15s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-x;
  -ms-animation-duration: 15s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-x;
  -o-animation-duration: 15s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Preloader */

/* Loader Container */
#loading {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
}

#loading-center {
  position: relative;
  width: 100%;
  height: 100%;
}

.preloader {
  background: url(../images/icons/logo.png) no-repeat center;
  background-size: 90px;
  width: 150px;
  height: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.preloader::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #0c1387;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ====loader end ==== */

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links li a {
  display: inline-block;
  font-size: 15px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.social-links li a:hover {
  border-color: #e7df70;
}

.social-links li a i {
  font-size: 24px;
  line-height: 43px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.social-links li a:hover i {
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(-45deg, #1b65af, #1b65af 100%);
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_50 {
  margin-bottom: 50px;
}

.mb_60 {
  margin-bottom: 60px;
}

.pt_150 {
  padding-top: 150px;
}

.pb_150 {
  padding-bottom: 150px;
}

.pb_100 {
  padding-bottom: 100px;
}

.pb_120 {
  padding-bottom: 120px;
}

.tag_text {
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  padding: 5px 18px;
  margin-bottom: 12px;
  background: rgba(253, 227, 112, 0.1);
}

.tag_text h6 {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.35px;
  font-family: var(--primary-font);
  text-transform: uppercase;
  background: #1b65af;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section_title {
  margin-bottom: 50px;
}

.section_title h2 {
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px;
  text-transform: capitalize;
}

.section_title.light h2 {
  color: var(--bs-white);
}

.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav {
  display: none !important;
}

.owl-theme.owl-dots-one .owl-dots {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.owl-theme.owl-dots-one .owl-dot {
  position: relative;
}

.owl-theme.owl-dots-one .owl-dot span {
  width: 14px;
  height: 14px;
  display: block;
  margin: 0px;
  border-radius: 50%;
  border: 1.5px solid #0d0d0d;
  background: #fff;
  transition: opacity 200ms ease 0s;
}

.owl-theme.owl-dots-one .owl-dot.active span {
  width: 22px;
  height: 22px;
  text-align: center;
  border-radius: 50%;
  border-color: D1A700;
  background: #ffffff;
}

.owl-theme.owl-dots-one .owl-dot:before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 14px;
  height: 14px;
  content: "";
  text-align: center;
  border-radius: 50%;
  background-color: #1b65af;
  visibility: hidden;
}

.owl-theme.owl-dots-one .owl-dot.active:before {
  position: absolute;
  top: 4px;
  left: 4px;
  visibility: visible;
}

.owl-theme.nav-style-one .owl-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.owl-theme.nav-style-one .owl-nav button {
  width: 60px;
  height: 60px;
  font-size: 16px;
  line-height: 60px;
  border-radius: 60px;
  text-align: center;
  color: #0d0d0d;
  border: 1px solid #0d0d0d;
  background: #fff;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.owl-theme.nav-style-one .owl-nav button:hover {
  color: D1A700;
  border: 1px solid D1A700;
}

.owl-theme.nav-style-one .owl-nav button.owl-prev {
  transform: rotate(180deg);
}

.accordion_box .block .acc-content {
  display: none;
}

.accordion_box .block .acc-content.current {
  display: block;
}

.pagination {
  position: relative;
  display: block;
}

.pagination li {
  position: relative;
  display: inline-block;
  margin: 0px;
}

.pagination li a,
.pagination li span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  height: 46px;
  width: 46px;
  line-height: 50px;
  background: #fff;
  font-weight: 600;
  border-radius: 50%;
  text-align: center;
  color: #1d165c;
  box-shadow: 0 0px 30px 5px rgb(228 228 238 / 0%);
  transition: all 500ms ease;
}

.pagination li a:focus,
.pagination li a:hover,
.pagination li span:focus,
.pagination li span:hover,
.pagination li span.current {
  color: #ffffff;
  background: linear-gradient(106deg, #1b65af 11.27%, #1b65af 88.73%);
}

/* ----------------------------------------------------------footer css Style -------------------------------- */

.footer__area-one {
  position: relative;
  z-index: 1;
  padding: 60px 0px 0;
  overflow: hidden;
  background-image: url("https://mockup.xelansmarkets.com/assets/images/background/footerbg.jpg");
  background-size: cover;
  background-position: center;
}

.footer__area-one::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #004f91cc;
  /* Semi-transparent overlay */
  z-index: 0;
}

/* Ensure content inside appears above overlay */
.footer__area-one > * {
  position: relative;
  z-index: 1;
}

.footer__logo img {
  max-height: 100px;
  padding: 8px 12px;
  border-radius: 10px;
  display: block;
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  /* margin: 0 auto; */
}

.footer__widget-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #f5f5f5;
  text-transform: uppercase;
  position: relative;
  text-align: left;
}

.footer__content {
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer__links .list-wrap {
  list-style: none;
  padding-left: 0;
  text-align: start;
  margin: 0;
}

.footer__links .list-wrap li {
  margin-bottom: 10px;
}

.footer__links .list-wrap li a {
  color: #fff9f9;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  position: relative;
  padding-left: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer__links .list-wrap li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: linear-gradient(
    30deg,
    #de9f17 2%,
    #cf9a15 31%,
    #fff68a 68%,
    #ffcf45 96%
  );
  border-radius: 50%;
  opacity: 0.6;
}

.footer__links .list-wrap li a:hover {
  color: #fff;
  padding-left: 20px;
}

.footer__bottom {
  color: #888888;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__bottom a {
  color: linear-gradient(
    30deg,
    #de9f17 2%,
    #cf9a15 31%,
    #fff68a 68%,
    #ffcf45 96%
  );
  text-decoration: none;
}

.footer__bottom a:hover {
  color: #fff;
}

.footer__copyright {
  margin: 8px 0;
  text-align: center;
  font-size: 12px;
  color: #ccc;
}

.xelans-footer-legal p {
  font-size: 14px;
  color: #d5d5d5;
  text-align: start;
  margin: 0;
  line-height: 2.1;
}
/* ------------------------ Social Links ------------------------ */
.social-links ul {
  display: flex;
  gap: 12px;
  padding-left: 0;
  list-style: none;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.social-links a {
  background: #1e2a27;
  color: #fffcfc;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 15px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(
    30deg,
    #de9f17 2%,
    #cf9a15 31%,
    #fff68a 68%,
    #ffcf45 96%
  );
  color: #000;
  transform: scale(1.1);
}

/* ------------------------ Responsive Media Queries ------------------------ */

/* Tablet Devices (768px - 1024px) */
@media (max-width: 1024px) {
  .footer__area-one {
    padding: 60px 20px 25px;
  }

  .footer__widget-title {
    font-size: 17px;
    /* text-align: center; */
  }

  .footer__content {
    font-size: 13.5px;
    text-align: center;
  }

  .footer__links .list-wrap li a {
    font-size: 15px;
  }

  .social-links ul {
    justify-content: center;
    gap: 10px;
  }

  .social-links a {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
}

/* Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {
  .footer__area-one {
    padding: 50px 15px 20px;
  }

  .footer__logo img {
    max-height: 60px;
  }

  .footer__widget-title {
    font-size: 16px;
  }

  .footer__content {
    font-size: 13px;
  }

  .footer__links .list-wrap li a {
    font-size: 14.5px;
    padding-left: 18px;
  }

  .footer__bottom {
    font-size: 12px;
  }

  .social-links a {
    width: 32px;
    height: 32px;
    font-size: 13.5px;
  }
  
  .calendar-table iframe {
    width: 1200px;
}


}

/* Extra Small Devices (max-width: 480px) */
@media (max-width: 480px) {
    
  .actionButtons button {
    padding: 5px 25px;
    white-space: nowrap;
}
  .footer__widget-title {
    font-size: 15px;
  }

  .footer__content,
  .footer__bottom,
  .footer__copyright {
    font-size: 12.5px;
  }

  .footer__links .list-wrap li a {
    font-size: 14px;
  }

  .social-links a {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
}
