/** ADD YOUR AWESOME CODES HERE **/
/* ---- OUR PARTNERS / VALUES BOXES ---- */
.values-box {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 12px rgba(71, 7, 7, 0.05);
    text-align: center;
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.values-box h5 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color:#050607; /* Wealthrus blue */
}

.values-box p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/* Hover Animation */
.values-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color:#02264d;
}

        .hero {
            background: #0055a5;
            color: white;
            text-align: center;
            padding: 80px 20px;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 15px;
        }
        .hero p {
            font-size: 1.2rem;
        }
        .services-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: auto;
        }
        .service {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin-bottom: 60px;
        }
        .service:nth-child(even) .service-image {
            order: -1;
        }
        .service-image, .service-text {
            flex: 1 1 500px;
            padding: 20px;
        }
        .service-image img {
            width: 100%;
            border-radius: 10px;
        }
        .service-text h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #003366;
        }
        .service-text p {
            font-size: 1rem;
            margin-bottom: 15px;
        }
        .service-text .learn-more {
            display: inline-block;
            padding: 10px 20px;
            border: 2px solid #003366;
            border-radius: 5px;
            color: #003366;
            font-weight: bold;
            transition: 0.3s;
        }
        .service-text .learn-more:hover {
            background: #003366;
            color: white;
        }
        footer {
            background: #f4f4f4;
            padding: 40px 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            font-size: 0.9rem;
            color: #333;
        }
        footer div {
            flex: 1 1 200px;
            margin-bottom: 20px;
        }
        footer h3 {
            margin-bottom: 15px;
        }


        /* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    padding: 150px 20px;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-section .highlight {
    color: #ffd700;
}

.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 20px auto;
}

.btn-primary {
    background: #02264d;
    padding: 14px 32px;
    color: #fff;
    border-radius: 6px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #013063;
}

/* Services Section */
.services-section {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
}

.service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
    gap: 20px;
}

.service:nth-child(even) {
    flex-direction: row-reverse;
}

.service-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #02264d;
}

.service-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.learn-more {
    font-weight: 600;
    color: #02264d;
    text-decoration: none;
    transition: 0.3s;
}

.learn-more:hover {
    color: #ffd700;
}

.service-image img {
    width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

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

/* Responsive */
@media (max-width: 900px) {
    .service {
        flex-direction: column !important;
        text-align: center;
    }

    .service-image img {
        width: 100%;
    }
}

/* CTA Section */
.cta-section {
    background: #02264d;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.btn-light {
    background: #ffd700;
    padding: 14px 32px;
    color: #02264d;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-light:hover {
    background: #ffce00;
}
/* MAIN FOOTER DESIGN */
.footer {
  background: #f7f7f7;
  padding: 60px 0;
  border-top: 1px solid #ddd;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.underline {
  width: 120px;
  height: 2px;
  background: #000;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #111;
  font-weight: 400;
}

.footer-logo {
  width: 150px;
  margin-bottom: 10px;
}

.contact-info li {
  margin-bottom: 12px;
}

/* BOTTOM FOOTER */
.bottom-footer {
  background: #ffffff;
  padding: 15px 0;
  border-top: 1px solid #dcdcdc;
}

.bottom-footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links a {
  margin-left: 25px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

.footer-links a:hover {
  opacity: 0.7;
}
.bottom-footer-container {
  text-align: center;
}
