.hero {
  background: linear-gradient(to right, #000000e0 30%, transparent),
    url('Images/hero.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 80px 0;
  min-height: 400px;
  position: relative;
  animation: zoomIn 30s ease-in-out infinite;
}


    
/* Zoom animation */
@keyframes zoomIn {
  0% {
    background-size: 100%;
  }
  50% {
    background-size: 120%;
  }
  100% {
    background-size: 100%;
  }
}
       .hero2 {
      background: linear-gradient(to right, #000000e0 30%, transparent),
        url('Images/hero.jpg') no-repeat center center;
      background-size: cover;
      color: white;
      padding: 80px 0;
      min-height: 300px;
      position: relative;
    }
    .lead p{
      font-size: 12px !important;
    }

    .hero h1 {
      font-weight: bold;
      font-size: 3rem;
    }
    @media (max-width: 767px) {
      .hero h1 {
        font-weight: bold;
        font-size: 27px;
      }
    }
    .cta-section {
      margin-top: -60px;
      z-index: 5;
      position: relative;
    }
    .lm{
      font-size: 40px !important;
    }

    .cta-btn {
      background-color: #00205C;
      color: white;
      border-radius: 10px;
      padding: 29px 30px;
      min-width: 228px;
      text-align: center;
      font-weight: 700;
      font-size: 20px;
      /* font-size: 1.2rem; */
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
      width: 100%;
    }

    .cta-btn:hover {
      background-color: #f7f8fa;
      color:#00205C;
    }

    @media (min-width: 768px) {
      .cta-btn {
        width: auto;
      }
    }

    .nav-link {
      color: black;
      font-weight: 500;
      /* font-size: 1.1rem; */
      position: relative;
      padding: 10px 15px;
          font-family: "Verdana", Sans-serif;
    }

    .nav-link.active {
      color: #00205C;
    }

    .nav-link.active::after {
      content: "";
      display: block;
      width: 100%;
      height: 2px;
      background-color: #00205C;
      position: absolute;
      bottom: 0;
      left: 0;
    }

    .navbar-nav {
      margin-left: auto;
    }

    .bg-danger {
      font-size: 0.9rem;
    }

    .bg-danger a {
      font-size: 1.1rem;
    }

    @media (max-width: 768px) {
      .bg-danger {
        font-size: 0.8rem;
      }

      .bg-danger a {
        font-size: 1rem;
      }

      .navbar-collapse {
        text-align: center;
      }

      .navbar-nav {
        margin: 0;
      }
    }


    /* about */
    .wealth-section {
      padding: 50px;
      padding-top:0;
      background: #fff;
      font-family: 'Segoe UI', sans-serif;
    }

    .wealth-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
      
    }
    @media screen and (min-width: 769px) {
  .wealth-container {
    gap: 40px; /* Adds spacing between .wealth-text and .wealth-image */
  }
}

    .wealth-text {
      flex: 1 1 50%;
      max-width: 550px;
    }

	@media (min-width: 820px) and (max-width: 834px) and (orientation: portrait) {
    .wealth-text h2 {
        padding-top: 85px;
    }
}
    @media screen and (min-width: 769px) {
      .wealth-text {
        margin-top: -120px;
      }
    }

    .subtitle {
      color: #00205C;
      font-weight: 600;
      letter-spacing: 1px;
      font-size: 10px;
    }
          @media (max-width: 767px) {
      .subtitle {
        color: #00205C;
        font-weight: 600;
        letter-spacing: 1px;
        font-size: 10px; /* Adjusted for mobile view */
      }
    }

    h2 {
      font-size: 36px;
      font-weight: 700;
      color: #000;
      margin: 15px 0;
    }

    .description {
      color: #333;
      margin-bottom: 25px;
    }

    .wealth-points {
      display: flex;
      flex-wrap: wrap;
      padding: 0;
      margin: 0;
      list-style: none;
      color:#00205C;
      gap: 20px 40px;
      /* optional spacing between rows and columns */
    }

    .wealth-points li {
      flex: 0 0 calc(50% - 20px);
      /* Two items per row with gap adjustment */
      display: flex;
      align-items: flex-start;
      font-size: 18px;
      font-style: oblique;
      font-weight: 700;
    }


    .wealth-image {
      position: relative;
      flex: 1 1 45%;
      /* max-width: 500px; */
    }

    .wealth-image img {
      width: 100%;
      border-radius: 10px;
    }

    .experience-box {
      position: absolute;
      bottom: -33px;
      right: 0px;
      background: white;
      padding: 13px 38px 38px 38px;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
      text-align: center;
    }
    .experience-box:hover {
      background-color: #00205C;
      color: white;
      .years {
        color: white;
      }
      .label {
        color: white;
      }
    }

    .years {
      color: #00205C;
      font-size: 50px;
      font-weight: 700;
    }

    .label {
      font-size: 14px;
      color: #333;
    }

    /* end */
    /* Responsive Styles */
    @media screen and (max-width: 768px) {
      .wealth-container {
        flex-direction: column;
        align-items: center;
      }

      .wealth-text {
        text-align: center;
        margin-bottom: 30px;
      }

      .wealth-image {
        margin-top: 20px;
        text-align: center;
      }

      .wealth-points {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* Two columns */
        gap: 20px 10px;
        margin-top: 20px;
        justify-items: center;
      }

      .wealth-points li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 14px;
        display: flex;
      }

      .wealth-points .icon {
        font-size: 24px;
        margin-bottom: 5px;
      }
    }


    @media screen and (max-width: 480px) {
      h2 {
        font-size: 28px;
        /* Adjust heading size for smaller screens */
      }

      .wealth-points li {
        font-size: 14px;
        /* Adjust font size further if needed */
      }

      .experience-box {
        padding: 15px;
      }
      

      .years {
        font-size: 30px;
        /* Slightly smaller font for mobile */
      }

      .label {
        font-size: 12px;
      }
    }

    /* FOOTER */

 .ft {
  position: relative;
  height: 66vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.ft .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.ft .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* optional overlay */
  z-index: 2;
}

.ft .hero-content {
  position: relative;
  z-index: 3;
  padding: 20px;
}

    .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
    }

    .btn-magenta {
      background-color:#00205C;
      color: white;
      border: none;
    }

    .btn-magenta:hover {
      background-color: #00205C;
    }

.footer {
  background-color: #00205C;
  color: white;
  padding: 10px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.footer .left,
.footer .center,
.footer .right {
  flex: 1;
}

.footer .left {
  text-align: left;
  padding-right: 15px;
}
.footer .right {
  text-align: right;
  padding-left: 15px;
}

/* @media screen and (max-width: 600px) {
  .footer .left {
    text-align: center;
    padding-left: 0;
  }

.footer .center {
  text-align: center;
}

.footer .right {
  text-align: right;
  padding-right: 15px;
}
}

@media screen and (max-width: 600px) {
  .footer .right {
    text-align: center;
    padding-right: 0;
  }
} */
/* end footer */
/* For small devices - center everything */
@media screen and (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex: 1 1 100%;
  }
}


    /* hero and cta animation */
    /* @keyframes slideUp {
      0% {
        transform: translateY(100%);
        opacity: 0;
      }

      100% {
        transform: translateY(0);
        opacity: 1;
      }
    } */

    /* .hero .animated-slide-up,
    .cta-section .animated-slide-up {
      animation: slideUp 1s ease-out forwards;
    } */

    /* hero and cta aniamation */

.hero .animated-slide-up {
  animation: slideUp 0.5s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
  transform: translateY(calc(100% + 40px));
}

.cta-section .cta-btn:nth-of-type(1) {
  animation: slideUp 0.5s ease-out forwards;
  animation-delay: 0.7s;
  opacity: 0;
  transform: translateY(20px); /* Ensure it's set initially */
}

.cta-section .cta-btn:nth-of-type(2) {
  animation: slideUp 0.5s ease-out forwards;
  animation-delay: 1.2s;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px); /* Start from bottom */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* Move to normal position */
  }
}

/* Animate disclaimer */
.disclaimer-section .animated-slide-up {
  animation: slideUp 0.6s ease-out forwards;
  animation-delay: 0.3s; /* Adjust if needed */
  opacity: 0;
  transform: translateY(20px); /* start from below */
}

/* Already defined keyframes (reuse this) */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




  /* About section animation in list */
            .animated-scroll-left,
          .animated-scroll-right {
            opacity: 0;
            transition: all 1s ease-out;
          }

          .animated-scroll-left.scroll-reveal {
            transform: translateX(0);
            opacity: 1;
          }

          .animated-scroll-right.scroll-reveal {
            transform: translateX(0);
            opacity: 1;
          }

          .animated-scroll-left {
            transform: translateX(-50px);
          }

          .animated-scroll-right {
            transform: translateX(50px);
          }

    /* container_nav */
    @media (min-width: 1200px) {

      .container,
      .container-lg,
      .container-md,
      .container-sm,
      .container-xl {
        max-width: 1300px !important;
      }
    }
   
    /* whatsappbtn */

    .whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #25d366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 26px;
  height: 26px;
  display: block;
}

    /* end whatsapp */

    /* //about page  */

 .profile-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.profile-img-frame {
  display: inline-block;
  padding: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00205C, #feb47b);
}

.profile-img-frame img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
}

.profile-info h2 {
  font-size: 28px;
  color: #333;
  font-weight: 700;
}

.profile-info p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .profile-card {
    text-align: center;
  }

  .profile-info {
    margin-top: 20px;
  }

  .profile-img-frame img {
    width: 180px;
    height: 180px;
  }
}


/* about comapny */
  .about-section {
      /* padding: 60px 0; */
      background-color: #fff;
    }
    .circle-img {
      width: 100%;
      max-width: 500px;
      /* border-radius: 50%; */
      border: 8px solid #dce8ff;
      position: relative;
      z-index: 2;
    }
    .img-container {
      position: relative;
      text-align: center;
    }
    .icon {
      color: gray;
      margin-right: 10px;
    }
    @media (max-width: 768px) {
      .text-col {
        margin-top: 30px;
        padding-left: 25px !important;
        padding-right: 25px !important;
      }
   

    }
    
    p{
      text-align: justify;
    }


    /* contact */
     .contact-section {
      padding: 60px 0;
    }

    .contact-form {
      background-color: #fff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    }

    .form-control:focus {
      box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

    .contact-image {
      width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .contact-image:hover {
      transform: scale(1.03);
    }

    /* @media (max-width: 767px) {
      .hero h1 {
        font-size: 2.5rem;
      }
    } */

    /* end contact */
/* //for nav bar active */
 .nav-link {
  position: relative;
  color: #000;
  text-decoration: none;
}

/* Active link underline */
.nav-link.active-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background-color: #00205C;
  border-radius: 2px;
}

/* Temporarily hide active underline */
.nav-link.active-link.temporarily-inactive::after {
  content: none;
}

/* Hover underline */
.nav-link:hover::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background-color: #00205C;
  border-radius: 2px;
}


    /* .nav-link:hover::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 100%;
      height: 3px;
      background-color: #00205C; 
      border-radius: 2px;
    }
    .nav-link:hover {
      position: relative;
      color: #00205C !important;
      
      
    } */


     .nav-link.active-link {
      position: relative;
      color: #00205C !important;
    }

    @media (max-width: 767px) {
      .nav-link.active-link {
      position: relative;
      color: gray !important;
      font-family: "Verdana", Sans-serif;
    }

    .nav-link.active-link::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 100%;
      height: 3px;
      background-color: gray; /* Bootstrap primary blue */
      border-radius: 2px;
    }

     .nav-link.active-link {
      position: relative;
      color: gray !important;
          font-family: "Verdana", Sans-serif;
    }
    }
  

  /* brand */

  .brand-item {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand-item img {
  max-height: 80px;
  width: auto;
  
  transition: all 0.3s ease;
}
.brand-item img:hover {
  filter: none;
  transform: scale(1.05);
}



.btn{
  background-color: #00205C !important;
  color: #fff !important;
  border-color: #00205C !important;
}
.btn:hover{
  background-color: #f3f5f8 !important;
  color: #00205C !important;
  border-color: #00205C !important;
}

/* //for nav icons (facebook, linkedin, instagram) */
 .social-icon:hover {
    font-size: 25px !important; /* Change to your desired hover size */
    transition: font-size 0.3s ease;
  }