/*
Theme Name: HR Solutions 24
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Custom WordPress theme for HR Solutions 24.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: hrsolutions24
*/
/* ===============================
   Modern HR Header - Light Theme
================================= */

:root {
    --primary-blue: #1e73be;
    --light-gradient: linear-gradient(90deg, #f8fbff 0%, #eaf4ff 100%);
}

.site-header {
    background: var(--light-gradient);
    padding: 15px 0;
    border-bottom: 1px solid #e6eef7;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Logo / Site Title */
.site-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 0.5px;
}

/* Navbar Links */
.navbar .nav-link {
    color: #333 !important;
    font-weight: 500;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--primary-blue) !important;
}

/* CTA Button */
.header-cta {
    background-color: var(--primary-blue);
    border: none;
    padding: 8px 18px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background-color: #155a96;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 115, 190, 0.2);
}

/* Custom Logo */
.custom-logo {
    max-height: 45px;
    width: auto;
}

/* Mobile Spacing */
@media (max-width: 991px) {
    .navbar-nav {
        padding-top: 15px;
    }
}





/* ===============================
   Modern Light Footer - HR Theme
================================= */

.site-footer {
    background: linear-gradient(90deg, #f8fbff 0%, #eaf4ff 100%);
    padding: 60px 0 0;
    border-top: 1px solid #e6eef7;
}

/* Top Section */
.footer-top {
    gap: 40px;
}

/* Columns */
.footer-col {
    flex: 1 1 250px;
    margin-bottom: 30px;
}

/* Logo / Title */
.footer-site-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e73be;
}

.footer-brand img {
    max-height: 45px;
    width: auto;
}

/* Description */
.footer-description {
    margin-top: 15px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* Headings */
.footer-heading {
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e73be;
}

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

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

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

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #dde7f3;
    padding: 20px 0;
    margin-top: 30px;
    font-size: 14px;
    color: #555;
}

/* Back To Top Button */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #1e73be;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(30, 115, 190, 0.2);
}

.back-to-top:hover {
    background: #155a96;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }
}



/* HERO */
.hero-section {
    background: linear-gradient(90deg, #f8fbff 0%, #eaf4ff 100%);
    padding: 100px 0;
}

.hero-title {
    font-size: 42px;
    font-weight: 600;
    color: #1e73be;
}

.hero-text {
    color: #555;
    margin-top: 15px;
}

.hero-badge {
    background: #eaf4ff;
    color: #1e73be;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-box {
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #e6eef7;
}

/* ABOUT */
.about-section {
    padding: 90px 0;
}

.section-title {
    font-size: 34px;
    font-weight: 600;
    color: #1e73be;
}

/* SERVICES */
.services-section {
    background: #f9fbff;
    padding: 90px 0;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e6eef7;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

/* TESTIMONIAL */
.testimonial-section {
    padding: 90px 0;
}

.testimonial-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e6eef7;
}

.testimonial-card strong {
    display: block;
    margin-top: 15px;
    color: #1e73be;
}

/* WHY */
.why-section {
    background: #f9fbff;
    padding: 90px 0;
}

.why-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e6eef7;
}

/* CTA */
.cta-section {
    background: #1e73be;
    color: #ffffff;
    padding: 70px 0;
}

.btn-primary {
    background: #1e73be;
    border: none;
}

.btn-primary:hover {
    background: #155a96;
}