/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333333; /* Standard dark grey for text */
    background-color: #F8F9FA; /* Light grey background */
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: #2C3E50; /* Dark Blue/Charcoal for headings */
    font-weight: 700;
}

p {
    color: #555555; /* Slightly lighter grey for paragraph text */
}

a {
    color: #FFD700; /* Primary color for links */
    text-decoration: none;
}

a:hover {
    color: #E0B000; /* Darker shade on hover */
}

.text-primary {
    color: #FFD700 !important; /* Gold/Yellow */
}

.text-dark-blue {
    color: #2C3E50 !important; /* Dark Blue/Charcoal */
}

.text-accent {
    color: #27AE60 !important; /* Emerald Green */
}

.bg-light {
    background-color: #F8F9FA !important;
}

.bg-white {
    background-color: #FFFFFF !important;
}

.bg-light-alt {
    background-color: #F0F2F5 !important; /* Slightly darker light for alternating cards */
}

.custom-btn-primary {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #2C3E50; /* Dark text on yellow button */
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-btn-primary:hover {
    background-color: #E0B000;
    border-color: #E0B000;
    color: #2C3E50;
    transform: translateY(-2px);
}

.btn-outline-secondary {
    color: #2C3E50;
    border-color: #2C3E50;
}

.btn-outline-secondary:hover {
    background-color: #2C3E50;
    color: #FFFFFF;
}

/* Navbar */
.navbar {
    transition: background-color 0.3s ease;
}

.navbar-brand {
    color: #FFD700 !important;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #FFD700;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('media/graphics/for-fashionrelated-outfits-in-content-on-a-trendy-stylish-chicken-solid-background-posing.jpg'); /* Hero background image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    padding-top: 120px; /* Offset for fixed navbar */
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 0;
}

.hero-section h1 {
    font-size: 3.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

/* About Section - Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
    list-style: none;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: #FFD700; /* Primary color for timeline line */
    margin-left: -1.5px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}
@media screen and (width > 767px) {
    .timeline-item {
    width: 50%;
}

}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 50px;
}

.timeline-item:nth-child(odd) {
    /* right: 50%; */
    padding-right: 50px;
    text-align: right;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #2C3E50; /* Dark blue dot */
    border: 3px solid #FFD700; /* Primary color border */
    z-index: 1;
}

.timeline-item:nth-child(even)::before {
    left: 20px;
    margin-left: -10px;
}
@media screen and (width > 767px) {
    .timeline-item:nth-child(even)::before {
        left: 0;
    }
}

.timeline-item:nth-child(odd)::before {
    right: 0;
    margin-right: -10px;
}

.timeline-content {
    position: relative;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        margin-bottom: 30px;
    }
    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        left: 0;
        padding-left: 50px;
        padding-right: 0;
        text-align: left;
    }
    .timeline-item::before {
        left: 10px;
        margin-left: 0;
    }
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.service-card i {
    font-size: 3.5rem;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.feature-card i {
    font-size: 4rem;
}

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

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.team-avatar {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid #FFD700;
}

.social-icons a {
    font-size: 1.5rem;
    color: #2C3E50;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #FFD700;
}

/* Industries Section & FAQ Section (Accordion) */
.accordion-button {
    background-color: #FFFFFF;
    color: #2C3E50;
    font-weight: 600;
    padding: 1rem 1.25rem;
    border: none;
    box-shadow: none;
    transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #FFD700; /* Primary color when open */
    color: #2C3E50;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-item {
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-body {
    background-color: #F8F9FA;
    border-top: 1px solid rgba(0,0,0,.05);
}

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

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.event-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .event-img {
        border-radius: .375rem .375rem 0 0 !important;
    }
}

/* Testimonials Section */
.testimonial-card {
    border-radius: 8px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid #FFD700;
}

/* Contact Section */
.contact-info, .contact-form {
    border-radius: 8px;
}

.contact-info i {
    font-size: 1.2rem;
}

.form-control {
    border-color: #ced4da;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #333333;
}

.form-control:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

.form-control::placeholder {
    color: #999999;
}

.form-control:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control:invalid:not(:placeholder-shown) ~ .invalid-feedback {
    display: block;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 0.25rem;
}

/* Footer Section */
.footer-section {
    background-color: #2C3E50 !important; /* Dark Blue/Charcoal */
    color: #FFFFFF;
}

.footer-logo-link img {
    filter: brightness(0) invert(1); /* Make logo white for dark background */
}

.footer-contact a,
.policy-links a {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.footer-contact a:hover,
.policy-links a:hover {
    color: #FFD700;
}

.social-links a {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #FFD700;
}

/* Cookie Banner */
.cookie-banner {
    max-width: 350px;
    z-index: 1050;
    background-color: #FFFFFF;
    border: 1px solid rgba(0,0,0,.125);
}

.cookie-banner .card-title {
    color: #2C3E50;
}

.cookie-banner .card-text {
    color: #555555;
}

/* Modal specific styles for cookie consent */
#cookieConsentModal .modal-content {
    border-radius: 8px;
    border: none;
}

#cookieConsentModal .modal-header {
    border-bottom: 1px solid #eee;
}

#cookieConsentModal .modal-footer {
    border-top: 1px solid #eee;
}

#cookieConsentModal .form-check-input:checked {
    background-color: #FFD700;
    border-color: #FFD700;
}

#cookieConsentModal .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}
/* New stock styles for .legalDomeBlock and its child elements */
.legalDomeBlock {
    padding-top: 80px; /* Top padding for the section */
    padding-bottom: 80px; /* Bottom padding for the section */
    padding-left: 15px; /* Left padding for responsiveness */
    padding-right: 15px; /* Right padding for responsiveness */
}

/* Heading 1 styles within legalDomeBlock */
.legalDomeBlock h1 {
    font-size: 2.8rem; /* Moderate font size for H1 */
    margin-top: 0; /* No top margin for the first heading */
    margin-bottom: 1.5rem; /* Standard bottom margin */
    line-height: 1.2; /* Line height for readability */
}

/* Heading 2 styles within legalDomeBlock */
.legalDomeBlock h2 {
    font-size: 2.2rem; /* Moderate font size for H2 */
    margin-top: 2rem; /* Top margin for spacing from previous content */
    margin-bottom: 1.2rem; /* Standard bottom margin */
    line-height: 1.3;
}

/* Heading 3 styles within legalDomeBlock */
.legalDomeBlock h3 {
    font-size: 1.8rem; /* Moderate font size for H3 */
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Heading 4 styles within legalDomeBlock */
.legalDomeBlock h4 {
    font-size: 1.5rem; /* Moderate font size for H4 */
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

/* Heading 5 styles within legalDomeBlock */
.legalDomeBlock h5 {
    font-size: 1.2rem; /* Moderate font size for H5 */
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

/* Paragraph styles within legalDomeBlock */
.legalDomeBlock p {
    font-size: 1.1rem; /* Standard paragraph font size */
    margin-top: 0;
    margin-bottom: 1rem; /* Standard bottom margin for paragraphs */
    line-height: 1.7; /* Good line height for readability */
}

/* Unordered list styles within legalDomeBlock */
.legalDomeBlock ul {
    list-style: disc; /* Default disc bullet */
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 25px; /* Indent for list items */
}

/* List item styles within legalDomeBlock */
.legalDomeBlock li {
    font-size: 1.1rem; /* Font size for list items */
    margin-bottom: 0.5rem; /* Spacing between list items */
    line-height: 1.6;
}
#hero h1,
#hero p {
    color: #d5d1d1;
}
.footer-section p {
    color: #c5c2c2;
}