body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a0a2a;
    color: #e0e0e0;
    line-height: 1.6;
    box-sizing: border-box;
}

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

:root {
    --primary-purple: #6a0dad;
    --dark-purple: #2c0e4a;
    --light-purple: #3a1e5a;
    --accent-yellow: #fdd835;
    --accent-pink: #e91e63;
    --text-light: #e0e0e0;
    --text-muted-custom: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.1);
}

/* Global styles */
section {
    padding: 80px 0;
}

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

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

h1, h2, h3, h4, h5, h6 {
    color: var(--text-light);
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h4 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2rem; /* approx 32px */
    }
    h2 {
        font-size: 1.75rem; /* approx 28px */
    }
    h3 {
        font-size: 1.5rem; /* approx 24px */
    }
    h4 {
        font-size: 1.25rem; /* approx 20px */
    }
    .site-name, .site-name-footer {
        font-size: 1.25rem; /* approx 20px */
    }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
    h1 {
        font-size: 3.5rem; /* approx 56px */
    }
    h2 {
        font-size: 2.8rem; /* approx 45px */
    }
    h3 {
        font-size: 2.2rem; /* approx 35px */
    }
    h4 {
        font-size: 1.8rem; /* approx 29px */
    }
    .site-name, .site-name-footer {
        font-size: 1.8rem; /* approx 29px */
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 4.5rem; /* approx 72px */
    }
    h2 {
        font-size: 3.5rem; /* approx 56px */
    }
    h3 {
        font-size: 2.5rem; /* approx 40px */
    }
    h4 {
        font-size: 2rem; /* approx 32px */
    }
    .site-name, .site-name-footer {
        font-size: 2rem; /* approx 32px */
    }
}

.text-accent {
    color: var(--accent-yellow);
}

.text-muted-custom {
    color: var(--text-muted-custom);
}

.btn-primary {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: #1a0a2a;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #fdd835e0;
    border-color: #fdd835e0;
    color: #1a0a2a;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
    color: var(--text-light);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #5a0a9d;
    border-color: #5a0a9d;
    color: var(--text-light);
    transform: translateY(-2px);
}

.custom-cta-btn {
    display: inline-block;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

/* Navbar */
.navbar {
    background-color: var(--dark-purple);
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand .logo-img {
    height: 40px;
    width: auto;
}

.navbar-brand .site-name {
    font-weight: 700;
    color: var(--text-light);
}

.navbar-nav .nav-link {
    color: var(--text-light);
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-yellow);
}

.navbar-toggler {
    border-color: var(--border-color);
}

.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%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas {
    background-color: var(--dark-purple);
    color: var(--text-light);
}

.offcanvas-header {
    border-bottom: 1px solid var(--border-color);
}

.offcanvas-title {
    color: var(--text-light);
}


@media (max-width: 1199.98px) {
    .navbar-collapse {
        display: none !important;
    }
    .navbar-toggler {
        display: block;
    }
}

@media (min-width: 1200px) {
    .navbar-toggler {
        display: none;
    }
    .offcanvas {
        visibility: hidden;
        transform: translateX(100%);
    }
    .navbar-nav {
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('assets/graphics/stock-market-background.png') no-repeat center center/cover;
    padding-top: 100px;
    padding-bottom: 50px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 14, 74, 0.6);
    z-index: 0;
}

.hero-section .feature-block {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
    max-width: 350px;
}

.hero-section .feature-block:hover {
    transform: translateY(-10px);
}

.hero-section .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--accent-yellow);
    background-color: rgba(253, 216, 53, 0.2);
    color: var(--accent-yellow);
}

/* About Us: Faces & Voices */
#about {
    background-color: var(--dark-purple);
}

.team-card {
    background-color: var(--light-purple);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.team-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--accent-yellow);
}

.blockquote-custom {
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-pink);
}

/* Our Services */
#services {
    background-color: #1a0a2a;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.icon-gradient-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-pink), var(--primary-purple));
}

/* Key Features */
.feature-item {
    background-color: var(--light-purple);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

/* Our Leadership Team */
.leadership-card {
    background-color: var(--light-purple);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.leadership-card-main {
    background-color: var(--primary-purple);
    border: 2px solid var(--accent-yellow);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.team-avatar-small {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 2px solid var(--accent-yellow);
}

.team-avatar-large {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--accent-yellow);
}

/* Industries We Serve */
.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    background-color: var(--light-purple);
    border: 1px solid var(--border-color);
    border-bottom: none;
    color: var(--text-muted-custom);
    margin-right: 5px;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    padding: 10px 20px;
}

.nav-tabs .nav-link:hover {
    color: var(--text-light);
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.nav-tabs .nav-link.active {
    background-color: var(--primary-purple);
    color: var(--text-light);
    border-color: var(--primary-purple);
    border-bottom-color: var(--primary-purple);
}

.tab-content {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
    border-color: var(--primary-purple) !important;
}

.tab-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 15px;
}

.tab-content ul li {
    margin-bottom: 5px;
    color: var(--text-white-50);
}

/* Careers at Equitronix */
#careers {
    background-color: #1a0a2a;
}

.job-card {
    background-color: var(--light-purple);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.job-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.job-tag-urgent {
    background-color: var(--accent-pink);
}

/* Contact Form */
.contact-form-container {
    background-color: var(--light-purple);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 10px 15px;
    border-radius: 8px;
}

.form-control::placeholder {
    color: var(--text-muted-custom);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 0.25rem rgba(253, 216, 53, 0.25);
    color: var(--text-light);
}

.form-label {
    font-weight: 600;
}

.invalid-feedback {
    color: var(--accent-pink);
}

/* Footer */
footer {
    background-color: var(--dark-purple);
    border-top: 1px solid var(--border-color);
}

.footer-brand .logo-img-footer {
    height: 35px;
    width: auto;
}

.footer-brand .site-name-footer {
    font-weight: 700;
    color: var(--text-light);
    font-size: 1.5rem;
}

.footer-link {
    color: var(--text-muted-custom);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-yellow);
}

footer .list-inline-item:not(:last-child)::after {
    content: '|';
    margin: 0 8px;
    color: var(--text-muted-custom);
}
/* Styles for the parent container */
.consentTunnelGrid {
    padding: 30px 20px; /* Top/bottom padding 30px, left/right 20px */
    /* You might want to add max-width and margin: 0 auto; here for centering,
       but the request only specified padding for consentTunnelGrid itself. */
}

/* Heading styles for h1-h5 within the consent tunnel */
.consentTunnelGrid h1 {
    font-size: 2.2rem; /* Moderate size for main heading */
    margin-bottom: 1.2rem; /* Space below heading */
    line-height: 1.2; /* Improve readability */
    font-weight: 700; /* Bold */
}

.consentTunnelGrid h2 {
    font-size: 1.8rem; /* Slightly smaller than h1 */
    margin-bottom: 1rem; /* Space below heading */
    line-height: 1.3;
    font-weight: 600;
}

.consentTunnelGrid h3 {
    font-size: 1.5rem; /* Standard sub-heading size */
    margin-bottom: 0.8rem; /* Space below heading */
    line-height: 1.4;
    font-weight: 500;
}

.consentTunnelGrid h4 {
    font-size: 1.2rem; /* Smaller sub-heading */
    margin-bottom: 0.6rem; /* Space below heading */
    line-height: 1.5;
    font-weight: 500;
}

.consentTunnelGrid h5 {
    font-size: 1.1rem; /* Smallest heading, often used for minor details */
    margin-bottom: 0.5rem; /* Space below heading */
    line-height: 1.5;
    font-weight: 400; /* Can be less bold */
}

/* Paragraph styles */
.consentTunnelGrid p {
    font-size: 1rem; /* Standard paragraph font size */
    line-height: 1.6; /* Good line height for readability */
    margin-bottom: 1rem; /* Space between paragraphs */
}

/* Unordered list styles */
.consentTunnelGrid ul {
    list-style: disc; /* Default bullet style */
    margin-bottom: 1rem; /* Space below the entire list */
    padding-left: 25px; /* Indent for bullet points */
}

/* List item styles */
.consentTunnelGrid li {
    font-size: 1rem; /* Standard list item font size */
    line-height: 1.5; /* Line height for list items */
    margin-bottom: 0.5rem; /* Space between list items */
}

/* Remove bottom margin from the last list item to prevent extra space */
.consentTunnelGrid li:last-child {
    margin-bottom: 0;
}

/* Remove bottom margin from the last paragraph to prevent extra space */
.consentTunnelGrid p:last-child {
    margin-bottom: 0;
}


.filter-list-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;


    .nav-tabs .nav-link {
        border-radius: 8px;
    }
}

@media screen and (min-width:575px) {
    .filter-list-wrapper {
        flex-direction: row;
    }
}



.big-top-p {
    padding-top: 100px;
}