body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f7f6;
}

/* NAVBAR */
.navbar {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 1000;

    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;

    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* LOGO */
.logo img {
    height: 65px;
}

/* NAV LINKS (DESKTOP) */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li {
    cursor: pointer;
    font-weight: 500;
}


/* TOGGLE BUTTON */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* MOBILE VIEW */
@media(max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links li {
        padding: 12px 0;
        font-size: 18px;
    }

    .nav-links.active {
        display: flex;
    }
}

/* LOGIN BUTTON */
.login-btn {
    background: linear-gradient(135deg, #1ea672, #168a5c);
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 6px 15px rgba(30,166,114,0.3);
}

/* HOVER */
.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30,166,114,0.4);
}
/* HERO */
.hero {
    padding: 80px 60px;
}

.slide {
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;   /* IMPORTANT FIX */
}

.slide.active {
    display: flex;
}

/* TEXT */
.content h1 {
    font-size: 55px;
    color: #0f3d3e;
}

.content span {
    color: #1ea672;
}

.buttons {
    margin-top: 25px;
}

.btn {
    padding: 14px 28px;
    margin-right: 12px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

/* BUTTON STYLES */
.btn.outline {
    border: 2px solid #0f3d3e;
    color: #0f3d3e;
}

.btn.solid {
    background: #1ea672;
    color: white;
}

/* IMAGE */
.image img {
    width: 420px;
}

/* DOTS */
.dots {
    text-align: center;
    margin-top: 25px;
}

.dot {
    height: 10px;
    width: 10px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
}

.dot.active {
    background: #1ea672;
}

/* RESPONSIVE */
@media(max-width: 768px) {

    /* NAVBAR FIX */
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    /* TOGGLE BUTTON */
.menu-toggle {
    width: 30px;
    height: 25px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #0f3d3e;
    border-radius: 2px;
    transition: 0.3s;
}

/* ANIMATION TO CROSS */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* SHOW ONLY ON MOBILE */
@media(max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
}

    /* HERO FIX */
    .slide {
        flex-direction: column;
        text-align: center;
    }

    .image img {
        width: 260px;
        margin-top: 20px;
    }

    .content h1 {
        font-size: 30px;
        line-height: 1.3;
    }

.buttons {
        display: flex;
        flex-direction: column;   /* stack buttons */
        align-items: center;
        gap: 12px;                /* space between buttons */
    }

    .btn {
        width: 80%;               /* responsive width */
        text-align: center;
        padding: 12px 0;
        font-size: 16px;
    }

    .image img {
        width: 220px;
        margin-top: 20px;
    }
}
/* ABOUT SECTION */
.about {
    padding: 100px 60px;
    background: #ffffff;
    border-radius: 40px 40px 0 0;
    margin-top: -30px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* TEXT */
.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 40px;
    color: #0f3d3e;
    margin-bottom: 15px;
}

.about-text .highlight {
    color: #1ea672;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* BUTTON */
.read-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;
    background: #1ea672;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.read-btn:hover {
    background: #158a5c;
}

/* IMAGE */
.about-image img {
    width: 420px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* MOBILE */
@media(max-width: 768px) {
    .about {
        padding: 60px 20px;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-image img {
        width: 100%;
        margin-top: 20px;
    }
}

.retirement-section {
    padding: 80px 20px;
    background: #f4f7f6;
}

.container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* TEXT */
.calc-text h2 {
    font-size: 40px;
    color: #0f3d3e;
}

.calc-text span {
    color: #1ea672;
}

.calc-text p {
    margin-top: 15px;
    color: #555;
}

/* CARD */
.calculator-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 420px;
}

.calculator-card h3 {
    margin-bottom: 20px;
    color: #0f3d3e;
}

/* INPUT */
.calculator-card input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

/* BUTTON */
.calculator-card button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1ea672, #168a5c);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.calculator-card button:hover {
    transform: translateY(-2px);
}

/* RESULT BOX */
.result-box {
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    background: #f4f7f6;
    text-align: center;
}

.result-box h2 {
    color: #1ea672;
    margin-top: 10px;
}

/* MOBILE */
@media(max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .calc-text h2 {
        font-size: 28px;
    }
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
}

.input-group label {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    background: white;
    padding: 0 5px;
    color: #777;
    font-size: 14px;
    pointer-events: none;
    transition: 0.3s;
}

/* FLOAT EFFECT */
.input-group input:focus + label,
.input-group input:valid + label {
    top: -8px;
    font-size: 12px;
    color: #1ea672;
}
.wealth-section {
    padding: 80px 20px;
    background: #f4f7f6;
}

.wealth-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

.wealth-inputs {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}

.wealth-inputs h2 {
    margin-bottom: 20px;
    color: #0f3d3e;
}

.slider-box {
    margin-bottom: 20px;
}

.slider-box label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.slider-box input {
    width: 100%;
}

.slider-box span {
    float: right;
    font-weight: bold;
    color: #1ea672;
}

.wealth-result {
    flex: 1;
    background: linear-gradient(135deg, #0f3d3e, #1ea672);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.result-box {
    background: white;
    color: #0f3d3e;
    padding: 20px;
    font-size: 28px;
    border-radius: 15px;
    margin: 20px 0;
    font-weight: bold;
}

@media(max-width: 768px) {
    .wealth-container {
        flex-direction: column;
    }
}
.result-illustration {
    margin-top: 20px;
}

.result-illustration img {
    width: 180px;
    max-width: 100%;
    opacity: 0.95;
}
.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

/* 🔥 PILL DESIGN */
.value-pill {
    background: #f1f3f5;
    border-radius: 30px;
    padding: 6px 14px;
    min-width: 110px;
    text-align: center;
}

.value-pill input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #0f3d3e;
}
/* REMOVE NUMBER INPUT ARROWS */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}
/* MOBILE FIX - CLEAN VERSION */
@media (max-width: 768px) {

    .wealth-container {
        padding: 0 12px;
    }

    .wealth-result {
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
        padding: 22px 16px;
        border-radius: 18px;
        text-align: center;
        overflow: hidden;
    }

    .wealth-result h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .result-box {
    width: 90%;
    margin: 15px auto;
    background: #fff;
    color: #0f3d3e;
    padding: 15px;
    font-size: 22px;
    border-radius: 15px;
    font-weight: bold;
}

    .wealth-result p {
        font-size: 13px;
        margin: 6px 0;
    }

    .result-illustration {
        margin-top: 10px;
    }

    .result-illustration img {
        width: 110px;
        max-width: 100%;
    }
}

.wealth-section {
    padding: 60px 20px;
    background: #f4f7f6;
}

.wealth-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
}

.wealth-inputs {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}

.slider-box {
    margin-bottom: 20px;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.value-pill {
    background: #f1f3f5;
    border-radius: 25px;
    padding: 6px 14px;
    min-width: 90px;
    text-align: center;
}

.value-pill input {
    border: none;
    background: transparent;
    text-align: center;
    font-weight: bold;
    outline: none;
}

.wealth-result {
    flex: 1;
    background: linear-gradient(135deg, #0f3d3e, #1ea672);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.result-box {
    background: white;
    color: #0f3d3e;
    padding: 14px;
    border-radius: 15px;
    margin: 12px auto;
    font-size: 20px;
    font-weight: bold;
    width: 90%;
    max-width: 280px;   
}
.result-box.small {
    width: 80%;
    max-width: 220px;
}

.result-illustration img {
    width: 130px;
    margin-top: 10px;
}

/* MOBILE */
@media(max-width:768px){

    .wealth-result {
        padding: 25px 15px;
        border-radius: 20px;
        overflow: hidden;   /* ✅ overflow fix */
    }

    .wealth-result h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .wealth-result p {
        font-size: 13px;
        margin: 6px 0;
    }

    .result-illustration img {
        width: 90px;   /* ✅ image control */
        margin-top: 8px;
    }

}
    
    .wealth-section {
    padding: 60px 20px;
    background: #f4f7f6;
}

.wealth-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
}

.wealth-inputs {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}

.slider-box {
    margin-bottom: 20px;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.value-pill {
    background: #f1f3f5;
    border-radius: 25px;
    padding: 6px 14px;
    min-width: 100px;
    text-align: center;
}

.value-pill input {
    border: none;
    background: transparent;
    text-align: center;
    font-weight: bold;
    outline: none;
}

.wealth-result {
    flex: 1;
    background: linear-gradient(135deg, #0f3d3e, #1ea672);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.result-box {
    background: white;
    color: #0f3d3e;
    padding: 14px;
    border-radius: 15px;
    margin: 12px auto;
    font-size: 20px;
    font-weight: bold;
    width: 90%;
    max-width: 280px;
}

.result-box.small {
    width: 80%;
    max-width: 220px;
}

.result-illustration img {
    width: 120px;
    margin-top: 10px;
}

/* MOBILE */
@media(max-width:768px){

    .wealth-container {
        flex-direction: column;
    }

    .wealth-result {
        padding: 25px 15px;
        overflow: hidden;
    }

    .result-box {
        width: 100%;
    }

    .result-illustration img {
        width: 90px;
    }
}

/* Container */
.whatsapp-container {
    position: fixed;
    bottom: 40px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 9999;
}

/* Text Bubble */
.contact-text {
    background: #fff;
    color: #333;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: 0.4s;
}

.contact-text.show {
    opacity: 1;
    transform: translateX(0);
}

/* WhatsApp Button */
.whatsapp-btn {
    width: auto;
    height: auto;
    background: transparent;   
    border-radius: 0;          
    box-shadow: none;          
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover Effect */
.whatsapp-container:hover .whatsapp-btn {
    transform: scale(1.1);
}

.whatsapp-container:hover .contact-text {
    transform: translateX(-5px);
}

/* Mobile */
@media (max-width: 768px) {
    .contact-text {
        font-size: 14px;
        padding: 6px 10px;
    }

    .whatsapp-btn {
        width: 45px;
        height: 45px;
    }
}

.services-section {
  padding: 120px 20px;
  background: #f9fbfa;
  margin-top: 80px;
  box-shadow: 0 -20px 40px rgba(0,0,0,0.05);
}
.services-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* LEFT */
.services-left h2 {
  font-size: 48px;
  color: #0f3d3e;
  font-weight: 700;
  line-height: 1.2;
}

/* Highlight word */
.services-left h2 span {
  color: #1ea672;
}

/* Divider line */
.services-left .line {
  width: 60px;
  height: 4px;
  background: #1ea672;
  margin: 20px 0;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .services-left .line {
    margin: 20px auto;  /* ✅ center horizontally */
  }
}

/* Paragraph */
.services-left p {
  color: #5f6c7b;
  font-size: 16px;
  line-height: 1.8;
  max-width: 420px;
}

/* GRID */
.services-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* 🔥 CARD PREMIUM */
.service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  transition: 0.4s ease;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */
.service-card::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(30,166,114,0.15), transparent 70%);
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: 0.4s;
}

.service-card:hover::before {
  opacity: 1;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* ICON WRAPPER */
.service-card .icon {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #1ea672, #168a5c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin-bottom: 20px;

  box-shadow: 0 10px 25px rgba(30,166,114,0.3);
}

/* TEXT */
.service-card h3 {
  font-size: 16px;
  color: #0f3d3e;
  font-weight: 600;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-left h2 {
    font-size: 30px;
  }
}

.testimonial-section {
  padding: 60px 20px 80px;
  background: linear-gradient(135deg, #f8fbff, #eef5f3);
  text-align: center;
}

.testimonial-title {
  font-size: 40px;
  font-weight: 700;
  color: #0f3d3e;
  text-align: center;
  letter-spacing: 0.5px;
}

.testimonial-title span {
  color: #1ea672;
  position: relative;
}


.title-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1ea672, #34c38f);
  margin: 15px auto 25px;
  border-radius: 10px;
}

.testimonial-subtitle {
  color: #5f6c7b;
  margin-bottom: 40px;
}

.testimonial-slider {
  max-width: 700px;
  margin: auto;
}

/* ITEMS */
.testimonial-item {
  display: none;
  background: linear-gradient(145deg, #ffffff, #f4f7f6);
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 
    10px 10px 25px rgba(0,0,0,0.08),
    -10px -10px 25px rgba(255,255,255,0.9);
  max-width: 750px;
  margin: auto;
  position: relative;
}

.testimonial-item.active {
  display: block;
}

.testimonial-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.testimonial-item p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin: 20px 0;
  font-style: italic;
}

.testimonial-item h4 {
  color: #0f3d3e;
  font-size: 18px;
  margin-top: 10px;
}

.testimonial-item span {
  color: #1ea672;
  font-size: 14px;
  display: block;
  margin-top: 4px;
}

/* DOTS */
.testimonial-dots {
  margin-top: 20px;
}

.testimonial-dot {
  height: 10px;
  width: 10px;
  margin: 6px;
  background: #dcdcdc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}

.testimonial-dot.active {
  background: #1ea672;
  transform: scale(1.3);
}

.quote {
  font-size: 60px;
  color: #1ea672;
  position: absolute;
  top: 20px;
  left: 30px;
  opacity: 0.15;
}

.footer {
  background: linear-gradient(135deg, #0f3d3e, #1ea672);
  color: #fff;
  padding: 60px 20px 20px;
  margin-top: 50px;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* LOGO */
.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* HEADINGS */
.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #fff;
  opacity: 0.8;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: #ffffff;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 14px;
}

.footer-bottom span {
  color: #ff4d4d;
  font-size: 16px;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: auto;
  }
}