/* hubix.css - Global Styles for HUBIX Learning Hub */
:root {
    /* Brand Colors */
    --hubix-blue: #C1121F;
    --hubix-dark-blue: #1C1C1E;
    --hubix-white: #FFFFFF;
    --hubix-light: #F8FAFC;
    --hubix-gray: #555555;
    --hubix-gradient: linear-gradient(135deg, #C1121F 0%, #780000 100%);
    
    /* Layout */
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(212, 175, 55, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--hubix-dark-blue);
    background-color: var(--hubix-light);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--hubix-dark-blue);
    margin-bottom: 1rem;
}

/* Typography Utilities */
.text-gradient {
    background: var(--hubix-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar — matches index.html exactly */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 5%;
    height: 76px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    transition: box-shadow 0.3s ease, padding 0.3s ease;
    animation: navSlideDown 0.6s cubic-bezier(.4,0,.2,1) both;
}
@keyframes navSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.navbar.scrolled {
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}
.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: #1C1C1E;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--hubix-blue);
    background: rgba(212, 175, 55,0.06);
}

/* Page CTA (Red Banner) */
.page-cta {
    background: linear-gradient(135deg, #C1121F 0%, #780000 100%);
    padding: 80px 5%;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.page-cta h2 {
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 20px;
}
.page-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.page-cta .btn-white {
    background: #fff;
    color: #C1121F;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.page-cta .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-primary {
    background: var(--hubix-gradient);
    color: var(--hubix-white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: var(--transition-smooth);
    display: inline-block;
    cursor: pointer;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--hubix-white);
}

.btn-secondary {
    background: transparent;
    color: var(--hubix-white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--hubix-white);
    transition: var(--transition-smooth);
    display: inline-block;
}
.btn-secondary:hover {
    background: var(--hubix-white);
    color: var(--hubix-dark-blue);
}

.nav-btn {
    background: var(--hubix-blue);
    color: #fff;
    padding: 11px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.2px;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-btn:hover {
    background: #b08d29;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(212, 175, 55,0.35);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--hubix-dark-blue);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: var(--hubix-white);
        padding: 20px;
        box-shadow: var(--shadow-soft);
        text-align: center;
        gap: 15px;
    }
    .nav-btn {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .menu-open .nav-links {
        display: flex;
    }
    .menu-open .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-open .hamburger span:nth-child(2) { opacity: 0; }
    .menu-open .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* Common Section Styles */
.section-space {
    padding: 100px 0;
}
@media (max-width: 768px) {
    .section-space { padding: 60px 0; }
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 50px;
}
@media (max-width: 768px) {
    .section-title { margin-bottom: 35px; }
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--hubix-white);
    overflow: hidden;
    margin-top: 70px;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(28, 28, 30, 0.9), rgba(212, 175, 55, 0.7));
    z-index: -1;
}
.hero-content {
    max-width: 800px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-title {
    font-size: 3.5rem;
    color: var(--hubix-white);
    margin-bottom: 20px;
}
.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}
.stat-item {
    font-size: 0.9rem;
}
.stat-item strong {
    display: block;
    font-size: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--hubix-white);
}

/* Services / Features Grid */
.service-grid, .feature-grid, .blog-grid, .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-card, .feature-card, .blog-card {
    background: var(--hubix-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
}
.service-card:hover, .feature-card:hover, .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.service-icon {
    width: 60px;
    height: 60px;
    background: var(--hubix-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--hubix-blue);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}
.service-card:hover .service-icon {
    background: var(--hubix-gradient);
    color: var(--hubix-white);
}
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.service-card p {
    color: var(--hubix-gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}
.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-card ul li {
    font-size: 0.9rem;
    color: var(--hubix-gray);
    padding: 5px 0;
    display: flex;
    align-items: center;
}
.service-card ul li::before {
    content: '✓';
    color: var(--hubix-blue);
    margin-right: 10px;
    font-weight: bold;
}

/* Blog Cards */
.blog-card {
    padding: 0;
    overflow: hidden;
}
.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.blog-content {
    padding: 30px;
}
.blog-date {
    font-size: 0.85rem;
    color: var(--hubix-gray);
    margin-bottom: 10px;
    display: block;
}
.blog-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.blog-title a {
    color: var(--hubix-dark-blue);
    text-decoration: none;
    transition: var(--transition-smooth);
}
.blog-title a:hover {
    color: var(--hubix-blue);
}

/* Gallery Grid */
.gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 250px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 28, 30, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    color: var(--hubix-white);
    font-size: 30px;
}

/* Contact Form */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    background: var(--hubix-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}
.contact-info {
    flex: 1;
    min-width: 300px;
}
.contact-form {
    flex: 2;
    min-width: 300px;
}
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--hubix-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: var(--transition-smooth);
    background: var(--hubix-light);
}
.form-control:focus {
    outline: none;
    border-color: var(--hubix-blue);
    background: var(--hubix-white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* Footer CTA */
.cta-footer {
    background: var(--hubix-gradient);
    color: var(--hubix-white);
    padding: 80px 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin-top: 50px;
}
.cta-footer h2 {
    color: var(--hubix-white);
    margin-bottom: 30px;
}
.cta-footer .btn {
    background: var(--hubix-white);
    color: var(--hubix-blue);
}
.cta-footer .btn:hover {
    background: var(--hubix-dark-blue);
    color: var(--hubix-white);
}

/* Card Flex Alignment Fix */
.blog-card, .feature-card, .service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-content, .feature-content, .service-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-content .btn-secondary, .blog-content a.btn-secondary,
.feature-content .btn-secondary, .feature-content a.btn-secondary,
.service-content .btn-secondary, .service-content a.btn-secondary {
    margin-top: auto;
    align-self: flex-start;
}

/* Global Footer */
.footer {
    background: #111111;
    padding: 80px 5% 30px;
    margin-top: 0;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 60px;
}
.footer-section h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #fff;
}
.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 15px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}
.footer-section ul li i {
    margin-right: 10px;
    color: var(--hubix-blue);
}
.footer-section ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}
.footer-section ul a:hover {
    color: var(--hubix-blue);
}
.footer-section .social-links {
    display: flex;
    gap: 15px;
}
.footer-section .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}
.footer-section .social-links a:hover {
    background: var(--hubix-blue);
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}
.footer-bottom a {
    color: var(--hubix-blue);
    text-decoration: none;
}

/* ============================================
   RICH CTA SECTION
   ============================================ */
.rich-cta {
    margin-top: 0;
}
.rich-cta-top {
    background: linear-gradient(135deg, #C1121F 0%, #780000 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.rich-cta-top::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}
.rich-cta-top::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    pointer-events: none;
}
.rich-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.rich-cta-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
}
.rich-cta-left h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
}
.rich-cta-accent {
    color: rgba(255,255,255,0.75);
    display: block;
}
.rich-cta-left p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.7;
}
.rich-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.rich-cta-btn-primary {
    background: #fff;
    color: var(--hubix-blue);
    padding: 13px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.rich-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    color: var(--hubix-blue);
}
.rich-cta-btn-secondary {
    background: transparent;
    color: #fff;
    padding: 13px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}
.rich-cta-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}
.rich-cta-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.rich-stat {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.rich-stat:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-4px);
}
.rich-stat i {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    display: block;
}
.rich-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
    margin-bottom: 6px;
}
.rich-stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Bar below CTA */
.rich-cta-contact-bar {
    background: #1C1C1E;
    padding: 30px 0;
}
.rich-contact-bar-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: center;
}
.rich-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255,255,255,0.8);
}
.rich-contact-item i {
    font-size: 1.2rem;
    color: var(--hubix-blue);
    margin-top: 3px;
    flex-shrink: 0;
}
.rich-contact-item strong {
    display: block;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.rich-contact-item span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}
.rich-contact-item span a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.rich-contact-item span a:hover {
    color: var(--hubix-blue);
}

@media (max-width: 768px) {
    .rich-cta-grid { grid-template-columns: 1fr; gap: 40px; }
    .rich-cta-stats { grid-template-columns: 1fr 1fr; }
    .rich-contact-bar-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .rich-cta-stats { grid-template-columns: 1fr 1fr; }
    .rich-contact-bar-inner { grid-template-columns: 1fr; }
}

/* Breadcrumb for Page Banners */
.banner-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 8px 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}
.banner-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.banner-breadcrumb a:hover {
    opacity: 0.8;
}
.banner-breadcrumb .current-page {
    font-weight: 600;
}

/* Hide Google Translate Banner completely */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
.goog-logo-link {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-te-gadget {
    font-size: 0 !important;
}



/* -------------------------------- */
/* FOOTER STYLES */
/* -------------------------------- */
.footer {
    background: #1C1C1E;
    padding: 80px 5% 30px;
    font-family: 'Inter', sans-serif;
    color: #fff;
    text-align: left;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.footer-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: #C1121F;
}

.footer-section .social-links {
    display: flex;
    gap: 15px;
}

.footer-section .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-section .social-links a:hover {
    background: #C1121F;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #C1121F;
}

/* Kill ALL blue active buttons globally */
.navbar .active, .nav-links .active, .mobile-menu .active, .navbar .active > a, .nav-links .active > a, .mobile-menu .active > a, .navbar li.active, .nav-links li.active, .mobile-menu li.active, .navbar li.active > a, .nav-links li.active > a, .mobile-menu li.active > a, .rs-header-two .rs-sticky-header.active { background-color: transparent !important; background: transparent !important; color: #123C69 !important; box-shadow: none !important; border-radius: 0 !important; }
