/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #0a1a3c 0%, #1a3ca6 100%);
    min-height: 100vh;
}

body.index-page {
    padding-top: 170px !important; /* navbar (70px) + banner (100px) */
}

body:not(.index-page) {
    padding-top: 70px !important; /* only navbar */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1a3c 0%, #1a3ca6 100%);
}

.hero-bg {
    display: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
}

.hero-logo {
    width: 320px;
    max-width: 80vw;
    margin-bottom: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(10,26,60,0.15);
    padding: 2rem 2.5rem;
    display: block;
}

.hero-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-subtitle {
    color: #cbd5e1;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 700;
}

.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: #ffffff;
    color: #2563eb;
}

.btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.about-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #64748b;
    font-weight: 500;
}

/* About Page Specific Styles */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.mission-vision {
    padding: 80px 0;
    background: #f8fafc;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card,
.vision-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.mission-card h2,
.vision-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.mission-card p,
.vision-card p {
    color: #64748b;
    line-height: 1.7;
}

.company-story {
    padding: 80px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.story-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 6rem;
    color: #2563eb;
    opacity: 0.1;
}

.values {
    padding: 80px 0;
    background: #f8fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

.team {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.member-title {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Page Specific Styles */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-card p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.contact-form-section {
    padding: 80px 0;
    background: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.form-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.contact-form {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1e293b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #64748b;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.faq {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.faq-question i {
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f8fafc;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    .about-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-graphic {
        font-size: 5rem;
    }

    .about-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .form-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .hero-logo {
        width: 90vw;
        padding: 1rem;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    body.index-page {
        padding-top: 126px !important; /* mobile navbar (56px) + banner (70px) */
    }
    body:not(.index-page) {
        padding-top: 56px !important; /* only mobile navbar */
    }
}

/* Remove old .hero-graphic and .fa-rocket styles */
.hero-graphic, .fa-rocket {
    display: none !important;
}

.logo-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: #2563eb;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Inter:wght@400;500&display=swap');

.tech-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 0;
    pointer-events: none;
    background: url('tech_wave_overlay.png') center center/cover no-repeat;
    opacity: 0.45;
}

.slide-section {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto 3rem auto;
    padding: 3rem 2rem 2rem 2rem;
    background: rgba(10,26,60,0.7);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(10,26,60,0.25);
}

.slide-title {
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 1px;
}

.slide-list {
    font-size: 1.35rem;
    color: #fff;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.slide-list li {
    margin-bottom: 1.1rem;
    line-height: 1.6;
}

.slide-underline {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #fff;
}

.slide-highlight {
    font-weight: 700;
    color: #ffd700;
}

@media (max-width: 700px) {
    .slide-title {
        font-size: 2rem;
    }
    .slide-section {
        padding: 1.5rem 0.5rem;
    }
    .slide-list {
        font-size: 1rem;
    }
}

.hero-row {
    min-height: unset;
    background: linear-gradient(135deg, #0a1a3c 0%, #1a3ca6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0 10px 0;
}

.hero-row-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 700px;
    gap: 1.2rem;
}

.hero-logo-left {
    width: 90px;
    max-width: 20vw;
    margin-bottom: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(10,26,60,0.10);
    padding: 0.7rem 1rem;
    display: block;
}

.hero-title-right {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 1px;
    text-align: left;
}

@media (max-width: 700px) {
    .hero-row-container {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
    }
    .hero-logo-left {
        width: 36vw;
        padding: 0.5rem;
    }
    .hero-title-right {
        font-size: 1rem;
        text-align: center;
    }
}

.about-page .slide-section:first-of-type {
    margin-top: 48px;
}

.about-top-spacer {
    height: 48px;
}

body.index-page {
    background: linear-gradient(135deg, #0a1a3c 0%, #1a3ca6 100%);
}

body.index-page .hero {
    background: url('images/home_background.png') center center/cover no-repeat;
    min-height: unset !important;
    height: auto !important;
    padding: 40px 0 24px 0 !important;
    box-shadow: none !important;
}

body.about-page {
    background: url('images/other_background.png') center center/cover no-repeat;
}

body.services-page {
    background: url('images/other_background.png') center center/cover no-repeat;
}

body.contact-page {
    background: url('images/other_background.png') center center/cover no-repeat;
}

body.products-page {
    background: url('images/other_background.png') center center/cover no-repeat;
}

.about-centered {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 64px 0 64px 0;
}

.about-content.about-centered {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 64px 0 64px 0;
    gap: 0;
}

.products-section {
    padding: 80px 0;
    background: transparent;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    align-items: flex-start;
}
.product-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(10,26,60,0.08);
    padding: 2.5rem 2rem;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e5e7eb;
}
.product-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(37,99,235,0.10);
}
.product-card h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 1rem;
}
.product-card p {
    color: #334155;
    font-size: 1.08rem;
    line-height: 1.6;
}
.product-card ul, .product-card li {
    color: #334155;
    font-size: 1.08rem;
    line-height: 1.6;
}

.products-section .section-title,
.services-page .section-title {
    color: #fff;
}

.services-page .product-card,
.services-page .product-card ul,
.services-page .product-card li,
.services-page .product-card p {
    color: #0a1a3c !important;
}

.services-page .slide-underline {
    color: #0a1a3c !important;
}

.navigator-intro {
    display: block;
    font-weight: 700;
    margin-bottom: 1.1rem;
    font-size: 1.08rem;
}

.logo-img {
    max-height: 48px;
    width: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.logo-flex {
    display: flex;
    align-items: center;
}
.company-img {
    max-height: 48px;
    width: auto;
    margin-left: 10px;
    display: block;
}

/* Guaranteed fix: AI News Banner always visible below navbar, responsive */

#ai-news-banner {
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    width: 100vw !important;
    z-index: 999 !important;
    min-height: 100px !important;
    height: 100px !important;
    background: url('images/bannerbgs.jpg') center center/cover no-repeat !important;
    background-color: #111 !important;
    color: #fff !important;
    box-shadow: 0 2px 12px rgba(10,26,60,0.08) !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 2rem !important;
    border: 2px solid #000 !important;
    overflow: hidden !important;
    margin-top: 0 !important;
}

#ai-news-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.55);
    z-index: 0;
    pointer-events: none;
}

#ai-news-banner > div {
    background: transparent !important;
    position: relative;
    z-index: 1;
    color: #fff !important;
}

#ai-news-ticker, #ai-news-ticker a {
    color: #fff !important;
}

#ai-news-ticker {
    font-size: 1.1rem;
    min-width: 200px;
    min-height: 30px;
    border: none;
    background: transparent;
    flex: 1;
    margin-left: 2rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#ai-news-ticker a {
    text-decoration: underline;
    font-weight: 600;
    margin-right: 2.5rem;
    transition: color 0.2s;
}

#ai-news-ticker a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive adjustments for mobile */
@media (max-width: 600px) {
    #ai-news-banner {
        top: 56px !important;
        min-height: 70px !important;
        height: 70px !important;
        padding: 0 0.5rem !important;
        font-size: 0.95rem !important;
    }
    body.index-page {
        padding-top: 126px !important; /* mobile navbar (56px) + banner (70px) */
    }
    body:not(.index-page) {
        padding-top: 56px !important; /* only mobile navbar */
    }
}

.top-spacer { display: none !important; } /* No longer needed */ 