* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}
body {
  background-color: #f5f3ff;
}

.whatsapp-button {
  font-size: 18px;
  padding: 15px 25px;
  border-radius: 25px;
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #4caf50;
  color: white;
  font-weight: 600;
  box-shadow: 1px 1px rgba(0, 0, 0, 0.329);
  border: 0;
  cursor: pointer;
  z-index: 20000;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  transition: all;
  transition: 0.3s ease;
}
/* Navbar Styles */

.navbar {
  background-color: #1d192b;
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  position: relative;
}

.logo {
  color: #f5f3ea;
  font-size: 24px;
  font-weight: bold;
  display: grid;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links ul {
  display: flex;
  list-style: none;
}

.nav-links ul li {
  margin-left: 30px;
  position: relative;
}

.nav-link {
  color: #f5f3ea;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  padding: 10px 0;
  transition: color 0.3s;
  display: inline-block;
}

.nav-link:hover {
  color: #f3b951;
}

.dropdown {
  position: relative;
}

/* Your custom dropdown style for desktop */
@media (min-width: 1201px) {
  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
  }

  .drop-down-main-container {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 15px;
  }

  .square {
    background-color: white;
    height: 20px;
    width: 20px;
    border-radius: 5px;
    transform: rotate(45deg);
    align-self: flex-end;
    position: absolute;
    top: -7px;
    right: 300px;
    z-index: 1001;
    margin-right: -10px;
  }

  .approach-dropdown-square {
    background-color: white;
    height: 20px;
    width: 20px;
    border-radius: 5px;
    transform: rotate(45deg);
    align-self: flex-end;
    position: absolute;
    top: -7px;
    right: 150px;

    margin-right: -10px;
  }

  .drop-down-sub-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 600px;
    background-color: white;
    row-gap: 1em;
    column-gap: 1rem;
    padding: 25px 35px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0;
    transform: none;
    z-index: 1000;
  }

  .approach-drop-down-sub-container {
    width: 300px;
    background-color: white;
    padding: 25px 35px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0;
    transform: none;
    z-index: 1000;
  }

  .drop-down-heading {
    grid-column: 1 / 3;
    font-family: Calibri;
    font-weight: 700;
    color: #97a3b7;
    margin-bottom: 10px;
  }

  .drop-down-item {
    font-size: 16px;
    font-family: Arial;
    font-weight: 700;
    color: #333;
    padding: 8px 0;
    transition: color 0.3s;
    margin: auto 0;
    display: flex;
    align-items: center;
  }

  .drop-down-item:hover {
    color: #f3b951;
    cursor: pointer;
  }
}

.get-started-btn {
  background-color: #f3b951;
  color: black;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  margin-left: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.get-started-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #f5f3ea;
  border-radius: 3px;
  transition: all 0.3s;
}

@media (max-width: 1200px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1d192b;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 5% 20px;
    display: none;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links ul {
    flex-direction: column;
    width: 100%;
  }

  .nav-links ul li {
    margin: 10px 0;
    width: 100%;
  }

  /* Mobile dropdown style */
  .dropdown-content {
    display: none;
    width: 100%;
    background-color: #2a2342;
    padding: 10px 0 10px 20px;
    border-radius: 5px;
    margin-top: 5px;
  }

  .drop-down-main-container {
    flex-direction: column;
  }

  .square {
    display: none;
  }

  .drop-down-sub-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: transparent;
    padding: 0;
    gap: 8px;
    position: static;
    transform: none;
  }

  .drop-down-heading {
    grid-column: 1 / 3;
    font-family: Calibri;
    font-weight: 700;
    color: #97a3b7;
    margin-bottom: 10px;
  }

  .drop-down-item {
    font-size: 16px;
    font-family: Arial;
    font-weight: 700;
    color: white;
    padding: 8px 0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .get-started-btn {
    margin: 20px 0 0;
    text-align: center;
  }
}

/* Hero Section */

.hero-section {
  background-color: #1d192b;
  color: #f5f3ea;
  padding: 3% 5%;
}

.hero-heading {
  width: 70%;
  font-family: Arial;
  font-weight: 700;
  font-size: 75px;
  line-height: 1;
}

.hero-tagline {
  padding-top: 80px;
  padding-left: 5px;
  font-family: Inter;
  font-weight: 600;
  font-style: italic;
  font-size: 38px;
  vertical-align: middle;
}

.hero-description {
  width: 50%;
  font-family: Arial;
  font-weight: 400;
  font-size: 24px;
  vertical-align: middle;
  padding-top: 80px;
  padding-left: 5px;
}

.img-divider > img {
  width: 100%;
}

/* Contact Section */

.contact-section {
  padding: 80px 35px;
  max-width: 750px;
  margin: 0 auto;
}

.contact-section > h3 {
  font-family: Arial;
  font-weight: 700;
  font-size: 35px;
  line-height: 40px;
  letter-spacing: 0%;
  vertical-align: middle;
  padding-bottom: 15px;
}

.contact-section > p {
  font-family: Arial;
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0%;
  vertical-align: middle;
  padding-bottom: 40px;
}

/* Financial Section */

.financial-heading-div {
  max-width: 1018px;
  margin: 0 auto;
  position: relative;
  padding: 80px 35px;
}

.financial-heading-div > img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2001;
}

.financial-heading-div h3 {
  text-align: center;
  margin: 0 auto;
  font-family: Arial;
  font-weight: 700;
  font-size: 43px;
  line-height: 53px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.financial-button {
  padding: 20px 40px;
  border: 1px solid black;
  border-radius: 8px;
  font-weight: 700;
  font-size: 17px;
  background-color: #f5f3ff;
  cursor: pointer;
  margin: 25px 0px;
}

.wealth-management-section {
  max-width: 1160px;
  margin: 0 auto 0 auto;
  padding: 80px 35px 0 35px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  column-gap: 2rem;
  align-items: center;
}

.wealth-management-section > div > h3 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 36px;
}

.wealth-management-section > div > p {
  font-weight: 400;
  font-size: 18px;
}

.financial-planning-section {
  max-width: 1160px;
  margin: 0 auto 0 auto;
  padding: 80px 35px 0 35px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  column-gap: 2rem;
  align-items: center;
}

.financial-planning-hidden-md {
  display: none;
}

.financial-planning-hidden-lg {
  display: block;
}

.financial-planning-section .right {
  margin-left: 180px;
}

.financial-planning-section > div > h3 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 36px;
}

.financial-planning-section > div > p {
  font-weight: 400;
  font-size: 18px;
}

.background-left-image {
  position: absolute;
  top: -65px;
  right: -150px;
  z-index: 0;
}

.front-left-image {
  position: absolute;
  z-index: 10000;
  left: 0px;
  height: 347px;
}

@media (max-width: 950px) {
  .financial-planning-hidden-md {
    display: block;
  }
  .financial-planning-hidden-lg {
    display: none;
  }
  .wealth-management-section {
    margin: 0 auto 0 auto;
    padding: 80px 35px 0 35px;
    display: grid;
    grid-template-columns: auto;
    align-items: center;
  }
  .financial-planning-section {
    margin: 0 auto 0 auto;
    padding: 80px 35px 80px 35px;
    display: grid;
    grid-template-columns: auto;
    align-items: center;
  }
  .financial-planning-img-div > div > img {
    width: 100%;
  }
  .financial-button {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .financial-heading-div h3 {
    font-size: 30px;
    line-height: 1.3;
  }
  .financial-heading-div > img {
    right: 35px;
  }

  .wealth-management-section > div > h3 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 26px;
  }

  .financial-planning-section > div > h3 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 26px;
  }

  .wealth-management-section > div > p {
    font-weight: 400;
    font-size: 16px;
  }

  .financial-planning-section > div > p {
    font-weight: 400;
    font-size: 16px;
  }

  .wealth-management-section {
    padding: 0px 35px;
  }

  .logo {
    height: 75px;
    display: grid;
    align-items: center;
  }
}

@media (max-width: 468px) {
  .financial-heading-div h3 {
    font-size: 24px;
    line-height: 1.3;
  }
  .financial-heading-div > img {
    right: 35px;
  }
}

/* Who we Serve */
.who-we-serve {
  background-color: #1d192b;
  color: #f5f3ea;
}

.who-we-serve > h3 {
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  padding-top: 119px;
  padding-bottom: 40px;
}

.who-we-serve-grid {
  max-width: 900px;
  display: grid;
  grid-template-columns: auto auto auto;
  column-gap: 3rem;
  row-gap: 4rem;
  margin: 0 auto;
  padding: 100px 0;
}

.who-we-serve-grid-item > h3 {
  font-weight: 700;
  font-size: 23px;
  padding-top: 20px;
}

.who-we-serve-grid-item > p {
  font-weight: 400;
  font-size: 16px;
  padding-top: 10px;
  width: 100%;
  line-height: 1.5;
}

@media (max-width: 1000px) {
  .who-we-serve-grid {
    grid-template-columns: auto auto;
    align-items: center;
    text-align: center;
    padding: 0 60px 60px 60px;
  }
}

@media (max-width: 468px) {
  .who-we-serve-grid {
    grid-template-columns: auto;
    align-items: center;
    text-align: center;
    padding: 0 60px 60px 60px;
  }
  .contactus-section {
    padding: 0 35px 45px 35px !important;
  }
  .testimonial-section {
    padding: 0 35px 45px 35px !important;
  }
}

/* partner section */
.partner-section {
  padding: 60px 35px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 5px;
}

.underline {
  width: 40px;
  height: 4px;
  background-color: #f4b000;
  margin: 0 auto 40px;
  border-radius: 2px;
}

.partner-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: left;
}

.partner-logo img {
  height: auto;
  width: 80%;
}

.partner-info {
  max-width: 500px;
}

.partner-heading {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.partner-description {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
  .partner-container {
    flex-direction: column;
    text-align: center;
  }

  .partner-info {
    max-width: 100%;
  }

  .partner-heading {
    font-size: 20px;
  }

  .partner-description {
    font-size: 15px;
  }

  .partner-logo img {
    width: 65%;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }

  .partner-heading {
    font-size: 18px;
  }

  .partner-description {
    font-size: 14px;
  }

  .partner-logo img {
    width: 50%;
  }
}

/* Testimonials Container */

.testimonial-section {
  padding: 0 35px 40px 35px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
.testimonials-container {
  position: relative;
  padding: 2rem 0;
}

.testimonials {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 1rem);
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* For Firefox */
  padding-bottom: 1rem;
  text-align: left;
}

.testimonials::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Opera */
}

.testimonial-card {
  scroll-snap-align: start;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-content {
  flex: 1;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-content p {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.7;
  margin-top: 2rem;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-content p::before {
  content: ' " ';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.author-info h4 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 0.2rem;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--gray);
}

.rating {
  display: flex;
  gap: 0.2rem;
  margin-top: 0.5rem;
}

.rating i {
  color: #ffc107;
  font-size: 1rem;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.control-btn:hover {
  color: white;
  transform: scale(1.1);
}

.dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
}

.dot.active {
  background: black;
  transform: scale(1.2);
}

/* Responsive styles */
@media (max-width: 992px) {
  .testimonials {
    grid-auto-columns: calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .testimonials {
    grid-auto-columns: 100%;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

/* Contact Us Section */

.contactus-section {
  padding: 0 35px 40px 35px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.contactus-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.left-section {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.right-section {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.left-section > h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.left-section > p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #555;
}

.contact-info {
  margin-top: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.info-item i {
  margin-right: 15px;
  color: #3498db;
  font-size: 1.2rem;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  margin-top: 15px;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border 0.3s;
}

input:focus,
textarea:focus {
  border-color: #3498db;
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-button {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: #2980b9;
}

@media (max-width: 400px) {
  .contactus-container{
    padding: 0;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 30px;
  }
}

/* Learn More Section Styles */
.learn-more-section {
  background-image: url("./assets/connect-with-us.png");
  height: 600px;
  padding: 80px 35px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
}

/* Overlay content */
.overlay {
  display: flex;
  color: white;
  max-width: 1100px;

  border-radius: 10px;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.main-heading {
  font-size: 6rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.subtext {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.learn-more-btn {
  display: inline-block;
  text-align: center;
  padding: 15px 30px;
  font-size: 1.1rem;
  color: white;
  border: 2px solid white;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.learn-more-btn:hover {
  background-color: white;
  color: #000;
}

/* Footer Styles */
.footer {
  padding: 100px 0px;
  background-color: #1d192b;
  color: #f5f3ff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

.logo {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.logo .arrow {
  color: #f4af40;
}

.footer-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.footer-right {
  max-width: 300px;
}

.footer-right h3 {
  margin-bottom: 10px;
}

.footer-right p {
  margin: 5px 0;
}

.footer-right .phone {
  font-weight: bold;
  font-size: 18px;
  margin-top: 10px;
}

.footer-right .email {
  color: white;
}

hr {
  margin: 30px auto;
  border: 0.5px solid #333;
  max-width: 1100px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  max-width: 1100px;
  margin: auto;
}

.social-icons a {
  color: white;
  font-size: 18px;
  margin-left: 15px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #f4af40;
}

/* Media Screen Styles */

@media (max-width: 1250px) {
  .hero-section {
    padding: 5% 5%;
  }

  .hero-heading {
    font-size: 50px;
    width: 80%;
  }

  .hero-tagline {
    font-size: 28px;
    padding-top: 40px;
  }

  .hero-description {
    font-size: 20px;
    padding-top: 40px;
    width: 80%;
  }
}

@media (max-width: 1100px) {
  .footer {
    padding: 65px 35px;
  }
  .financial-heading-div > img {
    right: 35px;
    top: 5px;
    height: 100px;
  }
}

@media (max-width: 1000px) {
  .hero-section {
    padding: 7% 5%;
  }

  .hero-heading {
    font-size: 45px;
    width: 80%;
  }

  .hero-tagline {
    font-size: 28px;
    padding-top: 40px;
  }

  .hero-description {
    font-size: 20px;
    padding-top: 40px;
    width: 80%;
  }

  .footer-right {
    margin-top: 45px;
  }
}

@media (max-width: 700px) {
  .hero-section {
    padding: 10% 5%;
  }

  .hero-heading {
    font-size: 30px;
    width: 80%;
  }

  .hero-tagline {
    font-size: 22px;
    padding-top: 40px;
  }

  .hero-description {
    font-size: 18px;
    padding-top: 40px;
    width: 80%;
  }

  .footer-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .social-icons {
    margin-top: 25px;
  }
}

/* Form Styles */

/* Previous styles remain the same */
.form-container {
  font-family: "Arial", sans-serif;
  max-width: 600px;
  margin: 20px auto;
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  
}

.form-group {
  margin-bottom: 15px;
}

.form-heading{
  font-size: 24px;
  margin-bottom: 30px;
  position: relative;
}

.form-heading::after{
  content:'';
  height:3px;
  width:65px;
  position: absolute;
  background-color: #f4af40;;
  border-radius: 5px;
  left:0;
  bottom: -8px;
}

label {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: normal;
}


input[type="text"],
input[type="tel"],
input[type="email"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.radio-group {
  display: flex;
  gap: 20px;
}

.radio-option {
  display: flex;
  align-items: center;
}

input[type="radio"] {
  margin-right: 10px;
  margin-top: 8px;
}

button {
  background-color: #4caf50;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


.success-message {
  color: green;
  display: none;
  margin-top: 10px;
}
