/* General Styles */
:root {
    --primary-blue: hsl(200, 70%, 50%); /* Medium blue */
    --light-blue: hsl(200, 100%, 95%); /* Very light blue for backgrounds */
    --dark-text: hsl(220, 15%, 20%); /* Dark grey-blue for main text */
    --secondary-text: hsl(220, 10%, 40%); /* Slightly lighter grey-blue */
    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.btn-primary:hover {
    background-color: hsl(200, 70%, 40%); /* Slightly darker blue */
    border-color: hsl(200, 70%, 40%);
    color: var(--white);
}

.btn-outline-light {
    color: var(--white);
    border-color: var(--white);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.btn-outline-light:hover {
    color: var(--primary-blue);
    background-color: var(--white);
    border-color: var(--white);
}

/* Background Colors */
.bg-light-blue {
    background-color: var(--light-blue);
}

/* Header - Hero Section */
.hero-section {
    background: 
        linear-gradient(135deg, var(--light-blue) 0%, hsla(200, 79%, 85%, 0.466) 100%),
        url('../ui/assets/content/bg-hero.jpg') no-repeat center center / cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px!important;
}
.navbar {
    background-color: rgba(255, 255, 255, 0.95); /* Slightly transparent white */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    display: flex;
    align-items: center;
    color: var(--dark-text) !important;
    font-size: 1.5rem;
}

.navbar-brand:hover {
    color: var(--primary-blue) !important;
}

.navbar-logo {
    height: 40px;
}

.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
}

.hero-content {
    padding-top: 60px; /* Space from navbar */
    padding-bottom: 60px;
    max-width: 900px;
    text-align: center;
}

.hero-content h1 {
    color: var(--primary-blue);
    font-size: 3.5rem;
}

.hero-content p.lead {
    color: var(--secondary-text);
    font-size: 1.25rem;
}

.hero-icon {
    color: var(--primary-blue);
}

/* About Section */
#about img {
    max-width: 100%;
    height: auto;
}

/* Services Section */
.services-process .service-step {
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    height: 100%; /* Ensure equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services-process .step-number {
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* How It Works Section */
.how-it-works-diagram .how-it-works-step {
    position: relative;
    padding: 20px;
}

.how-it-works-diagram .how-it-works-arrow {
    color: var(--secondary-text);
}

@media (max-width: 767.98px) {
    .how-it-works-diagram .how-it-works-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    .how-it-works-diagram .col-md-1 {
        width: 100%;
    }
}

/* Industries Section */
.industry-card {
    height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    position: relative;
    transition: transform 0.2s ease-in-out;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.industry-card .overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-5px);
}

/* Team Section */
.team-member {
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.team-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--primary-blue);
}

/* Testimonials Section */
#testimonials .card {
    background-color: var(--white);
    border: none;
    border-radius: 1rem;
}

#testimonials .blockquote {
    font-style: italic;
    color: var(--secondary-text);
}

#testimonials .blockquote-footer {
    color: var(--dark-text);
    font-size: 0.9rem;
}

/* FAQ Section */
.accordion-button {
    font-weight: 600;
    color: var(--dark-text);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-blue);
    background-color: var(--light-blue);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-blue);
}

.accordion-item {
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 10px;
    border-radius: 0.5rem;
}

.accordion-body {
    color: var(--secondary-text);
}

/* Contact Section */
.contact-form {
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-text);
}

.contact-form .form-control {
    border-color: rgba(0,0,0,0.1);
}

.contact-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem hsla(200, 70%, 50%, 0.25);
}

/* Side-Banner CTA */
.side-banner-cta {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 15px 20px;
    bottom: 50%; /* Center vertically */
    transform: translateY(50%);
    right: 0;
    z-index: 1000;
    writing-mode: vertical-lr; /* Vertical text */
    text-orientation: mixed;
    max-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 30px; /* Adjust padding for vertical text */
    padding-bottom: 30px;
}

.side-banner-cta p {
    transform: rotate(180deg);
    white-space: nowrap;
    margin-bottom: 15px;
}

.side-banner-cta .btn {
    transform: rotate(180deg);
    white-space: nowrap;
}

/* Footer */
.footer {
    background-color: var(--dark-text); /* Dark background for contrast */
    color: var(--white);
}

.footer-brand {
    color: var(--white) !important;
    text-decoration: none;
}

.footer-brand:hover {
    color: var(--primary-blue) !important;
}

.footer-logo {
}

.footer-nav li a {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: color 0.15s ease-in-out;
}

.footer-nav li a:hover {
    color: var(--primary-blue) !important;
}

.footer .text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Cookie Banner */
.cookie-banner {
    z-index: 2000; /* Above everything */
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: var(--dark-text) !important;
}

.cookie-banner p a {
    color: var(--primary-blue) !important;
}

.cookie-banner .btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.cookie-banner .btn-primary:hover {
    background-color: hsl(200, 70%, 40%);
    border-color: hsl(200, 70%, 40%);
}

.cookie-banner .btn-outline-light {
    color: var(--white);
    border-color: var(--white);
}

.cookie-banner .btn-outline-light:hover {
    background-color: var(--white);
    color: var(--dark-text);
}

/* Cookie Modal */
#cookieSettingsModal .modal-content {
    background-color: var(--white);
    color: var(--dark-text);
}

#cookieSettingsModal .modal-header {
    border-bottom-color: rgba(0,0,0,0.1);
}

#cookieSettingsModal .modal-footer {
    border-top-color: rgba(0,0,0,0.1);
}

#cookieSettingsModal .form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

#cookieSettingsModal .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem hsla(200, 70%, 50%, 0.25);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p.lead {
        font-size: 1rem;
    }
    .side-banner-cta {
        display: none !important; /* Hide side banner on smaller screens */
    }
    .navbar-brand {
        margin-left: 0 !important;
    }
    .navbar-collapse {
        text-align: center;
    }
    .navbar-nav .nav-item {
        margin-bottom: 5px;
    }
    .navbar-nav .nav-link.btn {
        margin-top: 10px;
        margin-left: 0 !important;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
    .services-process .col-md-4 {
        margin-bottom: 20px;
    }
    .cookie-banner .container {
        flex-direction: column;
        align-items: center;
    }
    .cookie-banner .d-flex.flex-column.flex-sm-row {
        width: 100%;
        justify-content: center;
    }
    .cookie-banner .btn {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 10px !important;
    }
    .cookie-banner .btn:last-child {
        margin-bottom: 0 !important;
    }
}/* Styles for content within .privacyNestZone */
.privacyNestZone {
    padding: 4rem 1.5rem; /* Top/bottom padding for the section, side padding for content */
    max-width: 960px; /* Max width for content readability */
    margin: 0 auto; /* Center the content block horizontally */
    color: var(--dark-text); /* Inherit main text color */
}

.privacyNestZone h1 {
    font-size: 2.5rem; /* Moderate font size for main headings */
    font-weight: 700; /* Bold weight for emphasis */
    line-height: 1.2; /* Tighter line height for headings */
    margin-bottom: 1.5rem; /* Space below the heading */
    color: var(--primary-blue); /* Heading color */
    font-family: 'Poppins', sans-serif; /* Consistent heading font */
}

.privacyNestZone h2 {
    font-size: 2rem; /* Slightly smaller than h1 */
    font-weight: 600; /* Semi-bold weight */
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: var(--dark-text); /* Main text color for subheadings */
    font-family: 'Poppins', sans-serif;
}

.privacyNestZone h3 {
    font-size: 1.75rem; /* Standard heading size */
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--dark-text);
    font-family: 'Poppins', sans-serif;
}

.privacyNestZone h4 {
    font-size: 1.5rem; /* Smaller heading size */
    font-weight: 500; /* Medium weight */
    line-height: 1.5;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
    font-family: 'Poppins', sans-serif;
}

.privacyNestZone h5 {
    font-size: 1.25rem; /* Smallest heading size */
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    font-family: 'Poppins', sans-serif;
}

.privacyNestZone p {
    font-size: 1.1rem; /* Slightly larger base paragraph font size for readability */
    line-height: 1.8; /* Generous line height for good readability */
    margin-bottom: 1.5rem; /* Space between paragraphs */
    color: var(--secondary-text); /* Slightly lighter text color for paragraphs */
}

.privacyNestZone ul {
    list-style-type: disc; /* Default disc bullet points */
    margin-bottom: 1.5rem; /* Space below the list */
    padding-left: 1.5rem; /* Indentation for list items */
    color: var(--secondary-text); /* Inherit text color */
}

.privacyNestZone ol {
    list-style-type: decimal; /* Default decimal numbering */
    margin-bottom: 1.5rem; /* Space below the list */
    padding-left: 1.5rem; /* Indentation for list items */
    color: var(--secondary-text); /* Inherit text color */
}

.privacyNestZone li {
    font-size: 1.1rem; /* Consistent font size with paragraphs */
    line-height: 1.6; /* Line height for list items */
    margin-bottom: 0.75rem; /* Space between list items */
}
