/* ===== Reset & Base ===== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    background-color: #f8f9fa;
}

a {
    color: #457efa;
    text-decoration: none;
}

a:hover {
    color: #3568d4;
    text-decoration: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    color: #1e3c72 !important;
}

p {
    color: #555 !important;
}

/* ===== Buttons ===== */
.btn {
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #457efa;
    border-color: #457efa;
}

.btn-primary:hover {
    background-color: #3568d4;
    border-color: #3568d4;
}

.btn-social {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* ===== Forms ===== */
.form-control {
    border-radius: 8px;
}

.form-control:focus {
    border-color: #457efa;
    box-shadow: 0 0 0 3px rgba(69, 126, 250, 0.15);
}

/* ===== Selection Color ===== */
::selection {
    background: #457efa;
    color: #fff;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #457efa;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3568d4;
}

/* ===== White Text Helper ===== */
.white-text {
    color: white !important;
}
