body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #212529;
}

.site-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #212529;
    font-size: clamp(1.1rem, 1.25vw, 1.5rem);
}

.header-custom {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1030;
}

.navbar-brand img {
    height: 30px;
}

.nav-link {
    color: #555;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #007bff; /* Assetrix Teal */
}

.navbar-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.navbar-nav::-webkit-scrollbar {
    display: none;
}

.offcanvas-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.offcanvas-body {
    background-color: #ffffff;
}

.btn-assetrix-teal {
    background-color: #007bff; /* Primary teal color */
    border-color: #007bff;
    color: #fff;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.btn-assetrix-teal:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    color: #fff;
}

.btn-outline-assetrix-teal {
    color: #007bff;
    border-color: #007bff;
    background-color: transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

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

.bg-light-yellow {
    background-color: #fffbe6; /* Light yellow background */
}

.bg-light-gray {
    background-color: #f0f2f5; /* Light gray for footer */
}

.text-assetrix-teal {
    color: #007bff !important;
}

.border-assetrix-teal {
    border: 2px solid #007bff !important;
}

/* Section Titles */
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #212529;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    background-color: #ffffff;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: #212529;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #555;
}

.hero-image-container img {
    height: auto;
    object-fit: cover;
    width: 100%;
}

/* About Section */
.about-block {
    margin-bottom: 4rem;
}

.about-content h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

.about-image-container img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

/* Portfolio Section (Services) */
.portfolio-item img {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: calc(0.5rem - 1px);
    border-top-right-radius: calc(0.5rem - 1px);
}

.portfolio-item .card-body h5 {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.portfolio-item .card-body p {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

/* Industries Section (Approach) */
.category-filters .btn {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.info-blocks-container .card {
    min-height: 220px;
}

.info-blocks-container .card-body h5 {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.info-blocks-container .card-body p {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

/* Pricing Section */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.pricing-card .price-display {
    color: #007bff;
}

.pricing-card .price-display span:first-child {
    font-size: clamp(2rem, 4vw, 3rem);
}

.pricing-card .list-unstyled li {
    font-size: 0.95rem;
}

/* FAQ Section */
.question-heading {
    color: #d63384; /* Magenta/pink */
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

/* CTA Section */
.cta-section {
    background-color: #007bff; /* Assetrix Teal */
    background-image: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon fill="%230056b3" points="0,0 50,100 100,0"/></svg>') repeat;
    background-size: 100px 100px;
    opacity: 0.1;
    transform: rotate(15deg);
    z-index: -1;
}

.cta-section .cta-btn {
    text-decoration: none;
}

/* Footer */
.footer-section {
    background-color: #f0f2f5;
    color: #555;
}

.footer-section .newsletter-signup {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.footer-section .newsletter-input {
    max-width: 300px;
    border-color: #ced4da;
}

.footer-section .newsletter-btn {
    min-width: 120px;
}

.footer-link {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #007bff;
}

/* Cookie Banner */
.cookie-banner {
    z-index: 1040;
    width: 100%;
    max-width: 100%;
    border-top: 1px solid #eee;
    display: none;
}

.cookie-banner p a {
    font-weight: 600;
    text-decoration: underline;
}

.modal-backdrop {
    z-index: 0;
}

/* Cookie Settings Modal */
#cookieSettingsModal {
    z-index: 1050;
}

/* Utility for text colors */
.text-secondary {
    color: #6c757d !important;
}

/* Global box-sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Animations */
.fade-in-slide-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-slide-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-scale-up {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-scale-up.animated {
    opacity: 1;
    transform: scale(1);
}

.hero-content .hero-title, .hero-content .hero-subtitle, .hero-content .hero-cta-btn {
    opacity: 0;
    transform: translateY(20px);
}

.hero-image {
    opacity: 0;
    transform: scale(0.9);
}

.hero-content .hero-title.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-content .hero-subtitle.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.hero-content .hero-cta-btn.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
}

.hero-image.animated {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.8s ease-out 0.6s, transform 0.8s ease-out 0.6s;
}

.fade-in-slide-up-cookie {
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-slide-up-cookie.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Typography */
@media (min-width: 1024px) {
    .site-title {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .hero-title {
        font-size: 3.8rem;
    }
    .hero-subtitle {
        font-size: 1.25rem;
    }
    .about-content h3 {
        font-size: 1.8rem;
    }
    .portfolio-item .card-body h5 {
        font-size: 1.2rem;
    }
    .portfolio-item .card-body p {
        font-size: 1rem;
    }
    .info-blocks-container .card-body h5 {
        font-size: 1.2rem;
    }
    .info-blocks-container .card-body p {
        font-size: 1rem;
    }
    .pricing-card .price-display span:first-child {
        font-size: 3rem;
    }
    .question-heading {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .site-title {
        font-size: 1.3rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.15rem;
    }
    .about-content h3 {
        font-size: 1.6rem;
    }
    .portfolio-item .card-body h5 {
        font-size: 1.1rem;
    }
    .portfolio-item .card-body p {
        font-size: 0.95rem;
    }
    .info-blocks-container .card-body h5 {
        font-size: 1.1rem;
    }
    .info-blocks-container .card-body p {
        font-size: 0.95rem;
    }
    .pricing-card .price-display span:first-child {
        font-size: 2.5rem;
    }
    .question-heading {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .site-title {
        font-size: 1.25rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-section {
        text-align: center;
    }
    .hero-content {
        text-align: center;
    }
    .hero-image-container {
        margin-bottom: 2rem;
    }
    .about-content h3 {
        font-size: 1.4rem;
    }
    .portfolio-item .card-body h5 {
        font-size: 1rem;
    }
    .portfolio-item .card-body p {
        font-size: 0.875rem;
    }
    .industries-section .btn-group {
        flex-wrap: wrap;
        justify-content: center;
    }
    .industries-section .btn-group .btn {
        flex: 1 1 auto;
        margin: 0.25rem;
    }
    .info-blocks-container .card-body h5 {
        font-size: 1rem;
    }
    .info-blocks-container .card-body p {
        font-size: 0.875rem;
    }
    .pricing-card .price-display span:first-child {
        font-size: 2rem;
    }
    .question-heading {
        font-size: 1.25rem;
    }
    .cta-section .display-4 {
        font-size: 2rem;
    }
    .cta-section .lead {
        font-size: 1rem;
    }
    .footer-section .newsletter-signup {
        margin-top: -40px;
        padding: 1.5rem;
    }
    .footer-section .newsletter-input {
        width: 100%;
        max-width: none;
    }
    .footer-section .newsletter-btn {
        width: 100%;
    }
    .footer-section .text-md-start {
        text-align: center !important;
    }
    .footer-section .list-unstyled {
        text-align: center !important;
    }
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }
    .cookie-banner .d-flex.gap-2 {
        width: 100%;
        justify-content: stretch;
    }
    .cookie-banner .d-flex.gap-2 .btn {
        flex-grow: 1;
    }
}

@media (max-width: 1100px) {
    .navbar-toggler {
        display: block;
    }
}

@media (min-width: 1101px) {
    .navbar-nav {
        display: flex !important;
    }
    .navbar-toggler {
        display: none;
    }
    .offcanvas {
        visibility: hidden;
    }
}
.legalDomeBlock {
    /* Container padding for top and sides */
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 30px;
    padding-right: 30px;
    /* Basic font family for the block content */
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: #333; /* Default text color */
}

.legalDomeBlock h1 {
    /* Main heading style, not too large */
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 24px;
}

.legalDomeBlock h2 {
    /* Secondary heading style */
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 20px;
}

.legalDomeBlock h3 {
    /* Tertiary heading style */
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 18px;
}

.legalDomeBlock h4 {
    /* Quaternary heading style */
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 16px;
}

.legalDomeBlock h5 {
    /* Quinary heading style */
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 14px;
}

.legalDomeBlock p {
    /* Paragraph text style */
    font-size: 18px;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 20px; /* Space between paragraphs */
}

.legalDomeBlock ul {
    /* Unordered list style */
    list-style-type: disc; /* Default bullet style */
    margin-top: 0;
    margin-bottom: 20px; /* Space after the list */
    padding-left: 25px; /* Indentation for bullet points */
}

.legalDomeBlock li {
    /* List item style */
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px; /* Space between list items */
}

.legalDomeBlock li:last-child {
    /* Remove bottom margin for the last list item */
    margin-bottom: 0;
}
