/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    color: #1f2937;
    background: #ffffff;
}

/* NAVBAR */
.navbar {
    height: 70px;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #0f766e;
}

.navbar nav a {
    margin-left: 22px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
}

.btn-nav {
    background: #0f766e;
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 8px;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background image (subtle) */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url("images/herobg.PNG") center left / cover no-repeat;
    filter: brightness(0.9);
    opacity: 0.6;
    z-index: 0;
}

/* Gradient panel */
.hero-panel {
    position: relative;
    z-index: 1;
    width: 88%;
    max-width: 1200px;
    height: 360px;

    /* Glassmorphism */
    background: linear-gradient(135deg,
            rgba(236, 254, 255, 0.65),
            rgba(254, 243, 199, 0.65));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.35);

    display: flex;
    align-items: center;
    padding: 50px 60px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}


/* LEFT */
.hero-left {
    width: 60%;
}

.hero-left h1 {
    font-size: 44px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-left span {
    color: #0f766e;
}

.hero-left p {
    max-width: 480px;
    font-size: 17px;
    color: #374151;
    margin-bottom: 26px;
}

.hero-buttons .btn {
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 14px;
}

.btn.primary {
    background: #0f766e;
    color: #ffffff;
}

.btn.secondary {
    border: 2px solid #0f766e;
    color: #0f766e;
}

/* RIGHT */
.hero-right {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-image {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: url("images/expense.jpg") center / cover no-repeat;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border: 6px solid rgba(255, 255, 255, 0.6);
}

/* FEATURES */
/* ================= FEATURES ================= */
.features {
    padding: 90px 60px;
    background: #ffffff;
    text-align: center;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

/* Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: auto;
}

/* Card */
.feature-card {
    padding: 35px 25px;
    border-radius: 22px;

    background: linear-gradient(135deg,
            rgba(236, 254, 255, 0.7),
            rgba(254, 243, 199, 0.7));

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, 0.4);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.08);

    cursor: pointer;
    transition: all 0.35s ease;
}

.feature-card h3 {
    color: #0f766e;
    margin-bottom: 12px;
    font-size: 20px;
}

.feature-card p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

/* Hover effect */
.feature-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Click (active) effect */
.feature-card:active {
    transform: scale(0.98);
}

/* FOOTER */
/* ================= FOOTER ================= */
.footer {
    margin-top: 80px;
    background: linear-gradient(135deg,
            rgba(236, 254, 255, 0.9),
            rgba(254, 243, 199, 0.9));
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Main layout */
.footer-inner {
    max-width: 1200px;
    margin: auto;
    padding: 60px 40px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Left side */
.footer-left {
    transform: translateX(-10px);
    /* pushes slightly left */
}

.footer-left h3 {
    color: #0f766e;
    font-size: 22px;
    margin-bottom: 6px;
}

.footer-left p {
    color: #444;
    font-size: 14px;
    max-width: 260px;
}

.footer-points {
  margin-top: 14px;
  list-style: none;
  padding: 0;
}

.footer-points li {
  font-size: 14px;
  color: #374151;
  margin-bottom: 6px;
}

/* Right links */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Individual links */
.footer-right a {
    position: relative;
    text-decoration: none;
    color: #222;
    font-size: 15px;
    font-weight: 500;

    width: fit-content;
    transition: transform 0.25s ease, color 0.25s ease;
}

/* Underline animation */
.footer-right a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 0;
    background: #0f766e;
    transition: width 0.3s ease;
}

/* Hover effect (zoom + underline) */
.footer-right a:hover {
    transform: scale(1.07);
    color: #0f766e;
}

.footer-right a:hover::after {
    width: 100%;
}

/* Bottom copyright */
.footer-bottom {
    text-align: center;
    padding: 16px;
    font-size: 13px;
    color: #555;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
