/* resources/main.css */

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333333; /* Standard dark text color */
    overflow-x: hidden;
}
html{
    overflow-x: hidden;
}
/* Color Palette */
:root {
    --primary-blue: #A7D9F0; /* Light blue */
    --accent-blue: #6BB6E0; /* Slightly darker blue */
    --brand-color: #5DAAD2; /* Main brand blue for accents */
    --brand-dark-blue: #3A7CA5; /* Darker blue for footer/stronger accents */
    --light-blue-bg: #F0F8FF; /* Alice Blue, very light background blue */
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --star-gold: #FFD700;
}

.brand-color {
    color: var(--brand-color);
}

.bg-light-blue-bg {
    background-color: var(--light-blue-bg);
}

.bg-brand-dark-blue {
    background-color: var(--brand-dark-blue);
}

.bg-white-translucent {
    background-color: rgba(255, 255, 255, 0.95); /* Slightly transparent white for blocks */
}

.button-primary {
    background-color: var(--brand-color);
    color: var(--text-light);
    border: 2px solid var(--brand-color);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
@media (max-width:767px) {
    .button-primary{
        display: block;
    }
}
@media (max-width:767px) {
    .block-menu-apadt{
        flex-direction: column;
    }
}
.button-primary:hover {
    background-color: var(--brand-dark-blue);
    border-color: var(--brand-dark-blue);
    color: var(--text-light);
}

.button-secondary {
    background-color: transparent;
    color: var(--brand-color);
    border: 2px solid var(--brand-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button-secondary:hover {
    background-color: var(--brand-color);
    color: var(--text-light);
}

/* Header */
header {
    border-bottom: 1px solid #eee;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    display: table; /* For vertical centering */
    width: 100%;
    min-height: 100vh; /* Ensure it takes full viewport height */
    padding-top: 60px; /* Adjust for fixed header */
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
}

.hero-title {
    font-size: 3.5rem; /* Larger on desktop */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

@media screen and (max-width: 60em) { /* Tachyons 'ns' breakpoint */
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Hero Animation */
.hero-section .hero-title, .hero-section .hero-subtitle, .hero-section .hero-cta {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-section.animated .hero-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-section.animated .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.hero-section.animated .hero-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

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

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.service-card .material-symbols-outlined {
    font-size: 3rem; /* Larger icons */
}

/* How It Works Steps */
.how-it-works-step {
    flex: 1;
    max-width: 30%; /* For desktop layout */
}

@media screen and (max-width: 60em) {
    .how-it-works-step {
        max-width: 100%;
    }
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
}

.testimonials-track {
    transition: transform 0.5s ease-in-out;
}



.testimonial-slide .star-icon {
    color: var(--star-gold);
    font-size: 1.5rem;
}

.testimonial-slide .star-icon-light {
    color: #ccc; /* For un-filled stars */
    font-size: 1.5rem;
}

.slider-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}

.dot.active {
    background-color: var(--brand-color);
}

/* Form Styling */
#service-request-form input[type="text"],
#service-request-form input[type="email"],
#service-request-form select,
#service-request-form textarea {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#service-request-form input[type="text"]:focus,
#service-request-form input[type="email"]:focus,
#service-request-form select:focus,
#service-request-form textarea:focus {
    outline: none;
    border-color: var(--brand-color);
    box-shadow: 0 0 0 2px rgba(93, 170, 210, 0.3);
}

#service-request-form .red {
    color: #E74C3C;
}

/* Footer */
footer a {
    text-decoration: none;
}

/* Cookie Consent Modal */
#cookie-consent-modal {
    background-color: var(--text-light);
    border-top: 1px solid #eee;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

#cookie-consent-modal p, #cookie-consent-modal label {
    color: var(--text-dark);
}

#cookie-settings-panel {
    border-top: 1px solid #eee;
}

#cookie-settings-panel input[type="checkbox"] {
    transform: scale(1.2);
    margin-right: 8px;
}

/* Responsive adjustments for Testimonials Slider */
@media screen and (min-width: 60em) { /* Tachyons 'l' breakpoint */
    .testimonials-track {
        width: 200%; /* For 4 slides, showing 3 at a time */
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) { /* Tachyons 'ns' breakpoint */
    .testimonials-track {
        width: 200%; /* For 4 slides, showing 2 at a time */
    }
}

@media screen and (max-width: 30em) { /* Mobile */
    .testimonials-track {
        width: 400%; /* For 4 slides, showing 1 at a time */
    }
}/* New styles for content within .complianceVaultNode */
.complianceVaultNode {
    /* Padding for the content block itself */
    padding-top: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 2rem; /* Added bottom padding for consistency */
}

/* Heading styles */
.complianceVaultNode h1 {
    font-size: 2rem; /* Moderate H1 size */
    font-weight: 700; /* Bold for main headings */
    line-height: 1.2;
    margin-top: 1.5rem; /* Space above heading */
    margin-bottom: 1rem; /* Space below heading */
    color: var(--text-dark); /* Use defined text color */
}

.complianceVaultNode h2 {
    font-size: 1.7rem; /* Moderate H2 size */
    font-weight: 600;
    line-height: 1.3;
    margin-top: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.complianceVaultNode h3 {
    font-size: 1.4rem; /* Moderate H3 size */
    font-weight: 600;
    line-height: 1.4;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.complianceVaultNode h4 {
    font-size: 1.2rem; /* Moderate H4 size */
    font-weight: 500;
    line-height: 1.5;
    margin-top: 0.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.complianceVaultNode h5 {
    font-size: 1rem; /* Moderate H5 size, same as body text */
    font-weight: 500;
    line-height: 1.6;
    margin-top: 0.7rem;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

/* Paragraph styles */
.complianceVaultNode p {
    font-size: 1rem; /* Standard paragraph text size */
    line-height: 1.6; /* Good readability for paragraphs */
    margin-bottom: 1rem; /* Space between paragraphs */
    color: var(--text-dark);
}

/* Unordered list styles */
.complianceVaultNode ul {
    list-style-type: disc; /* Standard disc bullet points */
    margin-left: 1.5rem; /* Indent for bullet points */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 0; /* Reset default padding */
    color: var(--text-dark);
}

/* List item styles */
.complianceVaultNode li {
    font-size: 1rem; /* List item text size */
    line-height: 1.6;
    margin-bottom: 0.5rem; /* Space between list items */
    color: var(--text-dark);
}

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 60em) { /* Tachyons 'ns' breakpoint */
    .complianceVaultNode {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .complianceVaultNode h1 {
        font-size: 1.8rem;
    }
    .complianceVaultNode h2 {
        font-size: 1.5rem;
    }
    .complianceVaultNode h3 {
        font-size: 1.3rem;
    }
}
