/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(220, 68%, 54%);
  --first-color-lighten: hsl(220, 68%, 97%);
  --title-color: hsl(220, 48%, 28%);
  --text-color: hsl(220, 12%, 45%);
  --body-color: hsl(220, 100%, 99%);
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  background-color: #fff;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
  background-color: var(--body-color);
  z-index: var(--z-fixed);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 300px) {
  .dropdown__group {
    padding-left: 1.5rem;
  }
}
/* For large devices */
@media screen and (min-width: 1152px) {
  .container {
    margin-inline: auto;
  }
}

/*----------------------------- hero section --------------------------*/

.mySlides {
  display: none;
  width: 100%;
  height: 470px;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.texts {
  padding: 10px;
  margin-bottom: 150px;
  position: absolute;
}

.texts h1 {
  font-size: 50px;
}

.texts .p1 {
  font-size: 25px;
}

.texts p {
  text-align: center;
  font-size: 20px;
  font-weight: 100;
}

button {
  border-radius: 30px;
  padding: 5px;
  background-color: #d8e7e7;
  border: none;
  margin-top: 10px;
}

button:hover {
  color: white;
}

@media (max-width: 700px) {
  .texts {
    padding: 10px;
    margin-bottom: 50px;
  }

.mySlides {
  display: none;
  width: 100%;
  height: 270px;
  z-index: 1;
}

  .texts h1 {
    font-size: 30px;
  }

  .texts .p1 {
    font-size: 20px;
  }

  .texts p {
    text-align: center;
    font-size: 15px;
    font-weight: 50;
  }
}
/* /-------------------------about-------------- */
.about-section {
  padding: 50px 20px;
  background-color: #fff;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1 1 55%;
  padding: 40px;
}

.about-text h4 {
  color: #0a0444;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 30px;
}

.about-text h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #222;
}

.about-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.features {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 30px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e4002b;
  font-size: 15px;
  flex: 1 1 250px;
}

.feature-box i {
  font-size: 28px;
}

.feature-box p {
  color: #333;
  margin: 0;
  font-size: 14px;
}

.about-image {
  flex: 1 1 45%;
  overflow: hidden;
  padding: 20px;
}

.about-image img {
  width: 100%;
  border-radius: 30px 0 0 30px;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
    border-radius: 20px;
  }

  .about-image img {
    border-radius: 0 0 20px 20px;
  }

  .about-text {
    padding: 20px;
  }

  .feature-box {
    flex: 1 1  100%;
  }
}
/* ------------services---------------- */

.service-overview,
.service-details,
.testimonials,
.faq,
.contact-cta {
  padding: 80px 0;
  background-color: #fff;
  margin-top: -20px;
}

.service-overview h2,
.service-details h2,
.testimonials h2,
.faq h2,
.contact-cta h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  font-weight: 600;
  color: #333;
}

.benefits,
.steps {
  /* bottom: 10px; */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.benefit-item,
.step-item {
  flex: 1 1  30%;
  margin-bottom: 40px;
  margin-right: 10px;
  text-align: center;
  padding: 15px;
  background-color: #eeeff0;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.benefit-item img,
.step-item img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.benefit-item h3,
.step-item h3 {
  margin-bottom: 15px;
  font-size: 1.6em;
  color: rgb(4, 45, 63);
}

.benefit-item p,
.step-item p {
  font-size: 1em;
  color: #666;
}

.benefit-item:hover,
.step-item:hover {
  transform: translateY(-10px);
}

/* ----------------------- */
.service-overview1,
.service-details,
.testimonials,
.faq,
.contact-cta {
  padding: 80px 0;
  background-color: #fff;
  margin-top: -160px;
}
.service-overview1 h2,
.service-details h2,
.testimonials h2,
.faq h2,
.contact-cta h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  font-weight: 600;
  color: #333;
}
.p11 {
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 458px) {
  
  .benefit-item,
.step-item {
  flex: 1 1 50%;
  margin-bottom: 40px;
  margin-right: 10px;
  text-align: center;
  padding: 15px;
  background-color: #eeeff0;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
}
/* ----------------------- ponits----------------------- */

.container11 {
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 50px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 30px;
}

h1 span {
  color: #0072ce; /* Wealth Redefine Blue */
  font-weight: bold;
}

.feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.feature-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f77f00;
  margin-right: 15px;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .feature {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-number {
    margin-bottom: 5px;
  }
  
}
/* ----------------- */
.whatsapp-btn {
  background-color: #0f0e53;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 7px;
}

.whatsapp-btn:hover {
  background-color: #073ca5;
  transform: scale(1.05);
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-float img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}


/* ----------------------Footer start ----------------------------------- */

.footer {
  height: 330px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, auto));
  gap: 2.5rem;
  background: rgb(5, 29, 39);
  left: 0;
  right: 0;
  border-radius: 10px;
  padding: 30px;
}

.footer-content h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 22px;
}

.footer-content li {
  margin-bottom: 16px;
  list-style-type: none;
}

.footer-content li a {
  text-decoration: none;

  display: block;
  color: #d6d6d6;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.4s ease;
}

.footer-content li a:hover {
  transform: translateY(-3px) translateX(-5px);
}

.footer-content p {
  color: white;
  font-size: 16px;
  line-height: 20px;
  margin: 20px 0;
  margin-left: 50px;
}

.icons a {
  display: inline-block;
  font-size: 30px;
  color: white;
  margin-right: 17px;
  transition: all 0.4s ease;
  margin-left: 50px;
}

.icons a:hover {
  color: white;
  transform: translateY(15px);
}

.footer-content a:hover {
  color: #e94b7f;
}

@media (max-width: 1600px) {
  section {
    padding: 50px 5% 40px;
  }
}

@media (max-width: 1120px) {
  .footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, auto));
    gap: 2rem;
  }
}

@media (max-width: 700px) {
  .footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, auto));
    gap: 2.5rem;
    height: auto;
  }
  .footer-content p {
    margin: -10px;
  }
  .icons {
    margin-top: 20px;
  }
  .icons a {
    display: contents;
  }
}

/*-----------------------------footer end----------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');
.navbar {
 background-color: hsl(240, 3%, 94%);    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* position: fixed !important; */
}
.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 32px;
  font-weight: 500;
  background: linear-gradient(90deg, #090a4d, #3e8ef7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  margin-left: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    position: relative;
    margin-right: 20px;
}

.nav-links li a {
  
    color: #090a4d;
    text-decoration: none;
    font-size: 18px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    transition: 0.3s ease;
    position: relative;
    gap: 1vw;
}

.nav-links li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #0e058a;
    transition: width 0.3s;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a i {
    margin-left: 8px;
    transition: 0.3s ease;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 30px;
}

.hamburger .bar {
    background: #140505;
    height: 4px;
    width: 100%;
    border-radius: 5px;
    transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 100%;
        background: #d3d2d2;
        width: 100%;
        flex-direction: column;
        text-align: center;
        transition: 0.4s ease-in-out;
        z-index: 150;
    }

    .nav-links.active {
        left: 0;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links li a {
        line-height: 4vw;
    }

    .nav-links a {
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: center;
    }

    .dropdown-content,
    .sub-dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        background: #222;
        box-shadow: none;
        transition: none;
        text-align: center;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }
    .sub-dropdown.active .sub-dropdown-content {
        display: block;
    }

    /* Hamburger to cross icon */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}