/* style.css - Clean & Fixed */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f6f9;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
}
.navbar-brand {
    font-weight: 700;
    color: #0056b3 !important; /* Brand Color */
    font-size: 1.4rem;
}
.nav-link {
    font-weight: 500;
    color: #444 !important;
}

/* Common Card Style */
.card-custom {
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
    padding: 25px;
}
.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Feature Icons */
.icon-box {
    width: 60px;
    height: 60px;
    background: #e3f2fd;
    color: #0056b3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Buttons */
.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
}
.btn-primary:hover {
    background-color: #004494;
}

/* Footer */
footer {
    background: #1e272e;
    color: #d2dae2;
    padding: 30px 0;
    margin-top: 50px;
}
