/********** Template CSS **********/
:root {
  --primary: #4761FF;
  --secondary: #555555;
  --light: #F1F3FA;
  --dark: #1C2035;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: .5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
  color: var(--dark);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/* Topbar Main Container */
/* Topbar Main Container */
.Topbar-container-fluid {
  background-color: #06060b;
  color: white;
  padding: 10px 20px;
  width: 100%;
  height: 87px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.Topbar-d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  
}

/* Logo Section */
.logo-container {
  display: flex;
  align-items: center;
  text-align: center;
  margin-left: 73px;
  margin-right: 80px;
}

.logo-img {
  max-height: 55px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  margin-left: 2px;
  text-align: center;
  align-content: stretch;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: space-between;
}

.logo-title,
.logo-subtitle {
  font-weight: bold;
  background: linear-gradient(135deg, #AE8625, #F7EF8A, #D2AC47, #EDC967);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-title {
  font-size: 30px;
  margin-right: 27px;
  margin-bottom: -5px;
}

.logo-subtitle {
  font-size: 18px;
  margin-right: 16px;
}

/* Right Section */
.Topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.Topbar-right a,
.Topbar-right small {
  color: white;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.Topbar-right a i,
.Topbar-right small i {
  color: #cb9f42;
  margin-right: 5px;
}

.Topbar-right a:hover {
  color: #cb9f42;
  opacity: 0.9;
}

/* ============================================= */
/* ========== Responsive Adjustments =========== */
/* ============================================= */

/* Tablet & Mobile (up to 992px) */
@media (max-width: 992px) {
  .Topbar-container-fluid {
    justify-content: center;
  }
  .Topbar-d-flex {
    margin-left: 60px; /* Add this line */
  }

  .Topbar-right {
    display: none;
  }

  .logo-container {
    margin-left: 0;
    margin-right: 0;
  }

  .logo-img {
    max-height: 50px;
  }

  .logo-title {
    font-size: 24px;
    margin-right: 0;
  }

  .logo-subtitle {
    font-size: 14px;
    margin-right: 0;
  }

  .topabar-h1 {
    font-size: 12px;
    margin-right: 0;
  }
}

/* Small Mobile Devices (up to 768px) */
@media (max-width: 768px) {
  .Topbar-d-flex {
    margin-left: 60px; /* Add this line */
  }
  .logo-title {
    font-size: 20px;
  }

  .logo-subtitle {
    font-size: 12px;
  }

  .topabar-h1 {
    font-size: 9.2px;
  }

  .logo-img {
    max-height: 38px;
  }
}

/* Extra Small Devices (up to 576px) */
@media (max-width: 576px) {
  .Topbar-d-flex {
    margin-left: 60px; /* Add this line */
  }
  .logo-img {
    max-height: 36px;
  }

  .logo-title {
    font-size: 18px;
  }

  .logo-subtitle {
    font-size: 11px;
  }
}

/* Optional: For specific screen resolutions like Nest Hub (1024x600) */
@media (max-width: 1024px) and (min-height: 600px) {
  .Topbar-container-fluid {
    height: 85px;
  }
 

  .logo-container {
    margin-left: 20px;
    margin-right: 30px;
  }

  .logo-img {
    max-height: 34px;
  }

  .logo-title {
    font-size: 22px;
    margin-right: 10px;
  }

  .logo-subtitle {
    font-size: 14px;
    margin-right: 8px;
  }

  .Topbar-right {
    gap: 10px;
  }

  .Topbar-right a,
  .Topbar-right small {
    font-size: 11px;
  }
}
/* topbar home end */

/*** Navbar start ***/
/* Updated CSS for Navbar */
.sticky-top {
  top: -100px;
  transition: .5s;
}

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 25px 0;
  color: var(--dark);
  font-size: 18px;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #d0a94e;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
      margin-right: 0;
      padding: 10px 0;
  }

  .navbar .navbar-nav {
      margin-top: 15px;
      border-top: 1px solid #eeeeee;
  }

  /* Ensure Client Login button is visible and aligned to the left in mobile view */
  .ms-auto.d-lg-block {
      display: flex !important;
      justify-content: flex-start;
      margin-top: 15px;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
      display: block;
      border: none;
      margin-top: 0;
      top: 150%;
      opacity: 0;
      visibility: hidden;
      transition: .5s;
      color: rgb(206, 172, 87);
  }

  .navbar .nav-item:hover .dropdown-menu {
      top: 100%;
      visibility: visible;
      transition: .5s;
      opacity: 1;
  }
}
/* Add these media queries for scaling adjustments */
@media screen and (min-resolution: 120dpi) {
  /* Adjustments for 125% scaling */
  .Topbar-container-fluid {
    height: 100px; /* Slightly taller for better visibility */
  }
  
  .logo-title {
     /* Slightly larger text */
  }
  
  .logo-subtitle {
    font-size: 20px;
  }
  
  .Topbar-right a, .Topbar-right small {
    font-size: 16px; /* Larger text for better readability */
  }
  
  .navbar .navbar-nav .nav-link {
    padding: 30px 0; /* More padding for larger touch targets */
    font-size: 20px; /* Larger font size */
  }
}

/* Navbar specific adjustments for scaling */
@media (min-width: 992px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 30px; /* Slightly reduced margin for scaling */
    padding: 20px 0; /* Adjusted padding */
    font-size: 16px; /* Base font size */
  }
  
  /* Adjust for 125% scaling */
  @media screen and (min-resolution: 120dpi) {
    .navbar .navbar-nav .nav-link {
      margin-right: 35px;
      padding: 25px 0;
      font-size: 18px;
    }
  }
}

/* Better mobile handling */
@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    font-size: 16px; /* Slightly larger for mobile */
    padding: 12px 0; /* More touch-friendly */
  }
  
  /* Adjust for scaled mobile views */
  @media screen and (min-resolution: 120dpi) {
    .navbar .navbar-nav .nav-link {
      font-size: 18px;
      padding: 14px 0;
    }
  }
}



/* Ensure dropdowns are properly scaled */
@media (min-width: 992px) and (min-resolution: 120dpi) {
  .navbar .nav-item .dropdown-menu {
    font-size: 16px; /* Larger dropdown text */
    min-width: 220px; /* Wider dropdowns */
  }
  
  .navbar .dropdown-toggle::after {
    font-size: 16px; /* Larger caret */
  }
}

/* Specific fixes for iPad Pro (1024px) and Nest Hub (1024x600) */
@media only screen and (min-width: 992px) and (max-width: 1024px) {
  /* Force show the right section */
  .Topbar-right {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 10px;
    margin-left: auto;
  }
  
  /* Adjust logo spacing */
  .logo-container {
    margin-right: 20px;
    min-width: 250px;
  }
  
  /* Make text fit better */
  .Topbar-right small, 
  .Topbar-right a {
    font-size: 11px;
    white-space: nowrap;
  }
  
  /* Ensure client login button shows */
  .ms-auto.d-none.d-lg-block {
    display: block !important;
    margin-left: 15px;
  }
  
  /* Specific fix for Nest Hub's short height */
  @media (max-height: 600px) {
    .Topbar-container-fluid {
      padding: 5px 10px;
      height: auto;
    }
    .Topbar-right {
      gap: 5px;
    }
    .logo-title {
      font-size: 22px;
    }
  }
}

/* For iPad Pro portrait (768px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    overflow: visible;
  }
  .navbar-collapse .Topbar-right {
    display: flex !important;
    flex-direction: column;
    padding: 10px 15px;
  }
  .ms-auto.d-none.d-lg-block {
    display: block !important;
    margin: 10px 0;
  }
}
/* Specific fixes for iPad Pro (1024px) and Nest Hub (1024x600) */
@media only screen and (min-width: 992px) and (max-width: 1024px) {
  /* Ensure navbar items stay visible */
  .navbar-nav {
    flex-wrap: wrap;
  }
  
  /* Make sure Contact link is visible */
  .nav-item.nav-link[href*="contact"] {
    display: block !important;
    margin-right: 15px;
  }
  
  /* Ensure Client Login button shows */
  .ms-auto.d-none.d-lg-block {
    display: block !important;
    margin-left: 15px;
  }
  
  /* Adjust spacing between navbar items */
  .navbar .navbar-nav .nav-link {
    margin-right: 15px;
    padding: 15px 0;
  }
  
  /* Specific fix for Nest Hub's short height */
  @media (max-height: 600px) {
    .navbar .navbar-nav .nav-link {
      padding: 10px 0;
    }
  }
}

/* For iPad Pro portrait (768px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Show Contact in collapsed menu */
  .navbar-collapse .nav-item.nav-link[href*="contact"] {
    display: block !important;
  }
  
  /* Show Client Login in collapsed menu */
  .navbar-collapse .ms-auto.d-none.d-lg-block {
    display: block !important;
    margin: 5px 10px;
  }
}
/* navbar end */

/*** Header start ***/
.carousel-item {
  position: relative;
  width: 100%;
  height: 600px; /* Default height for large screens */
}

.carousel-item img,
.carousel-item video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  text-align: center;
  padding: 20px;
  font-size: clamp(14px, 3vw, 20px); /* ✅ Responsive font size */
  word-break: normal;               /* ✅ Avoid breaking normal words */
  overflow-wrap: break-word;       /* ✅ Break only if necessary */
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .carousel-item {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .carousel-item {
    height: 400px;
  }

  .carousel-caption {
    padding: 15px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 12%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (max-width: 480px) {
  .carousel-item {
    height: 300px;
  }

  .carousel-caption {
    padding: 10px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 15%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
  }
}

@media (max-width: 300px) {
  .carousel-item {
    height: 250px;
  }

  .carousel-caption {
    padding: 5px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 18%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 1.8rem;
    height: 1.8rem;
  }
}

/* Page Header */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), 
              url(../img/carousel-1.webp) center center no-repeat;
  background-size: cover;
  padding: 50px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px),
       (min-width: 769px) and (max-width: 991px),
       (min-width: 1024px) and (max-width: 1366px) {
  .page-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: clamp(14px, 2vw, 18px); /* ✅ Responsive breadcrumb text */
  color: var(--light);
}

.display-2 {
  font-size: clamp(28px, 6vw, 80px); /* ✅ Responsive large heading */
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
  padding: 10px 20px;
  max-width: 90%;
  overflow-wrap: break-word;
  background: rgba(0, 0, 0, 0.3);
  display: inline-block;
  border-radius: 5px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .display-2 {
    margin-bottom: 0;
  }
}

.breadcrumb {
  font-size: clamp(12px, 2vw, 16px); /* ✅ Make breadcrumb more flexible */
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  display: inline-block;
}

.breadcrumb-item a {
  color: white !important;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: #ddd !important;
}

@media (max-width: 768px) {
  .page-header {
    padding: 40px 15px;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 30px 10px;
  }

  .display-2 {
    padding: 8px 16px;
  }
}

@media (max-width: 300px) {
  .page-header {
    padding: 20px 5px;
  }

  .display-2 {
    padding: 6px 12px;
  }

  .breadcrumb {
    font-size: 12px;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.back-to-top:hover {
  background: rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

@media (max-width: 480px) {
  .back-to-top {
    width: 35px;
    height: 35px;
    line-height: 35px;
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 300px) {
  .back-to-top {
    width: 30px;
    height: 30px;
    line-height: 30px;
    right: 15px;
    bottom: 15px;
  }
}

/* Font Weight */
.fw-medium {
  font-weight: 500;
}
/* Header end */

/*** Features ***/
.feature-row {
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}
.feature-item {
  border-color: rgba(0, 0, 0, .03) !important;
}


/*** About ***/
.about {
  background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/about.jpg) left center no-repeat;
  background-size: cover;
}

.btn-play {
  position: relative;
  display: block;
  box-sizing: content-box;
  width: 36px;
  height: 46px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 18px 20px 20px 28px;
  background: var(--primary);
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 90px;
  height: 90px;
  background: var(--primary);
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 90px;
  height: 90px;
  background: var(--primary);
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: 3px;
  border-left: 30px solid #FFFFFF;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

.modal-video .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.modal-video .modal-body {
  position: relative;
  padding: 0px;
}

.modal-video .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #FFFFFF;
  background: #000000;
  opacity: 1;
}

/*** Service-home-start ***/
.home-services.offered-container {
  width: calc(100% - 100px);
  padding: 0 20px;
  margin: 0 auto;
  overflow: hidden; 
}

/* Center the heading */
.home-text-center {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-text-center h1 {
  font-size: 2rem;
  color: white;
  text-align: center;
}

/* Services Row Styling - Display in Horizontal Row */
.home-services.offered-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; 
  justify-content: center; 
  padding-bottom: 10px;
}

/* Service Item Styling */
.home-service-item {
  flex: 0 0 calc(25% - 20px); 
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  height: 250px; 
}

.home-service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.home-service-text {
  padding: 24px;
}

/* Service Button Styling */
.home-btn-square {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.home-btn-square img {
  width: 32px;
  height: 32px;
}

.home-service-btn a {
  display: inline-block;
  background: #fff;
  padding: 12px 16px;
  border: 1px solid #f0f0f0;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  color: #B37F2B;
  font-weight: 600;
  transition: all 0.3s;
}

.home-service-btn a:hover {
  background: #f4f4f4;
  color: #b37228;
}

/* Responsive Design */
/* Golden Curve - Hidden for Mobile and Tablets */
@media (max-width: 991px) {
  .golden-curve {
    display: none !important;
  }
}

/* Service Container Styling */
.service-container {
  position: relative;
  z-index: -1;
  background-color: #fff;
  padding-top: 100px;
}

.service-container h1 {
  margin-top: 50px;
  font-size: 2rem;
  text-align: center;
}

/*** Service-home-start ***/
.home-services.offered-container {
  width: calc(100% - 100px);
  padding: 0 20px;
  margin: 0 auto;
  overflow: hidden;
}

.home-text-center {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-text-center h1 {
  font-size: 2rem;
  color: white;
  text-align: center;
}

/* Override heading color, font size, and margin for mobile and tablets */
@media (max-width: 991px) {
  .home-text-center h1 {
    font-size: 2rem !important;
    color: #000 !important;
  }
}

.home-services.offered-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 10px;
}

.home-service-item {
  flex: 0 0 calc(25% - 20px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  height: 250px;
}

.home-service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.home-service-text {
  padding: 24px;
}

.home-btn-square {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.home-btn-square img {
  width: 32px;
  height: 32px;
}

.home-service-btn a {
  display: inline-block;
  background: #fff;
  padding: 12px 16px;
  border: 1px solid #f0f0f0;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  color: #B37F2B;
  font-weight: 600;
  transition: all 0.3s;
}

.home-service-btn a:hover {
  background: #f4f4f4;
  color: #b37228;
}

/* Responsive Service Cards */
@media (max-width: 1200px) {
  .home-service-item {
    flex: 0 0 calc(33.33% - 20px);
  }
}

@media (max-width: 991px) {
  .home-service-item {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 767px) {
  .home-services.offered-container {
    width: 100%;
    padding: 0 20px;
  }

  .home-services.offered-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .home-service-item {
    flex: 1 1 auto;
    width: 80%;
    max-width: 400px;
    margin: 0 auto 30px;
    height: auto;
  }
}

@media (max-width: 576px) {
  .home-service-item {
    width: 90%;
    max-width: 350px;
  }
}

/*** Project ***/
.project-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.project-item .project-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  padding-top: 60px;
  transition: .5s;
}

.project-item:hover .project-overlay {
  opacity: 1;
  padding-top: 0;
}

.project-carousel .owl-nav {
  position: absolute;
  top: -100px;
  right: 0;
  display: flex;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
  margin-left: 15px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  border-radius: 55px;
  box-shadow: 0 0 45px rgba(0, 0, 0, .15);
  font-size: 25px;
  transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
  background: #d0a94e;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .project-carousel .owl-nav {
    top: -70px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .project-carousel .owl-nav .owl-prev,
  .project-carousel .owl-nav .owl-next {
    margin: 0 7px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/*** Home -Products Offer-start ***/
.home-products-section-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  background: #f4f4f4;
  margin: 0 50px;
  border-radius: 10px;
  margin-top: 30px;
}

.products-heading {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #d0a94e;
}

/* Individual Product Card */
.home-products-section-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s, background-color 0.3s;
}

.home-products-section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background: #fff3d1;
}

.home-products-section-image img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

/* Icon Styling */
.home-products-section-image i {
  font-size: 40px;
  margin-bottom: 15px;
}

/* Subheading - Product Title */
.home-products-section-card h3 {
  font-size: 1.5rem;
  /* Updated to 1.5rem */
  color: #333;
  margin-bottom: 10px;
}

/* Product Description */
.home-products-section-card p {
  font-size: 1rem;
  /* Updated to 1rem */
  color: #666;
  margin-bottom: 15px;
}

/* Dot Progress Indicators */
.home-products-section-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.home-products-section-dot {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  transition: background 0.3s;
}

.home-products-section-dot.active {
  background: #d0a94e;
}

/* Responsive Design */
@media (max-width: 768px) {
  .home-products-section-container {
    flex-direction: column;
    align-items: center;
    margin: 0 20px;
  }

  .home-products-section-card {
    width: 80%;
  }
}

/*** Home -Products Offer-emd ***/

/*** Team ***/
.team-item {
  position: relative;
  text-align: center;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
  overflow: hidden; 
  border-radius: 10px; 
  width: 100%; 
  height: 300px;
}

.team-item img {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block;
}

.team-item .team-social {
  position: absolute;
  padding: 0;
  top: 15px;
  left: 0;
  overflow: hidden;
}

.team-item .team-social li {
  list-style-type: none;
  margin-bottom: 10px;
  margin-left: -50px;
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-social li {
  margin-left: 15px;
  opacity: 1;
}

.team-item .team-social li .btn {
  background: #FFFFFF;
  color: var(--primary);
  border-radius: 40px;
  transition: 0.5s;
}

.team-item .team-social li .btn:hover {
  color: #FFFFFF;
  background: var(--primary);
}

.team-item .team-social li:nth-child(1) {
  transition-delay: 0.1s;
}

.team-item .team-social li:nth-child(2) {
  transition-delay: 0.2s;
}

.team-item .team-social li:nth-child(3) {
  transition-delay: 0.3s;
}

.team-item .team-social li:nth-child(4) {
  transition-delay: 0.4s;
}

.team-item .team-social li:nth-child(5) {
  transition-delay: 0.5s;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .team-item {
    width: 48%; 
    margin-bottom: 20px; 
  }

  .team-item img {
    object-fit: cover; 
  }
}

@media (max-width: 768px) {
  .team-item {
    width: 100%; 
    margin-bottom: 20px;
    height: auto; 
  }

  .team-item img {
    height: auto; 
  }

  .team-item .team-social {
    top: 10px; 
  }
}

@media (max-width: 480px) {
  .team-item {
    width: 100%;
    margin-bottom: 15px;
  }

  .team-item .team-social {
    top: 10px; 
  }

  .team-item .team-social li {
    margin-left: 0;
    margin-bottom: 8px; 
  }

  .team-item .team-social li .btn {
    padding: 6px 12px; 
  }
}
/*** Testimonial ***/
.testimonial-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
  transition: .5s;
}

.owl-item .testimonial-item,
.testimonial-item * {
  transition: .5s;
}

.owl-item.center .testimonial-item,
.testimonial-item:hover {
  background: #d0a94e;
}

.owl-item.center .testimonial-item *,
.testimonial-item:hover * {
  color: #FFFFFF !important;
}

.testimonial-item img {
  width: 100px !important;
  height: 100px !important;
  border-radius: 100px;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  top: -100px;
  right: 0;
  display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin-left: 15px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  border-radius: 55px;
  box-shadow: 0 0 45px rgba(0, 0, 0, .15);
  font-size: 25px;
  transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: #d0a94e;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .testimonial-carousel .owl-nav {
    top: -70px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .testimonial-carousel .owl-nav .owl-prev,
  .testimonial-carousel .owl-nav .owl-next {
    margin: 0 7px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/* General styles */
.testimonials-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  position: relative;
}

.testimonial {
  display: flex;
  align-items: center;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  height: 500px;
}

.testimonial img {
  width: -100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  flex: 1;
  padding: 50px;
  text-align: left;
}

.testimonial-content h3 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: #d0a94e;
}

.testimonial-content h4 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #555;
  font-weight: normal;
}

.testimonial-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

.stars {
  color: #d0a94e;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.nav-buttons {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.nav-buttons button {
  background-color: #d0a94e;
  color: #fff;
  border: none;

  border-radius: 50px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-left: -3%;
}

.nav-buttons button:hover {
  background-color: #b0893e;
}

.testimonial.hidden {
  display: none;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .testimonial {
    flex-direction: column;
    text-align: center;
  }

  .testimonial img {
    width: 80%; 
    height: auto;
  }

  .testimonial-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .testimonials-container {
    margin: 50px 20px;
  }

  .testimonial {
    flex-direction: column;
    text-align: center;
    height: auto;
  }

  .testimonial img {
    width: 100%;
    height: auto;
  }

  .testimonial-content {
    padding: 20px;
  }

  .testimonial-content h3 {
    font-size: 1.8rem;
  }

  .testimonial-content h4 {
    font-size: 1.3rem;
  }

  .testimonial-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .testimonials-container {
    margin: 50px 20px;
  }

  .testimonial {
    flex-direction: column;
    text-align: center;
    height: auto;
  }

  .testimonial img {
    width: 100%;
    height: auto;
  }

  .testimonial-content {
    padding: 15px;
  }

  .testimonial-content h3 {
    font-size: 1.5rem;
  }

  .testimonial-content h4 {
    font-size: 1.2rem;
  }

  .testimonial-content p {
    font-size: 1rem; /* ✅ updated from 0.85rem to 1rem */
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .testimonial {
    flex-direction: row; 
    height: auto; 
  }

  .testimonial img {
    width: 40%; 
    height: auto;
  }

  .testimonial-content {
    padding: 30px; 
  }

  .testimonial-carousel .owl-nav {
    top: -50px; 
  }
}

/* Hide nav buttons on Nest Hub and similar devices */
@media (min-width: 1024px) and (max-width: 1280px) and (min-height: 600px) and (max-height: 800px) {
  .nav-buttons {
    display: none !important;
  }
}

@media (min-device-width: 1024px) and (max-device-width: 1280px) and 
       (min-device-height: 600px) and (max-device-height: 800px) and 
       (orientation: landscape) {
  .nav-buttons {
    display: none !important;
  }
}

/* General styles for the nav buttons */
.nav-buttons {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 10; 
  gap: 15px; 
}

.nav-buttons button {
  background-color: #d0a94e;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 12px 20px; 
}

.nav-buttons button:hover {
  background-color: #b0893e;
}

/* Responsive styles for different screen sizes */
@media (max-width: 1024px) {
  .nav-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    justify-content: space-between;
    gap: 10px; 
  }

  .nav-buttons button {
    padding: 10px 18px;
    font-size: 1rem;
  }
}
/* Responsive styles for different screen sizes */
@media (max-width: 1024px) {
  .nav-buttons {
    justify-content: center; 
    gap: 20px; 
  }

  .nav-buttons button {
    padding: 10px 18px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .nav-buttons {
    justify-content: center; 
    gap: 15px; 
  }

  .nav-buttons button {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .nav-buttons {
    justify-content: center; 
    gap: 10px;
  }

  .nav-buttons button {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}
/* Hide nav buttons on specific devices */
@media 
(min-width: 1024px) and (max-width: 1024px) and (min-height: 600px) and (max-height: 600px),
(min-width: 1280px) and (max-width: 1280px) and (min-height: 800px) and (max-height: 800px),
(min-width: 834px) and (max-width: 1194px) and (min-height: 834px) and (max-height: 1194px),
(min-width: 1024px) and (max-width: 1366px) and (min-height: 1024px) and (max-height: 1366px),
(min-width: 912px) and (max-width: 1368px) and (min-height: 912px) and (max-height: 1368px) {
  .nav-buttons {
    display: none !important;
  }
  
  /* Also hide the testimonial carousel navigation if needed */
  .testimonial-carousel .owl-nav {
    display: none !important;
  }
}

/* Alternative approach for landscape orientations */
@media 
(min-width: 600px) and (max-width: 600px) and (min-height: 1024px) and (max-height: 1024px),
(min-width: 800px) and (max-width: 800px) and (min-height: 1280px) and (max-height: 1280px) {
  .nav-buttons {
    display: none !important;
  }
  
  .testimonial-carousel .owl-nav {
    display: none !important;
  }
}

/*** Footer ***/
.footer {
  color: #B0B9AE;
  background: #111111;
  padding: 40px 40px 40px 60px;
  margin-bottom: 20px;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #B0B9AE;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  /* font-family: "Font Awesome 5 Free"; */
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  color: #B0B9AE;
  background: #111111;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 0;
  height: 100px;
}

.copyright a:hover {
  color: var(--primary) !important;
}

.footer .container.text-center {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #333;
}

.footer p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #B0B9AE;
  line-height: 1.6;
}

.footer p a {
  color: #B0B9AE;
  text-decoration: underline;
  transition: color 0.3s;
}

.footer p a:hover {
  color: var(--light);
}

.footer .small a {
  font-size: 12px;
  color: #B0B9AE;
}

.footer .small a:hover {
  color: var(--primary);
}

.footer .btn-square {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer .btn-square:hover {
  background-color: #d0a94e;
  transform: scale(1.1);
}

.footer input[type="text"] {
  border: 1px solid #555;
  border-radius: 0;
  background-color: #333;
  color: #fff;
  padding: 8px;
  width: 100%;
}

.footer input[type="text"]::placeholder {
  color: #aaa;
}

.footer input[type="text"]:focus {
  outline: none;
  border-color: var(--primary);
}

.footer button[type="button"] {
  background-color: #fff;
  color: #000;
  border: 1px solid #fff;
  border-radius: 5px;
  cursor: pointer;
  padding: 8px 12px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer button[type="button"]:hover {
  background-color: #d0a94e;
  color: #fff;
}
/* footer ends  */

/*seminar start*/
/* Content Section */
#content {
  padding: 20px;
  margin-left: 5%;
}

.details-section {
  margin-bottom: 70px;
  margin-left: 3.5%;
  margin-top: -1%;

}
/* Modal Heading */
/* Image and Information Section */
  .info-section {
    flex-direction: column;
    padding: 20px;
  }

  .info-image,
  .info-content {
    padding: 10px;
  }

  .info-content h2 {
    font-size: 20px;

  }

  .info-content p {
    font-size: 16px;
  }
/* Small Devices (e.g. iPhone, smartphones) */
@media (max-width: 600px) {
  #content {
    margin-left: 0;
    padding: 10px;
  }

  .details-section {
    margin: 20px 0;
  }

  .flyer {
    margin: 10px;
  }

  .flyer-header h1 {
    font-size: 7vw;
  }

  .flyer-header span,
  .flyer-header .subtext {
    font-size: 4vw;
  }

  .flyer-content {
    flex-direction: column;
    padding: 15px;
  }

  .flyer-content .details {
    padding: 10px;
  }

  .flyer-content h2 {
    font-size: 5vw;
  }

  .flyer-content p,
  .flyer-details div p {
    font-size: 3.5vw;
  }

  .flyer-details {
    flex-direction: column;
    padding: 15px;
  }

  .flyer-details div h3 {
    font-size: 4.5vw;
  }

  .carousel {
    max-width: 100%;
    max-height: none;
  }

  .carousel-button {
    font-size: 14px;
    padding: 8px;
  }
}

/* Medium Devices (e.g. iPad, tablets) */
@media (min-width: 601px) and (max-width: 1024px) {
  #content {
    margin-left: 7%;
    padding: 15px;
  }

  .flyer {
    margin-left: 0;
  }

  .flyer-header h1 {
    font-size: 5vw;
  }

  .flyer-header span,
  .flyer-header .subtext {
    font-size: 2.8vw;
  }

  .flyer-content {
    flex-direction: column;
  }

  .flyer-content .image,
  .flyer-content .details {
    width: 100%;
    text-align: center;
    padding: 15px;
  }

  .flyer-content h2 {
    font-size: 3.5vw;
  }

  .flyer-content p,
  .flyer-details div p {
    font-size: 2.2vw;
  }

  .flyer-details div h3 {
    font-size: 3.5vw;
  }

  .carousel {
    max-width: 100%;
    max-height: 400px;
  }
}

/* Large Screens (e.g. Nest Hub, desktops) */
@media (min-width: 1025px) and (max-width: 1440px) {
  .flyer-header h1 {
    font-size: 3.5vw;
  }

  .flyer-header span {
    font-size: 1.5vw;
  }

  .flyer-header .subtext {
    font-size: 1.3vw;
  }

  .flyer-content h2 {
    font-size: 2.2vw;
  }

  .flyer-content p {
    font-size: 1.1vw;
  }

  .flyer-details div h3 {
    font-size: 1.6vw;
  }

  .flyer-details div p {
    font-size: 1vw;
  }
}

/*seminor page end */

/* news section start */
.news-container {
  width: 80%;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-left: 5px solid gold;
}

.section-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
  color: #333;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.news-item {
  padding: 15px;
  border-radius: 8px;
  background-color: black;
  color: white;
  border: 1px solid gold;
  transition: transform 0.3s;
}

.news-item:hover {
  transform: scale(1.02);
}

.news-item h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: gold;
}

.news-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.news-item a {
  color: gold;
  text-decoration: none;
  font-weight: bold;
}

.news-item a:hover {
  text-decoration: underline;
}

/* Golden curve styling */
.golden-curve {
  position: relative;
  background: linear-gradient(to bottom, #B37F2B, #FFFFFF);
  width: 100%;
  height: 257px;
  clip-path: ellipse(100% 100% at 50% 100%);
  transform: rotate(360deg);
  z-index: -1;
  top: 0;
  margin-top: -59px;
  overflow: hidden;
}

/* Hide the golden curve for mobile devices */
@media (max-width: 768px) {
  .golden-curve {
    display: none;
  }
}

/* Service container styling */
.service-container {
  position: relative;
  z-index: -1;
  background-color: #fff;
  padding-top: 100px;
}

.service-container h1 {
  margin-top: 50px;
  font-size: 2rem;
  text-align: center;
}

/* Adjust h1 font size for smaller screens */
@media (max-width: 768px) {
  .service-container h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .service-container h1 {
    font-size: 1.5rem;
  }
}

/* Loader styles */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
  overflow: hidden;
}

/* Responsive margin-bottom for loader */
@media (max-width: 480px) {
  #loader {
    margin-bottom: 40px;
  }
}

#loader h3 {
  font-size: 2rem;
  color: #000;
  animation: fadeInOut 2s ease-in-out infinite;
}

/* Adjust loader text for smaller screens */
@media (max-width: 768px) {
  #loader h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  #loader h3 {
    font-size: 1.25rem;
  }
}

.welcome-text {
  color: #000;
}

.dhanvruksha-text {
  color: #d0a94e;
  font-weight: bold;
}

/* Keyframes for fade in/out effect */
@keyframes fadeInOut {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

/* Hide loader after transition */
.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

/* Prevent overflow on the root elements */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Adjust global font size for responsiveness */
html {
  font-size: 16px;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 12px;
  }
}

/*financial calcultor*/

.financial-calculators {
  text-align: center;
}

.financial-calculators h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.calculator-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.calculator-card {
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  padding: 40px;
  width: 310px;
  height: 310px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.calculator-card img {
  width: 50px;
  margin-bottom: 0px;
}

.calculator-card h2 {
  color: #2d3e85;
  font-size: 1.8rem;
  /* margin-bottom: 15px; */
}

.calculator-card p {
  font-size: 0.9rem;
  /* margin-bottom: 20px; */
}

.calculator-card button {
  background-color: #b38a3e;
  color: white;
  padding: 9px 15px;
  width: 100px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calculator-card button:hover {
  background-color: #856531;
}

.calculator-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
  .calculator-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .calculator-row {
    flex-direction: column;
    align-items: center;
  }
}

/*equity starts*/
html {
  scroll-behavior: smooth;
}

.eq1-steps-container .step-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

#equities-section {
  background: #f4f4f4;
  width: 90vw;
  padding: 40px 20px;
}

.equity-info-container {
  max-width: 1400px;
  margin: 0 auto;
}

.equity-info-heading {
  font-size: 2rem;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
}

.equity-info-content {
  background-color: #f8f8f8;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  padding: 10px;
  gap: 1px;
}
/* Media Query for Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .equity-info-content {
    flex-direction: column; 
    align-items: center; 
    padding: 20px; 
    gap: 3px; 
  }
}

/* Media Query for Mobile Devices (up to 767px) */
@media (max-width: 767px) {
  .equity-info-content {
    flex-direction: column; 
    align-items: flex-start; 
    padding: 15px; 
    gap: 3px;
  }
}


/* equity-steps */
/* General Styles */
.section-heading {
  text-align: center;
  font-size: 2rem;
  margin: 2rem 0;
  color: #333;
}

/* Circle Container (Desktop View) */
.eq1-steps-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  flex-wrap: wrap;

}

.st1,
.st2,
.st3,
.st4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-right: 20px;
  flex: 1;
}

/*what is eq - equi page*/
/* Equi Page Styling */
.what-is-equi {
  justify-content: center;
  align-items: center;
  padding: 30px;
  background-color: #ffffff;
  height: auto;
  max-width: 1600px;
  margin: 10px 40px;
}

.what-is-equi .content-container {
  display: flex;
  flex-direction: row;
  max-width: 1100px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  margin: 0 auto;
}

.what-is-equi .image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #d0a94e;
}

.what-is-equi .image-container img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.what-is-equi .image-container img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.what-is-equi .text-container {
  flex: 1;
  padding: 30px;
  background-color: #ffffff;
  text-align: left;
}

.what-is-equi .text-container h4 {
  color: #d0a94e;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.what-is-equi .text-container h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333333;
  line-height: 1.2;
}

.what-is-equi .text-container p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555555;
}

.what-is-equi .learn-more {
  display: inline-block;
  color: #d0a94e;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #d0a94e;
  padding: 8px 16px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.what-is-equi .learn-more:hover {
  background-color: #d0a94e;
  color: #ffffff;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  .what-is-equi .content-container {
    flex-direction: column;
    text-align: center;
  }

  .what-is-equi .image-container {
    height: 250px;
  }

  .what-is-equi .text-container h1,
  .what-is-equi .text-container h4 {
    text-align: center;
  }

  .what-is-equi {
    margin: 20px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .what-is-equi {
    padding: 15px;
    margin: 20px 30px; 
  }

  .what-is-equi .text-container h1,
  .what-is-equi .text-container h4 {
    font-size: 1.8rem;
    text-align: center;
  }

  .what-is-equi .text-container p {
    font-size: 1rem;
  }

  .what-is-equi .learn-more {
    font-size: 1rem;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .what-is-equi {
    height: auto;
    padding: 10px;
    margin: 15px 20px; 
  }

  .what-is-equi .text-container {
    padding: 15px;
  }

  .what-is-equi .text-container h1,
  .what-is-equi .text-container h4 {
    font-size: 1.6rem;
    text-align: center;
  }

  .what-is-equi .text-container p {
    font-size: 0.95rem;
  }
}

/*understanding of the equity*/
.eq-understanding-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  max-width: 1410px;
  margin: 40px 50px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.eq-understanding-left-section {
  flex: 1;
  padding-right: 40px;
}

.eq-understanding-left-section h1 {
  font-size: 2rem;
  color: #d0a94e;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center; 
}

.eq-understanding-subheading {
  font-size: 1.5rem;
  color: #777;
  margin-bottom: 20px;
}

.eq-understanding-content-description p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.eq-understanding-content-description p strong {
  font-weight: 600;
}

.eq-understanding-cta-button {
  background-color: #d0a94e;
  color: white;
  padding: 12px 24px;
  border: none;
  font-size: 1.1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
}

.eq-understanding-cta-button:hover {
  background-color: #b58c39;
  transform: scale(1.05);
}

.eq-understanding-right-section {
  flex: 0 0 45%;
  padding-left: 40px;
  position: relative;
  text-align: center;
}

.right-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.right-image:hover {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .eq-understanding-container {
    flex-direction: column;
    padding: 20px;
    margin: 40px 20px; 
  }

  .eq-understanding-left-section {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .eq-understanding-left-section h1 {
    text-align: center; 
  }

  .eq-understanding-right-section {
    padding-left: 0;
    margin-top: 20px;
  }
}

@media (max-width: 834px) { 
  .eq-understanding-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 40px 20px;
  }

  .eq-understanding-left-section {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .eq-understanding-left-section h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .eq-understanding-container {
    margin: 40px 20px; 
  }

  .eq-understanding-left-section h1 {
    font-size: 2rem;
    text-align: center;
  }

  .eq-understanding-subheading {
    font-size: 1.5rem;
  }

  .eq-understanding-content-description p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 600px) {
  .eq-understanding-container {
    padding: 15px;
    margin: 40px 20px; 
  }
}

@media (max-width: 480px) {
  .eq-understanding-container {
    padding: 10px;
    margin: 40px 20px; 
  }

  .eq-understanding-left-section h1 {
    font-size: 2rem;
    text-align: center;
  }

  .eq-understanding-subheading {
    font-size: 1.5rem;
  }

  .eq-understanding-content-description p {
    font-size: 1rem;
    line-height: 1.4;
  }
}

/* Risk Section Base Styles */
.risk-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #f0f0f0;
  box-sizing: border-box;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
  margin-top: 30px;
  margin-left: 50px;
  margin-right: 50px;
}

.risk-container .image-container {
  flex: 1;
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.risk-container .image-container .left-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

.risk-container .content-container {
  flex: 2;
  text-align: left;
  width: 100%;
  max-width: 600px;
  padding: 10px 20px;
}

.risk-container .content-container h2 {
  font-size: 2rem;
  margin: 15px 0;
  color: #333;
  text-align: center;
}

.risk-container .content-container ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.risk-container .content-container ul li {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.4;
  color: #555;
}

.risk-container .content-container ul li strong {
  font-weight: bold;
}

.risk-container .content-container ul li .description {
  margin-top: 5px;
  font-size: 1rem;
  color: #666;
}

@media (min-width: 1024px) {
  .risk-container {
    flex-direction: row;
    padding: 40px;
    gap: 40px;
    margin-left: 50px;
    margin-right: 50px;
  }

  .risk-container .image-container,
  .risk-container .content-container {
    width: 48%;
  }

  .risk-container .content-container h2 {
    font-size: 2rem;
  }
}

@media (max-width: 1024px) {
  .risk-container {
    flex-direction: column;
    padding: 20px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .risk-container .image-container,
  .risk-container .content-container {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .risk-container {
    padding: 15px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .risk-container .content-container h2 {
    font-size: 2rem;
  }

  .risk-container .content-container ul li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .risk-container {
    padding: 10px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .risk-container .content-container h2 {
    font-size: 2rem;
  }

  .risk-container .content-container ul li {
    font-size: 1rem;
  }
}
/* equity ends */

/* mutual funds start */
/* Mutual Fund Container */
.mutual-fund-container {
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  box-sizing: border-box;
  margin: 0 auto 30px;
  border: 20px solid #d0a94e;
}

/* Left Column (Image) */
.mutual-fund-left {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 15px;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.mutual-fund-left img {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 15px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.mutual-fund-left img:hover {
  transform: scale(1.05);
}

/* Right Column (Text) */
.mutual-fund-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  width: 50%;
  color: #333;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.mutual-fund-right h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

/* Visibility Animation */
.mutual-fund-left.visible,
.mutual-fund-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .mutual-fund-container {
    flex-direction: column;
    padding: 20px;
    margin-left: 20px !important;
    margin-right: 20px !important;
    width: calc(100% - 40px);
    max-width: 100%;
  }
  .mutual-fund-left, 
  .mutual-fund-right {
    width: 100%;
    text-align: center;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .mutual-fund-container {
    padding: 20px;
    margin-left: 20px !important;
    margin-right: 20px !important;
    width: calc(100% - 40px);
    max-width: 100%;
  }
  .mutual-fund-left, 
  .mutual-fund-right {
    width: 100%;
    text-align: center;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .mutual-fund-container {
    padding: 20px;
    margin-left: 20px !important;
    margin-right: 20px !important;
    width: calc(100% - 40px);
    max-width: 100%;
    flex-direction: column;
  }
  .mutual-fund-left, 
  .mutual-fund-right {
    width: 100%;
    text-align: center;
    padding: 20px;
  }
}

/* ===== How It Works Section ===== */u
.how-it-works {
  background-color: #ffffff;
  padding: 60px 0 40px;
  text-align: center;
  overflow: hidden;
  margin-top: -20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2.5rem;
  color: #D4AF37;
  margin-bottom: 60px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37, #FFD700);
}

/* Timeline Styles */
.horizontal-timeline {
  position: relative;
  width: 100%;
  padding-bottom: 20px;
}

.timeline-line {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #D4AF37, #FFD700);
  z-index: 1;
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.step {
  flex: 1;
  min-width: 280px;
  text-align: center;
  position: relative;
}

.step-icon {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  z-index: 3;
}

.icon-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #D4AF37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover .icon-circle {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.step-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  font-weight: 700;
  color: #D4AF37;
}

.step-content {
  margin-top: 15px;
}

.step-title {
  font-size: 1.3rem;
  color: #D4AF37;
  margin-bottom: 8px;
  font-weight: 600;
}

.step-text {
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
}
/* Hide timeline line on tablets and mobile devices */
@media (max-width: 991px) {
  .timeline-line {
    display: none;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .step {
    min-width: unset;
    width: 100%;
  }
}

/* ===== Base Advantages Section ===== */
.mutual-fund-container-adv {
  width: calc(100% - 40px);
  margin: 20px auto;
  max-width: 1400px;
}

.mutual-fund-section-adv {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  gap: 20px;
}

.left-image-container-adv {
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  position: relative;
  height: 300px;
  border-radius: 8px;
  margin-top: 0;
}

.left-image-container-adv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.left-image-container-adv img:hover {
  transform: scale(1.05);
}

.content-adv {
  width: 100%;
  padding-left: 0;
}

.content-adv h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #343a40;
  padding-bottom: 5px;
  text-align: center;
}

.advantages-list-adv {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advantage-item-adv {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 12px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.icon-adv {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.icon-adv img {
  width: 100%;
  height: auto;
  display: block;
}

.text-adv h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #343a40;
}

.text-adv p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

.advantage-item-adv.show-adv {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Tablet (iPad) and Larger Mobile Devices ===== */
@media (min-width: 768px) {
  .mutual-fund-container-adv {
    width: calc(100% - 60px);
  }
  
  .mutual-fund-section-adv {
    padding: 25px;
  }
  
  .left-image-container-adv {
    height: 350px;
  }
  
  .content-adv h2 {
    font-size: 1.7rem;
    text-align: left;
  }
  
  .text-adv h3 {
    font-size: 1.2rem;
  }
  
  .text-adv p {
    font-size: 0.95rem;
  }
}

/* ===== Small Laptops and Landscape Tablets ===== */
@media (min-width: 992px) {
  .mutual-fund-section-adv {
    flex-direction: row;
    align-items: flex-start;
    padding: 30px;
  }
  
  .left-image-container-adv {
    flex: 1;
    max-width: 400px;
    height: 400px;
    margin-top: 20px;
  }
  
  .content-adv {
    flex: 2;
    padding-left: 20px;
  }
  
  .content-adv h2 {
    font-size: 1.8rem;
  }
  
  .icon-adv {
    width: 45px;
    height: 45px;
  }
}

/* ===== Large Desktops and Smart Displays (Nest Hub) ===== */
@media (min-width: 1200px) {
  .mutual-fund-container-adv {
    width: calc(100% - 80px);
  }
  
  .mutual-fund-section-adv {
    max-width: 1370px;
  }
}

/* ===== Very Small Mobile Devices (iPhone 5/SE etc) ===== */
@media (max-width: 360px) {
  .mutual-fund-container-adv {
    width: calc(100% - 20px);
  }
  
  .mutual-fund-section-adv {
    padding: 15px;
  }
  
  .left-image-container-adv {
    height: 250px;
  }
  
  .content-adv h2 {
    font-size: 1.3rem;
  }
  
  .text-adv h3 {
    font-size: 1rem;
  }
  
  .text-adv p {
    font-size: 0.85rem;
  }
  
  .icon-adv {
    width: 35px;
    height: 35px;
  }
}

/* ===== Nest Hub Specific Adjustments (768x1280) ===== */
@media (min-width: 768px) and (min-height: 1200px) {
  .mutual-fund-section-adv {
    padding: 40px;
  }
  
  .left-image-container-adv {
    height: 500px;
  }
  
  .content-adv h2 {
    font-size: 2rem;
  }
  
  .text-adv h3 {
    font-size: 1.4rem;
  }
  
  .text-adv p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}
/* ===== History Section ===== */
.centered-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  padding: 20px;
  max-width: 1400px;
  width: 100%;
  text-align: center;
}

.mutual-fund-history {
  max-width: 1500px;
  color: #333;
  margin: 0 40px;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.mutual-fund-history h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0px;
  color: #555;
  text-align: center;
  border-bottom: 2px solid #555;
  display: inline-block;
  width: auto;
}

.mutual-fund-history p {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 15px;
  color: #555;
  text-align: left;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
  .mutual-fund-container-adv {
    width: calc(100% - 50px);
  }
  
  .left-image-container-adv {
    height: 350px;
  }
}

@media (max-width: 1024px) {
  .mutual-fund-container {
    padding: 18px;
    border-width: 18px;
  }
  
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
  }
  
  .mutual-fund-section-adv {
    flex-direction: column;
    padding: 25px;
  }
  
  .left-image-container-adv {
    margin: 0 auto 20px;
    height: 320px;
    max-width: 100%;
  }
  
  .content-adv {
    padding-left: 0;
    width: 100%;
  }
  
  .mutual-fund-history {
    margin: 0 30px;
  }
}

@media (max-width: 768px) {
  .mutual-fund-container {
    flex-direction: column;
    padding: 15px;
    border-width: 15px;
    margin: 0 1px 15px;
  }
  
  .mutual-fund-left,
  .mutual-fund-right {
    width: 100%;
    padding: 10px;
    text-align: center;
  }
  
  .mutual-fund-right h1 {
    font-size: 1.7rem;
    text-align: center;
  }
  
  .how-it-works {
    padding: 50px 0 30px;
  }
  
  .steps {
    flex-direction: column;
    gap: 50px;
  }
  
  .step {
    min-width: 100%;
  }
  
  .timeline-line {
    display: none;
  }
  
  .mutual-fund-container-adv {
    width: calc(100% - 40px);
  }
  
  .mutual-fund-history h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .mutual-fund-container {
    padding: 12px;
    border-width: 12px;
    margin: 0 0px 10px;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .step-icon {
    width: 80px;
    height: 80px;
  }
  
  .mutual-fund-section-adv {
    padding: 20px;
  }
  
  .left-image-container-adv {
    height: 280px;
  }
  
  .content-adv h2 {
    font-size: 1.6rem;
  }
  
  .mutual-fund-history {
    margin: 0 20px;
  }
}

@media (max-width: 480px) {
  .mutual-fund-container {
    padding: 10px;
    border-width: 10px;
    margin: 0 2px 17px;
  }
  
  .mutual-fund-right h1 {
    font-size: 1.5rem;
  }
  
  .how-it-works {
    padding: 40px 0 20px;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .mutual-fund-container-adv {
    width: calc(100% - 30px);
  }
  
  .icon-adv {
    width: 40px;
    height: 40px;
  }
  
  .text-adv h3 {
    font-size: 1.2rem;
  }
  
  .mutual-fund-history h1 {
    font-size: 1.5rem;
  }
  
  .mutual-fund-history p {
    font-size: 0.95rem;
    margin: 15px 10px 0;
  }
}

/* ===== History Section ===== */
.history-main-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.history-main-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f5f5f5, #d4af37);
}

.history-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.history-phase {
    margin: 30px 0;
    padding: 25px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #d4af37;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.history-phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.phase-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.phase-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #d4af37;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.history-phase h2 {
    color: #333;
    font-size: 1.3rem;
    margin: 0;
}

.history-phase p {
    color: #666;
    line-height: 1.7;
    margin-top: 15px;
}

.history-snapshot {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 5px;
    margin-top: 50px;
    border-top: 3px solid #d4af37;
    position: relative;
}

.snapshot-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.snapshot-header i {
    color: #d4af37;
    font-size: 1.5rem;
    margin-right: 15px;
}

.history-snapshot h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 0;
}

.history-snapshot ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px;
}

.history-snapshot li {
    padding: 10px 0;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    padding-left: 30px;
    color: #555;
    border-bottom: 1px dashed #eee;
}

.history-snapshot li:last-child {
    border-bottom: none;
}

.history-snapshot li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 15px;
    height: 15px;
    background-color: #d4af37;
    border-radius: 3px;
    transform: rotate(45deg);
}

/* Animation */
@keyframes phaseEntry {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.history-phase {
    opacity: 0;
    animation: phaseEntry 0.6s ease forwards;
}

.history-phase:nth-child(2) { animation-delay: 0.2s; }
.history-phase:nth-child(3) { animation-delay: 0.4s; }
.history-phase:nth-child(4) { animation-delay: 0.6s; }
.history-phase:nth-child(5) { animation-delay: 0.8s; }
.history-snapshot { animation: phaseEntry 0.6s ease 1s forwards; }

/* Responsive Design */
@media (max-width: 768px) {
    .history-main-title {
        font-size: 1.6rem;
    }
    
    .history-phase {
        padding: 20px 15px;
    }
    
    .history-phase h2 {
        font-size: 1.2rem;
    }
    
    .history-snapshot {
        padding: 20px;
    }
}
/*mutual funds ends */

/*pms starts*/
/*pms starts*/
/* PMS-info */
.pms-info-container {
  gap: 20px;
  padding: 10px 50px;
  background-color: #f2f2f2;
  margin-top: 30px;
  max-width: 1390px;
  margin: 30px 50px;
}

.pms-info-container section {
  height: 100vh;
  padding: 70px;
}

.pms-info-section1 {
  background: white;
  margin-top: 30px;
}

.pms-info-heading {
  display: block;
  font-size: 2rem;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
}

.pms-info-content {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

.highlight {
  color: #d0a94e;
  text-transform: none;
}

@media (max-width: 768px) {
  .pms-info-heading {
    font-size: 2rem;
  }

  .pms-info-content {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .pms-info-heading {
    font-size: 2rem;
  }

  .pms-info-content {
    font-size: 1rem;
  }

  .pms-info-container {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.pms-contact-button:visited,
.pms-contact-button:hover,
.pms-contact-button:focus,
.pms-contact-button:active {
  color: black;
  text-decoration: none;
}
/*pms-info-end*/
/*pms-sidebar-start*/
.pms-sidebar-container {
  max-width: 90%;
  width: 1000px;
  margin: 30px auto;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 20px;
}

.pms-sidebar-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.pms-sidebar {
  width: 100%;
  max-width: 40%;
  margin-bottom: 20px;
}

.pms-sidebar h4 {
  color: #d0a94e;
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pms-sidebar h2 {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.pms-sidebar-item {
  margin: 10px 0;
  padding: 10px;
  font-size: 1rem;
  color: #888;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.pms-sidebar-item.active {
  color: black;
  border-left: 3px solid #d0a94e;
  padding-left: 10px;
  font-weight: bold;
}

.pms-review-button {
  margin-top: 20px;
  background-color: black;
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.pms-review-button:hover {
  background-color: #333;
}

.pms-contact-button {
  margin-top: 10px;
  background-color: #d0a94e;
  color: black;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.pms-contact-button:hover {
  background-color: #b5893b;
}

.pms-right-content {
  width: 100%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pms-image-container {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.pms-step-image {
  display: none;
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 20px;
}

.pms-step-image.active {
  display: block;
}
/* EXISTING STYLES ABOVE HERE */

/* === Responsive styles for mobile and tablet === */
@media screen and (max-width: 1024px) {
  .pms-sidebar-section {
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    text-align: center;
  }

  .pms-sidebar {
    order: 1;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .pms-sidebar h4,
  .pms-sidebar h2 {
    text-align: center;
  }

  .pms-sidebar-item {
    text-align: center;
  }

  .pms-review-button,
  .pms-contact-button {
    display: inline-block;
    margin: 10px auto;
  }

  .pms-right-content {
    order: 2;
    max-width: 100%;
    margin-top: 20px;
    justify-content: center;
  }

  .pms-image-container {
    text-align: center;
  }

  .pms-step-image {
    display: none;
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 auto;
  }

  .pms-step-image.active {
    display: block;
  }
}
/*pms-sidebar-end*/
/* Why Choose Us - PMS */
.why-choose-us {
  text-align: center;
  padding: 50px 20px;
  background: rgba(219, 219, 219, 0.952);
  color: #000;
  width: calc(100% - 120px);
  margin: 30px auto;
  box-sizing: border-box;
}

.why-choose-us h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 30px;
  color: #000;
}

.why-choose-us .highlight {
  color: #d0a94e;
  font-weight: bold;
}

.why-choose-us .why-choose-uscards-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.why-choose-us .why-choose-uscard {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 300px;
  height: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  box-sizing: border-box;
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.why-choose-us .why-choose-uscard.visible {
  opacity: 1;
  transform: translateX(0);
}

.why-choose-us .why-choose-uscard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  background-color: #f9f9f9;
}

.why-choose-us .icon {
  font-size: 2rem;
  background-color: #d0a94e;
  color: black;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.why-choose-us .why-choose-uscard h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #000;
}

.why-choose-us .why-choose-uscard p {
  font-size: 1rem;
  color: #555;
}

/* Tablets and smaller */
@media screen and (max-width: 1024px) {
  .why-choose-us {
    margin: 30px 20px;
    width: auto;
  }

  .why-choose-us .why-choose-uscards-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .why-choose-us .why-choose-uscard {
    width: calc(50% - 20px);
    max-width: none;
    height: auto;
  }
}

/* Nest Hub (approx 1024px width) specific */
@media screen and (width: 1024px) {
  .why-choose-us {
    margin: 30px 60px;
    width: auto;
  }
}

/* Mobile devices */
@media screen and (max-width: 767px) {
  .why-choose-us {
    margin: 20px;
    width: auto;
  }

  .why-choose-us .why-choose-uscards-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .why-choose-us .why-choose-uscard {
    width: calc(100% - 20px);
    max-width: 400px;
    height: auto;
    padding: 15px;
  }

  .why-choose-us .icon {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 480px) {
  .why-choose-us {
    padding: 20px 10px;
    margin: 0 20px;
    width: auto;
  }

  .why-choose-us .why-choose-uscards-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .why-choose-us .why-choose-uscard {
    width: 100%;
    max-width: 350px;
    height: auto;
    padding: 10px;
  }

  .why-choose-us .icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .why-choose-us .why-choose-uscard h3 {
    font-size: 1.5rem;
  }

  .why-choose-us .why-choose-uscard p {
    font-size: 1rem;
  }
}
/* Why Choose Us - End */

/* AIF Section */
.aif-container {
  margin: 30px auto;
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 8px;
  max-width: 1390px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  margin-left: 4%;
  margin-right: 4%;
}

.text-to-animate {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.text-to-animate.visible {
  opacity: 1;
  transform: translateX(0);
}

.aif-heading {
  display: block;
  font-size: 2rem;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}

.aif-subheading {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 1rem;
  text-align: center;
}

.aif-content {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: justify;
}

@media (max-width: 1024px) {
  .aif-container {
    margin: 40px auto;
    padding: 20px;
    max-width: 90%;
  }

  .aif-heading {
    font-size: 2rem;
  }

  .aif-subheading {
    font-size: 1.5rem;
  }

  .aif-content {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .aif-container {
    margin: 20px auto;
    padding: 15px;
    max-width: 95%;
  }

  .aif-heading {
    font-size: 2rem;
  }

  .aif-subheading {
    font-size: 1.5rem;
  }

  .aif-content {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .aif-container {
    margin: 10px 10px;
    padding: 15px;
    max-width: 95%;
    text-align: center;
  }

  .aif-heading {
    font-size: 2rem;
  }

  .aif-subheading {
    font-size: 1.5rem;
  }

  .aif-content {
    font-size: 1rem;
    text-align: left;
  }
}
/* pms ends */

/*Bonds start*/
.bond-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #d4af37;
  padding: 20px;
  border-radius: 12px;
  max-width: 1400px;
  margin: 0 auto;
  margin-left: 50px;
  margin-right: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bond-image {
  max-width: 350px;
  width: 100%;
  height: auto;
  margin-right: 20px;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bond-image:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.bond-text {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #fff;
  flex: 1;
  max-width: 700px;
  text-align: left;
  margin: 10px 0;
}

.bond-text h3 {
  text-align: center;
  font-size: 2rem;
  color: white;
  margin-top: 0;
  font-family: Montserrat;
}

.bond-text p {
  margin-top: 20px;
  font-family: Montserrat;
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f2;
  border-radius: 50%;
  padding: 20px;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.icon-wrapper:hover {
  background-color: #ff9900;
}

.bond-type__icon {
  font-size: 30px;
  color: #333;
  transition: color 0.3s ease;
}

.bond-type__item:hover .bond-type__icon {
  color: #fff;
}

.icon-wrapper i {
  transition: transform 0.3s ease;
}

.icon-wrapper:hover i {
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  .bond-content {
    flex-direction: column;
    text-align: center;
    margin-left: 50px;
    margin-right: 50px;
  }

  .bond-image {
    max-width: 80%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .bond-text {
    font-size: 1rem;
    max-width: 90%;
  }

  .bond-text h3 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .bond-content {
    flex-direction: column;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
  }

  .bond-image {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .bond-text {
    font-size: 1rem;
    max-width: 100%;
  }

  .bond-text h3 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .bond-content {
    margin-left: 20px;
    margin-right: 20px;
  }

  .bond-text {
    font-size: 1rem;
    padding: 0 10px;
  }

  .bond-text h3 {
    font-size: 2rem;
  }

  .bond-image {
    max-width: 100%;
  }
}

/*Types of Bond*/
.bond-type {
  background-color: #e4e4e4;
  padding: 60px 40px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 30px auto 0;
}

.bond-type__title {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.bond-type__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 25px;
}

.bond-type__item {
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
  border-radius: 15px;
  padding: 25px;
  color: #d4af37;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s, background 0.4s;
}

.bond-type__item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  background: linear-gradient(145deg, #d4af37, #fff8e1);
}

.bond-type__icon {
  background-color: #d4af37;
  color: #ffffff;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
  transition: background 0.3s;
}

.bond-type__icon i {
  font-size: 48px;
}

.bond-type__item:hover .bond-type__icon {
  background-color: #ffffff;
  color: #d4af37;
}

.bond-type__heading {
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #d4af37;
}

.bond-type__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #7f8c8d;
}

.bond-type__item::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  transition: all 0.6s;
}

.bond-type__item:hover::before {
  top: -50px;
  left: -50px;
  background: rgba(212, 175, 55, 0.2);
}
@media (max-width: 1024px) {
  .bond-type__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .bond-type {
    margin: 30px 20px 0;
  }

  .bond-type__icon {
    width: 90px;
    height: 90px;
  }

  .bond-type__icon i {
    font-size: 40px;
  }
}

/* iPad Pro (Portrait & Landscape) */
@media (max-width: 1366px) and (min-width: 1025px) {
  .bond-type {
    margin: 30px auto;
    max-width: 1100px;
  }

  .bond-type__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .bond-type__icon {
    width: 100px;
    height: 100px;
  }

  .bond-type__icon i {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .bond-type__title {
    font-size: 2rem;
  }

  .bond-type__heading {
    font-size: 1.5rem;
  }

  .bond-type__list {
    grid-template-columns: 1fr;
  }

  .bond-type {
    padding: 50px 20px;
    margin: 30px 20px 0;
  }

  .bond-type__icon {
    width: 80px;
    height: 80px;
  }

  .bond-type__icon i {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .bond-type__title {
    font-size: 2rem;
  }

  .bond-type__heading {
    font-size: 1.5rem;
  }

  .bond-type__description {
    font-size: 1rem;
  }

  .bond-type {
    margin: 30px 20px 0;
  }

  .bond-type__icon {
    width: 70px;
    height: 70px;
  }

  .bond-type__icon i {
    font-size: 32px;
  }
}

/*government-bond*/
/* Government Bond Section Styling */
.Government-bond-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 50px;
  background-color: #f4f1f1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
  max-width: 1390px;
  margin-left: auto;
  margin-right: auto;
  width: 90%; 
}

.Government-bond-content {
  flex: 1;
  padding: 20px;
}

.Government-bond-content h4 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.Government-bond-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more-btn {
  background-color: #d4af37;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.read-more-btn:hover {
  background-color: #b29530;
}

.image-content {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-content img {
  width: 100%;
  max-width: 600px; 
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-content img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .Government-bond-section {
    flex-direction: column; 
    text-align: center;
    padding: 30px;
    gap: 15px;
  }

  .image-content {
    order: 1; 
    display: flex;
    justify-content: center;
  }

  .image-content img {
    max-width: 80%;
    margin: 0 auto;
    border-radius: 10px;
    object-fit: cover;
  }

  .Government-bond-content {
    order: 2; 
    padding: 20px;
  }
}

/* iPad Pro Specific Styling */
@media (max-width: 1024px) and (min-width: 990px) {
  .Government-bond-section {
    flex-direction: column;
    text-align: center;
    padding: 40px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .image-content {
    order: 1; 
    display: flex;
    justify-content: center;
  }

  .image-content img {
    max-width: 70%;
    margin: 0 auto;
    border-radius: 10px;
  }

  .Government-bond-content {
    order: 2; 
    padding: 20px;
    width: 90%; 
    margin-left: auto;
    margin-right: auto;
  }
}

/* Tablet Devices (General Styling) */
@media (max-width: 768px) {
  .Government-bond-section {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }

  .image-content {
    order: 1;
  }

  .image-content img {
    max-width: 100%;
    margin: 0 auto;
  }

  .Government-bond-content {
    order: 2;
    padding: 10px;
  }
}

/* Mobile Devices */
@media (max-width: 480px) {
  .Government-bond-section {
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }

  .image-content {
    order: 1;
    display: flex;
    justify-content: center;
  }

  .image-content img {
    width: 100%;
    max-width: 300px; 
    border-radius: 10px;
  }

  .Government-bond-content {
    order: 2;
  }

  .Government-bond-content h4 {
    font-size: 1.5rem;
  }

  .Government-bond-content p {
    font-size: 1rem;
  }

  .read-more-btn {
    font-size: 1rem;
    padding: 6px 12px;
  }
}

/*Bonds end*/

/* Main container */
.why-planning {
  background: rgba(255, 254, 254, 0.098);
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1600px;
  max-height: 60%;
}

.why-planning-h1 {
  font-size: 2rem;
  margin-bottom: 7%;
  color: #2c3e50;
  text-align: center;
  margin-top: -4%;
}

.why-planning p {
  font-size: 1.1rem;
  color: #7f8c8d;
  text-align: center;
}

/* Moving circle container */
.moving-circle {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  border: 4px dashed #d89e38;
  border-radius: 50%;
  display: flex;
  margin-top: 60px;
  justify-content: center;
  align-items: center;
  animation: rotateCircle 15s infinite linear;
}

/* Circle items */
.circle-item {
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #ffcc00, #f2c14e, #d89e38);
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  cursor: pointer;
  margin-top: 30px;
}

.circle-item:hover {
  transform: scale(1.1);
}

/* Icon and text */
.circle-item .icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  justify-content: center;
}

.circle-item p {
  font-size: 0.9rem;
  text-align: center;
  font-weight: bold;
  color: #000;
}

/* Positioning around circle */
.moving-circle .circle-item:nth-child(1) {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

.moving-circle .circle-item:nth-child(2) {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.moving-circle .circle-item:nth-child(3) {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

.moving-circle .circle-item:nth-child(4) {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.why-planning-h2 {
  font-size: 2rem;
  margin-bottom: 1%;
  color: #2c3e50;
  text-align: center;
  margin-top: 4%;
}
/* Tablets (769px–1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .moving-circle {
    width: 260px;
    height: 260px;
  }

  .circle-item {
    width: 120px;
    height: 120px;
    margin-top:0px;
  }

  .circle-item .icon {
    font-size: 1.2rem;
  }

  .circle-item p {
    font-size: 0.75rem;
  }
}

/* Small tablets/large phones (601px–768px) */
@media (max-width: 768px) and (min-width: 601px) {
  .moving-circle {
    width: 220px;
    height: 220px;
  }

  .circle-item {
    width: 95px;
    height: 95px;
    margin-top:0px;
  }

  .circle-item .icon {
    font-size: 1rem;
  }

  .circle-item p {
    font-size: 0.6rem;
  }
}

/* Phones (max-width: 600px) */
@media (max-width: 600px) {
  .moving-circle {
    width: 200px;
    height: 200px;
  }

  .circle-item {
    width: 85px;
    height: 85px;
    font-size: 0.4rem;
    margin-top:0px;
  }

  .circle-item .icon {
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .circle-item p {
    font-size: 0.5rem;
  }
}

/* Very small phones (<= 375px) */
@media (max-width: 375px) {
  .moving-circle {
    width: 140px;
    height: 140px;
  }

  .circle-item {
    width: 50px;
    height: 50px;
    font-size: 0.45rem;
    padding: 2px;
    margin-top:0px;
  }

  .circle-item .icon {
    font-size: 0.7rem;
    margin-bottom: 2px;
  }

  .circle-item p {
    font-size: 0.4rem;
    line-height: 1;
  }
}

/* Ultra small screens (<= 320px) */
@media (max-width: 320px) {
  .moving-circle {
    width: 120px;
    height: 120px;
  }

  .circle-item {
    width: 45px;
    height: 45px;
    margin-top:0px;
  }

  .circle-item .icon {
    font-size: 0.6rem;
  }

  .circle-item p {
    font-size: 0.35rem;
  }
}

/*child future end */

/* fixed deposite start*/
.fd-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 50px;
  margin: 0 60px;
  max-width: 1400px;
  background: linear-gradient(135deg, #ffffff, #d4af37);
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.fd-intro-text {
  flex: 1;
  padding-right: 20px;
}

.fd-intro-text h3 {
  font-size: 1.5rem;
  color: #d4af37;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: bold;
}

.fd-intro-text h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.3;
}

.fd-intro-text h1 span {
  font-weight: bold;
  color: #d4af37;
}

.fd-intro-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.fd-cta {
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background: #d4af37;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.fd-intro-image {
  flex: 1;
  position: relative;
}

.fd-intro-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fd-intro-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}
.fd-cta {
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background: #d4af37;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

/* Added this block */
.fd-cta:hover {
  color: #fff; /* Keeps text white on hover */
  text-decoration: none; /* Prevents underline on hover */
}

/* For Large Tablets (1024px and below) */
@media (max-width: 1024px) {
  .fd-intro {
    flex-direction: column;
    text-align: center;
    padding: 40px;
    margin: 0 30px;
  }

  .fd-intro-text {
    order: 1; 
    padding-right: 0;
  }

  .fd-intro-image {
    order: 2; 
    margin-top: 20px;
  }
}
/* For Tablets (768px and below) */
@media (max-width: 768px) {
  .fd-intro {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    margin: 0 20px;
  }

  .fd-intro-text {
    padding-right: 0;
  }

  .fd-intro-image {
    margin-top: 20px;
  }
}

/* For Small Tablets & Large Mobile Devices (600px and below) */
@media (max-width: 600px) {
  .fd-intro {
    padding: 20px;
    margin: 0 15px;
  }

  .fd-intro-text h1 {
    font-size: 1.8rem;
  }

  .fd-intro-text p {
    font-size: 0.95rem;
  }
}

/* For Mobile Devices (480px and below) */
@media (max-width: 480px) {
  .fd-intro {
    padding: 15px;
    margin: 0 10px;
  }

  .fd-intro-text h1 {
    font-size: 1.6rem;
  }

  .fd-intro-text p {
    font-size: 0.9rem;
  }

  .fd-cta {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

/* For Extra Small Devices (375px and below) */
@media (max-width: 375px) {
  .fd-intro-text h1 {
    font-size: 1.4rem;
  }

  .fd-intro-text p {
    font-size: 0.85rem;
  }

  .fd-cta {
    font-size: 0.85rem;
    padding: 7px 14px;
  }
}
/* For iPad Pro (12.9-inch & 11-inch) and large tablets (1025px to 1366px) */
@media (max-width: 1366px) {
  .fd-intro {
    flex-direction: column;
    text-align: center;
    padding: 50px;
    margin: 0 40px;
  }

  .fd-intro-text {
    order: 1; 
    padding-right: 0;
    max-width: 80%;
    margin: 0 auto;
  }

  .fd-intro-text h1 {
    font-size: 2.2rem;
  }

  .fd-intro-text p {
    font-size: 1.1rem;
  }

  .fd-intro-image {
    order: 2; 
    max-width: 80%;
    margin: 20px auto;
  }

  .fd-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
  }
}

/*types of companies offering fd*/
/* Types of FD Start */
.fd-container {
  text-align: center;
  padding: 50px;
  background-color: whitesmoke;
  color: #000000;
  margin: 40px 60px;
  max-width: 1400px;
  border-radius: 10px;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fd-title {
  margin-bottom: 50px;
  font-size: 2rem;
  text-transform: uppercase;
  position: relative;
  color: #000000;
}

.fd-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #000000;
  margin: 10px auto;
}

.fd-companies {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.fd-company {
  text-align: center;
  width: 150px;
}

.fd-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.fd-icon:hover {
  transform: scale(1.1);
}

.fd-name {
  font-size: 1rem;
  margin: 0;
  color: #000000;
}

.fd-divider {
  border-left: 2px solid #a87f1d;
  height: 120px;
}

@media (max-width: 1024px) {
  .fd-companies {
    gap: 15px;
  }

  .fd-company {
    width: 130px;
  }

  .fd-icon {
    width: 60px;
    height: 60px;
  }

  .fd-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .fd-container {
    margin: 30px 40px;
  }

  .fd-companies {
    gap: 10px;
  }

  .fd-company {
    width: 120px;
  }

  .fd-icon {
    width: 50px;
    height: 50px;
  }

  .fd-title {
    font-size: 2rem;
  }

  .fd-divider {
    height: 100px;
  }
}

@media (max-width: 480px) {
  .fd-container {
    margin: 20px;
  }

  .fd-title {
    font-size: 2rem;
  }

  .fd-icon {
    width: 40px;
    height: 40px;
  }

  .fd-name {
    font-size: 1rem;
  }

  .fd-divider {
    display: none;
  }
}

.fd-visible {
  opacity: 1;
  transform: translateX(0);
}

/*feature of fd*/
/* Feature Section */
.fd-feature {
  background: linear-gradient(135deg, #f4e9c9, #fff5e5);
  padding: 60px 20px;
  max-width: 1400px;
  margin: 30px auto;
  border-radius: 10px;
  position: relative;
  margin-left: 50px;
  margin-right: 50px;
}

/* Centering the container */
.fd-feature-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* Heading Styles */
.fd-feature-left h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.fd-feature-left h1 span {
  color: #d4af37;
}

.fd-feature-left p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* Feature Steps Container with Fade-in Effect */
.fd-feature-steps-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

/* Animation triggered */
.fd-feature-steps-container.show-feature {
  opacity: 1;
  transform: translateX(0);
}

/* Individual Step */
.fd-feature-step {
  text-align: center;
  width: 100%;
  max-width: 200px;
}

/* Icon Styling */
.fd-feature-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Hover Effect */
.fd-feature-step img:hover {
  transform: scale(1.2);
}

.fd-feature-step h3 {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .fd-feature {
    padding: 40px 15px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .fd-feature-left h1 {
    font-size: 1.8rem;
  }

  .fd-feature-steps-container {
    flex-direction: column;
    align-items: center;
  }

  .fd-feature-step {
    width: 100%;
    max-width: 300px;
  }

  .fd-feature-icon img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .fd-feature-left h1 {
    font-size: 1.5rem;
  }

  .fd-feature-left p {
    font-size: 0.9rem;
  }

  .fd-feature-icon img {
    width: 70px;
    height: 70px;
  }

  .fd-feature-step h3 {
    font-size: 1rem;
  }
}

/*benefit-fd*/
/* Benefit FD Section */
.benefit-fd-section {
  padding: 50px 50px;
  background-color: #f1efef;
  max-width: 1400px;
  margin-left: 4%;
  margin-right: 4%;
  box-sizing: border-box;
  margin-top: 30px;
}

.benefit-fd-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 auto;
  align-items: center;
  gap: 15px;
}

.benefit-fd-heading {
  width: 100%;
  text-align: center;
  margin-top: -20px;
}

.benefit-fd-heading h2 {
  font-size: 2rem;
  color: #333;
  margin: 0;
  font-weight: normal;
}

.benefit-fd-image {
  flex: 1;
  max-width: 100%;
}

.benefit-fd-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.benefit-fd-content {
  flex: 1;
  max-width: 100%;
}

.benefit-fd-description {
  margin-bottom: 20px;
  text-align: justify;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

.benefit-fd-items {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.benefit-fd-item {
  flex: 1;
  min-width: 48%;
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-fd-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.benefit-fd-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-fd-icon img {
  width: 25px;
  height: 25px;
}

.benefit-fd-item h5 {
  font-size: 1.5rem;
  margin: 10px 0;
  color: #333;
}

.benefit-fd-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .benefit-fd-container {
    flex-direction: column;
  }

  .benefit-fd-image {
    max-width: 100%;
    margin-bottom: 15px;
  }

  .benefit-fd-content {
    max-width: 100%;
  }

  .benefit-fd-items {
    flex-direction: column;
  }

  .benefit-fd-item {
    min-width: 100%;
  }
}
@media (max-width: 1024px) {
  .benefit-fd-container {
    flex-direction: column;
  }

  .benefit-fd-image {
    order: -1;
    max-width: 100%;
    margin-bottom: 15px;
  }

  .benefit-fd-content {
    max-width: 100%;
  }

  .benefit-fd-items {
    flex-direction: column;
  }

  .benefit-fd-item {
    min-width: 100%;
  }
}
/*fixed deposite end*/

/*wealth management start*/
/*wealth management start*/
#wealth-section1 {
  background: linear-gradient(to bottom, #f4f4f4, #ffffff);
  max-width: 1380px;
  padding: 40px 30px;
  box-sizing: border-box;
  margin-bottom: 30px;
  border-radius: 5px;
}

/* Wealth Container */
.wealth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1600px;
  margin: 0 50px;
  padding: 0;
}

/* Wealth Heading */
.wealth-heading {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
}

/* Wealth Content */
.wealth-content {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  text-align: justify;
  margin: 0 auto;
  max-width: 1500px;
  padding: 0;
  border: none;
  animation: none;
}

.wealth-content strong {
  color: #d4af37;
  font-size: 1rem;
  font-weight: normal;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .wealth-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wealth-mng-wealth-mng h1 {
    font-size: 2rem;
    margin: 0 15px;
  }

  .wealth-mng-wealth-mng p {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 15px;
    max-width: 100%;
  }

  .wealth-mng-step-row {
    flex-direction: column;
    align-items: center;
  }

  .wealth-mng-step-card {
    width: 80%;
    margin: 15px 0;
  }

  .wealth-mng-step-left {
    width: 100%;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .wealth-mng-step-number {
    order: 1;
  }

  .wealth-mng-partition {
    order: 2;
    margin: 10px auto;
  }

  .wealth-mng-step-name {
    order: 3;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .wealth-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wealth-mng-wealth-mng h1 {
    font-size: 2rem;
  }

  .wealth-mng-step-card {
    width: 45%;
    margin: 15px;
  }

  .wealth-mng-step-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .wealth-mng-step-number {
    order: 1;
  }

  .wealth-mng-partition {
    order: 2;
    margin: 10px auto;
  }

  .wealth-mng-step-name {
    order: 3;
  }
}

@media (min-width: 1025px) {
  .wealth-mng-wealth-mng h1 {
    font-size: 2rem;
  }

  .wealth-mng-step-card {
    width: 22%;
  }

  .wealth-mng-steps-container {
    padding: 80px 40px;
  }
}

@media (max-width: 390px) {
  .wealth-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wealth-mng-wealth-mng h1 {
    font-size: 2rem;
    margin: 0 10px;
  }

  .wealth-mng-wealth-mng p {
    font-size: 1rem;
    line-height: 1.4;
    padding: 0 10px;
  }

  .wealth-mng-step-card {
    width: 90%;
    margin: 10px auto;
  }

  .wealth-mng-steps-container {
    padding: 30px 10px;
  }

  .wealth-mng-step-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .wealth-mng-step-number {
    font-size: 2rem;
    order: 1;
  }

  .wealth-mng-partition {
    order: 2;
    margin: 10px auto;
  }

  .wealth-mng-step-name {
    font-size: 1.5rem;
    order: 3;
  }
}


/* Wealth Management Section Styling */
/* Wealth Management Parallax Background Fix for Mobile */
.wealth-mng-parallax {
  background-image: url('https://www.kfintech.com/wp-content/uploads/2023/01/Wealth-Management-2048x1152.jpg');
  height: 70vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: -1;
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
  .wealth-mng-parallax {
    background-size: cover;
    height: 50vh; /* You can change this value to adjust the height */
    background-attachment: scroll; /* Ensure it works well on mobile by disabling fixed attachment */
  }
}

@media (max-width: 480px) {
  .wealth-mng-parallax {
    background-size: cover;
    height: 60vh; /* Adjust the height for small devices */
    background-attachment: scroll;
  }
}

.wealth-mng-wealth-mng {
  padding: 20px;
  margin: 30px auto;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  max-width: 800px;
}

.wealth-mng-wealth-mng h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
}

.wealth-mng-wealth-mng p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin: 5px 0;
  transition: color 0.3s ease;
}

.wealth-mng-wealth-mng p:hover {
  color: #d0a94e;
}

.wealth-mng-steps-container {
  padding: 50px 20px;
  text-align: center;
  margin: 0 20px;
  margin-top: -60px;
  margin-bottom: -50px;
}

.wealth-mng-step-row {
  display: flex;
  justify-content: space-between;
  margin: -30px 0 40px;
  flex-wrap: wrap;
}

.wealth-mng-step-card {
  background: linear-gradient(135deg, #ffffff, #d4af37);
  border-radius: 8px;
  width: 22%;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;  
  text-align: center; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wealth-mng-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.wealth-mng-step-left {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wealth-mng-step-number {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}

.wealth-mng-partition {
  background-color: orange;
  height: 2px;
  margin: 10px 0;
  width: 30%;
}

.wealth-mng-step-name {
  font-size: 1rem;
  color: #333;
  margin-top: 10px;
}
/* Tablets: up to 768px */
@media screen and (max-width: 768px) {
  .wealth-mng-step-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .wealth-mng-step-card {
    width: 45%;
    margin: 10px;
  }

  .wealth-mng-step-left {
    width: 100%;
    align-items: center;
  }
}

/* Mobiles: up to 480px */
@media screen and (max-width: 480px) {
  .wealth-mng-step-row {
    flex-direction: column;
    align-items: center;
  }

  .wealth-mng-step-card {
    width: 90%;
    margin: 10px 0;
  }

  .wealth-mng-step-left {
    width: 100%;
    align-items: center;
  }

  .wealth-mng-step-number {
    font-size: 1.5rem;
  }

  .wealth-mng-step-name {
    font-size: 0.9rem;
  }
}
/*wealth management end*/


/*Financial Planning*/
.financial-intro-container {
  color: #333;
  background: linear-gradient(135deg, #f8e1a0, #f0c75e);
  padding: 40px 0;
  margin-top: 30px;
  max-width: 1400px;
  margin-left: 4%;
  margin-right: 4%;
}

.financial-intro-container .financial-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 0 20px;
  max-width: 1400px;
}

.financial-intro-container .financial-intro .content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  gap: 30px;
  align-items: center;
}

.financial-intro-container .financial-intro .text-section {
  flex: 1;
  padding: 20px;
}

.financial-intro-container .financial-intro .category-label {
  font-size: 1rem;
  font-weight: bold;
  color: #d8a000;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.financial-intro-container .financial-intro .title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.financial-intro-container .financial-intro .description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

.financial-intro-container .financial-intro .image-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.financial-intro-container .financial-intro .image-section:hover {
  transform: scale(1.05);
}

.financial-intro-container .financial-intro .hero-image {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .financial-intro-container {
    padding: 20px 0;
    margin-left: 20px;
    margin-right: 20px;
  }

  .financial-intro-container .financial-intro {
    flex-direction: column;
    text-align: center;
  }

  .financial-intro-container .financial-intro .content {
    flex-direction: column;
    align-items: center;
  }

  .financial-intro-container .financial-intro .text-section,
  .financial-intro-container .financial-intro .image-section {
    width: 100%;
    padding: 10px;
    order: unset;
  }

  .financial-intro-container .financial-intro .category-label,
  .financial-intro-container .financial-intro .title,
  .financial-intro-container .financial-intro .description {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .financial-intro-container {
    padding: 20px 0;
    margin-left: 20px;
    margin-right: 20px;
  }

  .financial-intro-container .financial-intro {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .financial-intro-container .financial-intro .content {
    flex-direction: column;
    align-items: center;
  }

  .financial-intro-container .financial-intro .text-section {
    order: 1;
    padding: 10px;
    text-align: center;
  }

  .financial-intro-container .financial-intro .image-section {
    order: 2;
    padding: 10px;
  }

  .financial-intro-container .financial-intro .category-label,
  .financial-intro-container .financial-intro .title,
  .financial-intro-container .financial-intro .description {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .financial-intro-container {
    padding: 10px 0;
    margin-left: 20px;
    margin-right: 20px;
  }

  .financial-intro-container .financial-intro {
    padding: 15px;
    text-align: center;
  }

  .financial-intro-container .financial-intro .text-section {
    order: 1;
    padding: 10px;
  }

  .financial-intro-container .financial-intro .image-section {
    order: 2;
    padding: 5px;
  }

  .financial-intro-container .financial-intro .category-label,
  .financial-intro-container .financial-intro .title,
  .financial-intro-container .financial-intro .description {
    text-align: center;
  }
}

/* Financial Planning -step of it*/
/* Financial Planning */
.financial-planning {
  line-height: 1.5;
  color: #333;
  background-color: #f9f9f9;
  padding: 20px;
  max-width: 1400px;
  margin-left: 4%;
  margin-right: 4%;
  margin-top: 30px;
}

.financial-planning .fp-title {
  font-size: 2rem;
  text-align: center;
  color: black;
  margin-bottom: 15px;
}

.financial-planning .fp-description {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.financial-planning .fp-steps {
  text-align: center;
  padding: 20px;
}

.financial-planning .fp-step-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Fade-in effect from the right */
.financial-planning .fp-step-card {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  background: linear-gradient(135deg, #fdfbf5, #fff5e1, #e8dc97);
  padding: 10px;
  border: 1.5px solid #b8860b;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(40% - 40px);
  max-width: calc(30% - 30px);
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Class to activate the fade-in effect */
.financial-planning .fp-step-card.fade-in {
  opacity: 1;
  transform: translateX(0);
}

.financial-planning .fp-step-card:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.financial-planning .fp-step-icon {
  background-color: #b8860b;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.financial-planning .fp-step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #333;
}

.financial-planning .fp-step-card p {
  font-size: 1rem;
  color: #555;
}

@media (max-width: 900px) {
  .financial-planning .fp-step-card {
    flex: 1 1 calc(40% - 20px);
    max-width: calc(40% - 20px);
  }
}

@media (max-width: 600px) {
  .financial-planning .fp-step-card {
    flex: 1 1 90%;
    max-width: 90%;
  }
}

/* Benefits Section Styles */
.financial-planning-bef {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 40px 50px; 
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.financial-planning-bef-heading-container {
  text-align: center;
  width: 100%;
}

.financial-planning-bef-section-heading {
  font-size: 2rem;
  color: goldenrod;
  margin-bottom: 15px;
}

.financial-planning-bef-image-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.financial-planning-bef-image-section:hover {
  transform: scale(1.05);
}

.financial-planning-bef-image-background {
  background-color: #fff8dc;
  padding: 20px;
  border-radius: 10px;
}

.profile-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.financial-planning-bef-content-section {
  flex: 2;
  padding: 12px;
  text-align: center;
}

.financial-planning-bef-card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  justify-items: center;
}

.financial-planning-bef-card {
  padding: 15px;
  background-color: #fff;
  border: 2px solid #b8860b;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.financial-planning-bef-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.financial-planning-bef-card h2 {
  font-size: 1.4rem;
  color: #b8860b;
  margin-bottom: 10px;
}

.financial-planning-bef-card p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .financial-planning-bef {
    flex-direction: column;
    margin: 30px; 
    padding: 15px;
  }
  .financial-planning-bef-card-container {
    grid-template-columns: repeat(1, 1fr); 
  }
}

@media (max-width: 768px) {
  .financial-planning-bef {
    margin: 20px;
    padding: 15px;
  }
  .financial-planning-bef-section-heading {
    font-size: 1.8rem;
  }
  .financial-planning-bef-card {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .financial-planning-bef {
    margin: 20px; 
    padding: 10px;
  }
  .financial-planning-bef-card {
    padding: 10px;
  }
}

/*financial planning end*/

/*portfolio restructure start*/
html,
body {
  scroll-behavior: smooth;
}

/*portfolio restructure start*/
.portfolio-restructuring-info-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
  background-color: #f9f9f9;
  max-width: 1400px;
  margin-left: 4%;
  margin-right: 4%;
}

.portfolio-restructuring-info-container {
  display: flex;
  gap: 30px;
  max-width: 1300px;
  width: 100%;
}

.portfolio-restructuring-info-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  overflow: hidden;
}

.portfolio-restructuring-info-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-restructuring-info-image:hover {
  transform: scale(1.05);
}

.portfolio-restructuring-info-content {
  flex: 2;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.portfolio-restructuring-info-subtitle {
  color: #d4af37;
  font-size: 1.5rem;
  letter-spacing: 1.2px;
  font-family: Montserrat;
  margin: 0 0 8px 0; /* Reduced bottom margin */
}

.portfolio-restructuring-info-title {
  color: #222;
  font-size: 2rem;
  margin: 0 0 15px 0; /* Removed top margin, kept bottom */
  font-family: Montserrat;
}

.portfolio-restructuring-info-description {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
  margin: 0 0 20px 0; /* Removed top margin, kept bottom */
}

.portfolio-restructuring-info-description ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.portfolio-restructuring-info-description li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
  line-height: 1.6;
}

.portfolio-restructuring-info-description li::before {
  content: "✔";
  color: #d4af37;
  font-size: 1rem;
}

.portfolio-restructuring-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0; /* Ensure no extra margin */
}

.portfolio-restructuring-info-col-sm-6 {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0; /* Ensure no extra margin */
}

.portfolio-restructuring-info-icon {
  color: #d4af37;
  font-size: 1rem;
  flex-shrink: 0;
}

.btn.portfolio-restructuring-info-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #d4af37;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1rem;
  max-width: 1400px;
  margin-left: 4%;
  transition: background-color 0.3s ease;
}

.btn.portfolio-restructuring-info-btn:hover {
  background-color: #ebc33e;
}

@media (max-width: 768px) {
  .portfolio-restructuring-info-section {
    padding: 30px;
  }

  .portfolio-restructuring-info-container {
    flex-direction: column;
  }

  .portfolio-restructuring-info-images {
    order: 1;
    width: 100%;
    gap: 15px;
  }

  .portfolio-restructuring-info-content {
    order: 2;
    padding: 20px;
    width: 100%;
  }

  .portfolio-restructuring-info-title {
    font-size: 1.6rem;
  }
}

@media (min-width: 576px) and (max-width: 1024px) {
  .portfolio-restructuring-info-section {
    padding: 30px;
  }

  .portfolio-restructuring-info-container {
    flex-direction: column;
  }

  .portfolio-restructuring-info-content {
    padding: 20px;
    width: 100%;
  }

  .portfolio-restructuring-info-title {
    font-size: 1.8rem;
  }
}

@media (min-width: 1024px) and (max-width: 1366px) {
  .portfolio-restructuring-info-container {
    flex-direction: column;
  }

  .portfolio-restructuring-info-content {
    width: 100%;
    padding: 25px;
  }

  .portfolio-restructuring-info-title {
    font-size: 2rem;
  }
}
/*portfolio restructure end*/


/***tax planning start***/
/* Tax Planning Heading Section */
.tp-outer-container {
  margin: 40px auto;
  padding: 0 15px;
}

.tp-rounded-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f0f0;
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  gap: 20px;
}

.tp-left-content {
  flex: 1;
}

.tp-unique-tax-heading {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.5;
  color: #333;
  margin: 0 0 15px;
}

.tp-unique-highlight {
  font-weight: 700;
  color: #d0a94e;
}

.tp-right-content {
  flex-shrink: 0;
}

.tp-unique-cta-button {
  padding: 12px 30px;
  background-color: #d0a94e;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.tp-unique-cta-button:hover {
  background-color: #b88a3a;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.tp-unique-cta-button:active {
  transform: scale(0.95);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.tp-unique-cta-button:focus,
.tp-unique-cta-button:visited {
  color: #fff;
  outline: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .tp-rounded-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .tp-left-content {
    margin-bottom: 20px;
  }

  .tp-unique-tax-heading {
    font-size: 2rem;
  }

  .tp-unique-cta-button {
    width: 100%;
    padding: 14px 30px;
    font-size: 1.2rem
  }
}

@media (max-width: 480px) {
  .tp-unique-tax-heading {
    font-size: 1.8rem;
  }

  .tp-unique-cta-button {
    font-size: 1rem;
    padding: 12px 20px;
  }

  .tp-rounded-container {
    padding: 15px;
  }
}

/* Navbar Tax Planning */
.tax-cal-navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px;
  gap: 10px;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.tax-cal-navbar .tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.tax-cal-navbar .tabs li {
  margin: 0;
}

.tax-cal-navbar .button {
  cursor: pointer;
  position: relative;
  padding: 10px 20px;
  font-size: 1rem;
  color: rgb(193, 163, 98);
  border: 2px solid rgb(193, 163, 98);
  border-radius: 34px;
  background-color: transparent;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}

.tax-cal-navbar .button::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: rgb(193, 163, 98);
  transform: scale(0);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  z-index: -1;
}

.tax-cal-navbar .button:hover::before {
  transform: scale(1);
}

.tax-cal-navbar .button:hover {
  color: #212121;
  scale: 1.05;
  box-shadow: 0 0px 20px rgba(193, 163, 98, 0.4);
}

.tax-cal-navbar .button:active {
  scale: 1;
}

@media (max-width: 768px) {
  .tax-cal-navbar {
    justify-content: center;
  }

  .tax-cal-navbar .tabs {
    gap: 8px;
  }

  .tax-cal-navbar .button {
    padding: 8px 16px;
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .tax-cal-navbar .button {
    padding: 6px 12px;
    font-size: 1rem;
    border-radius: 20px;
  }
}

/*tax saving*/
.tax-saving-section-wrapper {
  display: flex;
  justify-content: center;
  padding: 0px 20px;
}

.tax-saving-container {
  display: flex;
  max-width: 1200px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  overflow: hidden;
  padding: 10px;
}

.tax-saving-image {
  flex: 1;
  padding: 20px;
  max-width: 50%;
  margin-top: 50px;
}

.tax-saving-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out;
}

.tax-saving-image img:hover {
  transform: scale(1.05);
}

.tax-saving-content {
  flex: 1;
  padding: 40px 40px 40px 30px;
  background-color: #f9f9f9;
  padding: 10px;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: black;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.intro-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  text-align: justify;
}

.tax-components {
  list-style: disc;
  margin: 0 0 20px 30px;
  padding: 0;
}

.tax-components li {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
}

.tax-components li:hover {
  color: #ebc33e;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .tax-saving-container {
    flex-direction: column;
    margin-top: 30px;
    padding: 10px;
  }

  .tax-saving-image {
    max-width: 100%;
    margin-top: 20px;
  }

  .tax-saving-content {
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .tax-saving-container {
    flex-direction: column;
    margin-top: 30px;
    padding: 10px;
  }

  .tax-saving-image {
    max-width: 100%;
    margin-top: 20px;
  }

  .tax-saving-content {
    padding: 10px;
  }

  .section-title {
    font-size: 2rem;
  }

  .intro-text {
    font-size: 1rem;
  }

  .tax-components li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  .intro-text {
    font-size: 1rem;
  }

  .tax-components li {
    font-size: 1rem;
  }

  .tax-saving-image {
    max-width: 100%;
    margin-top: 20px;
  }

  .tax-saving-content {
    padding: 10px;
  }
}

/*tax planning end*

/*Downloads*/
/* Styling for the main container */
.myform-pdf {

  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

/* Header Styling */
.myform-pdf h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 30px;
  font-weight: bold;
}

/*downloads starts*/
/* Header Styling */
.myform-pdf h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 30px;
  font-weight: bold;
}

/*Downloads*/
/* Section: Downloads */
#current {
  background-color: #fff9e6;
  padding: 5vw 3vw;
  text-align: center;
  margin-top: 0.5%;
  max-width: 90vw;
  margin: auto;
  border-radius: 10px;
}

/* Downloads Section */
.downloads-section {
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-height: 200px;
}

.downloads-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #D4AF37;
  font-weight: 600;
  margin-bottom: 15px;
}

.downloads-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #555;
  margin-bottom: 30px;
}

/* Document Selection */
.document-selection {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1.2em;
  color: #8b4513;
  flex-wrap: wrap; 
}

.document-selection label {
  font-weight: 500;
  color: #b8860b;
}

#document-dropdown {
  width: 250px;
  max-width: 100%;
  padding: 10px 15px;
  border: 1px solid #b8860b;
  border-radius: 4px;
  font-size: 1em;
  background-color: #faf4e4;
  color: #6a4e23;
  transition: border 0.3s ease, background-color 0.3s ease;
}

#document-dropdown:hover,
#document-dropdown:focus {
  border-color: #b8860b;
  outline: none;
}

/* Download Button */
.download-button {
  padding: 12px 25px;
  font-size: 1.2em;
  color: white;
  background-color: #D4AF37;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: fit-content;
}

.download-button:hover {
  background-color: #f39c12;
  transform: scale(1.05);
}

.download-button:active {
  transform: scale(1);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  #current {
    padding: 6vw 4vw;
  }

  .downloads-section {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .downloads-title {
    font-size: 2em;
  }

  .downloads-description {
    text-align: center;
  }

  .document-selection {
    flex-direction: column;
    text-align: center;
  }

  #document-dropdown {
    width: 100%;
  }

  .download-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .downloads-title {
    font-size: 1.8rem;
  }

  .downloads-description {
    font-size: 1rem;
  }

  .download-button {
    font-size: 1em;
    padding: 10px;
  }
}

/*Kyc*/
/* General Styles for KYC Compliance Portal */
#download-kyc-page {
  padding: 5vw; 
  background: linear-gradient(135deg, #fdfbf5, #fff5e1, #ebd197);
  border-radius: 15px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 90vw;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Hero Section */
.download-kyc-page-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #d4af37;
  margin-bottom: 1rem;
  font-weight: bold;
}

.download-kyc-page-hero-description {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: #555;
  margin-bottom: 2rem;
  max-width: 80%;
}

.kyc-hero-description {
  max-width: 75%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #download-kyc-page {
    padding: 4vw;
  }

  .download-kyc-page-hero-description,
  .kyc-hero-description {
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .download-kyc-page-hero-title {
    font-size: 1.8rem;
  }

  .download-kyc-page-hero-description {
    font-size: 1rem;
  }
}

/* Buttons */
.kyc-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.kyc-btn {
  background-color: #d4af37;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-weight: 500;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.kyc-btn:hover {
  background-color: #b88b23;
  transform: translateY(-3px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

/* Cards Section */
.kyc-cards-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* gap: 20px; */
}

.kyc-card {
  background-color: #fff;
  border: 2px solid #d4af37;
  border-radius: 12px;
  padding: 20px;
  width: 500px;
  text-align: center;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: none;
  margin-top: -2%;
}

.kyc-card-icon {
  font-size: 50px;
  color: #d4af37;
  margin-bottom: 15px;
}

.kyc-card-title {
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
  font-weight: bold;
}

.kyc-card-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.kyc-card-link {
  color: #d4af37;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.kyc-card-link:hover {
  color: #b88b23;
}

/* Active Card */
.kyc-card[style*="display: block"] {
  display: block;
}

/* Media Queries */
@media (max-width: 768px) {
  #download-kyc-page {
    padding: 20px;
  }

  .download-kyc-page-hero-title {
    font-size: 2rem;
  }

  .download-kyc-page-hero-description {
    font-size: 14px;
  }

  .kyc-cards-section {
    flex-direction: column;
    align-items: center;
  }

  .kyc-card {
    width: 90%;
    padding: 15px;
  }

  .kyc-btn {
    padding: 10px 20px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .download-kyc-page-hero-title {
    font-size: 1.5rem;
  }

  .download-kyc-page-hero-description {
    font-size: 12px;
  }

  .kyc-btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  .kyc-card {
    padding: 10px;
  }
}
/* Style the navigation container */
.nav1 {
  display: flex;
  justify-content: flex-start;
  padding: 10px;
  margin-left: 3.7%;
}

/* Style the list to remove default list styling and align items horizontally */
.nav1 .tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}

/* Ensure buttons are horizontally aligned within the list items */
.nav1 .tabs li {
  margin: 0;
}

/* Apply button styles specifically within the nav1 class */
.nav1 .button {
  cursor: pointer;
  position: relative;
  padding: 10px 24px;
  font-size: 18px;
  color: rgb(193, 163, 98);
  border: 2px solid rgb(193, 163, 98);
  border-radius: 34px;
  background-color: transparent;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}

/* Adjust the pseudo-element to cover the button */
.nav1 .button::before {
  content: '';
  position: absolute;
  inset: 0;
  /* This makes the pseudo-element take up the full width and height of the button */
  background-color: rgb(193, 163, 98);
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

/* On hover, scale the pseudo-element to cover the entire button */
.nav1 .button:hover::before {
  scale: 1;
}

.nav1 .button:hover {
  color: #212121;
  scale: 1.1;
  box-shadow: 0 0px 20px rgba(193, 163, 98, 0.4);
}

.nav1 .button:active {
  scale: 1;
}
/*downlodas ends*/

/*contact us start*/
/*contact us start*/
.contact-us-contact-container {
  display: flex;
  flex-direction: column; 
  background: #fff;
  width: 95%; 
  margin: 30px auto; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px; 
  overflow: hidden; 
}

/* Left Section */
.contact-us-contact-left {
  padding: 30px; 
  width: 100%; 
}

.contact-us-contact-left h1 {
  font-size: 1.8em; 
  margin-bottom: 15px;
  color: #222;
}

.contact-us-contact-left p {
  margin-bottom: 20px; 
  color: #555;
  line-height: 1.5;
  font-size: 0.95em; 
}

.contact-us-contact-left input,
.contact-us-contact-left textarea {
  width: 100%;
  padding: 12px; 
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1em;
  box-sizing: border-box; 
}

.contact-us-contact-left textarea {
  min-height: 120px; 
}

.contact-us-contact-left button {
  background-color: #222;
  color: #fff;
  padding: 12px 25px; 
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  width: 100%; 
  transition: background 0.3s, transform 0.3s;
}

.contact-us-contact-left button:hover {
  background-color: #d4af37;
  transform: scale(1.02); 
}

/* Right Section */
.contact-us-contact-right {
  background: #222;
  color: #fff;
  padding: 30px; 
  position: relative;
  margin-top: 0; 
}

.contact-us-contact-right h2 {
  font-size: 1.3em; 
  margin-bottom: 15px;
  margin-top: 10px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
  color: white;
}

.contact-us-contact-right ul {
  list-style: none;
  padding-left: 0; 
}

.contact-us-contact-right li {
  margin: 12px 0; 
  font-size: 0.95em; 
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-us-contact-right li i {
  margin-top: 3px; 
}

/* Decorative Yellow Box */
.contact-us-contact-right::before {
  content: '';
  position: absolute;
  background: #d4af37;
  width: 40px; 
  height: 40px;
  top: 0;
  left: 0;
}

/* Social Media Icons */
.contact-us-social-links {
  display: flex;
  justify-content: center; 
  margin-top: 25px;
  gap: 15px; 
}

.contact-us-social-links .social-icon {
  font-size: 1.8em; 
  color: #fff;
  transition: color 0.3s;
}

/* Map Section */
.map-contact-us-map-container {
  width: 95%; 
  margin: 30px auto; 
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.map-contact-us-map-container h2 {
  font-size: 1.3em; 
  margin-bottom: 15px;
}

.map-contact-us-map-container iframe {
  width: 100%;
  height: 250px; 
  border: 0;
  border-radius: 8px;
}

/* Tablet (Portrait) - 600px and up */
@media (min-width: 600px) {
  .contact-us-contact-container {
    width: 90%;
  }
  
  .contact-us-contact-left h1 {
    font-size: 2em;
  }
  
  .contact-us-contact-right h2 {
    font-size: 1.4em;
    margin-top: 10px;
  }
  
  .map-contact-us-map-container iframe {
    height: 300px;
  }
}

/* Tablet (Landscape) - 768px and up */
@media (min-width: 768px) {
  .contact-us-contact-left {
    flex: 2;
    padding: 40px;
    width: auto;
  }
  
  .contact-us-contact-right {
    flex: 1.5;
    padding: 40px;
    margin-top: 40px; 
  }
  
  .contact-us-contact-left h1 {
    font-size: 2.2em;
  }
  
  .contact-us-contact-left button {
    width: auto; 
  }
  
  .contact-us-social-links {
    justify-content: flex-start; 
  }
  
  .map-contact-us-map-container {
    width: 85%;
  }
  
  .map-contact-us-map-container iframe {
    height: 350px;
  }
}

/* Small Desktop - 992px and up */
@media (min-width: 992px) {
  .contact-us-contact-container {
    flex-direction: row; /* Moved here from 768px */
    width: 80%;
    margin: 50px auto;
  }
  
  .contact-us-contact-left {
    padding: 50px;
  }
  
  .contact-us-contact-right {
    padding: 50px;
    margin-top: 140px; 
  }
  
  .contact-us-contact-left h1 {
    font-size: 2.5em;
  }
  
  .contact-us-contact-right h2 {
    font-size: 1.5em;
  }
  
  .map-contact-us-map-container {
    width: 80%;
    margin: 50px auto;
    padding: 30px;
  }
  
  .map-contact-us-map-container iframe {
    height: 400px;
  }
}

/* Large Desktop - 1200px and up */
@media (min-width: 1200px) {
  .contact-us-contact-container {
    max-width: 1200px;
  }
  
  .map-contact-us-map-container {
    max-width: 1200px;
  }
}


/*schedule meeting start*/
/* General Styles */
.schedule-meeting-container {
  display: flex;
  max-width: 1200px;
  margin: 5% auto;
  background: linear-gradient(135deg, #ffffff, #f9f9f9);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  align-items: stretch;
  flex-wrap: wrap;
}

/* Image Section */
.schedule-image {
  flex: 1;
  min-width: 300px; 
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
}

.schedule-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 0 0 20px;
}
/* Label Styles */
.schedule-label {
  display: block;
  text-align: left;
  margin-bottom: 3px; /* Reduced from 5px */
  color: #555;
  font-size: 0.85rem; /* Reduced from 0.9rem */
  padding-left: 3px; /* Reduced from 5px */
}

/* Form Section */
.schedule-form {
  flex: 1;
  min-width: 300px; 
  padding: 30px;
  text-align: center;
  background-color: #fff;
  border-radius: 0 20px 20px 0;
  box-shadow: -5px 0px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.schedule-form h2 {
  font-size: 2rem; 
  color: #d4af37;
  margin-bottom: 15px;
  font-weight: bold;
}

.schedule-form p {
  color: #777;
  font-size: 1rem;
  margin-bottom: 25px; 
}

.schedule-form input,
.schedule-date-field input[type="date"] {
  width: 100%;
  padding: 12px 15px; 
  margin-bottom: 15px; 
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  color: #333;
  transition: border-color 0.3s ease;
  box-sizing: border-box; 
}

.schedule-form input:focus,
.schedule-date-field input:focus {
  border-color: #d4af37;
  outline: none;
  box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.schedule-date-field {
  position: relative;
}

.schedule-date-field i {
  position: absolute;
  right: 15px; 
  top: 50%;
  transform: translateY(-50%);
  color: #d4af37;
  font-size: 1rem; 
  pointer-events: none;
}

.schedule-form button {
  width: 100%;
  padding: 12px 0;
  background: linear-gradient(to right, #d4af37, #c19e34);
  color: #fff;
  border: none;
  font-size: 1rem; 
  font-weight: bold;
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(212, 175, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .schedule-meeting-container {
    flex-direction: column;
    max-width: 90%;
    margin: 20px auto; 
  }
  
  .schedule-image {
    min-width: 100%;
    height: 250px; 
  }
  
  .schedule-image img {
    border-radius: 20px 20px 0 0;
  }
  
  .schedule-form {
    min-width: 100%;
    border-radius: 0 0 20px 20px;
    padding: 25px; 
  }
}

@media (max-width: 768px) {
  .schedule-form {
    padding: 20px;
  }
  
  .schedule-form h2 {
    font-size: 1.8rem;
  }
  
  .schedule-form p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .schedule-form input,
  .schedule-date-field input[type="date"] {
    padding: 10px 12px;
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  
  .schedule-form button {
    padding: 10px 0;
  }
}

@media (max-width: 576px) {
  .schedule-meeting-container {
    max-width: 95%;
    border-radius: 15px;
  }
  
  .schedule-image {
    height: 200px;
  }
  
  .schedule-form {
    padding: 15px;
  }
  
  .schedule-form h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .schedule-form p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .schedule-form input,
  .schedule-date-field input[type="date"] {
    padding: 8px 10px;
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .schedule-form button {
    padding: 8px 0;
    font-size: 0.9rem;
  }
  
  .schedule-date-field i {
    right: 10px;
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .schedule-form {
    padding: 12px;
  }
  
  .schedule-form h2 {
    font-size: 1.3rem;
  }
  
  .schedule-form p {
    font-size: 0.85rem;
  }
}
/* schedule meting end */
/* schedule meting end */

/* Sidebar start */
.float-slider-page .floating-buttons {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.float-slider-page .button,
.float-slider-page .contact-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 14px;
  cursor: pointer;
  position: relative;
}

.float-slider-page .button.facebook {
  background-color: #3b5998;
}

.float-slider-page .button.twitter {
  background-color: #00acee;
}

.float-slider-page .button.linkedin {
  background-color: #0e76a8;
}

.float-slider-page .button.instagram {
  background-color: #e4405f;
}

.float-slider-page .contact-buttons {
  position: fixed;
  bottom: 90px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.float-slider-page .contact-button.whatsapp {
  background-color: #25d366;
}

.float-slider-page .contact-button.phone {
  background-color: #34b7f1;
}

.float-slider-page .tooltip {
  position: absolute;
  left: 55px;
  top: 50%;
  transform: translateY(-50%);
  background-color: black;
  color: white;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 10px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.float-slider-page .tooltip.phone,
.float-slider-page .tooltip.whatsapp {
  left: -55px;
}

.float-slider-page .button:hover .tooltip,
.float-slider-page .contact-button:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.float-slider-page .hidden {
  display: none;
}

/* Media Queries for Responsiveness */
/* Hide icons on iPad (portrait & landscape) and Surface Pro */
@media (max-width: 1024px) {
  .float-slider-page .floating-buttons,
  .float-slider-page .contact-buttons {
    display: none;
  }
}

@media (max-width: 768px) {
  .float-slider-page .floating-buttons,
  .float-slider-page .contact-buttons {
    display: none;
  }
}

@media (max-width: 480px) {
  .float-slider-page .floating-buttons,
  .float-slider-page .contact-buttons {
    display: none;
  }
}
/* Sidebar end */

/*retirement css start*/
.retirement-container {
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 15px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Main Content Section */
.retirement-saving-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 620px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  padding: 32px;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  background-color: #fff;
  margin-left: 50%;
  margin-top: -23%;
}

.retirement-saving-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  color: #333;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.retirement-saving-content .retirement-saving-heading {
  font-weight: 600;
  font-size: 26px;
}

.retirement-saving-content .retirement-saving-para {
  line-height: 1.4;
  font-size: 16px;
  margin-top: -5%;
}

.retirement-saving-content .retirement-saving-btn {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  /* background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 100%); */
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.retirement-saving-container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 100%);
  background: linear-gradient(145deg, #d4af37, #fff8e1);
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  opacity: 0;
}

.retirement-saving-container:hover::before {
  opacity: 1;

}

.retirement-saving-container:hover {
  box-shadow: white;
}

.retirement-saving-container:hover .retirement-saving-content {
  color: black;
}

.retirement-saving-container:hover .retirement-saving-btn {
  color: #333;
  background: #ff0f7b;
}

.retirement-saving-content .retirement-saving-btn:active {
  box-shadow: none;
}

/* Media Queries */
@media (max-width: 768px) {
  .retirement-saving-container {
    width: 90%;
    margin-left: 5%;
    margin-top: 0;
    padding: 24px;
  }

  .retirement-saving-content .retirement-saving-heading {
    font-size: 22px;
  }

  .retirement-saving-content .retirement-saving-para {
    font-size: 14px;
    margin-top: 0;
  }

  .retirement-saving-content .retirement-saving-btn {
    font-size: 14px;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .retirement-saving-container {
    width: 100%;
    padding: 16px;
    margin-left: 0;
    margin-top: 0;
  }

  .retirement-saving-content .retirement-saving-heading {
    font-size: 21px;
  }

  .retirement-saving-content .retirement-saving-para {
    font-size: 16px;
    margin-top: 0;
  }

  .retirement-saving-content .retirement-saving-btn {
    font-size: 12px;
    padding: 6px;
  }
}

.retirement-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease;
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}


.retirement-content:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.retirement-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0078d4;
  text-transform: uppercase;
}

.retirement-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.retirement-content ul {
  list-style: none;
  padding: 0;
}

.retirement-content ul li {
  font-size: 1rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.retirement-content ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #0078d4;
}

/* Sidebar Section Inside Content-right side  */
.retirement-sidebar {
  background: linear-gradient(145deg, #d4af37, #fff8e1);
  color: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: fadeInUp 1.2s ease;
}

.retirement-sidebar img {
  width: 30%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.retirement-sidebar h3 {
  font-size: 1.5rem;
  color: #B37F2B;
  margin-bottom: 10px;
}

.retirement-sidebar p {
  font-size: 1rem;
  line-height: 1.5;
  color: black;
}

/* Fade-in Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .retirement-container {
    padding: 20px;
  }

  .retirement-content,
  .retirement-sidebar {
    padding: 20px;
  }
}

/*infographic styles*/
.infographic-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 5%;
  flex-wrap: wrap;
  justify-content: center;
}

.infographic-item {
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease-out forwards;
  flex: 2 2 100%;
  max-width: 200px;
}

.infographic-item:nth-child(1) {
  animation-delay: 0s;
}

.infographic-item:nth-child(2) {
  animation-delay: 0.3s;
}

.infographic-item:nth-child(3) {
  animation-delay: 0.6s;
}

.infographic-item:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.circle-ret {
  width: 120px;
  height: 120px;
  background-color: #fff8e1;
  border: 5px solid #b89d47;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.488);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circle-ret:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.circle-ret img {
  width: 50px;
  height: 50px;
}

.title-ret {
  font-size: 16px;
  font-weight: bold;
  color: #b89d47;
  margin: 10px 0 5px;
}

.description-ret {
  font-size: 14px;
  color: black;
  max-width: 150px;
  margin: 0 auto;
}

.connector-ret {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 30px;
  height: 3px;
  background-color: #b89d47;
  transform: translateY(-50%);
}

.infographic-item:last-child .connector-ret {
  display: none;
}

.info-below {
  order: 2;
}

.info-above {
  order: -1;
}

/* Section Styles */
/* Section Styles */
.interactive-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff6cf;
  /* Gold to cream gradient */
  border-radius: 25px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  margin: 50px auto;
  padding: 40px;
  max-width: 1260px;
  color: #333;
  /* Neutral dark color for better readability */
  transition: transform 0.3s ease-in-out;
  margin-top: -4%;
}

.interactive-section:hover {
  transform: scale(1.05);
}

.interactive-section div {
  width: 48%;
}

.interactive-section h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1f1f1f;
}

.interactive-section p {
  font-size: 18px;
  line-height: 1.6;
  color: #4a4a4a;
}

.cta-button {
  background-color: #d4af37;
  color: white;
  border: none;
  padding: 15px 25px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #c0952f;
  transform: scale(1.05);
}

/* Button Styles */
.cta-button {
  background-color: #fff5e1;
  color: #b88b23;
  padding: 18px 40px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
  display: inline-block;
  position: relative;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.cta-button:hover {
  background-color: #FFD700;
  color: #fff5e1;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.cta-button:hover::before {
  opacity: 1;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .interactive-section {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .interactive-section div {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .cta-button {
    width: 100%;
    padding: 20px;
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .infographic-container {
    flex-direction: column;
    align-items: center;
  }

  .infographic-item {
    flex: none;
    max-width: 300px;
    margin-bottom: 40px;
  }

  .title-ret,
  .description-ret {
    order: initial !important;
    text-align: center;
  }

  .info-above,
  .info-below {
    order: initial !important;
  }
}
@media screen and (max-width: 1024px) {
  .infographic-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-items: center;
  }

  /* Make sure items stack info ABOVE for top row */
  .info-above-responsive .title-ret,
  .info-above-responsive .description-ret {
    order: -1;
  }
}
/*retirement css end*/

/* How It Works Section */
.home-dv-how-it-work {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #ffffff, #d4af37);
  border-radius: 20px;
  color: #fff;
  position: relative;
  margin: 3% 50px 50px 50px;
  overflow: hidden;
}

/* Section Title */
.home-dv-how-it-work .home-section-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: home-fadeIn 1s ease-out forwards;
}
/* Steps Container */
.home-dv-how-it-work .home-steps-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: -50px;
}

/* Each Step */
.home-dv-how-it-work .home-step {
  text-align: center;
  color: #fff;
  position: relative;
  flex: 1 1 300px;
  max-width: 260px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: home-slideIn 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

/* Icon Container */
.home-dv-how-it-work .home-icon-container {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-color: #d4af37;
}

/* Step Icon */
.home-dv-how-it-work .home-step-icon {
  width: 50px;
  height: 50px;
  z-index: 1;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Step Number */
.home-dv-how-it-work .home-step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: white;
  color: #d4af37;
  border-radius: 50%;
  padding: 0.5rem 0.7rem;
  font-size: 0.9rem;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Step Title */
.home-dv-how-it-work .home-step-title {
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Step Description */
.home-dv-how-it-work .home-step-description {
  font-size: 1.3rem;
  color: #393838;
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Connecting Line Between Steps (Only between circles) */
.home-dv-how-it-work .home-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 2px;
  background-color: #d4af37;
  margin-top: -60px;
  right: -90px;
}

/* Hover Effects */
.home-dv-how-it-work .home-step:hover .home-icon-container {
  transform: scale(1.1);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
  border-color: #f1a400;
}

.home-dv-how-it-work .home-step:hover .home-step-icon {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px rgba(255, 165, 0, 0.7));
}

.home-dv-how-it-work .home-step:hover .home-step-title {
  transform: translateY(-5px);
  color: #393838;
}

.home-dv-how-it-work .home-step:hover .home-step-description {
  color: #393838;
}

/* Fade-in and Slide-in Animations */
@keyframes home-fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-slideIn {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .home-dv-how-it-work .home-section-title {
    font-size: 2rem;
  }

  .home-dv-how-it-work .home-steps-container {
    gap: 1.5rem;
  }

  .home-dv-how-it-work .home-step {
    flex: 1 1 45%;
    max-width: 100%;
  }

  .home-dv-how-it-work .home-step-title {
    font-size: 1.5rem;
  }

  .home-dv-how-it-work .home-step-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .home-dv-how-it-work {
    margin: 3% 20px 50px 20px;
  }

  .home-dv-how-it-work .home-steps-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .home-dv-how-it-work .home-step {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .home-dv-how-it-work .home-icon-container {
    width: 80px;
    height: 80px;
  }

  .home-dv-how-it-work .home-step-icon {
    width: 40px;
    height: 40px;
  }

  .home-dv-how-it-work .home-step-title {
    font-size: 1.5rem;
  }

  .home-dv-how-it-work .home-step-description {
    font-size: 1rem;
  }

  .home-dv-how-it-work .home-step::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .home-dv-how-it-work {
    margin: 3% 10px 50px 10px;
  }

  .home-dv-how-it-work .home-section-title {
    font-size: 1.75rem;
  }

  .home-dv-how-it-work .home-step-title {
    font-size: 1.5rem;
  }

  .home-dv-how-it-work .home-step-description {
    font-size: 1rem;
  }
}


/* New CSS for Two Rows */
.home-dv-how-it-work .home-steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.home-dv-how-it-work .home-step {
  flex: 1 1 calc(33.333% - 2rem); 
  max-width: calc(33.333% - 2rem);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .home-dv-how-it-work .home-step {
    flex: 1 1 100%; 
    max-width: 100%;
  }
}
/* Tablet Specific Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .home-dv-how-it-work .home-steps-container {
    gap: 1.5rem;
  }

  .home-dv-how-it-work .home-step {
    flex: 1 1 calc(50% - 1.5rem); 
    max-width: calc(50% - 1.5rem);
  }

  .home-dv-how-it-work .home-step-title {
    font-size: 1.2rem;
  }

  .home-dv-how-it-work .home-step-description {
    font-size: 0.9rem;
  }
}

/*learning page start*/
.video-gallery {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.video-gallery-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* Aspect ratio 16:9 */
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Medium screens (tablets, around 768px to 1024px) */
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small screens (mobile devices, up to 767px) */
@media (max-width: 767px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .video-gallery-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .video-wrapper {
    border-radius: 6px;
  }
}

/* Extra small screens (up to 480px) */
@media (max-width: 480px) {
  .video-gallery {
    padding: 10px;
  }

  .video-gallery-title {
    font-size: 1.2rem;
  }
}
/*learning page end*/

/***About***/
/* Our-teams-start */
.our-team-heading {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-top: 20px;
}
/* Our Team Container */
/***About***/
/* Our-teams-start */
.our-team-heading {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-top: 20px;
}

/* Our Team Container */
.our-team-container {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0px;
  padding: 20px 10px;
  overflow-x: auto;
  box-sizing: border-box;
}

/* Team Card Styles */
.our-team-card {
  width: 250px;
  height: 250px;
  background: white;
  border-radius: 32px;
  padding: 3px;
  position: relative;
  box-shadow: #604b4a30 0px 70px 30px -50px;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

/* .our-team-card .mail {
  position: absolute;
  right: 2rem;
  top: 1.4rem;
  background: transparent;
  border: none;
}

.our-team-card .mail svg {
  stroke: #d4af37;
  stroke-width: 3px;
}

.our-team-card .mail svg:hover {
  stroke: #b8860b;
} */

.our-team-card .profile-pic {
  position: absolute;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  top: 3px;
  left: 3px;
  border-radius: 29px;
  z-index: 1;
  border: 0px solid #d4af37;
  overflow: hidden;
  transition: all 0.5s ease-in-out 0.2s, z-index 0.5s ease-in-out 0.2s;
}

.our-team-card .profile-pic img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: 0px 0px;
  object-position: 0px 0px;
  transition: none;
}

.our-team-card .bottom {
  position: absolute;
  bottom: 3px;
  left: 3px;
  right: 3px;
  background: #d4af37;
  top: 80%;
  border-radius: 29px;
  z-index: 2;
  box-shadow: rgba(96, 75, 74, 0.1882352941) 0px 5px 5px 0px inset;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}

.our-team-card .bottom .content {
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 160px;
}

.our-team-card .bottom .content .name {
  display: block;
  font-size: 1rem;
  color: white;
  font-weight: bold;
  margin-top: 30px;
}

.our-team-card .bottom .content .about-me {
  display: block;
  font-size: 0.6rem;
  color: white;
  margin-top: 0.5rem;
}

.our-team-card .bottom .bottom-bottom {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.our-team-card .bottom .bottom-bottom .social-links-container {
  display: flex;
  gap: 1rem;

}

.our-team-card .bottom .bottom-bottom .social-links-container svg {
  fill: white;
  transition: fill 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.our-team-card .bottom .bottom-bottom .social-links-container a:visited svg {
  fill: white;
}

.our-team-card .bottom .bottom-bottom .social-links-container a {
  color: inherit;
  text-decoration: none;
}

.our-team-card .bottom .bottom-bottom .button {
  background: white;
  color: #d4af37;
  border: none;
  border-radius: 20px;
  font-size: 0.6rem;
  padding: 0.4rem 0.6rem;
  box-shadow: rgba(165, 132, 130, 0.1333333333) 0px 5px 5px 0px;
}

.our-team-card .bottom .bottom-bottom .button:hover {
  background: #b8860b;
  color: white;
}

.our-team-card:hover {
  border-top-left-radius: 55px;
}

.our-team-card:hover .bottom {
  top: 20%;
  border-radius: 80px 29px 29px 29px;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0.2s;
}

.our-team-card:hover .profile-pic {
  width: 100px;
  height: 100px;
  aspect-ratio: 1;
  top: 10px;
  left: 10px;
  border-radius: 50%;
  z-index: 3;
  border: 7px solid #d4af37;
  box-shadow: rgba(96, 75, 74, 0.1882352941) 0px 5px 5px 0px;
  transition: all 0.5s ease-in-out, z-index 0.5s ease-in-out 0.1s;
}

.our-team-card:hover .profile-pic:hover {
  transform: none;
  border-radius: 50%;
}

.our-team-card:hover .profile-pic img {
  transform: none;
  -o-object-position: 0px 0px;
  object-position: 0px 0px;
}

/* Responsive Design */
/* Responsive Design */
/* Tablet Devices (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .our-team-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
  }

  .our-team-card {
    width: 280px;
    height: 280px;
  }

  /* If odd number of cards, center the last one */
  .our-team-container .our-team-card:last-child:nth-child(odd):not(:only-child) {
    grid-column: span 2;
    justify-self: center;
  }

  .our-team-card .bottom .content .name {
    font-size: 1.1rem;
  }

  .our-team-card .bottom .content .about-me {
    font-size: 0.8rem;
  }

  .our-team-card .bottom .bottom-bottom .social-links-container svg {
    height: 25px;
  }

  .our-team-card .bottom .bottom-bottom .button {
    font-size: 0.6rem;
    padding: 0.4rem 0.6rem;
  }
}

/* Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {
  .our-team-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    gap: 20px;
  }

  .our-team-card {
    width: 200px; /* Increased width for mobile */
    height: 200px; /* Increased height for mobile */
  }

  .our-team-card .bottom .content .name {
    font-size: 1rem; /* Larger font size for name on mobile */
  }

  .our-team-card .bottom .content .about-me {
    font-size: 0.8rem; /* Larger font size for about me */
  }

  .our-team-card .bottom .bottom-bottom .social-links-container svg {
    height: 18px; /* Adjusted size of social icons */
  }

  .our-team-card .bottom .bottom-bottom .button {
    font-size: 0.4rem; /* Adjusted button text size */
    padding: 0.3rem 0.5rem; /* Adjusted padding */
  }

  .our-team-card .bottom .bottom-bottom .social-links-container {
    gap: 0.7rem; /* Increased gap between social icons */
  }
}
/* Target Surface Pro and Asus Zenbook Fold */
@media screen and (min-width: 1300px) and (max-width: 1500px) and (orientation: landscape) {
  .our-team-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    overflow-x: auto !important;
  }

  .our-team-card {
    flex: 0 0 auto !important;
  }
}

/* Add this to your existing CSS */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Your existing tablet styles... */
  
  .our-team-container .our-team-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
  }
}
/* Add these new media queries after your existing ones */

/* For iPad Mini (768px-1024px) and iPad Air (820px-1180px) */
@media (min-width: 768px) and (max-width: 1180px) {
  .our-team-card .bottom .content .name {
    font-size: 0.9rem; /* Reduced from 1.1rem */
    margin-top: 20px; /* Adjusted margin */
  }
  
  .our-team-card .bottom .content .about-me {
    font-size: 0.7rem; /* Reduced from 0.8rem */
  }
}

/* For Surface Pro (912px-1368px) and Asus ZenBook (typically similar) */
@media (min-width: 912px) and (max-width: 1368px) {
  .our-team-card .bottom .content .name {
    font-size: 0.85rem;
    margin-top: 15px;
  }
  
  .our-team-card .bottom .content .about-me {
    font-size: 0.65rem;
  }
}

/* For Surface Duo (540px-720px in landscape) */
@media (min-width: 540px) and (max-width: 720px) and (orientation: landscape) {
  .our-team-card {
    width: 180px; /* Slightly smaller cards */
    height: 180px;
  }
  
  .our-team-card .bottom .content .name {
    font-size: 0.8rem;
    margin-top: 10px;
  }
  
  .our-team-card .bottom .content .about-me {
    font-size: 0.6rem;
  }
  
  .our-team-card .bottom .bottom-bottom .social-links-container svg {
    height: 16px;
  }
  
  .our-team-card .bottom .bottom-bottom .button {
    font-size: 0.35rem;
    padding: 0.2rem 0.4rem;
  }
}

/* Adjust your existing tablet media query to be more specific */
@media (min-width: 768px) and (max-width: 1024px) {
  .our-team-card .bottom .content {
    height: 140px; /* Reduced from 160px */
  }
  
  .our-team-card .bottom .content .name {
    margin-top: 20px; /* Reduced from 30px */
  }
}

/*Pop-up card*/
.our-team-popup-card {
  display: none;
  position: fixed;
  top: calc(100px + 10px);
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 2px solid #d4af37;
  z-index: 100;
  width: 80%;
  max-width: 1590px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  overflow-y: auto;
  max-height: 70vh;
  margin-bottom: 20px;
  opacity: 0;
  visibility: hidden;
}

.our-team-popup-card.active {
  opacity: 1;
  visibility: visible;
}

/* Prevent scrolling on body when popup is open */
.no-scroll {
  overflow: hidden;
  height: 100%;
}
/* Close Button Styling */
.our-team-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
  font-weight: bold;
  z-index: 1100; 
  transition: color 0.3s ease-in-out;
}

.our-team-close-btn:hover {
  color: #d4af37;
}

/* Profile Image Styling */
.our-team-profile-pic-popup {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: block;
}

/* Headings and Text Styling */
.our-team-popup-content h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
}

.our-team-popup-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 10px;
}

/* Social Media Icons Styling */
.our-team-popup-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 15px;
}

.our-team-popup-social-icons a {
  font-size: 1.5rem;
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
  border: none;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
}

.our-team-popup-social-icons a:hover {
  color: #555;
  border-color: #555;
}

/* Responsive Design */
/* Responsive Design for Tablets and Mobile Devices (768px and below) */
@media (max-width: 768px) {
  .our-team-popup-card {
    width: 90%;
    padding: 15px;
    max-height: 75vh;
    top: calc(80px + 10px);
  }

  .our-team-popup-content h2 {
    font-size: 1.5rem;
  }

  .our-team-popup-content p {
    font-size: 1rem; /* Set 1rem paragraph size for all mobile */
  }

  .our-team-popup-social-icons a {
    font-size: 1.3rem;
  }
}

/* Responsive Design for Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
  .our-team-popup-card {
    width: 90%;
    padding: 10px;
    max-height: 75vh;
    top: calc(70px + 10px);
  }

  .our-team-popup-content h2 {
    font-size: 1.3rem;
  }

  .our-team-popup-content p {
    font-size: 1rem; /* Keep consistent for all mobile sizes */
  }

  .our-team-popup-social-icons a {
    font-size: 1.2rem;
  }
}
/* Ensure navbar stays above pop-up */

/***Disclaimer***/
.Disclaimer-container {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 20px auto;
  padding: 20px;
  max-width: calc(100% - 100px);
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  color: #333;
}

.Disclaimer-container h1 {
  font-size: 2rem;
  color: #d0a94e;
  text-align: center;
  margin-bottom: 20px;
}

.Disclaimer-container p {
  margin-bottom: 15px;
}

.Disclaimer-container .highlight {
  color: #d0a94e;
  font-weight: bold;
}

@media (max-width: 768px) {
  .Disclaimer-container {
    margin: 20px 30px;
    padding: 15px;
    max-width: calc(100% - 60px);
  }

  .Disclaimer-container h1 {
    font-size: 1.8rem;
  }

  .Disclaimer-container p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .Disclaimer-container {
    margin: 20px 10px;
    padding: 10px;
    max-width: calc(100% - 20px);
  }

  .Disclaimer-container h1 {
    font-size: 1.5rem;
  }

  .Disclaimer-container p {
    font-size: 0.85rem;
  }
}

/***Disclosure***/
/* styles.css */
.Disclosure-body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f9f9f9;
  color: #333;
}

.Disclosure-table-container {
  width: 90%;
  margin: 0 auto;
  border: 1px solid #d0a94e;
  background-color: white;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.Disclosure-table-container table {
  width: 100%;
  border-collapse: collapse;
}

.Disclosure-table-container table th,
.Disclosure-table-container table td {
  text-align: left;
  padding: 12px;
  border: 1px solid #d0a94e;
}

/* Column names with 1.5rem font size */
.Disclosure-table-container table th {
  background-color: #d0a94e;
  color: white;
  font-weight: bold;
  font-size: 1.3rem;
}

/* Other table data with 1rem font size */
.Disclosure-table-container table td {
  font-size: 1rem;
}

.Disclosure-table-container table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.Disclosure-table-container table tr:hover {
  background-color: #fde8c8;
}

.Disclosure-notes {
  margin-top: 20px;
  font-size: 0.9em;
  color: #555;
  line-height: 1.5;
}

.Disclosure-notes strong {
  color: #d0a94e;
}

/*** Privacy Policy Container ***/
.privacy-policy-container {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 20px auto;
  padding: 20px;
  max-width: 90%;
  background: #f9f9f9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  color: #333;
}

/* Title */
.privacy-policy-title {
  font-size: 2.5rem;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(to right, #d0a94e, #ffb200);
  padding: 10px;
  border-radius: 5px;
}

/* Paragraph Text */
.privacy-policy-text {
  margin-bottom: 15px;
}

/* Highlighted Text */
.highlight {
  color: #d0a94e;
  font-weight: bold;
}

/* Subheading */
.privacy-policy-subtitle {
  font-size: 1.8rem;
  color: #000;
  margin-top: 20px;
  background: #d0a94e;
  padding: 8px;
  border-radius: 5px;
}

/* List Styling */
.privacy-policy-list {
  margin-left: 20px;
  list-style-type: disc;
}

.privacy-policy-list li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-policy-container {
    margin: 20px 30px;
    padding: 15px;
    max-width: calc(100% - 60px);
  }

  .privacy-policy-title {
    font-size: 2.2rem;
  }

  .privacy-policy-subtitle {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .privacy-policy-container {
    margin: 20px 10px;
    padding: 10px;
    max-width: calc(100% - 20px);
  }

  .privacy-policy-title {
    font-size: 1.8rem;
  }

  .privacy-policy-subtitle {
    font-size: 1.4rem;
  }

  .privacy-policy-text {
    font-size: 0.9rem;
  }
}

/***Company profile***/
.company-profile-container {
  max-width: 1200px;
  margin: 20px auto;
  text-align: center;
  padding: 20px;
}

.company-profile-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #d4af37;
  margin-bottom: 35px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.company-profile-cards-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: auto;
  margin-right: auto;
}

.company-profile-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 6px 18px rgba(212, 175, 55, 0.35);
  flex: 1;
  max-width: 33%;
  min-width: 320px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #d4af37;
  text-align: center;
  position: relative;
}

.company-profile-card:hover {
  transform: translateY(-8px);
}

.company-profile-card img {
  display: block;
  margin: 0 auto;
  margin-top: 5px; /* reduced from 30px */
  max-width: 100px;
  height: auto;
  transition: transform 0.3s ease;
}

.company-profile-card:hover img {
  transform: scale(1.1);
}

.company-profile-card h2 {
  font-size: 1.5rem;
  color: #d4af37;
  margin: 15px 0;
}

.company-profile-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.company-profile-card ul li {
  font-size: 1rem;
  padding-left: 25px;
  margin: 10px 0;
  color: #333;
  position: relative;
}

.company-profile-card ul li::before {
  content: '✔';
  color: #d4af37;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}
@media only screen and (max-width: 320px) {
  .company-profile-container {
    padding: 20px 40px; /* Add 40px total, 20px for left and right */
    align-items: center;
  }
}



/* Child Future Saving Section */
.child-future-saving-sect1 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #d0a94e;
  flex-wrap: wrap;
}

.child-future-saving-content--sect1 {
  max-width: 1200px;
  background: whitesmoke;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  margin: 0 50px;
  text-align: center;
  background: linear-gradient(to right, #ffffff, #f8f8f8);
}

.child-future-saving-content--sect1 h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #d0a94e;
  text-align: center;
  background: linear-gradient(to right, #d0a94e, #a07d30);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.child-future-saving-content--sect1 h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #d0a94e;
}

.child-future-saving-content--sect1 p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}

.child-future-saving-content--sect1 p strong {
  color: #d0a94e;
}

@media (max-width: 768px) {
  .child-future-saving-sect1 {
    flex-direction: column;
    text-align: center;
  }
  .child-future-saving-content--sect1 {
    margin: 0 20px;
    padding: 15px;
  }
  .child-future-saving-content--sect1 h1 {
    font-size: 1.8rem;
  }
  .child-future-saving-content--sect1 h2 {
    font-size: 1.3rem;
  }
  .child-future-saving-content--sect1 p {
    font-size: 0.9rem;
  }
}

/* Child Future Saving Section-2 */
.child-future-saving-section {
  background-color: #f9f9f9;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.child-future-saving-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  align-items: center;
  margin-left: 50px;  
  margin-right: 50px; 
}

/* Image Styling */
.child-future-saving-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.child-future-saving-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Content Styling */
.child-future-saving-content {
  text-align: left;
}

.child-future-saving-content h1 {
  font-size: 2rem;
  color: #060606;
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

/* Reduce margin-top for the text */
.child-future-saving-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-top: 5px; 
  margin-bottom: 10px;
}

.child-future-saving-content p strong {
  color: #d0a94e;
  font-weight: bold;
}

/* Schedule Meeting Button */
.child-future-saving-btn {
  display: inline-block;
  background-color: #d0a94e;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: 0.3s;
  margin-top: 10px; 
}

.child-future-saving-btn:hover {
  background-color: #b88a3b;
  color: white;
}

/* Responsive Design */
@media (max-width: 900px) {
  .child-future-saving-container {
    grid-template-columns: 1fr;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
  }
  .child-future-saving-section {
    margin-left: 30px;
    margin-right: 30px;
  }

  .child-future-saving-image {
    order: 1;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .child-future-saving-content {
    order: 2;
    text-align: center;
  }

  .child-future-saving-content h1,
  .child-future-saving-content p {
    text-align: center;
  }

  .child-future-saving-btn {
    display: inline-block;
    margin-top: 15px;
    text-align: center;
  }
}

/* Specific for iPad Pro (Portrait - 1024px) */
@media only screen and (max-width: 1024px) and (min-width: 901px) {
  .child-future-saving-container {
    grid-template-columns: 1fr;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
  }

  .child-future-saving-image {
    order: 1;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .child-future-saving-content {
    order: 2;
    text-align: center;
  }

  .child-future-saving-content h1,
  .child-future-saving-content p {
    text-align: center;
  }

  .child-future-saving-btn {
    display: inline-block;
    margin-top: 15px;
    text-align: center;
  }
}

/* Specific for Surface Pro 7 (Width: 912px) */
@media only screen and (max-width: 912px) and (min-width: 901px) {
  .child-future-saving-container {
    grid-template-columns: 1fr;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
  }

  .child-future-saving-image {
    order: 1;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .child-future-saving-content {
    order: 2;
    text-align: center;
  }

  .child-future-saving-content h1,
  .child-future-saving-content p {
    text-align: center;
  }

  .child-future-saving-btn {
    display: inline-block;
    margin-top: 15px;
    text-align: center;
  }
}
/* Default for desktop (above 900px) */
@media (min-width: 901px) {
  .child-future-saving-section {
    margin-left: 50px;
    margin-right: 50px;
  }
}

/* For mobile and tablet (900px and below) */
@media (max-width: 900px) {
  .child-future-saving-section {
    margin-left: 30px;
    margin-right: 30px;
  }
}

/**retirement planning**/
/* Retirement Planning Section */
.retirement-planning-section1 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff8e1; 
  padding: 40px 20px;
  margin-left: 60px;
  margin-right: 60px;
  border-radius: 5px;
}

.retirement-planning-container {
  display: flex;
  max-width: 1100px;
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #d4af37;
  width: 100%;
}

.retirement-planning-content {
  flex: 1;
  padding: 40px;
}

.retirement-planning-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #b8860b;
}

.retirement-planning-subheading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #a67c00;
  margin-top: 10px;
}

.retirement-planning-text {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.6;
  margin: 15px 0;
}

.schedule-meeting-btn {
  display: inline-block;
  padding: 12px 20px;
  background-color: #b8860b;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  margin-top: 10px;
  transition: background-color 0.3s ease-in-out;
  border: 1px solid #d4af37;
}

.schedule-meeting-btn:hover {
  background-color: #b8860d;
  color: white;
}

.retirement-planning-image {
  flex: 1;
  padding: 20px;
}

.retirement-planning-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
/* Margin adjustment for devices up to 1024px */
@media (max-width: 1024px) {
  .retirement-planning-section1 {
    margin-left: 30px;
    margin-right: 30px;
  }
}

/* Margin adjustment for devices up to 768px */
@media (max-width: 768px) {
  .retirement-planning-section1 {
    margin-left: 15px;
    margin-right: 15px;
  }

  .retirement-planning-container {
    flex-direction: column;
    text-align: center;
  }

  .retirement-planning-content {
    padding: 30px;
  }

  .retirement-planning-image {
    padding: 15px;
  }

  .retirement-planning-image img {
    border-radius: 15px 15px 0 0;
  }
}

/* Layout update specifically for iPad Pro (1024px width) */
@media (min-width: 1024px) and (max-width: 1025px) {
  .retirement-planning-container {
    flex-direction: column;
  }

  .retirement-planning-content {
    order: 1;
    text-align: center;
  }

  .retirement-planning-image {
    order: 2;
    padding: 20px;
  }

  .retirement-planning-image img {
    border-radius: 0 0 15px 15px;
  }
}

/* retirement-section-imp-container-start*/
.retirement-section-imp-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-top: 30px;
  padding: 0 15px; 
}

.retirement-section-imp-box {
  background-color: #fff8dc;
  color: #d0a94e;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  width: 80%;
  max-width: 1200px;
  text-align: center;
  font-family: Arial, sans-serif;
  border-left: 10px solid #d0a94e;
}

.retirement-section-imp-text {
  font-size: 1rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .retirement-section-imp-box {
    width: 90%;
    padding: 15px;
  }

  .retirement-section-imp-text {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .retirement-section-imp-container {
    padding: 0 10px; 
  }

  .retirement-section-imp-box {
    width: 100%;
    padding: 10px;
  }

  .retirement-section-imp-text {
    font-size: 0.85rem;
  }
}

/*retirement planning feature*/
.Retirement-Saving-feature {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fff 60%, #f8f1e5); 
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 50px auto;
  border: 5px solid #d4af37;
}

.Retirement-Saving-feature-image-container {
  flex: 1;
  padding-right: 30px;
}

.Retirement-Saving-feature-image-container img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.Retirement-Saving-feature-image-container img:hover {
  transform: scale(1.05); 
}

.Retirement-Saving-feature-content {
  flex: 1;
}

.Retirement-Saving-feature-subheading {
  color: #d4af37;
  font-weight: 700;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.Retirement-Saving-feature-heading {
  color: #1a1a1a;
  font-size: 2rem;
  font-weight: 700;
  margin: 15px 0;
}

.Retirement-Saving-feature-description {
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
}

.schedule-meeting-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.5);
}

.schedule-meeting-btn:hover {
  background: linear-gradient(135deg, #b8860b, #8b6508);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(184, 134, 11, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .Retirement-Saving-feature {
    flex-direction: column;
    text-align: center;
    padding: 40px;
    margin-left: 12px;
  }

  .Retirement-Saving-feature-image-container {
    padding-right: 0;
    margin-bottom: 25px;
  }

  .Retirement-Saving-feature-heading {
    font-size: 2rem;
  }

  .Retirement-Saving-feature-description {
    font-size: 1rem;
  }

  .schedule-meeting-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .Retirement-Saving-feature {
    margin: 20px;
    padding: 30px;
  }

  .Retirement-Saving-feature-heading {
    font-size: 1.8rem;
  }

  .Retirement-Saving-feature-description {
    font-size: 0.95rem;
  }

  .schedule-meeting-btn {
    font-size: 0.95rem;
    padding: 8px 18px;
  }
}
/* Hero Section */

/* Image and Information Section -Investor seminor*/
.info-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 40px;
  background-color: #f9f9f9;
  max-width: 1400px;
  margin-left: 4%;
}

.info-image {
  flex: 1;
  padding: 20px;
}

.info-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info-content {
  flex: 2;
  padding: 20px;
}

.info-content h2 {
  font-size: 24px;
  color: black;
  margin-bottom: 10px;
}

.info-content p {
  font-size: 1.2vw;
  color: #555;
  line-height: 1.8;
}

/* Responsive Styles for Mobile and Tablet */
@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
    padding: 20px;
    margin-left: 20px;
    margin-right:20px;
  }

  .info-image,
  .info-content {
    flex: none;
    width: 100%;
    padding: 10px;
  }

  .info-content h2 {
    font-size: 20px;
  }

  .info-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .info-section {
    padding: 10px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .info-content h2 {
    font-size: 18px;
  }

  .info-content p {
    font-size: 14px;
  }
}
/* For iPad and similar tablet devices (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .info-section {
    flex-direction: column;
    padding: 30px;
    margin-left: 20px;
    margin-right:20px;
  }

  .info-image,
  .info-content {
    flex: none;
    width: 100%;
    padding: 15px;
  }

  .info-image img {
    max-width: 80%;
    display: block;
    margin: 0 auto;
  }

  .info-content {
    text-align: center;
  }

  .info-content h2 {
    font-size: 22px;
  }

  .info-content p {
    font-size: 17px;
    max-width: 80%;
    margin: 0 auto;
  }
}

/* life insurance start */
/* Keyframe for fade-in effect */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Keyframe for rotating background */
@keyframes rotateBackground {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Keyframe for pulse effect */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Keyframe for gradient animation */
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Main card styling */
.insurance-card {
  background: linear-gradient(135deg, #fff7e6, #fff);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 1170px;
  text-align: center;
  border: 2px solid #ffd700;
  position: relative;
  overflow: hidden;
  margin: 0 auto; 
  width: 90%; 
  opacity: 0; 
  animation: fadeIn 1s ease-out forwards; 
}

/* Background animation for the card */
.insurance-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent);
  transform: rotate(45deg);
  z-index: 1;
  animation: rotateBackground 10s linear infinite;
}

/* Heading styling */
.insurance-card h2 {
  color: #d4af37;
  font-size: 32px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite ease-in-out; 
}

/* Paragraph styling */
.insurance-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

/* Icon container styling */
.icon-container {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap; 
}

/* Individual icon styling */
.icon-container .icon {
  font-size: 50px;
  color: #d4af37;
  transition: transform 0.3s ease, color 0.3s ease;
  margin: 10px; 
  animation: pulse 2s infinite ease-in-out; 
}

/* Icon hover effect */
.icon-container .icon:hover {
  transform: scale(1.2);
  color: #b8860b;
  animation: none; 
}

/* Highlight text styling */
.highlight {
  color: #d4af37;
  font-weight: bold;
}

/* Info boxes container styling */
.info-boxes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap; 
}

/* Individual info box styling */
.info-box {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid #ffd700;
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 calc(33.333% - 40px); 
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px; 
  position: relative;
  overflow: hidden;
}

/* Info box hover effect */
.info-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Info box gradient overlay on hover */
.info-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.info-box:hover::before {
  opacity: 1;
}

/* Info box heading styling */
.info-box h3 {
  color: #d4af37;
  font-size: 20px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

/* Info box paragraph styling */
.info-box p {
  font-size: 14px;
  color: #555;
  position: relative;
  z-index: 2;
}

/* Call-to-action button styling */
.cta-button {
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
  animation: gradientAnimation 3s infinite ease-in-out; 
  margin-top: -20px;
}

/* Button hover effect */
.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .insurance-card {
    padding: 30px;
    margin-bottom: 20px;
  }

  .info-box {
    flex: 1 1 calc(50% - 40px); 
  }
}

@media (max-width: 768px) {
  .insurance-card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .insurance-card h2 {
    font-size: 28px;
  }

  .insurance-card p {
    font-size: 14px;
  }

  .icon-container .icon {
    font-size: 40px;
  }

  .info-box {
    flex: 1 1 100%; 
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .insurance-card {
    padding: 15px;
    margin-bottom: 15px;
  }

  .insurance-card h2 {
    font-size: 24px;
  }

  .insurance-card p {
    font-size: 12px;
  }

  .icon-container .icon {
    font-size: 30px;
  }

  .info-box h3 {
    font-size: 18px;
  }

  .info-box p {
    font-size: 12px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 12px;
    margin-top: -18px;
    margin-bottom: 20px;
  }
}
/* life insurance end */

/* health insurance start */
.health-insurance-container {
  width: 90%;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 3%;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateX(0);
}

.health-insurance-heading {
  color: #D4AF37;
  font-size: 2rem;
  margin-bottom: 20px;
}

.health-insurance-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.health-insurance-features ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
  width: 100%;
  max-width: 700px;
}

.health-insurance-features ul li {
  background: #f8f8f8;
  color: #333;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 5px solid #D4AF37;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.health-insurance-features ul li:hover {
  background: #fff3cd;
  border-left-color: #B8860B;
  transform: translateY(-3px);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.health-insurance-features ul li i {
  color: #D4AF37;
  font-size: 1.5rem;
}

.health-insurance-cta-buttons {
  margin-top: 20px;
}

.health-insurance-cta-buttons a {
  display: inline-block;
  padding: 12px 20px;
  background-color: #D4AF37;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.health-insurance-cta-buttons a:hover {
  background-color: #B8860B;
}

@media (max-width: 768px) {
  .health-insurance-heading {
      font-size: 1.8rem;
  }

  .health-insurance-features ul {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .health-insurance-features ul li {
      font-size: 1rem;
      padding: 12px;
  }
}

@media (max-width: 480px) {
  .health-insurance-heading {
      font-size: 1.5rem;
  }

  .health-insurance-features ul li {
      font-size: 0.95rem;
  }
}
/* helath insurance end */
.benefithealthinsurance-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 40px;
  width: 85%;
  margin: 50px auto;
  border-left: 5px solid #d4af37;
  max-width: 1400px;
}

.benefithealthinsurance-heading {
  text-align: center;
  font-size: 32px;
  color: #b8860b;
  margin-bottom: 35px;
  font-weight: bold;
  text-transform: uppercase;
}

.benefithealthinsurance-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding: 25px;
  border-radius: 8px;
  background-color: #fffaf0;
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.benefithealthinsurance-item.show {
  opacity: 1;
  transform: translateX(0);
}

.benefithealthinsurance-item:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.benefithealthinsurance-icon {
  font-size: 28px;
  color: #d4af37;
  margin-right: 20px;
}

.benefithealthinsurance-content h3 {
  margin: 0;
  font-size: 22px;
  color: #b8860b;
}

.benefithealthinsurance-content p {
  margin: 5px 0 0;
  font-size: 18px;
  color: #555;
}

@media (max-width: 1024px) {
  .benefithealthinsurance-container {
      width: 90%;
      padding: 30px;
  }

  .benefithealthinsurance-heading {
      font-size: 28px;
  }

  .benefithealthinsurance-item {
      padding: 20px;
  }

  .benefithealthinsurance-icon {
      font-size: 24px;
  }

  .benefithealthinsurance-content h3 {
      font-size: 20px;
  }

  .benefithealthinsurance-content p {
      font-size: 16px;
  }
}

@media (max-width: 768px) {
  .benefithealthinsurance-container {
      width: 95%;
      padding: 20px;
  }

  .benefithealthinsurance-heading {
      font-size: 24px;
  }

  .benefithealthinsurance-item {
      flex-direction: column;
      padding: 15px;
  }

  .benefithealthinsurance-icon {
      font-size: 22px;
      margin-bottom: 10px;
  }

  .benefithealthinsurance-content h3 {
      font-size: 18px;
  }

  .benefithealthinsurance-content p {
      font-size: 14px;
  }
}
/*benefits of health end */

/**why unlisted shares starts  **/
.container-unlisted {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: calc(100% - 30px); 
  margin: 20px auto; 
  background: #fff8dc;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.image-section {
  width: 100%;
  height: 250px; 
  background: url('img/unlist1.jpg') no-repeat center center/cover;
}

/* ===== Content Section ===== */
.content-unlisted {
  width: 100%;
  padding: 20px 15px; 
  display: flex;
  flex-direction: column;
  gap: 15px; 
}

/* ===== Shares Card Styling ===== */
.wyhunlisted-shares-section {
  display: flex;
  align-items: center;
  padding: 18px 15px; 
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer; 
}

.wyhunlisted-shares-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Gold Ribbon (Left Border) */
.wyhunlisted-shares-ribbon {
  position: absolute;
  left: 0;
  width: 8px;
  height: 100%;
  background: #D4AF37;
  border-radius: 15px 0 0 15px;
}

/* Icon Styling */
.wyhunlisted-shares-icon {
  font-size: 1.8rem; 
  color: #D4AF37;
  margin-right: 12px;
  min-width: 30px; 
}

/* Text Styling */
.wyhunlisted-shares-text {
  flex: 1;
}

.wyhunlisted-shares-title {
  font-size: 1.1rem; 
  color: #333;
  margin-bottom: 6px;
  font-weight: 600;
  line-height: 1.3;
}

.wyhunlisted-shares-description {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5; 
}

/* Tablet (768px+) */
@media (min-width: 768px) {
  .image-section {
    width: 45%; 
    height: 750px; 
  }

  .content-unlisted {
    width: 55%;
    padding: 30px 25px;
  }

  .wyhunlisted-shares-section {
    padding: 20px 18px;
  }

  .wyhunlisted-shares-icon {
    font-size: 2rem;
  }

  .wyhunlisted-shares-title {
    font-size: 1.2rem;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .container-unlisted {
    flex-wrap: nowrap; 
  }

  .image-section {
    width: 40%; 
    height: 620px;
  }

  .content-unlisted {
    width: 60%;
  }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .container-unlisted {
    margin: 30px auto; 
  }
}

/* floating bar  start*/
/*Floting-bar-start*/
.floating-form-on-all-pages {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  gap: 8px;
  background: linear-gradient(to right, #d4af37, rgb(242, 216, 138), #d4af37);
  padding: 8px 10px; 
  border-radius: 10px 10px 0 0;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1000;
}

/* Input Fields */
.floating-form-on-all-pages .input-field {
  flex: 1;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  min-width: 140px;
  font-size: 14px; 
  height: 36px;
}

/* Button */
.floating-form-on-all-pages .apply-button {
  padding: 8px 16px; 
  background: #d4af37;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem; 
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  min-width: 180px;
  height: 36px; 
  margin: 0 10px; 
}

.floating-form-on-all-pages .apply-button:hover {
  background: #b8962e;
}

/* Hide the floating form on mobile devices */
@media (max-width: 768px) {
  .floating-form-on-all-pages {
      display: none; 
  }
}
/*Floating-bar-end*/