/* ===============================
   GLOBAL STYLES
================================= */
body {
    font-family: 'Inter', sans-serif;
    background: #F5F7FB;
    color: #1E293B;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Smooth transition globally */
a, button {
    transition: all 0.25s ease;
}

/* ===============================
   HERO SECTION (Modern Gradient)
================================= */
.hero-section {
    background: linear-gradient(135deg, #1A73E8 0%, #0B3D91 100%);
    color: white;
    padding: 80px 0;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.hero-section h1 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-section p {
    opacity: 0.9;
    font-size: 16px;
}

/* ===============================
   TOOL CARDS (Premium Look)
================================= */
.tool-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ===============================
   BLOG CARD (Modern Fintech)
================================= */
.blog-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.blog-card h5 a {
    text-decoration: none;
    color: #0F172A;
    font-weight: 600;
    font-size: 18px;
}

.blog-card h5 a:hover {
    color: #1A73E8;
}

.blog-card p {
    color: #475569;
    font-size: 14px;
}

/* ===============================
   SIDEBAR
================================= */
.sidebar-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid #E2E8F0;
}

.sidebar-card h6 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748B;
}

.sidebar-card a {
    text-decoration: none;
    color: #1E293B;
    display: block;
    padding: 8px 0;
    font-size: 14px;
}

.sidebar-card a:hover {
    color: #1A73E8;
    padding-left: 6px;
}

/* ===============================
   BADGES
================================= */
.badge-custom {
    background: #E8F0FE;
    color: #1A73E8;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 500;
}

/* ===============================
   ADS BOX (Clean & Professional)
================================= */
.ads-box {
    background: #ffffff;
    border: 1px dashed #CBD5E1;
    padding: 22px;
    border-radius: 14px;
    color: #64748B;
    font-size: 13px;
}

/* ===============================
   BUTTON IMPROVEMENT
================================= */
.btn-primary {
    background: #1A73E8;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 500;
}

.btn-primary:hover {
    background: #0B3D91;
    transform: translateY(-1px);
}

/* ===============================
   CARD GLASS EFFECT (Optional Premium)
================================= */
.glass-effect {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.8);
}

/* ===============================
   MOBILE OPTIMIZATION
================================= */
@media (max-width: 768px) {

    .hero-section {
        padding: 55px 0;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 22px;
    }

    .blog-card,
    .tool-card,
    .sidebar-card {
        padding: 16px;
        border-radius: 14px;
    }

    .blog-card h5 a {
        font-size: 16px;
    }
}
/* HERO */
.modern-hero {
    background: linear-gradient(135deg, #1A73E8, #0B3D91);
    padding: 90px 0;
    color: white;
}

/* TOOL BOX */
.tool-modern {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #E2E8F0;
    transition: 0.3s;
}

.tool-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: #E8F0FE;
    color: #1A73E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: auto;
}

/* FEATURE BOX */
.feature-box {
    background: white;
    border-radius: 18px;
    border: 1px solid #E2E8F0;
    transition: 0.3s;
}

.feature-box:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

/* CTA */
.cta-modern {
    background: #F1F5F9;
}

/* ADS */
.ads-box {
    background: #ffffff;
    border: 1px dashed #CBD5E1;
    padding: 20px;
    border-radius: 14px;
}
/* ===============================
   PROFESSIONAL HERO
================================= */

.hero-professional {
    padding: 90px 0;
    background: #F8FAFC;
}

.hero-heading {
    font-size: 34px;
    font-weight: 700;
    color: #0F172A;
}

.hero-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

/* SEARCH */
.hero-search {
    max-width: 520px;
}

.hero-search .form-control {
    border-radius: 8px 0 0 8px;
    padding: 12px;
    border: 1px solid #CBD5E1;
}

.hero-search .btn {
    border-radius: 0 8px 8px 0;
    background: #1A73E8;
    border: none;
}

.hero-search .btn:hover {
    background: #0B3D91;
}

/* MOBILE */
@media (max-width: 768px) {

    .hero-professional {
        padding: 60px 0;
        text-align: center;
    }

    .hero-heading {
        font-size: 22px;
    }

    .hero-search {
        margin: auto;
    }
}
/* TOP BAR */
.top-bar {
    background: #0F172A;
    color: white;
    font-size: 13px;
}

/* Navbar */
.navbar-brand {
    font-size: 20px;
}

.nav-link {
    font-weight: 500;
    color: #1E293B !important;
}

.nav-link:hover {
    color: #1A73E8 !important;
}

/* Active link */
.nav-link.active {
    color: #1A73E8 !important;
}

/* Dropdown */
.dropdown-menu {
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

/* Button */
.btn-primary {
    border-radius: 8px;
}

/* Mobile spacing */
@media (max-width: 768px) {
    .top-bar {
        text-align: center;
        font-size: 12px;
    }
}
/* ===============================
   FOOTER MODERN
================================= */
.footer-modern {
    background: #ffffff;
    border-top: 1px solid #E2E8F0;
}

.footer-modern h6 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    font-size: 14px;
    color: #475569;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #1A73E8;
    padding-left: 4px;
}

.footer-bottom {
    background: #F8FAFC;
    font-size: 13px;
    color: #64748B;
}
