
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* marquee */
/* .ticker-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
  }

  .site-header {
    background-color: #0d6efd;
    padding: 10px 0;
    color: white;
    text-align: center;
  }

  @media (max-width: 768px) {
    .ticker-container {
      padding: 10px;
    }
  } */
   /* marquee-section-container */
   .marquee-section-container {
    background: #fff;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }

  .marquee-section-track {
    display: flex;
    width: max-content;
    animation: marquee-section-scroll 60s linear infinite;
  }

  .marquee-section-container:hover .marquee-section-track {
    animation-play-state: paused;
  }

  .marquee-section-item {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-left: 5px solid red;
    border-radius: 5px;
    padding: 5px 15px;
    margin: 0 10px;
    min-width: 180px;
    box-sizing: border-box;
  }

  .marquee-section-positive {
    border-left-color: green;
  }

  .marquee-section-stock-name {
    font-weight: bold;
    color: #000;
  }

  .marquee-section-stock-value {
    margin-left: 8px;
  }

  .marquee-section-stock-change {
    display: inline-block;
    margin-left: 8px;
  }

  .marquee-section-red {
    color: red;
  }

  .marquee-section-green {
    color: green;
  }

  @keyframes marquee-section-scroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
  }

  @media (max-width: 600px) {
    .marquee-section-item {
      padding: 5px 10px;
      font-size: 13px;
    }
  }
  /* home-refresh-pop-up-section */
  .home-refresh-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    padding: 15px;
    overflow: hidden;
  }
  
  .home-refresh-popup-container {
    position: relative;
    width: 90%;
    max-width: 370px;
    height: auto;
    aspect-ratio: 1 / 1; /* Keep it square-like */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    background: transparent;
  }
  
  .home-refresh-popup-image-box {
    width: 100%;
    height: 100%;
    background: url('img/pop-up-2.png') no-repeat center center;
    background-size: cover;
  }
  
  .home-refresh-popup-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 1.8rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
  }
  
  .home-refresh-popup-close:hover {
    color: #ff4d4d;
  }
  
  /* Responsive Tweaks */
  @media (max-width: 500px) {
    .home-refresh-popup-container {
      max-width: 90%;
      aspect-ratio: 1 / 1;
    }
  
    .home-refresh-popup-close {
      font-size: 1.5rem;
    }
  }
  /* customise-btn-section-container */
  .customise-button-section-fixed {
    position: fixed;
    top: 35%;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
  }
  
  .customise-button-section-vertical {
    background-color: #0066cc;
    border: none;
    border-radius: 40px;
    padding: 8px 6px; /* Reduced padding for height */
    width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  
  .customise-button-section-vertical:hover {
    background-color: #004d99;
    transform: scale(1.05);
  }
  
  .customise-button-section-icon-circle {
    background-color: rgba(0, 0, 0, 0.15);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
  }
  
  .customise-button-section-icon-circle i {
    color: white;
    font-size: 16px;
  }
  
  .customise-button-section-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
  }
  
  @media (max-width: 480px) {
    .customise-button-section-vertical {
      width: 42px;
      padding: 6px 4px; /* Further reduced padding for mobile */
    }
  
    .customise-button-section-icon-circle {
      width: 26px;
      height: 26px;
    }
  
    .customise-button-section-icon-circle i {
      font-size: 14px;
    }
  
    .customise-button-section-text {
      font-size: 11px;
    }
  }
  /* home-currency-section */
  
  /* navbar */
  /* Navbar Container */
.navbar-main {
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Navbar Links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar-link {
  display: inline-block;
  padding: 10px 0;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.navbar-link:hover,
.navbar-item:hover > .navbar-link {
  color: #007bff;
}

/* Items */
.navbar-item {
  position: relative;
  list-style: none;
}

.navbar-dropdown,
.navbar-subdropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  padding: 0;
  list-style: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  z-index: 999;
}

/* Subdropdown to the right */
.navbar-subdropdown {
  left: 100%;
  top: 0;
}

/* Show dropdowns on hover (desktop) */
.navbar-item:hover > .navbar-dropdown,
.navbar-subitem:hover > .navbar-subdropdown {
  display: block;
}

/* Always show dropdown when .show class is added (mobile JS toggle) */
.navbar-item.show > .navbar-dropdown,
.navbar-subitem.show > .navbar-subdropdown {
  display: block;
}

/* List items inside dropdowns */
.navbar-dropdown li,
.navbar-subdropdown li {
  list-style: none;
}

/* Dropdown Links */
.navbar-dropdown .navbar-link,
.navbar-subdropdown .navbar-link {
  padding: 10px 15px;
  display: block;
  white-space: nowrap;
  color: #333;
  transition: background 0.3s ease;
}

.navbar-dropdown .navbar-link:hover,
.navbar-subdropdown .navbar-link:hover {
  background: #f8f9fa;
  color: #007bff;
}

/* Media Query for Mobile */
@media (max-width: 1024px) {
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .navbar-dropdown,
  .navbar-subdropdown {
    position: static;
    box-shadow: none;
    padding-left: 20px;
    display: none;
  }

  .navbar-item.show > .navbar-dropdown,
  .navbar-subitem.show > .navbar-subdropdown {
    display: block;
  }

  .navbar-link {
    padding: 10px 15px;
  }

  .navbar-toggler {
    display: block;
  }

  .collapse.navbar-collapse {
    display: none;
  }

  .collapse.navbar-collapse.show {
    display: block;
    width: 100%;
  }
}

  
  /* DASHBOARD-hero-section */
 /* Hero Section Styling */
/* Hero Section Styling */
/* Background Video */
.DASHBOARD-hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Dark overlay for readability */
.DASHBOARD-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/* Wrapper */
.DASHBOARD-hero-section-wrapper {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  text-align: center;
  overflow: hidden;
  color: white;
}

/* Content */
.DASHBOARD-hero-section-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  z-index: 1;
}

.DASHBOARD-hero-section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

.DASHBOARD-hero-section-subtitle {
  font-size: 1.4rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

.DASHBOARD-hero-section-btn {
  background-color: #00c9a7;
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

.DASHBOARD-hero-section-btn:hover {
  background-color: #00a98e;
}

/* Modal Styling */
.DASHBOARD-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.DASHBOARD-modal-content {
  background-color: #fff;
  padding: 30px;
  margin: 15% auto;
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
  text-align: left;
}

.DASHBOARD-close {
  color: #aaa;
  font-size: 30px;
  font-weight: bold;
  float: right;
  cursor: pointer;
}

.DASHBOARD-close:hover,
.DASHBOARD-close:focus {
  color: black;
}

.DASHBOARD-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.DASHBOARD-inquiry-form input,
.DASHBOARD-inquiry-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  font-size: 1rem;
}

.DASHBOARD-inquiry-form button {
  background-color: #00c9a7;
  border: none;
  padding: 12px;
  font-size: 1.1rem;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.DASHBOARD-inquiry-form button:hover {
  background-color: #00a98e;
}

/* Responsive */
@media (max-width: 1024px) {
  .DASHBOARD-hero-section-title {
    font-size: 2.5rem;
  }

  .DASHBOARD-hero-section-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .DASHBOARD-hero-section-title {
    font-size: 2.2rem;
  }

  .DASHBOARD-hero-section-subtitle {
    font-size: 1.1rem;
  }

  .DASHBOARD-hero-section-btn {
    padding: 10px 25px;
    font-size: 1rem;
  }

  .DASHBOARD-modal-content {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .DASHBOARD-hero-section-title {
    font-size: 2rem;
  }

  .DASHBOARD-hero-section-subtitle {
    font-size: 1rem;
  }

  .DASHBOARD-hero-section-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .DASHBOARD-inquiry-form input,
  .DASHBOARD-inquiry-form textarea {
    padding: 10px;
    font-size: 1rem;
  }
}


  /* Dashboard-Investment-section */
  /* Base */
.Dashboard-Investment-section {
    background: linear-gradient(135deg, #f0f4ff, #e9ecf3);
    padding: 80px 15px;
    font-family: 'Poppins', sans-serif;
  }
  
  /* Left Card Glass Effect */
  .Dashboard-Investment-box {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .Dashboard-Investment-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  }
  
  /* Text */
  .Dashboard-Investment-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f2b46;
    margin-bottom: 20px;
  }
  .Dashboard-Investment-title span {
    color: #2b55fb;
  }
  .Dashboard-Investment-subtitle {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  /* Form */
  .Dashboard-Investment-form input {
    height: 48px;
    font-size: 1rem;
    border-radius: 8px;
  }
  .Dashboard-Investment-button {
    background: #2b55fb;
    color: #fff;
    height: 48px;
    font-size: 1rem;
    border-radius: 8px;
    transition: background 0.3s ease;
  }
  .Dashboard-Investment-button:hover {
    background: #1832b0;
  }
  
  /* Stats */
  .Dashboard-Investment-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.95rem;
    color: #111;
  }
  
  /* Right Side Image */
  .img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .img-wrapper img {
    width: 100%;
    border-radius: 16px;
    transition: transform 0.5s ease;
  }
  .img-wrapper:hover img {
    transform: scale(1.05);
  }
  .img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    color: #fff;
    font-size: 1rem;
  }
  
  /* Animations */
  .animate-fade-in {
    animation: fadeInUp 1s ease-out forwards;
  }
  .animate-slide-in {
    animation: slideInRight 1s ease-out forwards;
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(60px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .Dashboard-Investment-title {
      font-size: 1.6rem;
    }
    .Dashboard-Investment-subtitle {
      font-size: 1rem;
    }
    .Dashboard-Investment-box {
      padding: 25px;
    }
    .img-overlay p {
      font-size: 0.9rem;
    }
  }
  /* Transparent-pricing-section */
  /* Base Section */
.Transparent-pricing-section {
    padding: 40px 20px;
    background: linear-gradient(to right, #f3f9ff, #eef3fc);
    text-align: center;
  }
  
  .Transparent-pricing-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1d2a4d;
    text-transform: uppercase;
  }
  
  /* Cards */
  .Transparent-pricing-section-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .Transparent-pricing-section-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }
  
  .Transparent-pricing-section-card h3 {
    font-size: 2.5rem;
    color: #2b55fb;
    margin-bottom: 10px;
    font-weight: 800;
  }
  
  .Transparent-pricing-section-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
  }
  
  /* Button */
  .Transparent-pricing-section-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2b55fb;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .Transparent-pricing-section-button:hover {
    background-color: #1a3fd4;
    transform: scale(1.05);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .Transparent-pricing-section-title {
      font-size: 1.6rem;
    }
  
    .Transparent-pricing-section-card h3 {
      font-size: 2rem;
    }
  
    .Transparent-pricing-section-card p {
      font-size: 0.95rem;
    }
  }
  /* Seamless-Investing-section */
  .Seamless-Investing-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #f4f8ff, #e9f0ff);
    font-family: 'Poppins', sans-serif;
  }
  
  .Seamless-Investing-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f2b46;
  }
  
  .Seamless-Investing-section-title span {
    color: #2b55fb;
  }
  
  .Seamless-Investing-section-subtitle {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  
  .Seamless-Investing-section-highlight {
    background: #e6edff;
    padding: 20px;
    border-left: 5px solid #2b55fb;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
  }
  .Seamless-Investing-section-highlight:hover {
    transform: translateY(-5px);
  }
  
  .Seamless-Investing-section-highlight h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2b55fb;
  }
  
  .Seamless-Investing-section-highlight p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
  }
  
  .Seamless-Investing-section-features {
    list-style: none;
    padding-left: 0;
  }
  .Seamless-Investing-section-features li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #222;
  }
  
  .Seamless-Investing-section-slider {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .Seamless-Investing-section-img {
    width: 100%;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1s ease;
    border-radius: 20px;
  }
  .Seamless-Investing-section-img.active {
    display: block;
    position: relative;
    opacity: 1;
    z-index: 1;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .Seamless-Investing-section-title {
      font-size: 1.6rem;
    }
    .Seamless-Investing-section-subtitle {
      font-size: 1rem;
    }
    .Seamless-Investing-section-highlight {
      padding: 15px;
    }
  }
  /* Built-for-Traders-section */
  .Built-for-Traders-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f4faff, #eaf0ff);
    font-family: 'Poppins', sans-serif;
  }
  
  .Built-for-Traders-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f2b46;
  }
  .Built-for-Traders-section-title span {
    color: #2b55fb;
  }
  .Built-for-Traders-section-subtitle {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  
  /* Feature Boxes */
  .Built-for-Traders-section-feature {
    background: #fff;
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .Built-for-Traders-section-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }
  .Built-for-Traders-section-feature h5 {
    margin-bottom: 10px;
    font-weight: 600;
    color: #2b55fb;
  }
  .Built-for-Traders-section-feature p {
    margin: 0;
    color: #333;
    font-size: 0.96rem;
  }
  .Built-for-Traders-section-feature.highlight {
    background: #edf1ff;
    border-left: 4px solid #2b55fb;
  }
  
  /* Image Slider */
  .Built-for-Traders-section-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .Built-for-Traders-section-img {
    width: 100%;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1s ease;
    border-radius: 20px;
  }
  .Built-for-Traders-section-img.active {
    display: block;
    position: relative;
    opacity: 1;
    z-index: 1;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .Built-for-Traders-section-title {
      font-size: 1.6rem;
    }
    .Built-for-Traders-section-subtitle {
      font-size: 1rem;
    }
    .Built-for-Traders-section-feature {
      padding: 15px 20px;
    }
  }
  /* preferred-investment-section */
  /* Section Styling */
.preferred-investment-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f4f8fc, #eaf1ff);
    font-family: 'Poppins', sans-serif;
  }
  
  .preferred-investment-section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f2b46;
  }
  
  .preferred-investment-section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Grid Styling */
  .preferred-investment-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  /* Card Styling */
  .preferred-investment-section-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .preferred-investment-section-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }
  
  /* Icon Styling */
  .preferred-investment-section-icon {
    font-size: 2.5rem;
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
  }
  .preferred-investment-section-card:hover .preferred-investment-section-icon {
    transform: scale(1.2);
  }
  
  /* Text */
  .preferred-investment-section-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2b55fb;
    margin-bottom: 10px;
  }
  .preferred-investment-section-card p {
    font-size: 0.95rem;
    color: #333;
  }
  
  /* Icon Color Themes */
  .green { background-color: #e3fcef; color: #0e9f6e; }
  .orange { background-color: #fff3e6; color: #f77e17; }
  .red { background-color: #ffe6e6; color: #d33a2c; }
  .violet { background-color: #f3e6ff; color: #7a00cc; }
  .teal { background-color: #e6f9f8; color: #0fb9b1; }
  
  /* Tablet View */
  @media (max-width: 992px) {
    .preferred-investment-section-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Mobile View */
  @media (max-width: 576px) {
    .preferred-investment-section-grid {
      grid-template-columns: 1fr;
    }
  
    .preferred-investment-section-title {
      font-size: 1.8rem;
    }
  
    .preferred-investment-section-subtitle {
      font-size: 1rem;
    }
  
    .preferred-investment-section-icon {
      font-size: 2rem;
    }
  }
  /* earn-with-section */
  .earn-with-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f9fcff, #eef4fb);
    font-family: 'Poppins', sans-serif;
  }
  
  .earn-with-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f2b46;
    margin-bottom: 20px;
  }
  
  .earn-with-section-subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .earn-with-section-box {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #e0e8f0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
  }
  .earn-with-section-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  }
  
  .earn-with-section-box h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2b55fb;
    margin-bottom: 8px;
  }
  
  .earn-with-section-box p {
    font-size: 0.95rem;
    color: #333;
    margin: 0;
  }
  
  .earn-with-section-image img {
    max-width: 500px;
    width: 100%;
    border-radius: 16px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .earn-with-section-title {
      font-size: 1.6rem;
    }
    .earn-with-section-subtitle {
      font-size: 1rem;
    }
    .earn-with-section-box {
      padding: 18px;
    }
  }
  /* stock-marketing-20 */
  .stock-marketing-20-title {
    padding-top: 10px;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #0f2b46;
    margin-bottom: 30px;
  }

  .stock-marketing-20-button-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .stock-marketing-20-btn {
    min-width: 160px;
    padding: 10px 20px;
    margin:5px;
    margin-bottom:20px;
    font-weight: 500;
    background-color: #2b55fb;
    border: none;
    color: white;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }

  .stock-marketing-20-btn:hover {
    background-color: #183bbb;
  }

  .stock-marketing-20-modal-body {
    padding: 0;
  }

  @media (max-width: 576px) {
    .stock-marketing-20-btn {
      width: 100%;
    }

    .stock-marketing-20-modal-title {
      font-size: 1rem;
    }
  }
  /* stock-hans-section */
  .stock-hans-section-wrapper {
    padding: 50px 20px;
    background: #f8f9fc;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .stock-hans-section-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
  }
  
  .stock-hans-section-heading p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
  }
  
  .stock-hans-section-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .stock-hans-section-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 25px 20px;
    width: 220px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .stock-hans-section-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  
  .stock-hans-section-card i {
    font-size: 2.4rem;
    color: #0066ff;
    margin-bottom: 15px;
  }
  
  .stock-hans-section-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
  }
  
  .stock-hans-section-readmore {
    margin-top: 30px;
  }
  
  .stock-hans-section-readmore a {
    font-weight: bold;
    text-decoration: none;
    color: #0066ff;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
  }
  
  .stock-hans-section-readmore a:hover {
    border-color: #0066ff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .stock-hans-section-card {
      width: 100%;
      max-width: 320px;
    }
  }
  
  /* Legacy-section-wrapper */
  .Legacy-section-wrapper {
    background: radial-gradient(circle at center, #0d1b2a, #1b263b);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .Legacy-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #ffffff;
  }
  
  .Legacy-section-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 50px;
  }
  
  .Legacy-section-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .Legacy-section-card {
    background: #112031;
    border: 2px solid #31425b;
    border-radius: 15px;
    padding: 25px 20px;
    width: 200px;
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  }
  
  .Legacy-section-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: #1a2e45;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
  }
  
  .Legacy-section-card i {
    font-size: 2.5rem;
    color: #f1c40f;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 4px #ffcc00);
  }
  
  .Legacy-section-card h3 {
    font-size: 1.8rem;
    margin: 0;
    color: #f1c40f;
  }
  
  .Legacy-section-card p {
    font-size: 0.95rem;
    margin-top: 8px;
    color: #cbd5e1;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .Legacy-section-card {
      width: 100%;
      max-width: 300px;
    }
  
    .Legacy-section-title {
      font-size: 2rem;
    }
  }
  
  /* Account-Opening-section-wrapper */
  .Account-Opening-section-wrapper {
    background: linear-gradient(to right, #3b5cff, #6b8eff);
    color: #fff;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .Account-Opening-section-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
  }
  
  .Account-Opening-section-left {
    flex: 1;
    min-width: 280px;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .Account-Opening-section-image {
    width: 250px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .Account-Opening-section-image:hover {
    transform: scale(1.05);
  }
  
  .Account-Opening-section-downloads {
    margin-top: 15px;
  }
  
  .Account-Opening-section-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffd700;
  }
  
  .Account-Opening-section-text {
    display: block;
    font-size: 1rem;
    margin-top: 5px;
  }
  
  .Account-Opening-section-right {
    flex: 1;
    min-width: 300px;
    padding: 20px;
  }
  
  .Account-Opening-section-right h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .Account-Opening-section-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
  
  .Account-Opening-section-form input {
    flex: 1;
    padding: 10px 15px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 1rem;
  }
  
  .Account-Opening-section-form button {
    background: #fff;
    color: #3b5cff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .Account-Opening-section-form button:hover {
    background-color: #ffd700;
    color: #000;
  }
  
  .Account-Opening-section-store {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .Account-Opening-section-store img {
    width: 60px;
  }
  
  .Account-Opening-section-store-icons img {
    width: 120px;
    margin: 5px 0;
    transition: transform 0.3s ease;
  }
  
  .Account-Opening-section-store-icons img:hover {
    transform: scale(1.05);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .Account-Opening-section-container {
      flex-direction: column;
      text-align: center;
    }
  
    .Account-Opening-section-form {
      flex-direction: column;
    }
  
    .Account-Opening-section-form input,
    .Account-Opening-section-form button {
      width: 100%;
    }
  
    .Account-Opening-section-store {
      justify-content: center;
    }
  }
  /* footer-section */
  .footer-section {
    background-color: #1b1e25;
    color: #dcdcdc;
    padding: 40px 20px 15px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .footer-container {
    max-width: 1400px;
    margin: auto;
  }
  
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  
  .footer-col {
    flex: 1 1 200px;
    min-width: 180px;
  }
  
  .footer-title {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: bold;
  }
  
  .footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
  }
  
  .footer-col ul li a {
    color: #dcdcdc;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-col ul li a:hover {
    color: #00bcd4;
    padding-left: 5px;
  }
  
  .footer-contact li {
    line-height: 1.6;
    font-size: 0.92rem;
  }
  
  .footer-social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #dcdcdc;
    font-size: 1.2rem;
    transition: 0.3s ease;
  }
  
  .footer-social-icons a:hover {
    color: #00bcd4;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: #999;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  
  .footer-developed-link {
    color: #f1c40f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .footer-developed-link:hover {
    color: #ffdd57;
    text-decoration: underline;
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .footer-row {
      flex-wrap: wrap;
      gap: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .footer-col {
      flex: 1 1 45%;
    }
  }
  
  @media (max-width: 480px) {
    .footer-col {
      flex: 1 1 100%;
    }
  
    .footer-title {
      font-size: 1.1rem;
    }
  
    .footer-description {
      font-size: 0.9rem;
    }
  }
  
  /* about page  */
  /* about-hero-section-wrapper */
  /* Wrapper for the hero section */
.about-hero-section-wrapper {
  width: 100%;
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background video styling */
.about-hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Dark overlay for readability */
.about-hero-section-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}

/* Content wrapper */
.about-hero-section-content {
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
}

/* Title styling */
.about-hero-section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #00bcd4;
}

/* Subtitle styling */
.about-hero-section-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Button styling */
.about-hero-section-btn {
  padding: 12px 30px;
  background: #00bcd4;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

.about-hero-section-btn:hover {
  background: #ffffff;
  color: #00bcd4;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

/* Responsive styles */
@media (max-width: 992px) {
  .about-hero-section-title {
    font-size: 2.5rem;
  }

  .about-hero-section-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .about-hero-section-title {
    font-size: 2rem;
  }

  .about-hero-section-subtitle {
    font-size: 1rem;
  }

  .about-hero-section-btn {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}

  /* about-WHY-CHOOSE-section */
  .about-WHY-CHOOSE-section {
    width: 100%;
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .about-WHY-CHOOSE-container {
    max-width: 1000px;
    margin: auto;
  }
  
  .about-WHY-CHOOSE-heading {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
    transition: color 0.3s ease;
  }
  
  .about-WHY-CHOOSE-motto {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 10px;
    position: relative;
  }
  
  .about-WHY-CHOOSE-bold {
    font-weight: bold;
  }
  
  .about-WHY-CHOOSE-highlight {
    color: #005eff;
    font-weight: 500;
  }
  
  .about-WHY-CHOOSE-underline {
    display: block;
    height: 2px;
    width: 60px;
    background-color: #005eff;
    margin: 10px auto 0;
    transition: width 0.4s ease;
  }
  
  .about-WHY-CHOOSE-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-top: 20px;
    transition: all 0.3s ease;
  }
  
  /* Hover Effects */
  .about-WHY-CHOOSE-container:hover .about-WHY-CHOOSE-heading {
    color: #005eff;
  }
  
  .about-WHY-CHOOSE-container:hover .about-WHY-CHOOSE-underline {
    width: 100px;
  }
  
  .about-WHY-CHOOSE-container:hover .about-WHY-CHOOSE-text {
    color: #333;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .about-WHY-CHOOSE-heading {
      font-size: 2rem;
    }
  
    .about-WHY-CHOOSE-motto {
      font-size: 1.1rem;
    }
  
    .about-WHY-CHOOSE-text {
      font-size: 1rem;
      padding: 0 10px;
    }
  }
  
  @media (max-width: 480px) {
    .about-WHY-CHOOSE-heading {
      font-size: 1.7rem;
    }
  
    .about-WHY-CHOOSE-text {
      font-size: 0.95rem;
    }
  
    .about-WHY-CHOOSE-underline {
      width: 40px;
    }
  }
  /* about-leadership-section */
  .about-leadership-section {
    width: 100%;
    padding: 40px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .about-leadership-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  
  .about-leadership-content {
    flex: 1 1 55%;
  }
  
  .about-leadership-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1c1c1c;
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
    transition: color 0.3s ease;
  }
  
  .about-leadership-title:hover {
    color: #005eff;
  }
  
  .about-leadership-underline {
    display: block;
    width: 60px;
    height: 3px;
    background: #005eff;
    margin-top: 10px;
    transition: width 0.3s ease;
  }
  
  .about-leadership-title:hover .about-leadership-underline {
    width: 100px;
  }
  
  .about-leadership-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    transition: color 0.3s ease;
  }
  
  .about-leadership-content:hover .about-leadership-text {
    color: #222;
  }
  
  .about-leadership-image-box {
    flex: 1 1 35%;
    text-align: center;
  }
  
  .about-leadership-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .about-leadership-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 94, 255, 0.3);
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .about-leadership-title {
      font-size: 2rem;
    }
  
    .about-leadership-text {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 768px) {
    .about-leadership-container {
      flex-direction: column;
      text-align: center;
    }
  
    .about-leadership-content,
    .about-leadership-image-box {
      flex: 1 1 100%;
    }
  
    .about-leadership-title {
      font-size: 1.8rem;
    }
  
    .about-leadership-text {
      font-size: 0.95rem;
    }
  }
  /* Solutions-at-Delify-section */
  .Solutions-at-Delify-section {
    padding: 40px 20px;
    background: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .Solutions-at-Delify-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
  
  .Solutions-at-Delify-column {
    flex: 1 1 45%;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .Solutions-at-Delify-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 94, 255, 0.1);
  }
  
  .Solutions-at-Delify-heading {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1c1c1c;
    text-align: center;
    position: relative;
  }
  
  .Solutions-at-Delify-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #005eff;
    margin: 10px auto 0;
    transition: width 0.3s ease;
  }
  
  .Solutions-at-Delify-column:hover .Solutions-at-Delify-heading::after {
    width: 70px;
  }
  
  .Solutions-at-Delify-list {
    list-style: none;
    padding-left: 0;
  }
  
  .Solutions-at-Delify-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #444;
    position: relative;
    padding-left: 20px;
    transition: all 0.3s ease;
  }
  
  .Solutions-at-Delify-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #005eff;
    font-size: 1.2rem;
    line-height: 1;
  }
  
  .Solutions-at-Delify-list li:hover {
    color: #005eff;
    transform: translateX(5px);
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .Solutions-at-Delify-heading {
      font-size: 1.6rem;
    }
  
    .Solutions-at-Delify-list li {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 600px) {
    .Solutions-at-Delify-container {
      flex-direction: column;
    }
  
    .Solutions-at-Delify-column {
      flex: 1 1 100%;
      margin-bottom: 20px;
    }
  
    .Solutions-at-Delify-heading::after {
      width: 40px;
    }
  }
  /* about-Solid-Research-section */
  .about-Solid-Research-section {
    padding: 40px 20px;
    background-color: #f4f9fc;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .about-Solid-Research-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  
  .about-Solid-Research-left {
    flex: 1 1 55%;
  }
  
  .about-Solid-Research-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #003b73;
    position: relative;
    display: inline-block;
  }
  
  .about-Solid-Research-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #007bff;
    margin-top: 8px;
    transition: width 0.3s ease;
  }
  
  .about-Solid-Research-left:hover .about-Solid-Research-title::after {
    width: 100px;
  }
  
  .about-Solid-Research-list {
    list-style: none;
    padding-left: 0;
  }
  
  .about-Solid-Research-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: #333;
    transition: all 0.3s ease;
  }
  
  .about-Solid-Research-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #007bff;
    font-size: 1rem;
  }
  
  .about-Solid-Research-list li:hover {
    color: #007bff;
    transform: translateX(5px);
  }
  
  .about-Solid-Research-right {
    flex: 1 1 40%;
    text-align: center;
  }
  
  .about-Solid-Research-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .about-Solid-Research-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.4);
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .about-Solid-Research-title {
      font-size: 2rem;
    }
  
    .about-Solid-Research-list li {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 768px) {
    .about-Solid-Research-container {
      flex-direction: column;
      text-align: center;
    }
  
    .about-Solid-Research-left,
    .about-Solid-Research-right {
      flex: 1 1 100%;
    }
  
    .about-Solid-Research-title {
      font-size: 1.7rem;
    }
  
    .about-Solid-Research-list {
      text-align: left;
      padding: 0 10px;
    }
  }
  /* about-Products-&-Services-section */
  /* Main Section Styles */
.about-product-service-section {
  padding: 40px 20px;
  background-color: #f8f9fa;
  font-family: 'Segoe UI', sans-serif;
}

/* Container with Flex Layout */
.about-product-service-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Image Container */
.about-product-service-image {
  flex: 1 1 40%;
  text-align: center;
}

/* Image Styling with Hover Scale */
.about-product-service-image img {
  max-width: 100%;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-product-service-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Text Content Container */
.about-product-service-content {
  flex: 1 1 55%;
}

/* Section Heading */
.about-product-service-heading {
  font-size: 32px;
  color: #002855;
  margin-bottom: 20px;
  position: relative;
}

.about-product-service-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0061f2;
  margin-top: 10px;
}

/* Bullet List Styling */
.about-product-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-product-service-list li {
  margin-bottom: 15px;
  font-size: 18px;
  color: #333;
  padding-left: 30px;
  position: relative;
  transition: color 0.3s ease;
}

.about-product-service-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0061f2;
  font-weight: bold;
}

.about-product-service-list li:hover {
  color: #0061f2;
}

/* Responsive Design for Tablets */
@media (max-width: 991px) {
  .about-product-service-heading {
    font-size: 28px;
  }

  .about-product-service-container {
    flex-direction: column;
    text-align: center;
  }

  .about-product-service-content {
    padding: 0 10px;
  }
}

/* Responsive Design for Mobiles */
@media (max-width: 600px) {
  .about-product-service-list li {
    font-size: 16px;
  }
}
/* about-Customers-are-Saying-section */
.about-Customers-are-Saying-section {
  padding: 40px 20px;
  position: relative;
}

.about-Customers-are-Saying-overlay {
  background-color:gainsboro;
  padding: 20px 20px;
}

.about-Customers-are-Saying-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.about-Customers-are-Saying-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
}

.swiper {
  padding: 30px 0;
}

.about-Customers-are-Saying-box {
  border-radius: 12px;
  padding: 40px 30px;
  transition: transform 0.4s ease;
}

.about-Customers-are-Saying-box:hover {
  transform: scale(1.02);
}

.about-Customers-are-Saying-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #fff;
}

.about-Customers-are-Saying-quote {
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.about-Customers-are-Saying-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.about-Customers-are-Saying-role {
  font-size: 14px;
  opacity: 0.8;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 768px) {
  .about-Customers-are-Saying-title {
    font-size: 28px;
  }

  .about-Customers-are-Saying-quote {
    font-size: 15px;
  }
}
/* about-from-section-wrapper */
.about-from-section-wrapper {
  background: linear-gradient(to right, #f0f4ff, #e0eaff);
  padding: 60px 20px;
  text-align: center;
}

.about-from-section-container {
  max-width: 900px;
  margin: auto;
}

.about-from-section-heading {
  font-size: 32px;
  font-weight: 700;
  color: #002244;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-from-section-subheading {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.about-from-section-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.about-from-section-input {
  padding: 14px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  transition: 0.3s ease-in-out;
  width: 100%;
  box-sizing: border-box;
}

.about-from-section-input:focus {
  border-color: #0061f2;
  box-shadow: 0 0 8px rgba(0, 97, 242, 0.3);
}

.about-from-section-button-wrapper {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.about-from-section-button {
  padding: 14px 40px;
  background-color: #0061f2;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.about-from-section-button:hover {
  background-color: #0047b0;
}

/* Mobile Styles */
@media (max-width: 480px) {
  .about-from-section-heading {
    font-size: 24px;
  }

  .about-from-section-subheading {
    font-size: 14px;
  }

  .about-from-section-button {
    width: 100%;
  }
}
/* about-refresh-section */

.about-refresh-section-popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-refresh-section-popup-box {
  background: #fff;
  border-radius: 10px;
  width: 90%;
  max-width: 380px;
  padding: 30px 20px;
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
  position: relative;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { transform: translateY(-40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.about-refresh-section-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  color: #555;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.3s ease;
}

.about-refresh-section-close-btn:hover {
  color: #e74c3c;
}

.about-refresh-section-title {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.about-refresh-section-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-refresh-section-input {
  padding: 12px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #f0f8f9;
  outline: none;
  transition: border 0.3s ease;
}

.about-refresh-section-input:focus {
  border-color: #3498db;
}

.about-refresh-section-submit {
  padding: 12px;
  font-size: 15px;
  background-color: #f4a13c;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.about-refresh-section-submit:hover {
  background-color: #e68a00;
}

@media (max-width: 480px) {
  .about-refresh-section-popup-box {
    padding: 25px 15px;
  }

  .about-refresh-section-title {
    font-size: 18px;
  }
}
/* serivce page */
/* service-hero-section */
/* Video background */
.service-hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Wrapper styling */
.service-hero-section-wrapper {
  position: relative;
  height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Dark overlay for text readability */
.service-hero-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Foreground content */
.service-hero-section-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

/* Title with hover effect */
.service-hero-section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  transition: 0.3s ease;
}

.service-hero-section-title:hover {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* Subtitle with hover effect */
.service-hero-section-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: white;
  transition: 0.3s ease;
}

.service-hero-section-subtitle:hover {
  color: #87ceeb;
  text-shadow: 0 0 8px rgba(135, 206, 235, 0.5);
}

/* Responsive: Tablets */
@media (max-width: 768px) {
  .service-hero-section-title {
    font-size: 36px;
  }

  .service-hero-section-subtitle {
    font-size: 18px;
  }
}

/* Responsive: Mobile */
@media (max-width: 480px) {
  .service-hero-section-title {
    font-size: 28px;
  }

  .service-hero-section-subtitle {
    font-size: 16px;
  }
}

/* service-services-section */
.service-services-section-wrapper {
  padding: 70px 20px;
  background-color: #f8f9fc;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.service-services-section-container {
  max-width: 1200px;
  margin: auto;
}

.service-services-section-title {
  font-size: 34px;
  font-weight: 700;
  color: #002244;
  margin-bottom: 10px;
}

.service-services-section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.service-services-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-services-section-card {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-services-section-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-services-section-card h3 {
  color: #0061f2;
  margin-bottom: 12px;
  font-size: 20px;
}

.service-services-section-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* Responsive Typography */
@media (max-width: 480px) {
  .service-services-section-title {
    font-size: 26px;
  }

  .service-services-section-subtitle {
    font-size: 14px;
  }
}
/* service-whyus-section */
.service-whyus-section-wrapper {
  padding: 70px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.service-whyus-section-container {
  max-width: 1100px;
  margin: auto;
}

.service-whyus-section-title {
  font-size: 34px;
  font-weight: 700;
  color: #002244;
  margin-bottom: 10px;
}

.service-whyus-section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.service-whyus-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.service-whyus-section-card {
  background-color: #f5f7fa;
  padding: 25px 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-whyus-section-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-whyus-section-card h3 {
  font-size: 20px;
  color: #0061f2;
  margin-bottom: 10px;
}

.service-whyus-section-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 480px) {
  .service-whyus-section-title {
    font-size: 26px;
  }
  .service-whyus-section-subtitle {
    font-size: 14px;
  }
}
/* service-cta-section */
.service-cta-section-wrapper {
  background: url('https://images.unsplash.com/photo-1581090700227-1e8a4f76cc55') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
}

.service-cta-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.service-cta-section-container {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 30px;
}

.service-cta-section-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.service-cta-section-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #eee;
  margin-bottom: 30px;
}

.service-cta-section-button {
  padding: 14px 40px;
  background-color: #f4a13c;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.service-cta-section-button:hover {
  background-color: #e68a00;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Tablet view */
@media (max-width: 768px) {
  .service-cta-section-title {
    font-size: 2.2rem;
  }

  .service-cta-section-subtitle {
    font-size: 1rem;
  }

  .service-cta-section-button {
    font-size: 0.95rem;
    padding: 12px 30px;
  }
}

/* Mobile view */
@media (max-width: 480px) {
  .service-cta-section-title {
    font-size: 1.7rem;
  }

  .service-cta-section-subtitle {
    font-size: 0.9rem;
  }

  .service-cta-section-button {
    font-size: 0.9rem;
    padding: 10px 25px;
  }
}
/* news page  */
/* hero section */
/* Video Background */
.service-blog-hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero Section Wrapper */
.service-blog-hero-section-wrapper {
  position: relative;
  height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* Dark Overlay */
.service-blog-hero-section-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Content Area */
.service-blog-hero-section-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 20px;
}

/* Title Styling */
.service-blog-hero-section-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Subtitle Styling */
.service-blog-hero-section-subtitle {
  font-size: 1.25rem;
  color: #ddd;
  line-height: 1.7;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .service-blog-hero-section-title {
    font-size: 2.4rem;
  }

  .service-blog-hero-section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .service-blog-hero-section-title {
    font-size: 1.8rem;
  }

  .service-blog-hero-section-subtitle {
    font-size: 0.95rem;
  }
}

/* service-blogs-section */
.service-blogs-section-wrapper {
  padding: 40px 20px;
  background-color: #f9fbfd;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.service-blogs-section-container {
  max-width: 1200px;
  margin: auto;
}

.service-blogs-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #002244;
  margin-bottom: 10px;
}

.service-blogs-section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.service-blogs-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-blogs-section-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-blogs-section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-blogs-section-card h3 {
  font-size: 20px;
  color: #0061f2;
  margin-bottom: 10px;
}

.service-blogs-section-card p {
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
}

.service-blogs-section-card a {
  color: #f4a13c;
  font-weight: bold;
  text-decoration: none;
}

.service-blogs-section-card a:hover {
  text-decoration: underline;
}
/* service-blog-list-section */
.service-blog-list-section-wrapper {
  padding: 40px 20px;
  background-color: #f9fbfd;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.service-blog-list-section-container {
  max-width: 1200px;
  margin: auto;
}

.service-blog-list-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #002244;
  margin-bottom: 10px;
}

.service-blog-list-section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.service-blog-list-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-blog-list-section-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-blog-list-section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-blog-list-section-card h3 {
  font-size: 20px;
  color: #0061f2;
  margin-bottom: 10px;
}

.service-blog-list-section-card p {
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
}

.service-blog-list-section-card a {
  color: #f4a13c;
  font-weight: bold;
  text-decoration: none;
}

.service-blog-list-section-card a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 480px) {
  .service-blog-list-section-title {
    font-size: 26px;
  }
  .service-blog-list-section-subtitle {
    font-size: 14px;
  }
}
/* service-newsletter-section */
.service-newsletter-section-wrapper {
  padding: 70px 20px;
  background:linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  text-align: center;
}

.service-newsletter-section-container {
  max-width: 800px;
  margin: auto;
}

.service-newsletter-section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-newsletter-section-subtitle {
  font-size: 16px;
  margin-bottom: 30px;
}

.service-newsletter-section-form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.service-newsletter-section-input {
  padding: 12px 15px;
  font-size: 15px;
  border: none;
  border-radius: 6px;
  width: 250px;
  max-width: 100%;
  outline: none;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.service-newsletter-section-button {
  background-color: #fff;
  color: #f4a13c;
  border: none;
  padding: 12px 30px;
  font-weight: bold;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.service-newsletter-section-button:hover {
  background-color: #f4f4f4;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .service-newsletter-section-input,
  .service-newsletter-section-button {
    width: 100%;
  }

  .service-newsletter-section-title {
    font-size: 26px;
  }

  .service-newsletter-section-subtitle {
    font-size: 14px;
  }
}
/* service-blog-categories-section */
.service-blog-categories-section-wrapper {
  padding: 40px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.service-blog-categories-section-container {
  max-width: 1100px;
  margin: auto;
}

.service-blog-categories-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #002244;
  margin-bottom: 10px;
}

.service-blog-categories-section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.service-blog-categories-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.service-blog-categories-section-card {
  background: #f8f9fc;
  padding: 20px;
  border-radius: 10px;
  color: #0061f2;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.service-blog-categories-section-card:hover {
  background: #0061f2;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Mobile */
@media (max-width: 480px) {
  .service-blog-categories-section-title {
    font-size: 26px;
  }

  .service-blog-categories-section-subtitle {
    font-size: 14px;
  }

  .service-blog-categories-section-card {
    font-size: 15px;
  }
}
/* feature page */
/* feature-hero-section */
/* Video Background */
.feature-hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero Section Wrapper */
.feature-hero-section-wrapper {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

/* Dark Overlay */
.feature-hero-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Content Styling */
.feature-hero-section-content {
  z-index: 2;
  position: relative;
  max-width: 800px;
  padding: 20px;
}

/* Title Styling */
.feature-hero-section-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Subtitle Styling */
.feature-hero-section-subtitle {
  font-size: 1.2rem;
  color: #ddd;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .feature-hero-section-title {
    font-size: 2.5rem;
  }

  .feature-hero-section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .feature-hero-section-title {
    font-size: 2rem;
  }

  .feature-hero-section-subtitle {
    font-size: 0.95rem;
  }
}

/* features-grid-section-wrapper */
.features-grid-section-wrapper {
  padding: 40px 20px;
  background: linear-gradient(to bottom, #f9fbfd 0%, #ffffff 100%);
  font-family: 'Segoe UI', sans-serif;
}

.features-grid-section-container {
  max-width: 1150px;
  margin: auto;
  text-align: center;
}

.features-grid-section-title {
  font-size: 34px;
  font-weight: 700;
  color: #002244;
  margin-bottom: 10px;
}

.features-grid-section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.features-grid-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.features-grid-section-box {
  background-color: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.features-grid-section-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-grid-section-icon {
  font-size: 40px;
  color: #f4a13c;
  margin-bottom: 20px;
}

.features-grid-section-heading {
  font-size: 20px;
  font-weight: 600;
  color: #0061f2;
  margin-bottom: 10px;
}

.features-grid-section-box p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 480px) {
  .features-grid-section-title {
    font-size: 26px;
  }

  .features-grid-section-subtitle {
    font-size: 14px;
  }

  .features-grid-section-heading {
    font-size: 18px;
  }

  .features-grid-section-icon {
    font-size: 32px;
  }
}
/* features-comparison-section */
.features-comparison-section-wrapper {
  padding: 40px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.features-comparison-section-container {
  max-width: 1100px;
  margin: auto;
}

.features-comparison-section-title {
  font-size: 34px;
  font-weight: 700;
  color: #002244;
  margin-bottom: 12px;
}

.features-comparison-section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.features-comparison-section-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.features-comparison-section-card {
  background: #f9fbfd;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.features-comparison-section-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.features-comparison-section-feature {
  font-size: 18px;
  font-weight: 600;
  color: #0061f2;
  margin-bottom: 20px;
}

.features-comparison-section-badges {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.features-comparison-section-badge {
  flex: 1 1 45%;
  padding: 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

.stockhans {
  background-color: #0061f2;
  color: #fff;
}

.others {
  background-color: #e0e0e0;
  color: #333;
}

@media (max-width: 480px) {
  .features-comparison-section-title {
    font-size: 26px;
  }

  .features-comparison-section-subtitle {
    font-size: 14px;
  }

  .features-comparison-section-badge {
    font-size: 13px;
    padding: 8px;
  }
}
/* features-testimonials-section */
.features-testimonials-section-wrapper {
  padding: 40px 20px;
  background-color: #f9fbfd;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.features-testimonials-section-container {
  max-width: 1100px;
  margin: auto;
}

.features-testimonials-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #002244;
  margin-bottom: 10px;
}

.features-testimonials-section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.features-testimonials-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.features-testimonials-section-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.features-testimonials-section-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
}

.features-testimonials-section-text {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.features-testimonials-section-name {
  font-size: 17px;
  font-weight: 600;
  color: #0061f2;
  margin-bottom: 5px;
}

.features-testimonials-section-role {
  font-size: 13px;
  color: #999;
}

/* Responsive */
@media (max-width: 480px) {
  .features-testimonials-section-title {
    font-size: 24px;
  }

  .features-testimonials-section-subtitle {
    font-size: 14px;
  }
}
/* pastper page */
/* performance-hero-section */
/* Video Background */
.performance-hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero Section Wrapper */
.performance-hero-section-wrapper {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Dark Overlay */
.performance-hero-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Content Container */
.performance-hero-section-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

/* Title Styling */
.performance-hero-section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Subtitle Styling */
.performance-hero-section-subtitle {
  font-size: 1.25rem;
  color: #ddd;
  line-height: 1.6;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .performance-hero-section-title {
    font-size: 2.2rem;
  }

  .performance-hero-section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .performance-hero-section-title {
    font-size: 1.6rem;
  }

  .performance-hero-section-subtitle {
    font-size: 0.9rem;
  }
}

/*  */

/*  */
/* package page */
/* package-hero-section */
/* Video Background */
.package-hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero Section Wrapper */
.package-hero-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Dark Overlay */
.package-hero-section-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* Overlay for contrast */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: absolute;
  z-index: 1;
}

/* Content Container */
.package-hero-section-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

/* Title Styling */
.package-hero-section-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.package-hero-section-content h1 span {
  color: #FFC107;
}

/* Subtitle Styling */
.package-hero-section-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Button Styles */
.package-hero-section-buttons a {
  padding: 12px 25px;
  margin: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  font-size: 1rem;
}

.package-hero-section-btn-primary {
  background-color: #FFC107;
  color: #001f3f;
}

.package-hero-section-btn-secondary {
  background-color: transparent;
  border: 2px solid #FFC107;
  color: #fff;
}

/* 🔻 Responsive Media Queries 🔻 */
@media (max-width: 1024px) {
  .package-hero-section-content h1 {
    font-size: 2.5rem;
  }

  .package-hero-section-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .package-hero-section {
    height: auto;
    padding: 60px 0;
  }

  .package-hero-section-content h1 {
    font-size: 2rem;
  }

  .package-hero-section-content p {
    font-size: 1rem;
  }

  .package-hero-section-buttons a {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .package-hero-section-content h1 {
    font-size: 1.6rem;
  }

  .package-hero-section-content p {
    font-size: 0.95rem;
  }

  .package-hero-section-buttons {
    flex-direction: column;
  }

  .package-hero-section-buttons a {
    width: 100%;
    margin: 10px 0;
  }
}

/* package-why-section */
.package-why-section {
  background-color: #f4f6f8;
  padding: 40px 20px;
  text-align: center;
}

.package-why-section-container h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #001f3f;
}

.package-why-section-container h2 span {
  color: #FFC107;
}

.package-why-section-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.package-why-section-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  transition: transform 0.3s ease;
}

.package-why-section-card:hover {
  transform: translateY(-8px);
}

.package-why-section-card h3 {
  color: #0074D9;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.package-why-section-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* 🔻 Responsive Typography 🔻 */
@media (max-width: 1024px) {
  .package-why-section-container h2 {
    font-size: 2.4rem;
  }

  .package-why-section-card h3 {
    font-size: 1.3rem;
  }

  .package-why-section-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .package-why-section-container h2 {
    font-size: 2rem;
  }

  .package-why-section-card {
    padding: 25px 18px;
  }

  .package-why-section-card h3 {
    font-size: 1.2rem;
  }

  .package-why-section-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .package-why-section-container h2 {
    font-size: 1.7rem;
  }

  .package-why-section-card h3 {
    font-size: 1.1rem;
  }

  .package-why-section-card p {
    font-size: 0.85rem;
  }
}
/* package-detailed-section */
.package-detailed-section {
  padding: 40px 20px;
  background-color: #f5f7fa;
  text-align: center;
}

.package-detailed-container h2 {
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: #001f3f;
}

.package-detailed-container h2 span {
  color: #FFC107;
}

.package-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.package-detailed-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.package-detailed-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.package-detailed-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #0074D9;
  border-bottom: 2px solid #FFC107;
  padding-bottom: 10px;
}

.package-detailed-card ul {
  list-style: none;
  padding: 0;
}

.package-detailed-card ul li {
  font-size: 1rem;
  color: #333;
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.package-detailed-card ul li::before {
  content: "✔";
  color: #28a745;
  margin-right: 10px;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .package-detailed-container h2 {
    font-size: 2.2rem;
  }

  .package-detailed-card h3 {
    font-size: 1.3rem;
  }

  .package-detailed-card ul li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .package-detailed-container h2 {
    font-size: 1.8rem;
  }

  .package-detailed-card {
    padding: 25px 20px;
  }

  .package-detailed-card ul li {
    font-size: 0.9rem;
  }
}
/* package-pricing-section */
.pricing-feature-cards {
  padding: 40px 20px;
  background: #f4f6f8;
  text-align: center;
}

.pricing-feature-container h2 {
  font-size: 2.6rem;
  margin-bottom: 40px;
  color: #001f3f;
}

.pricing-feature-container h2 span {
  color: #FFC107;
}

.pricing-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-feature-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 30px 20px;
  text-align: left;
  transition: transform 0.3s ease;
}

.pricing-feature-card:hover {
  transform: translateY(-8px);
}

.pricing-feature-card h3 {
  font-size: 1.5rem;
  color: #0074D9;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFC107;
  padding-bottom: 10px;
}

.pricing-feature-card ul {
  list-style: none;
  padding-left: 0;
}

.pricing-feature-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.pricing-feature-card ul li::before {
  content: "✔";
  color: #28a745;
  margin-right: 10px;
}

/* Responsive typography */
@media (max-width: 768px) {
  .pricing-feature-container h2 {
    font-size: 2.1rem;
  }

  .pricing-feature-card h3 {
    font-size: 1.3rem;
  }

  .pricing-feature-card ul li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .pricing-feature-container h2 {
    font-size: 1.7rem;
  }

  .pricing-feature-card {
    padding: 25px 18px;
  }

  .pricing-feature-card ul li {
    font-size: 0.9rem;
  }
}
/* contact page */
/* contact-hero-section */
/* Video Background */
.contact-hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero Section Wrapper */
.contact-hero-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Dark Overlay */
.contact-hero-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: absolute;
  z-index: 1;
}

/* Content Container */
.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

/* Title Styling */
.contact-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-hero-content h1 span {
  color: #FFC107;
}

/* Subtitle Styling */
.contact-hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* 🔻 Responsive Media Queries 🔻 */
@media (max-width: 1024px) {
  .contact-hero-content h1 {
    font-size: 2.4rem;
  }

  .contact-hero-content p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .contact-hero-section {
    height: auto;
    padding: 60px 0;
  }

  .contact-hero-content h1 {
    font-size: 2rem;
  }

  .contact-hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-hero-content h1 {
    font-size: 1.6rem;
  }

  .contact-hero-content p {
    font-size: 0.95rem;
  }
}

/* contact-form-section */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

.contact-pro-wrapper {
  background: linear-gradient(to right, #f0f2f5, #ffffff);
  padding: 40px 20px;
}

.contact-pro-inner {
  display: flex;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  flex-wrap: wrap;
}

/* Info Panel */
.contact-pro-info {
  flex: 1 1 40%;
  background: #001f3f;
  color: #fff;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-pro-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #FFC107;
}

.contact-pro-info p {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #eee;
}

.contact-pro-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-pro-detail i {
  font-size: 1.5rem;
  margin-right: 15px;
  color: #FFC107;
}

.contact-pro-detail h4 {
  margin: 0;
  font-size: 1rem;
  color: #fff;
}

.contact-pro-detail p {
  margin: 3px 0 0;
  font-size: 0.95rem;
  color: #ccc;
}

/* Form Panel */
.contact-pro-form {
  flex: 1 1 60%;
  padding: 50px 30px;
  background: #fefefe;
}

.contact-pro-form h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #001f3f;
}

.contact-pro-form form {
  display: flex;
  flex-direction: column;
}

.input-group {
  margin-bottom: 20px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  background: #fff;
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #0074D9;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 116, 217, 0.1);
}

.contact-pro-form button {
  align-self: flex-start;
  background: #FFC107;
  color: #001f3f;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-pro-form button:hover {
  background: #e0a800;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-pro-inner {
    flex-direction: column;
  }

  .contact-pro-info,
  .contact-pro-form {
    flex: 1 1 100%;
    padding: 40px 25px;
  }

  .contact-pro-info {
    border-bottom: 2px solid #eee;
  }
}

@media (max-width: 480px) {
  .contact-pro-form h2,
  .contact-pro-info h2 {
    font-size: 1.6rem;
  }

  .contact-pro-wrapper {
    padding: 60px 15px;
  }
}
/* contact-map-section */
.contact-map-section {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
}

.contact-map-container {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.contact-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(30%) contrast(1.2) brightness(1.1);
}

.contact-map-card {
  position: absolute;
  top: 40px;
  left: 40px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 25px 30px;
  max-width: 300px;
  z-index: 10;
  animation: fadeInUp 0.6s ease-in-out;
}

.contact-map-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #001f3f;
}

.contact-map-card p {
  margin-bottom: 15px;
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-map-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #FFC107;
  color: #001f3f;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.contact-map-btn:hover {
  background: #e0a800;
}

/* Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-map-card {
    top: 20px;
    left: 20px;
    padding: 20px;
    max-width: 90%;
  }

  .contact-map-card h3 {
    font-size: 1.2rem;
  }

  .contact-map-card p {
    font-size: 0.95rem;
  }
}
/* contact-cta-section */
.contact-cta-section {
  background: linear-gradient(to right, #001f3f, #0074D9);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.contact-cta-container {
  max-width: 900px;
  margin: auto;
}

.contact-cta-container h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  color: #FFC107;
}

.contact-cta-container p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f1f1f1;
  line-height: 1.6;
}

.contact-cta-button {
  display: inline-block;
  padding: 14px 30px;
  background-color: #FFC107;
  color: #001f3f;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.contact-cta-button:hover {
  background-color: #e0a800;
}

@media (max-width: 768px) {
  .contact-cta-container h2 {
    font-size: 2rem;
  }

  .contact-cta-container p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-cta-container h2 {
    font-size: 1.6rem;
  }

  .contact-cta-container p {
    font-size: 0.95rem;
  }

  .contact-cta-button {
    width: 100%;
    padding: 14px;
  }
}
/* equity page */
/* equity-hero-section */
/* Video Background */
.equity-trading-hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero Section Wrapper */
.equity-trading-hero-section-wrapper {
  width: 100%;
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark Overlay */
.equity-trading-hero-section-overlay {
  width: 100%;
  height: 100%;
 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: absolute;
  z-index: 1;
}

/* Content Container */
.equity-trading-hero-section-container {
  text-align: center;
  max-width: 800px;
  color: #fff;
  position: relative;
  z-index: 2;
}

/* Title Styling */
.equity-trading-hero-section-title {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.equity-trading-hero-section-title span {
  color: #eda835;
  font-weight: bold;
}

/* Subtitle Styling */
.equity-trading-hero-section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ddd;
}

/* Button Styling */
.equity-trading-hero-section-button {
  background-color: #eda835;
  color: #000;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.equity-trading-hero-section-button:hover {
  background-color: #c08928;
}

/* Responsive Design */
@media (max-width: 768px) {
  .equity-trading-hero-section-title {
    font-size: 2rem;
  }

  .equity-trading-hero-section-subtitle {
    font-size: 1rem;
  }

  .equity-trading-hero-section-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* equity-trading-why-section */
.equity-trading-why-section-wrapper {
  background-color: #f9f9f9;
  padding: 40px 20px;
}

.equity-trading-why-section-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.equity-trading-why-section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #1d1d1d;
}

.equity-trading-why-section-title span {
  color: #eda835;
}

.equity-trading-why-section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

.equity-trading-why-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.equity-trading-why-section-feature {
  background: white;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

.equity-trading-why-section-feature:hover {
  transform: translateY(-5px);
}

.equity-trading-why-section-feature i {
  font-size: 2rem;
  color: #eda835;
  margin-bottom: 15px;
}

.equity-trading-why-section-feature h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1d1d1d;
}

.equity-trading-why-section-feature p {
  font-size: 1rem;
  color: #555;
}
/* equity-trading-market-section */
.equity-trading-market-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.equity-trading-market-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.equity-trading-market-text {
  flex: 1 1;
}

.equity-trading-market-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.equity-trading-market-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.equity-trading-market-image {
  flex: 1 1;
  text-align: center;
}

.equity-trading-market-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .equity-trading-market-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .equity-trading-market-title {
    font-size: 1.8rem;
  }

  .equity-trading-market-description {
    font-size: 0.95rem;
  }
}
/* equity-trading-research-section */
.equity-trading-research-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  font-family: Arial, sans-serif;
}

.equity-trading-research-tabs {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
}

.equity-trading-research-tab {
  flex: 1;
  padding: 15px;
  background: #f9f9f9;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
  text-align: center;
}

.equity-trading-research-tab:not(:last-child) {
  border-right: 1px solid #ddd;
}

.equity-trading-research-tab.active {
  background-color: #e6e6e6;
  color: #000;
}

.equity-trading-research-content {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
}

.equity-trading-research-pane {
  animation: fadeIn 0.3s ease-in-out;
}

.equity-trading-research-list {
  list-style: none;
  padding-left: 0;
}

.equity-trading-research-list li {
  margin: 10px 0;
  color: #2b4eff;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .equity-trading-research-tabs {
    flex-direction: column;
  }

  .equity-trading-research-tab {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .equity-trading-research-tab:last-child {
    border-bottom: none;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* fsotrading page */
/* fo-hero-section */
/* Video Background */
.fo-hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero Section Wrapper */
.fo-hero-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

/* Dark Overlay */
.fo-hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
}

/* Content Container */
.fo-hero-content {
  max-width: 800px;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

/* Title Styling */
.fo-hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

/* Subtitle Styling */
.fo-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

/* Button Styling */
.fo-hero-button {
  background-color: #ffae00;
  padding: 12px 30px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.fo-hero-button:hover {
  background-color: #ffaa33;
}

/* Responsive Design */
@media (max-width: 768px) {
  .fo-hero-title {
    font-size: 2rem;
  }

  .fo-hero-subtitle {
    font-size: 1rem;
  }

  .fo-hero-button {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

/* fo-about-section-container */
.fo-about-section-container {
  padding: 40px 20px;
  background-color: #fefefe;
  font-family: 'Segoe UI', sans-serif;
}

.fo-about-section-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  animation: fadeIn 0.6s ease-in-out;
}

.fo-about-section-text {
  flex: 1 1;
}

.fo-about-section-title {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 20px;
}

.fo-about-section-description {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

.fo-about-section-image {
  flex: 1 1;
  text-align: center;
}

.fo-about-section-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.fo-about-section-image img:hover {
  transform: scale(1.03);
}

/* Responsive Design */
@media (max-width: 991px) {
  .fo-about-section-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .fo-about-section-title {
    font-size: 2rem;
  }

  .fo-about-section-description {
    font-size: 1rem;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* fo-Delify-Advantage-section */
.fo-Delify-Advantage-section {
  background-color: #f6f9fa;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.fo-Delify-Advantage-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.fo-Delify-Advantage-title::after {
  content: '';
  display: block;
  height: 2px;
  width: 50px;
  background-color: #2b4eff;
  margin: 10px auto 0;
}

.fo-Delify-Advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.fo-Delify-Advantage-item {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fo-Delify-Advantage-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.fo-Delify-Advantage-item i {
  font-size: 2.2rem;
  color: #2b4eff;
  margin-bottom: 15px;
}

.fo-Delify-Advantage-item p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}
/* commondity trading page */
/* commodity-hero-section */
/* Video Background */
.commodity-hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero Section Wrapper */
.commodity-hero-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

/* Dark Overlay */
.commodity-hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  position: absolute;
  z-index: 1;
}

/* Content Container */
.commodity-hero-content {
  max-width: 900px;
  text-align: center;
  animation: fadeInUp 0.8s ease;
  position: relative;
  z-index: 2;
}

/* Title Styling */
.commodity-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Subtitle Styling */
.commodity-hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* Button Styling */
.commodity-hero-button {
  background-color: #ffae00;
  color: #000;
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.commodity-hero-button:hover {
  background-color: #ffba33;
}

/* Responsive Design */
@media (max-width: 768px) {
  .commodity-hero-title {
    font-size: 2rem;
  }

  .commodity-hero-subtitle {
    font-size: 1rem;
  }

  .commodity-hero-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* commodity-benefit-section */
.commodity-benefit-section {
  background-color: #f6f9fa;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.commodity-benefit-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.commodity-benefit-title::after {
  content: '';
  display: block;
  height: 2px;
  width: 50px;
  background-color: #2b4eff;
  margin: 10px auto 0;
}

.commodity-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.commodity-benefit-item {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commodity-benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.commodity-benefit-item i {
  font-size: 2.4rem;
  color: #2b4eff;
  margin-bottom: 15px;
}

.commodity-benefit-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.commodity-benefit-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
/* currency trading page */
/* currency-hero-section  */
/* Video Background */
.currency-hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero Section Wrapper */
.currency-hero-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

/* Dark Overlay */
.currency-hero-overlay {
  background-color: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
}

/* Content Container */
.currency-hero-content {
  text-align: center;
  max-width: 850px;
  animation: fadeInUp 0.8s ease;
  position: relative;
  z-index: 2;
}

/* Title Styling */
.currency-hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Subtitle Styling */
.currency-hero-subtitle {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Button Styling */
.currency-hero-button {
  background-color: #00d09c;
  padding: 14px 30px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.currency-hero-button:hover {
  background-color: #00b88b;
}

/* Responsive Design */
@media (max-width: 768px) {
  .currency-hero-title {
    font-size: 2rem;
  }

  .currency-hero-subtitle {
    font-size: 1rem;
  }

  .currency-hero-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* currency-trading-forex-section */
.currency-trading-forex-section {
  padding: 40px 20px;
  background-color: #f4f8fb;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.currency-trading-forex-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.currency-trading-forex-title::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #2b4eff;
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

.currency-trading-forex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.currency-trading-forex-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  animation: currencyFadeIn 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.currency-trading-forex-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.currency-trading-forex-card i {
  font-size: 2.8rem;
  color: #2b4eff;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.currency-trading-forex-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
}

.currency-trading-forex-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Animation */
@keyframes currencyFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .currency-trading-forex-title {
    font-size: 1.8rem;
  }

  .currency-trading-forex-card {
    padding: 24px 16px;
  }
}
/* life insurace */
/* life-insurance-hero-section */
/* Video Background */
.life-insurance-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero Section Wrapper */
.life-insurance-hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  padding: 0 20px;
}

/* Dark Overlay */
.life-insurance-hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
}

/* Content Container */
.life-insurance-hero-content {
  max-width: 850px;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeIn 0.8s ease;
}

/* Title Styling */
.life-insurance-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Subtitle Styling */
.life-insurance-hero-subtitle {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Button Styling */
.life-insurance-hero-button {
  background-color: #f7c947;
  color: #000;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.life-insurance-hero-button:hover {
  background-color: #e4b939;
}

/* Responsive Design */
@media (max-width: 768px) {
  .life-insurance-hero-title {
    font-size: 2rem;
  }

  .life-insurance-hero-subtitle {
    font-size: 1rem;
  }

  .life-insurance-hero-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* life-insurance-demat-wrapper */
.life-insurance-demat-wrapper {
  background-color: #f4f8fb;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.life-insurance-demat-header {
  margin-bottom: 40px;
}

.life-insurance-demat-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.life-insurance-demat-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

.life-insurance-demat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.life-insurance-demat-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.life-insurance-demat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.life-insurance-demat-card img {
  max-width: 100%;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.life-insurance-demat-caption {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
}
/* life-insurance-benefit-section */
.life-insurance-benefit-section {
  padding: 40px 20px;
  background-color: #f9fbfd;
  font-family: 'Segoe UI', sans-serif;
}

.life-insurance-benefit-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}

.life-insurance-benefit-title::after {
  content: '';
  width: 50px;
  height: 3px;
  background: #2b4eff;
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

.life-insurance-benefit-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.life-insurance-benefit-content {
  flex: 1 1;
}

.life-insurance-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.life-insurance-benefit-list li {
  margin: 15px 0;
  font-size: 1rem;
  color: #444;
  display: flex;
  align-items: center;
}

.life-insurance-benefit-list i {
  color: #2b4eff;
  margin-right: 10px;
  font-size: 1.1rem;
}

.life-insurance-benefit-image {
  flex: 1 1;
  text-align: center;
}

.life-insurance-benefit-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .life-insurance-benefit-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .life-insurance-benefit-content {
    flex: 1 1 100%;
  }

  .life-insurance-benefit-list li {
    justify-content: center;
  }

  .life-insurance-benefit-image {
    margin-top: 30px;
  }
}
/* life-insurance-who-section */
.life-insurance-who-section {
  background: linear-gradient(to right, #f6f9fc, #fff);
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.life-insurance-who-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

.life-insurance-who-image {
  flex: 1 1 40%;
  text-align: center;
}

.life-insurance-who-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.life-insurance-who-content {
  flex: 1 1 55%;
}

.life-insurance-who-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
  position: relative;
}

.life-insurance-who-title::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #2b4eff;
  display: block;
  margin-top: 10px;
  border-radius: 8px;
}

.life-insurance-who-description {
  color: #444;
  margin: 20px 0 30px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.life-insurance-who-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.life-insurance-who-card {
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  transition: transform 0.3s ease;
}

.life-insurance-who-card i {
  color: #2b4eff;
  margin-right: 15px;
  font-size: 1.2rem;
  min-width: 20px;
}

.life-insurance-who-card:hover {
  transform: translateY(-6px);
  background: #f0f7ff;
}

/* Responsive */
@media (max-width: 768px) {
  .life-insurance-who-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .life-insurance-who-cards {
    grid-template-columns: 1fr;
  }

  .life-insurance-who-title {
    font-size: 2rem;
  }
}
/* health insurance page */
/* health-insurance-hero-section */
/* Video Background */
.health-insurance-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero Section Wrapper */
.health-insurance-hero-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  padding: 0 20px;
}

/* Dark Overlay */
.health-insurance-hero-overlay {
  background-color: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
}

/* Content Container */
.health-insurance-hero-content {
  text-align: center;
  max-width: 850px;
  position: relative;
  z-index: 2;
  animation: fadeIn 0.8s ease;
}

/* Title Styling */
.health-insurance-hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Subtitle Styling */
.health-insurance-hero-subtitle {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Button Styling */
.health-insurance-hero-button {
  background-color: #00c79b;
  color: #000;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.health-insurance-hero-button:hover {
  background-color: #00b48c;
}

/* Responsive Design */
@media (max-width: 768px) {
  .health-insurance-hero-title {
    font-size: 2rem;
  }

  .health-insurance-hero-subtitle {
    font-size: 1rem;
  }

  .health-insurance-hero-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* health-insurance-reasons-section */
.health-insurance-reasons-section {
  padding: 40px 20px;
  background-color: #f7fafc;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.health-insurance-reasons-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}

.health-insurance-reasons-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: #2b4eff;
  margin: 10px auto 0;
  border-radius: 10px;
}

.health-insurance-reasons-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  margin-top: 30px;
}

.health-insurance-reasons-image {
  flex: 1 1;
  text-align: center;
}

.health-insurance-reasons-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.health-insurance-reasons-points {
  flex: 1 1 500px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: left;
}

.health-insurance-reason-box {
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.health-insurance-reason-box:hover {
  transform: translateY(-5px);
}

.health-insurance-reason-box h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #2b4eff;
}

.health-insurance-reason-box p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .health-insurance-reasons-wrapper {
    flex-direction: column;
  }

  .health-insurance-reasons-points {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .health-insurance-reason-box {
    text-align: center;
  }
}
/* health-insurance-benefits-section */
.health-insurance-benefits-section {
  padding: 60px 20px;
  background: #f4f9fd;
  font-family: 'Segoe UI', sans-serif;
}

.health-insurance-benefits-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
  position: relative;
}

.health-insurance-benefits-title::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #2b4eff;
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}

.health-insurance-benefits-container {
  max-width: 1200px;
  margin: auto;
}

.health-insurance-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.health-insurance-benefit-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.health-insurance-benefit-card:hover {
  transform: translateY(-6px);
}

.health-insurance-benefit-card i {
  font-size: 2rem;
  color: #2b4eff;
  margin-bottom: 15px;
}

.health-insurance-benefit-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #222;
}

.health-insurance-benefit-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.health-insurance-benefits-note {
  margin-top: 40px;
  font-size: 0.95rem;
  text-align: center;
  color: #444;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .health-insurance-benefits-title {
    font-size: 1.6rem;
  }
}
/* health-insurance-partner-section */
.health-insurance-partner-section {
  background-color: #f9fbfd;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.health-insurance-partner-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
  position: relative;
}

.health-insurance-partner-title::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #2b4eff;
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}

.health-insurance-partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}

.health-insurance-partner-logos img {
  width: 140px;
  height: 80px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(40%);
}

.health-insurance-partner-logos img:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 768px) {
  .health-insurance-partner-logos img {
    width: 100px;
    height: 60px;
    padding: 8px;
  }
}
/* Team-insurance */
/* team-insurance-section-hero */
/* Video Background */
.team-insurance-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero Section Wrapper */
.team-insurance-section-hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark Overlay */
.team-insurance-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: 1;
}

/* Content Container */
.team-insurance-section-content {
  color: #fff;
  text-align: center;
  max-width: 800px;
  z-index: 2;
}

/* Title Styling */
.team-insurance-section-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

/* Subtitle Styling */
.team-insurance-section-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Button Styling */
.team-insurance-section-btn {
  background-color: #ffcc00;
  color: #000;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.team-insurance-section-btn:hover {
  background-color: #e6b800;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .team-insurance-section-content h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .team-insurance-section-content h1 {
    font-size: 2rem;
  }

  .team-insurance-section-content p {
    font-size: 1rem;
  }

  .team-insurance-section-btn {
    padding: 0.6rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .team-insurance-section-content h1 {
    font-size: 1.6rem;
  }

  .team-insurance-section-content p {
    font-size: 0.95rem;
  }

  .team-insurance-section-btn {
    padding: 0.5rem 1rem;
  }

  .team-insurance-section-overlay {
    padding: 1rem;
  }
}

/* team-insurance-reasons-section-wrapper */
.team-insurance-reasons-section-wrapper {
  background: #f4f9fc;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.team-insurance-reasons-section-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.team-insurance-reasons-section-title {
  font-size: 2.2rem;
  color: #003366;
  margin-bottom: 40px;
  position: relative;
}

.team-insurance-reasons-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #007acc;
  margin: 10px auto 0;
  border-radius: 3px;
}

.team-insurance-reasons-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.team-insurance-reasons-section-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.team-insurance-reasons-section-card h3 {
  color: #006699;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.team-insurance-reasons-section-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.team-insurance-reasons-section-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-insurance-reasons-section-title {
    font-size: 1.8rem;
  }

  .team-insurance-reasons-section-card {
    padding: 20px 15px;
  }
}
/* corporate bond fund page */
/* corporate-bond-hero-section */
/* Video Background */
.corporate-bond-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero Section Wrapper */
.corporate-bond-hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Dark Overlay */
.corporate-bond-hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
}

/* Content Container */
.corporate-bond-hero-content {
  text-align: center;
  max-width: 850px;
  position: relative;
  z-index: 2;
}

/* Title Styling */
.corporate-bond-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

/* Subtitle Styling */
.corporate-bond-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Button Styling */
.corporate-bond-hero-button {
  background-color: #ffc107;
  color: #000;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.corporate-bond-hero-button:hover {
  background-color: #e6a700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .corporate-bond-hero-content h1 {
    font-size: 2rem;
  }

  .corporate-bond-hero-content p {
    font-size: 1rem;
  }

  .corporate-bond-hero-button {
    padding: 0.6rem 1.2rem;
  }
}

/* corporate-bond-benefits-section */
.corporate-bond-benefits-section {
  background-color: #f4f9ff;
  padding: 40px 20px;
}

.corporate-bond-benefits-container {
  max-width: 1280px;
  margin: auto;
}

.corporate-bond-benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.corporate-bond-benefits-image {
  flex: 1 1;
  text-align: center;
}

.corporate-bond-benefits-image img {
  max-width: 100%;
  height: auto;
  max-height: 460px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.corporate-bond-benefits-content {
  flex: 1 1;
}

.corporate-bond-benefits-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #003366;
  position: relative;
}

.corporate-bond-benefits-title::after {
  content: '';
  width: 50px;
  height: 3px;
  background-color: #007acc;
  display: block;
  margin-top: 8px;
  border-radius: 4px;
}

.corporate-bond-benefits-box {
  display: flex;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 122, 204, 0.12);
  align-items: center;
  transition: 0.3s ease;
}

.corporate-bond-benefits-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 122, 204, 0.18);
}

.corporate-bond-benefits-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.corporate-bond-benefits-box h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #003366;
}

.corporate-bond-benefits-box p {
  margin: 5px 0 0;
  font-size: 0.95rem;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .corporate-bond-benefits-grid {
    flex-direction: column;
  }

  .corporate-bond-benefits-image img {
    max-height: 360px;
  }

  .corporate-bond-benefits-title {
    text-align: center;
  }

  .corporate-bond-benefits-box {
    flex-direction: row;
    text-align: left;
  }
}
/* corporate-bond-types-section */
.corporate-bond-types-section {
  background-color: #f9fbfd;
  padding: 40px 20px;
}

.corporate-bond-types-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.corporate-bond-types-heading {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 50px;
  position: relative;
}

.corporate-bond-types-heading::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #007acc;
  display: block;
  margin: 10px auto 0;
  border-radius: 4px;
}

.corporate-bond-types-flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: stretch;
  margin-bottom: 40px;
  position: relative;
}

.corporate-bond-types-box {
  flex: 1 1 400px;
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 16px rgba(0, 122, 204, 0.08);
  transition: box-shadow 0.3s ease;
}

.corporate-bond-types-box:hover {
  box-shadow: 0 8px 20px rgba(0, 122, 204, 0.15);
}

.corporate-bond-types-box h4 {
  font-size: 1.2rem;
  color: #003366;
  margin-bottom: 12px;
}

.corporate-bond-types-box p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

.corporate-bond-types-divider {
  display: none;
}

@media (min-width: 900px) {
  .corporate-bond-types-divider {
    display: block;
    width: 2px;
    background-color: #ccc;
    height: auto;
  }
}

.corporate-bond-types-conclusion {
  margin-top: 30px;
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.corporate-bond-types-conclusion h4 {
  font-size: 1.1rem;
  color: #003366;
  margin-bottom: 10px;
}

.corporate-bond-types-conclusion p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
/* sovereign Gold Bond page */
/* sovereign-gold-hero-section */
.sovereign-gold-hero-section {
  background: url('https://img.freepik.com/free-photo/closeup-shot-golden-bars-dark-background_181624-48398.jpg') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sovereign-gold-hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sovereign-gold-hero-content {
  text-align: center;
  max-width: 750px;
  color: #fff;
}

.sovereign-gold-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.sovereign-gold-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #f0f0f0;
}

.sovereign-gold-hero-button {
  background-color: #ffd700;
  color: #000;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.sovereign-gold-hero-button:hover {
  background-color: #e6c200;
}

/* Responsive */
@media (max-width: 768px) {
  .sovereign-gold-hero-content h1 {
    font-size: 2rem;
  }

  .sovereign-gold-hero-content p {
    font-size: 1rem;
  }

  .sovereign-gold-hero-button {
    padding: 0.7rem 1.5rem;
  }
}
/* sovereign-gold-features-section */
.sovereign-gold-features-section {
  background: #f9fafb;
  padding: 40px 20px;
}

.sovereign-gold-features-container {
  max-width: 1200px;
  margin: auto;
}

.sovereign-gold-features-heading {
  text-align: center;
  font-size: 2rem;
  color: #003366;
  margin-bottom: 50px;
  position: relative;
}

.sovereign-gold-features-heading::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #d4af37;
  display: block;
  margin: 12px auto 0;
  border-radius: 3px;
}

.sovereign-gold-features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.sovereign-gold-features-item {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sovereign-gold-features-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.sovereign-gold-features-item img {
  width: 36px;
  height: 36px;
  margin-top: 4px;
}

.sovereign-gold-features-item h4 {
  font-size: 1.1rem;
  color: #003366;
  margin-bottom: 6px;
}

.sovereign-gold-features-item p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 600px) {
  .sovereign-gold-features-item {
    flex-direction: column;
    text-align: left;
  }

  .sovereign-gold-features-item img {
    margin-bottom: 8px;
  }
}
/* Tax Free Bond */
/* taxfree-bond-hero-section */
/* Video Background */
.taxfree-bond-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero Section Wrapper */
.taxfree-bond-hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px; /* Added padding */
}

/* Dark Overlay */
.taxfree-bond-hero-overlay {
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
}

/* Content Container */
.taxfree-bond-hero-content {
  max-width: 800px;
  text-align: center;
  color:white;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Added horizontal padding */
  margin: 0 20px;  /* Added margin for better spacing */
}

/* Title Styling */
.taxfree-bond-hero-content h1 {
  font-size: 2.8rem;
  color:wh;
  margin-bottom: 1.2rem;
  font-weight: 700;
  padding: 0 15px; /* Added padding */
}

/* Subtitle Styling */
.taxfree-bond-hero-content p {
  font-size: 1.1rem;
  color:white;
  margin-bottom: 2rem;
  line-height: 1.6;
  padding: 0 15px; /* Added padding */
}

/* Button Styling */
.taxfree-bond-hero-button {
  padding: 0.9rem 2rem;
  background-color: #00c9a7;
  color: #003849;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s ease;
}

.taxfree-bond-hero-button:hover {
  background-color: #00b398;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .taxfree-bond-hero-content h1 {
    font-size: 2rem;
    padding: 0 10px; /* Added padding */
  }

  .taxfree-bond-hero-content p {
    font-size: 1rem;
    padding: 0 10px; /* Added padding */
  }

  .taxfree-bond-hero-button {
    padding: 0.7rem 1.6rem;
  }
}

@media (max-width: 480px) {
  .taxfree-bond-hero-content h1 {
    font-size: 1.8rem;
    padding: 0 10px; /* Added padding */
  }

  .taxfree-bond-hero-content p {
    font-size: 0.95rem;
    padding: 0 10px; /* Added padding */
  }

  .taxfree-bond-hero-button {
    width: 100%;
    padding: 0.6rem 1.2rem;
  }
}

/* taxfree-bond-features-section */
.taxfree-bond-features-section {
  padding: 40px 20px;
  background: #f4f9ff;
}

.taxfree-bond-features-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.taxfree-bond-features-title {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 50px;
  position: relative;
}

.taxfree-bond-features-title::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #00bfa6;
  display: block;
  margin: 12px auto 0;
  border-radius: 4px;
}

.taxfree-bond-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.taxfree-bond-features-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.taxfree-bond-features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0, 191, 166, 0.15);
}

.taxfree-bond-features-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.taxfree-bond-features-card h4 {
  font-size: 1.1rem;
  color: #003366;
  margin-bottom: 10px;
}

.taxfree-bond-features-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .taxfree-bond-features-title {
    font-size: 1.6rem;
  }

  .taxfree-bond-features-card p {
    font-size: 0.9rem;
  }
}
/* taxfree-bond-benefits-section */
.taxfree-bond-benefits-section {
  background-color: #f8fafd;
  padding: 40px 20px;
}

.taxfree-bond-benefits-container {
  max-width: 1150px;
  margin: auto;
  text-align: center;
}

.taxfree-bond-benefits-heading {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 50px;
  position: relative;
}

.taxfree-bond-benefits-heading::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #00b894;
  display: block;
  margin: 12px auto 0;
  border-radius: 4px;
}

.taxfree-bond-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.taxfree-bond-benefits-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.taxfree-bond-benefits-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 22px rgba(0, 184, 148, 0.2);
}

.taxfree-bond-benefits-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.taxfree-bond-benefits-card h4 {
  color: #003366;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.taxfree-bond-benefits-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .taxfree-bond-benefits-heading {
    font-size: 1.6rem;
  }

  .taxfree-bond-benefits-card p {
    font-size: 0.9rem;
  }
}
/* Unlisted Equity Opptunities page */
/* unlisted-equity-hero-section */
/* General Styling for Hero Section */
/* Video Background */
.unlisted-equity-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero Section Wrapper */
.unlisted-equity-hero-section {
  width: 100%;
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 0 20px;
}

/* Dark Overlay */
.unlisted-equity-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text visibility */
  z-index: 1;
}

/* Content Container */
.unlisted-equity-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 20px;
}

.unlisted-equity-hero-title {
  font-size: 4rem; /* Default font size for larger screens */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.3s ease;
}

.unlisted-equity-hero-description {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.6;
  transition: transform 0.3s ease;
}

.unlisted-equity-hero-button {
  padding: 15px 30px;
  font-size: 1.2rem;
  background-color: #eda835;
  color: white;
  border: none;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.unlisted-equity-hero-button:hover {
  background-color: #d4852a;
  transform: scale(1.05);
}

.unlisted-equity-hero-title:hover, .unlisted-equity-hero-description:hover {
  transform: translateY(-10px);
}

/* Responsive Styling */
@media screen and (max-width: 1024px) {
  .unlisted-equity-hero-title {
    font-size: 3rem;
  }

  .unlisted-equity-hero-description {
    font-size: 1.25rem;
  }

  .unlisted-equity-hero-button {
    padding: 12px 25px;
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 768px) {
  .unlisted-equity-hero-title {
    font-size: 2.5rem;
  }

  .unlisted-equity-hero-description {
    font-size: 1.1rem;
  }

  .unlisted-equity-hero-button {
    padding: 12px 22px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .unlisted-equity-hero-title {
    font-size: 2rem;
  }

  .unlisted-equity-hero-description {
    font-size: 1rem;
  }

  .unlisted-equity-hero-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* unlisted-logo-section */
.unlisted-logo-section-container {
  position: relative;
  overflow: hidden;
  height: 60vh; /* Fill the viewport height */
  width: 100%;
  background: linear-gradient(135deg, #e0f7fa, #f3e5f5); /* Clean soft background */
  display: flex;
  justify-content: center;
  align-items: center; /* Center logos horizontally and vertically */
}

.unlisted-logo-section-box {
  position: relative;
  width: 250px; /* Circle path width */
  height: 250px; /* Circle path height */
  animation: rotateBox 12s linear infinite; /* Continuous rotating effect for all logos */
  display: flex;
  justify-content: center;
  align-items: center;
}

.unlisted-logo-section-logo {
  position: absolute;
  width: 60px; /* Adjusted logo size */
  height: 60px; /* Adjusted logo size */
  object-fit: contain;
  background: transparent;
  border-radius: 50%; /* Ensure logos are circular */
  transition: transform 0.3s ease, filter 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow for depth */
  pointer-events: auto;
  opacity: 0.9; /* Slight opacity for a professional look */
}

.unlisted-logo-section-logo:hover {
  transform: scale(1.5); /* Make the logo bigger on hover */
  filter: brightness(1.2);
  z-index: 5;
  opacity: 1; /* Full opacity on hover */
}

/* Continuous rotation animation for the container */
@keyframes rotateBox {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Position logos along the circumference of the circle */
.unlisted-logo-section-logo:nth-child(1) {
  transform: rotate(0deg) translateX(120px) rotate(0deg);
}

.unlisted-logo-section-logo:nth-child(2) {
  transform: rotate(60deg) translateX(120px) rotate(-60deg);
}

.unlisted-logo-section-logo:nth-child(3) {
  transform: rotate(120deg) translateX(120px) rotate(-120deg);
}

.unlisted-logo-section-logo:nth-child(4) {
  transform: rotate(180deg) translateX(120px) rotate(-180deg);
}

.unlisted-logo-section-logo:nth-child(5) {
  transform: rotate(240deg) translateX(120px) rotate(-240deg);
}

.unlisted-logo-section-logo:nth-child(6) {
  transform: rotate(300deg) translateX(120px) rotate(-300deg);
}

/* Responsive design */
@media (max-width: 768px) {
  .unlisted-logo-section-logo {
    width: 50px; /* Smaller size for medium screens */
    height: 50px; /* Smaller size for medium screens */
  }
}

@media (max-width: 480px) {
  .unlisted-logo-section-logo {
    width: 40px; /* Smaller size for smaller screens */
    height: 40px; /* Smaller size for smaller screens */
  }
}


/* stock-info-section */
.stock-table-container {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}

.stock-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.stock-table th, .stock-table td {
  padding: 10px;
  text-align: left;
  border: 1px solid #ddd;
}

.stock-table th {
  background-color: #f2f2f2;
}

.stock-table tr:hover {
  background-color: #f0f0f0; /* Light gray background on hover */
  cursor: pointer; /* Change cursor to pointer to indicate it's clickable */
}

@media (max-width: 1200px) {
  .stock-table {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .stock-table th, .stock-table td {
    padding: 8px;
  }

  .stock-table {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .stock-table {
    font-size: 12px;
  }

  .stock-table th, .stock-table td {
    padding: 6px;
  }
}
/* Mutual fund page */
/* mutual-fund-plans-section */
/* Mutual Fund Plans Section */
.mutual-fund-plans-section {
  background-color: #f4f4f4;
  padding: 40px 20px;
}

.mutual-fund-plans-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.mutual-fund-plans-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.mutual-fund-card {
  background-color: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mutual-fund-card h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 15px;
}

.mutual-fund-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

.mutual-fund-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .mutual-fund-plans-content h2 {
    font-size: 2rem;
  }

  .mutual-fund-plans-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .mutual-fund-plans-content h2 {
    font-size: 1.8rem;
  }

  .mutual-fund-plans-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .mutual-fund-plans-content h2 {
    font-size: 1.6rem;
  }

  .mutual-fund-plans-content p {
    font-size: 0.8rem;
  }

  .mutual-fund-card {
    padding: 20px;
  }
}
/* mutual-fund-benefits-section */
.mutual-fund-benefits-section {
  background-color: #ffffff;
  padding: 40px 20px;
}

.mutual-fund-benefits-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.mutual-fund-benefits-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

/* Using Flexbox to ensure equal height of cards */
.mutual-fund-benefits-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.mutual-fund-benefits-col {
  flex: 1 1 30%; /* Ensures equal width for each column */
  padding: 0 15px; /* Spacing between cards */
}

.mutual-fund-benefits-card {
  background-color: #f8f9fa;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensures content is spaced evenly */
  height: 100%; /* Ensure the card takes full height of its container */
}

.mutual-fund-benefits-card h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 15px;
}

.mutual-fund-benefits-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

.mutual-fund-benefits-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .mutual-fund-benefits-content h2 {
    font-size: 2rem;
  }

  .mutual-fund-benefits-content p {
    font-size: 1rem;
  }

  .mutual-fund-benefits-col {
    flex: 1 1 45%; /* Two columns on medium screens */
  }
}

@media (max-width: 768px) {
  .mutual-fund-benefits-content h2 {
    font-size: 1.8rem;
  }

  .mutual-fund-benefits-content p {
    font-size: 0.9rem;
  }

  .mutual-fund-benefits-col {
    flex: 1 1 100%; /* Single column on smaller screens */
  }
}

@media (max-width: 480px) {
  .mutual-fund-benefits-content h2 {
    font-size: 1.6rem;
  }

  .mutual-fund-benefits-content p {
    font-size: 0.8rem;
  }

  .mutual-fund-benefits-card {
    padding: 20px;
  }
}
/* advisory */
/* advisory-fo-section */
/* Default layout for desktop, tablet, and mobile */
.advisory-fo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 20px auto;
}

.advisory-fo-tabs {
    display: flex;
    gap: 20px;
}

.advisory-fo-tab {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 5px;
    background-color: #eaeaea;
    transition: all 0.3s ease;
}

.advisory-fo-tab:hover {
    background-color: #eda835;
    color: white;
    transform: scale(1.05);
}

/* Media Queries for responsiveness */

/* For tablet and laptop (same layout for both) */
@media (max-width: 1024px) {
    .advisory-fo-section {
        flex-direction: row;
        padding: 20px;
    }
    .advisory-fo-tabs {
        flex-direction: row;
        gap: 20px;
    }
}

/* For mobile devices */
@media (max-width: 480px) {
    .advisory-fo-section {
        padding: 10px;
    }
    .advisory-fo-tab {
        font-size: 14px;
        padding: 6px 15px;
    }
}
/* past-call-section-fo */
/* Main Container */
.past-call-section-fo {
  padding: 20px;
  font-family: 'Arial', sans-serif;
  background-color: #f4f5f7;
  min-height: 100vh;
}

/* Category Buttons */
.past-call-section-btn-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.past-call-section-btn {
  padding: 12px 25px;
  cursor: pointer;
  background-color: #3498db;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  min-width: 120px;
  text-align: center;
  transition: 0.3s;
}

.past-call-section-btn:hover {
  background-color: #e67e22;
  transform: translateY(-3px);
}

/* Filter Section */
.past-call-section-filter-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  flex-wrap: wrap;
}

.past-call-section-filter-btn {
  padding: 12px 20px;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #ccc;
  color: black;
  font-size: 16px;
  border-radius: 8px;
  width: 250px;
  margin-bottom: 10px;
  text-align: center;
}

.past-call-section-calendar-container {
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  display: none;
  z-index: 10;
}

/* Cards Container */
.past-call-section-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 20px;
}

/* Card Styling */
.past-call-section-card {
  background-color: #fff;
  border: 1px solid #ddd;
  margin-top: 20px;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Card Content */
.past-call-section-card .top-row {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  align-items: flex-start;
}

.past-call-section-card .title {
  font-size: 16px;
  color: #111;
}

.past-call-section-card .price-change {
  font-size: 14px;
  color: red;
  text-align: right;
  font-weight: bold;
}

.past-call-section-card .subtitle {
  font-size: 14px;
  color: #555;
}

.past-call-section-card .details {
  background: #f6f8fa;
  padding: 12px;
  border-radius: 10px;
}

.past-call-section-card .details p {
  margin: 6px 0;
  font-size: 14px;
}

.past-call-section-card .status {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

/* Profit & Book Tags */
.past-call-section-card .profit {
  background-color: #c8f1e4;
  color: #1e8e65;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 13px;
}

.past-call-section-card .book {
  background-color: #ffe9c9;
  color: #e67e22;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 13px;
}

/* View All Button */
.past-call-section-view-all-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.past-call-section-view-all-btn {
  padding: 12px 30px;
  background-color: #eda835;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.past-call-section-view-all-btn:hover {
  background-color: #e67e22;
}

/* Responsive Design */
@media (max-width: 768px) {
  .past-call-section-btn {
    width: 45%;
    margin: 5px 0;
  }

  .past-call-section-filter-btn {
    width: 90%;
    margin: auto;
    margin-bottom: 10px;
  }

  .past-call-section-calendar-container {
    left: 25%;
  }

  .past-call-section-cards-container {
    grid-template-columns: 1fr;
  }

  .past-call-section-view-all-btn {
    width: 60%;
  }
  .past-call-section-calendar-container {
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  display: none;
  z-index: 10;
}
}
@media (max-width: 425px) {
   .past-call-section-calendar-container {
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  display: none;
  z-index: 10;
}
}
@media (max-width: 375px) {
   .past-call-section-calendar-container {
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  display: none;
  z-index: 10;
}
}
@media (max-width: 320px) {
   .past-call-section-calendar-container {
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  display: none;
  z-index: 10;
}
}