/* Global Resets & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* For smoother scrolling with anchors */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden; /* Prevent horizontal scrollbar from minor overflows */
}

a {
    text-decoration: none;
    color: #007bff; /* Primary link color */
}

a:hover {
    color: #0056b3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    color: #2c3e50; /* Dark blue-grey for headings */
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}
p.lead {
    font-size: 1.15rem;
    color: #4a5568; /* Slightly softer lead text color */
}
.section-bg-dark p.lead {
    color: #bdc3c7; /* Lighter lead text for dark backgrounds */
}


.btn {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}
.btn-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
}
.btn-sm {
    padding: 5px 10px;
    font-size: 0.85rem;
}

.btn-primary {
    background-color: #007bff; /* Primary accent - blue */
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #17a2b8; /* Secondary accent - teal/cyan */
    color: #fff;
}

.btn-secondary:hover {
    background-color: #117a8b;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-outline:hover {
    background-color: #007bff;
    color: #fff;
}


/* Header */
.main-header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex; 
    align-items: center;
}

.logo img {
    max-height: 70px;
    width: auto;
    display: block;
    vertical-align: middle;
}


.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center; 
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav ul li a {
    color: #333;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #007bff;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.main-nav .nav-cta {
    margin-left: 25px;
}
.main-nav .nav-cta .btn-outline { 
    padding: 8px 15px;
    font-size: 0.9rem;
}


/* Hero Section */
.hero {
    position: relative;
    height: 85vh; 
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden; 
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}

.hero::before { 
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55); 
    z-index: 0;
}

.hero-content {
    position: relative; 
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.2rem; 
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem; 
    margin-bottom: 2rem;
    color: #f0f0f0;
}
.hero-content .btn {
    margin: 0.5rem;
}

/* Section Styling */
.section {
    padding: 60px 0;
}

.section-bg-light {
    background-color: #ffffff;
}
.section-bg-white-card { 
    background-color: #ffffff;
}

.section-bg-dark {
    background-color: #2c3e50; 
    color: #f0f0f0;
}
.section-bg-dark h1, .section-bg-dark h2, .section-bg-dark h3, .section-bg-dark h4 {
    color: #fff;
}
.section-bg-dark p {
    color: #ccc;
}

.text-center {
    text-align: center;
}

/* 2x2 Content Panels with Floating Effect */
.panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.panel {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel:hover {
    transform: translateY(-8px); 
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.panel-icon {
    font-size: 3rem; 
    color: #007bff;
    margin-bottom: 1rem;
}
.panel img.panel-icon-img { 
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem auto;
}

.panel h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.panel[style*="color: #ecf0f1"] h4,
.panel[style*="color:#ecf0f1"] h4 {
    color: #ffffff;
}

.panel p {
    font-size: 0.95rem; 
}


/* Horizontal Scrolling Panels / Carousel */
.horizontal-scroll-container {
    overflow-x: auto;
    white-space: nowrap; 
    padding: 20px 5px; 
    -webkit-overflow-scrolling: touch; 
}
.horizontal-scroll-container::-webkit-scrollbar {
    height: 8px;
}
.horizontal-scroll-container::-webkit-scrollbar-track {
    background: #4a5568;
}
.horizontal-scroll-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
.horizontal-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}


.scroll-panel-wrapper {
    display: inline-flex; 
    gap: 20px;
}

.scroll-panel {
    display: inline-block; 
    flex: 0 0 auto; 
    width: 300px; 
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: left;
    white-space: normal; 
}
.scroll-panel.metric-panel {
     width: 350px; 
     text-align: center;
}
.section-bg-dark .scroll-panel { 
    background-color: #34495e; 
    color: #ecf0f1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.section-bg-dark .scroll-panel h4 {
    color: #fff;
}
.section-bg-dark .scroll-panel p {
    color: #bdc3c7;
}
.section-bg-dark .scroll-panel .metric-symbol {
    color: #1abc9c; 
}
.section-bg-dark .scroll-panel img.panel-icon-img {
    filter: brightness(0) invert(1); 
}


.scroll-panel.metric-panel .metric-symbol {
    font-size: 1.8rem; 
    font-weight: bold;
    color: #17a2b8;
    margin-bottom: 0.5rem;
}
.scroll-panel.metric-panel img.panel-icon-img {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.5rem auto;
}


.scroll-panel h4 {
    margin-bottom: 0.5rem;
}

.scroll-panel p {
    font-size: 0.9rem;
    color: #666;
}
.scroll-panel .scroll-panel-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
    margin-bottom: 1rem;
}


/* Staggered Panels */
.staggered-panel-section .container {
    display: flex;
    flex-direction: column;
    gap: 50px; 
}
.staggered-panel {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #fff; 
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
}
.section-bg-dark .staggered-panel {
    background-color: #34495e; 
    color: #ecf0f1;
}
.section-bg-dark .staggered-panel h3 {
    color: #fff;
}
.section-bg-dark .staggered-panel p {
    color: #bdc3c7;
}


.staggered-panel:nth-child(even) {
    flex-direction: row-reverse;
}

.staggered-image, .staggered-content {
    flex: 1;
    min-width: 0; 
}

.staggered-image img {
    border-radius: 8px;
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
}

/* Accordions */
.accordion details {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.section-bg-dark .accordion details {
    background-color: #34495e;
    border-color: #4a627a;
}

.accordion summary {
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    list-style: none; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2c3e50;
}
.section-bg-dark .accordion summary {
    color: #ecf0f1;
}


.accordion summary::-webkit-details-marker { 
    display: none;
}

.accordion summary::after { 
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.2s ease-in-out;
    color: #007bff; 
}
.section-bg-dark .accordion summary::after {
    color: #1abc9c; 
}


.accordion details[open] summary::after {
    transform: rotate(45deg);
}

.accordion .accordion-content {
    padding: 15px; 
    border-top: 1px solid #e0e0e0;
}
.section-bg-dark .accordion .accordion-content {
    border-top-color: #4a627a;
    color: #bdc3c7; 
}
.section-bg-dark .accordion .accordion-content ul,
.section-bg-dark .accordion .accordion-content ol {
    color: #bdc3c7;
}
.section-bg-dark .accordion .accordion-content p strong {
    color: #ecf0f1;
}

.accordion .accordion-content ul,
.accordion .accordion-content ol {
    list-style-position: inside;
    padding-left: 10px; 
    margin-top: 10px; 
}
.accordion .accordion-content li {
    margin-bottom: 0.5rem;
}


/* Blog Specific */
.blog-listing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}


.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 20px;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
}
.blog-card-content .meta {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0.5rem;
}
.blog-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.blog-card-content h3 a {
    color: #2c3e50;
}
.blog-card-content h3 a:hover {
    color: #007bff;
}
.blog-card-content p { 
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.blog-card-content .read-more {
    display: inline-block;
    margin-top: auto; 
    font-weight: bold;
}

/* Call to Action Bar */
.cta-bar {
    background-color: #17a2b8; 
    color: #fff;
    padding: 50px 0; 
    text-align: center;
}

.cta-bar h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 2rem; 
}
.cta-bar p {
    font-size: 1.1rem;
    color: #e0e0e0;
}
.cta-bar .btn {
    margin-top: 1rem;
}


/* Modal */
.modal {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #fefefe;
    margin: 8% auto; 
    padding: 30px;
    border: none; 
    width: 90%;
    max-width: 550px; 
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}


.close-btn {
    color: #aaa;
    position: absolute;
    top: 10px; 
    right: 15px; 
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #444; 
}
.modal form input[type="text"],
.modal form input[type="email"],
.modal form select,
.modal form textarea {
    width: 100%;
    padding: 12px; 
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #f9f9f9; 
}
.modal form textarea {
    min-height: 100px;
    resize: vertical;
}
.modal form button {
    font-size: 1.05rem;
}


/* Footer */
.main-footer {
    background-color: #2c3e50; 
    color: #e0e0e0;
    padding: 40px 0 20px 0; 
    text-align: center;
}

.main-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-nav {
    margin-bottom: 1rem;
}
.footer-nav a {
    color: #e0e0e0;
    margin: 0 10px;
    font-size: 0.95rem; 
}
.footer-nav a:hover {
    color: #007bff;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
    display: block;
    margin: 0 auto 1rem auto;
}

.footer-social-icons {
    margin-bottom: 1rem;
}
.footer-social-icons a {
    color: #fff;
    margin: 0 10px; 
    font-size: 1.4rem; 
    transition: color 0.2s ease;
}
.footer-social-icons a:hover {
    color: #17a2b8; 
}
.main-footer p {
    font-size: 0.9em;
    color: #bdc3c7; 
    margin-bottom: 0.5rem;
}
.main-footer p a {
    font-size: 1em; 
}

/* Evolution Page Specific Styles */
.evolution-hero {
    background: url('../assets/evolution_hero_bg.jpg') no-repeat center center/cover;
}
.evolution-hero h1 { font-size: 3rem; }

.timeline-container {
    position: relative;
    margin: 50px auto;
    padding: 40px 0;
    width: 90%;
    max-width: 1000px;
}
.timeline-container::after { 
    content: '';
    position: absolute;
    width: 6px;
    background-color: #007bff; 
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}
.timeline-item::after { 
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: white;
    border: 4px solid #007bff;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-left { left: 0; }
.timeline-right { left: 50%; }
.timeline-left::before { 
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #e0e0e0;
}
.timeline-right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent #e0e0e0 transparent transparent;
}
.timeline-right::after { left: -16px; }
.timeline-content {
    padding: 20px 30px;
    background-color: #e0e0e0;
    color: #333;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.timeline-content h3 { color: #007bff; margin-top:0; }
.timeline-content p { color: #444; }
.timeline-content p strong { color: #2c3e50; }
.timeline-content .status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8em;
    margin-bottom: 10px;
    color: white;
    font-weight: 500;
}
.status-current { background-color: #28a745; } 
.status-next { background-color: #ffc107; color:#333; }
.status-decision { background-color: #fd7e14; } 
.status-deep { background-color: #dc3545; }
.status-future { background-color: #6f42c1; }

.detailed-evolution-section { margin-top: 40px; }
.capability-group h3 {
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #2c3e50;
}
.capability-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-left: 5px solid #17a2b8;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.capability-card h4 { color: #17a2b8; margin-top:0; }
.capability-card .business-value { font-style: italic; color: #555; margin-top: 5px; }
.capability-card .aiml-tech {
    margin-top: 15px;
    font-size: 0.9em;
}
.capability-card .aiml-tech strong { color: #2c3e50; }
.capability-card .aiml-tech span {
    background-color: #e9ecef;
    color: #495057;
    padding: 4px 10px;
    border-radius: 4px;
    margin-right: 5px;
    font-size: 0.85em;
    display: inline-block;
    margin-bottom: 5px;
    line-height: 1.4;
}
.tech-sidebar {
    background-color: #2c3e50; 
    color: #f0f0f0;
    padding: 30px 20px;
    border-radius: 8px;
    margin-top: 40px;
}
.tech-sidebar h3 { color: #fff; }
.tech-sidebar ul { list-style: none; padding-left: 0; }
.tech-sidebar li { margin-bottom: 10px; font-size: 1.1em; color: #bdc3c7;}
.tech-sidebar li strong { color: #ecf0f1; }

/* Responsive Timeline */
@media screen and (max-width: 768px) {
    .timeline-container::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-left::before, .timeline-right::before {
        left: 60px;
        border-color: transparent #e0e0e0 transparent transparent;
        border-width: 10px 10px 10px 0;
     }
    .timeline-left::after, .timeline-right::after { left: 15px; }
    .timeline-right { left: 0%; } 

    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.1rem; }
    .evolution-hero h1 { font-size: 2.5rem; }
}


/* Responsive Adjustments */
@media (max-width: 992px) {
    .staggered-panel { flex-direction: column !important; }
    .staggered-panel:nth-child(even) { flex-direction: column !important; } 
    .staggered-image img { max-height: 300px; }
}

@media (max-width: 768px) {
    /* REMOVED OLD INCORRECT HEADER STYLES FROM HERE */

    .hero {
        height: auto !important;
        min-height: 0 !important;
        padding: calc(72px + env(safe-area-inset-top)) 0 56px 0 !important;
        align-items: flex-start !important;
        overflow: visible !important;
    }
    .hero-content { padding: 0 18px !important; }
    .hero-content .btn { display: inline-block; margin: 10px 8px 0 8px; }
    /* Ensure backgrounds/videos behave on iOS Safari */
    #hero-video { object-fit: cover; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .panel-grid { grid-template-columns: 1fr; }
    .scroll-panel { width: 260px; }
    .scroll-panel.metric-panel { width: 280px; }
    .modal-content { width: 90%; margin-top: 15%; } 
}



@media (max-height: 520px) {
    .hero {
        height: auto !important;
        min-height: 0 !important;
        padding: calc(64px + env(safe-area-inset-top)) 0 40px 0 !important;
        align-items: flex-start !important;
        overflow: visible !important;
    }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; } 
    .btn, .btn-lg, .btn-sm { padding: 10px 18px; font-size: 0.9rem; }
    .logo img { max-height: 40px; }
    .footer-logo img { max-height: 30px; }
    .timeline-content { padding: 15px 20px; } 
    .capability-card { padding: 15px; }
}

/* --- Glossary Term Pop-up Styles --- */
.glossary-term {
    border-bottom: 1px dotted #007bff;
    cursor: help;
    position: relative; 
    color: #0056b3;
    font-weight: 600;
    transition: color 0.2s ease;
}

.glossary-term:hover {
    color: #17a2b8;
}

.glossary-popup-container {
    position: absolute;
    background-color: #232f3c;
    color: #e9ecef;
    border: 1px solid #4a627a;
    border-radius: 6px;
    padding: 12px 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 2500;
    max-width: 320px;
    font-size: 0.88rem;
    line-height: 1.6;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease-in-out;
    cursor: default !important;
}

.glossary-popup-container.visible {
    opacity: 1;
    visibility: visible;
}

.glossary-popup-container p {
    margin-bottom: 0;
    color: #e9ecef;
}
.glossary-popup-container p strong {
    color: #1abc9c;
    display: block;
    margin-bottom: 5px;
}

/* --- START: Hamburger Menu Styles --- */

/* 1. Style the button itself and hide it on desktop */
.mobile-menu-toggle {
    display: none; /* Hidden by default on large screens */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001; /* Ensure it's above other header content */
}

.mobile-menu-toggle .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #2c3e50; /* Dark color for the bars */
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* 2. Styles for mobile screens */
@media (max-width: 768px) {
    /* Show the hamburger button */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Keep logo and button in a row */
    .main-header .container {
        flex-direction: row; 
        justify-content: space-between;
    }

    /* Hide the navigation menu by default */
    .main-nav {
        display: none;
        position: absolute;
        top: 90px; /* Position below the header. Adjust if header height changes. */
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    /* When menu is open, make it visible */
    .main-nav.is-open {
        display: block;
    }

    /* Stack the nav links vertically inside the slide-down menu */
    .main-nav ul {
        flex-direction: column;
        width: 100%;
        align-items: center;
        padding: 10px 0;
    }

    .main-nav ul li {
        margin: 15px 0;
        text-align: center;
    }

    /* Animate hamburger to an 'X' when open */
    .mobile-menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
/* --- END: Hamburger Menu Styles --- */

