/* style.css */

/*--------------------------------------------------------------
# CSS Variables
--------------------------------------------------------------*/
:root {
    --font-primary: 'Oswald', sans-serif;
    --font-secondary: 'Nunito', sans-serif;

    /* Triad Color Scheme */
    --primary-color: #0D47A1; /* Deep Blue */
    --accent-color-1: #D32F2F; /* Strong Red */
    --accent-color-2: #FBC02D; /* Amber/Yellow */

    --text-dark: #212121;
    --text-light: #FFFFFF;
    --text-muted-dark: #555555;
    --text-muted-light: #cccccc;

    --bg-light: #F5F5F5;
    --bg-dark: #1a1a1a; /* Slightly off-black for depth */
    --bg-medium: #e0e0e0;

    --border-color-strong: #000000;
    --border-color-medium: #333333;
    --border-color-light: #777777;

    --shadow-depth-small: 3px 3px 0px var(--border-color-medium);
    --shadow-depth-medium: 5px 5px 0px var(--border-color-strong);
    --shadow-depth-large: 8px 8px 0px var(--border-color-strong);

    --header-height: 70px; /* Adjust if navbar height changes */
    --section-padding: 4rem 0; /* Default padding for sections */
}

/*--------------------------------------------------------------
# Base Styles
--------------------------------------------------------------*/
body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-muted-dark);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
    font-weight: 700;
}

a:hover {
    color: var(--accent-color-1);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Remove bottom space */
}

/*--------------------------------------------------------------
# Global Brutalist Styles & UI Components
--------------------------------------------------------------*/
.btn, button, input[type="submit"], input[type="button"] {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 2px solid var(--border-color-strong);
    padding: 0.65rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0; /* Brutalist: no rounded corners */
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
    box-shadow: var(--shadow-depth-small);
    color: var(--text-dark);
}

.btn:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0px var(--border-color-strong);
}

.btn-brutalist-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}
.btn-brutalist-primary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-brutalist-accent {
    background-color: var(--accent-color-1);
    color: var(--text-light);
    border-color: var(--accent-color-1);
}
.btn-brutalist-accent:hover {
    background-color: var(--text-light);
    color: var(--accent-color-1);
    border-color: var(--accent-color-1);
}

.btn-brutalist-yellow {
    background-color: var(--accent-color-2);
    color: var(--text-dark);
    border-color: var(--accent-color-2);
}
.btn-brutalist-yellow:hover {
    background-color: var(--text-dark);
    color: var(--accent-color-2);
    border-color: var(--accent-color-2);
}


.form-control-brutalist {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-dark);
    background-color: var(--text-light);
    background-clip: padding-box;
    border: 2px solid var(--border-color-medium);
    border-radius: 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control-brutalist::placeholder {
    color: var(--text-muted-dark);
    opacity: 0.7;
}
.form-control-brutalist:focus {
    color: var(--text-dark);
    background-color: var(--text-light);
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(var(--primary-color), 0.25), var(--shadow-depth-small);
}

textarea.form-control-brutalist {
    min-height: 120px;
}

/* Progress Indicators */
.progress-brutalist {
    display: flex;
    height: 1.5rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: var(--bg-medium);
    border-radius: 0;
    border: 2px solid var(--border-color-medium);
    box-shadow: var(--shadow-depth-small);
}
.progress-bar-brutalist {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: var(--text-light);
    text-align: center;
    white-space: nowrap;
    background-color: var(--primary-color);
    transition: width .6s ease;
    border-radius: 0;
}
.progress-bar-brutalist[style*="background-color: var(--accent-color-2)"] {
    color: var(--text-dark);
}


/* Switches */
.form-check-input-brutalist {
    width: 2.5em;
    height: 1.25em;
    border-radius: 0 !important; /* Override Bootstrap if needed */
    border: 2px solid var(--border-color-medium) !important;
    background-color: var(--bg-medium);
    box-shadow: var(--shadow-depth-small);
}
.form-check-input-brutalist:checked {
    background-color: var(--accent-color-1) !important;
    border-color: var(--accent-color-1) !important;
}
.form-check-input-brutalist:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 71, 161, 0.25), var(--shadow-depth-small) !important;
}
.form-switch .form-check-input-brutalist {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(0,0,0,0.50)'/%3e%3c/svg%3e") !important; /* Darker handle */
}
.form-switch .form-check-input-brutalist:checked {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important; /* Light handle on checked */
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: var(--section-padding);
    overflow: hidden; /* For AOS animations and asymmetric balance */
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 2rem;
    font-size: 2.8rem;
    color: var(--text-dark); /* Ensure high contrast */
    text-shadow: 1px 1px 0px rgba(0,0,0,0.1);
    position: relative;
}
.section-title::after { /* Brutalist underline */
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color-1);
    margin: 10px auto 0;
    box-shadow: var(--shadow-depth-small);
}


/* Parallax Background */
.parallax-bg {
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Text on Image Overlay - used in Hero */
.text-on-image-overlay {
    position: relative;
    color: var(--text-light); /* Ensure text is light */
}
.text-on-image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.75)); /* Darkening overlay */
    z-index: 1;
}
.text-on-image-overlay > * { /* Content on top of overlay */
    position: relative;
    z-index: 2;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-header {
    height: var(--header-height);
    transition: all 0.3s;
    z-index: 997;
    border-bottom: 3px solid var(--border-color-strong) !important; /* Brutalist border */
}

.site-header .navbar-brand {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary-color) !important;
    font-weight: 700;
    letter-spacing: 1px;
}

.site-header .nav-link {
    font-family: var(--font-primary);
    text-transform: uppercase;
    color: var(--text-dark) !important;
    padding: 10px 15px !important;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
}
.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--accent-color-1) !important;
}
.site-header .nav-link::before { /* Underline effect for brutalism */
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color-1);
    transition: width 0.3s ease;
    box-shadow: 2px 2px 0 var(--border-color-medium);
}
.site-header .nav-link:hover::before,
.site-header .nav-link.active::before {
    width: calc(100% - 20px); /* Adjust to content width */
}

.navbar-toggler {
    border: 2px solid var(--border-color-strong) !important;
    border-radius: 0 !important;
    box-shadow: var(--shadow-depth-small);
}
.navbar-toggler:focus {
    box-shadow: var(--shadow-depth-small), 0 0 0 0.2rem rgba(var(--primary-color), 0.25);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.8)' stroke-linecap='square' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.dropdown-menu {
    border-radius: 0 !important;
    border: 2px solid var(--border-color-strong) !important;
    box-shadow: var(--shadow-depth-medium);
    padding: 0;
}
.dropdown-item {
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 10px 15px;
    color: var(--text-dark);
    font-weight: 700;
}
.dropdown-item:hover {
    background-color: var(--accent-color-2);
    color: var(--text-dark);
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
    width: 100%;
    /* min-height controlled by HTML inline style (90vh) */
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-section h1 {
    margin: 0 0 20px 0;
    font-size: 3.5rem; /* Larger for Hero */
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light); /* As per requirement */
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}
.hero-section p {
    color: var(--text-light); /* As per requirement */
    margin-bottom: 30px;
    font-size: 1.4rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1.1rem;
    }
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
#about .lead {
    font-weight: 400;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}
#about .image-container {
    border: 3px solid var(--border-color-strong);
    padding: 5px; /* Inner padding for image */
    background-color: var(--text-light); /* Background for padding */
}
#about .image-container img {
    border: 1px solid var(--border-color-light); /* Thin inner border for image */
}

/*--------------------------------------------------------------
# Projects Section (Card Styling)
--------------------------------------------------------------*/
.card-brutalist {
    border: 2px solid var(--border-color-strong);
    border-radius: 0;
    background-color: var(--text-light);
    box-shadow: var(--shadow-depth-medium);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; /* For flex properties like h-100 */
    flex-direction: column;
}
.card-brutalist:hover {
    transform: translateY(-5px) translateX(-5px);
    box-shadow: 10px 10px 0px var(--border-color-strong);
}

.card-brutalist .card-image {
    width: 100%;
    height: 220px; /* Fixed height for consistent card image size */
    overflow: hidden;
    border-bottom: 2px solid var(--border-color-strong);
    position: relative; /* For potential overlays if needed */
}
.card-brutalist .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area, cropping if necessary */
    display: block;
    transition: transform 0.3s ease;
}
.card-brutalist:hover .card-image img {
    transform: scale(1.05);
}

.card-brutalist .card-content {
    padding: 1.5rem;
    flex-grow: 1; /* Allows content to fill space if card is h-100 */
    display: flex;
    flex-direction: column;
}
.card-brutalist .card-title {
    font-family: var(--font-primary);
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}
.card-brutalist .card-text {
    font-family: var(--font-secondary);
    color: var(--text-muted-dark);
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 1rem;
}
.card-brutalist .btn { /* Button specific to card bottom */
    margin-top: auto; /* Pushes button to bottom if card-content is flex */
    align-self: flex-start; /* Aligns button to the left */
}

/* Read More Link Style */
.read-more-link {
    font-family: var(--font-primary);
    text-transform: uppercase;
    color: var(--accent-color-1);
    font-weight: 700;
    display: inline-block;
    padding: 5px 0;
    position: relative;
    border-bottom: 2px solid transparent; /* Placeholder for hover effect */
}
.read-more-link:hover {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom-color: var(--primary-color);
}
.read-more-link::after {
    content: " \2192"; /* Right arrow */
    transition: transform 0.2s ease;
    display: inline-block;
}
.read-more-link:hover::after {
    transform: translateX(5px);
}


/*--------------------------------------------------------------
# Research Section
--------------------------------------------------------------*/
#research p {
    color: var(--text-dark); /* Ensure text is readable on light bg */
}
#research .image-container {
    border: 3px solid var(--border-color-strong);
    padding: 5px;
    background-color: var(--text-light);
}

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
#partners .partner-logo {
    border: 2px solid var(--border-color-medium);
    background-color: var(--bg-light);
    padding: 2rem 1rem;
    min-height: 120px; /* As per HTML */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-depth-small);
    transition: all 0.3s ease;
}
#partners .partner-logo:hover {
    box-shadow: var(--shadow-depth-medium);
    transform: translateY(-3px) translateX(-3px);
    border-color: var(--border-color-strong);
}
#partners .partner-logo h4 {
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}


/*--------------------------------------------------------------
# External Links Section
--------------------------------------------------------------*/
#external-links.bg-accent2-brutalist { /* Yellow background */
    background-color: var(--accent-color-2) !important;
}
#external-links .section-title,
#external-links p {
    color: var(--text-dark) !important; /* Ensure text is dark on yellow */
}
#external-links .list-group-item {
    background-color: transparent !important;
    border-bottom: 2px solid rgba(0,0,0,0.2) !important; /* Stronger border for brutalism */
    padding: 1rem 0.5rem;
}
#external-links .list-group-item:last-child {
    border-bottom: none !important;
}
#external-links .list-group-item a {
    color: var(--text-dark) !important;
    font-weight: 700;
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}
#external-links .list-group-item a:hover {
    color: var(--primary-color) !important;
    text-decoration: none;
}
#external-links .list-group-item a span { /* Arrow icon */
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 10px;
    font-size: 1.8rem; /* Make arrow bigger */
}
#external-links .list-group-item a:hover span {
    transform: translateX(8px) scale(1.1);
}
#external-links .list-group-item small {
    color: var(--text-muted-dark) !important;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
#contact .lead {
    color: var(--text-dark);
}
#contactForm label {
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
#contact .form-control-brutalist {
    margin-bottom: 1rem; /* Spacing below inputs */
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
    background-color: var(--bg-dark);
    color: var(--text-muted-light);
    font-size: 0.9rem;
    padding: 3rem 0;
    border-top: 5px solid var(--border-color-strong); /* Strong top border */
}
.site-footer h5 {
    font-family: var(--font-primary);
    color: var(--accent-color-2); /* Yellow for footer titles */
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 700;
}
.site-footer p.small {
    color: var(--text-muted-light);
    margin-bottom: 0;
}
.site-footer .list-unstyled li {
    margin-bottom: 0.5rem;
}
.site-footer .footer-link {
    color: var(--text-muted-light);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 400; /* Normal weight for footer links */
    transition: color 0.3s ease;
}
.site-footer .footer-link:hover {
    color: var(--accent-color-2); /* Yellow on hover */
    text-decoration: underline;
}
.site-footer hr {
    border-color: rgba(255,255,255,0.15); /* Lighter hr in dark footer */
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}
.site-footer .text-center.small {
    color: var(--text-muted-light);
    opacity: 0.8;
}

/* Social media text links styling */
.site-footer .list-unstyled a[target="_blank"]::after {
  /* content: " \2197"; /* North East Arrow for external links - optional */
  font-size: 0.8em;
  position: relative;
  top: -2px;
  margin-left: 3px;
}

/*--------------------------------------------------------------
# Specific Page Styles
--------------------------------------------------------------*/
/* Success Page */
.success-page-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--header-height) - 100px); /* Adjust 100px for footer or other elements */
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
}
.success-page-container h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
}
.success-page-container p {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.success-page-container .icon-success { /* Placeholder for a potential SVG icon */
    font-size: 5rem;
    color: var(--accent-color-1);
    margin-bottom: 1.5rem;
    /* Example: using a Font Awesome class or SVG */
}

/* Privacy & Terms Pages */
.privacy-page-content,
.terms-page-content {
    padding-top: calc(var(--header-height) + 30px); /* Header height + buffer */
    padding-bottom: 4rem;
    background-color: var(--text-light); /* Ensure light background for readability */
}
.privacy-page-content .container,
.terms-page-content .container {
    max-width: 800px; /* Limit width for readability of long text */
}
.privacy-page-content h1,
.terms-page-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}
.privacy-page-content h2,
.terms-page-content h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color-2);
    padding-bottom: 0.5rem;
}
.privacy-page-content p,
.terms-page-content p,
.privacy-page-content li,
.terms-page-content li {
    color: var(--text-muted-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.privacy-page-content ul,
.terms-page-content ul {
    padding-left: 20px;
    list-style-type: disc; /* Or square for brutalist */
}


/*--------------------------------------------------------------
# Barba.js Page Transitions
--------------------------------------------------------------*/
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color); /* Primary color for transition */
    z-index: 99999; /* Highest z-index */
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.86, 0, 0.07, 1); /* Smooth ease */
}

/* Animation states for Barba */
[data-barba="container"] {
    opacity: 1;
    transition: opacity 0.3s 0.3s ease-out; /* Fade in after transition element moves */
}
.barba-leave-active [data-barba="container"] {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.barba-leave-to .page-transition {
    transform: translateY(0);
}
.barba-enter-from .page-transition {
    transform: translateY(0);
}
.barba-enter-to .page-transition {
    transform: translateY(-100%);
}


/*--------------------------------------------------------------
# Cookie Consent Popup
--------------------------------------------------------------*/
#cookieConsentPopup { /* Styles already in HTML, this is for consistency or overrides */
    border-top: 3px solid var(--accent-color-1) !important; /* Ensure theme color */
}
#cookieConsentPopup p {
    color: var(--text-light);
}
#cookieConsentPopup a {
    color: var(--accent-color-2) !important; /* Yellow link on dark bg */
}
#acceptCookieButton {
    background-color: var(--accent-color-1) !important; /* Red button */
    color: var(--text-light) !important;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    font-family: var(--font-primary);
    text-transform: uppercase;
    border-radius: 0;
    font-weight: 700;
    box-shadow: var(--shadow-depth-small);
    transition: all 0.2s ease-in-out;
}
#acceptCookieButton:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0px var(--border-color-strong);
    background-color: var(--accent-color-2) !important; /* Change color on hover */
    color: var(--text-dark) !important;
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .site-header {
        height: auto; /* Allow header to expand for toggler */
        padding: 10px 0;
    }
    .site-header .navbar-collapse {
        margin-top: 10px;
        border-top: 2px solid var(--border-color-medium);
        box-shadow: inset 0px 5px 5px -5px rgba(0,0,0,0.1);
    }
     .site-header .nav-link {
        padding: 12px 15px !important;
        border-bottom: 1px solid var(--border-color-light);
    }
    .site-header .nav-link:last-child {
        border-bottom: none;
    }
    .site-header .nav-link::before {
        display: none; /* Remove underline effect on mobile */
    }

    .hero-section {
        min-height: 70vh; /* Adjust for smaller screens */
    }

    h1 { font-size: 2.5rem; }
    h2, .section-title { font-size: 2rem; }

    .card-brutalist .card-image {
        height: 180px; /* Slightly smaller images on tablets */
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 3rem 0;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .btn, button, input[type="submit"], input[type="button"] {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    #about .image-container,
    #research .image-container {
        margin-top: 2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-title::after {
        width: 60px;
        height: 3px;
    }
    .footer-column {
        margin-bottom: 2rem;
    }
    .site-footer h5 {
        margin-top: 1rem; /* Space for collapsed items */
    }
}
.navbar-toggler{
    display: none;
}