html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #131313;
    color: #fff;
    padding: 1.25rem 1.5rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.3);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.cookie-banner-text {
    margin: 0;
    flex: 1;
    min-width: 200px;
    line-height: 1.6;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    cursor: pointer;
}

.cookie-btn-decline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 0.5rem 1.1rem;
}

.cookie-btn-accept {
    background: #ed507e;
    border: none;
    color: #fff;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    min-height: 100vh;
    padding: 0;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.masthead {
    background: #ed507e;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}



.text-primary {
    color: #ed507e !important;
}

/* Scattered symbol overlay in masthead and contact section — generated by JS */
.masthead,
#contact {
    position: relative;
    overflow: hidden;
}

.masthead .deco-symbols-svg,
#contact .deco-symbols-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.masthead .container,
#contact .container {
    position: relative;
    z-index: 1;
}

.masthead .section-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.masthead-logo {
    height: 2em;
    position: relative;
    top: -0.1em;
}

.site-dark-bg {
    background-color: #131313;
}

.navbar-logo {
    height: 30px;
}

.navbar-nav .nav-link {
    color: #fff;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    font-size: 0.7rem;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .navbar-logo {
        height: 40px;
    }

    .navbar-nav .nav-link {
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 1rem;
    }
}

.navbar-nav .nav-link.active {
    color: #ed507e;
}


.intro-copy {
    font-size: 1.1rem;
    line-height: 1.8;
}

.team-cards {
    gap: 6rem;
}

.bg-primary {
    background-color: #ed507e !important;
}

.btn-primary {
    --bs-btn-bg: #ed507e;
    --bs-btn-border-color: #ed507e;
    --bs-btn-hover-bg: #f27ea0;
    --bs-btn-hover-border-color: #f27ea0;
    --bs-btn-active-bg: #d63f6a;
    --bs-btn-active-border-color: #d63f6a;
    --bs-btn-focus-shadow-rgb: 237, 80, 126;
    --bs-btn-disabled-bg: #ed507e;
    --bs-btn-disabled-border-color: #ed507e;
    background-color: #ed507e;
    border-color: #ed507e;
}

.btn-primary:hover {
    background-color: #f27ea0;
    border-color: #f27ea0;
}

.beter {
    color: #ed507e;
    font-weight: 700;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ed507e;
    margin-bottom: 10px;
}

.expertise-card {
    border: 2px solid rgba(237, 80, 126, 0.3);
    border-radius: 8px;
    min-height: 280px;
}

.expertise-card img {
    max-height: 3.5rem;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.expertise-icon {
    font-size: 2.5rem;
}

.usp-icon {
    font-size: 1.75rem;
}

.service-icon {
    font-size: 1.5rem;
    margin-top: 2px;
}

.partner-card {
    border: 2px solid rgba(237, 80, 126, 0.15);
    border-radius: 12px;
    min-height: 280px;
    background: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,.15);
    border-color: #ed507e;
}

.partner-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    margin-bottom: 0.75rem;
}

.partner-logo {
    max-width: 320px;
    max-height: 150px;
    width: auto;
    height: auto;
}

.partner-logo-sm {
    max-width: 220px;
}

.partner-visit {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ed507e;
    letter-spacing: 0.02em;
}

.partner-visit i {
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-visit i {
    transform: translate(3px, -3px);
}

.usp-card {
    padding: 32px 28px;
    border-left: 3px solid #ed507e;
    height: 100%;
}

.usp-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-card {
    text-align: center;
    width: 200px;
}

.team-name {
    color: #ed507e;
}

.team-linkedin {
    color: #ed507e;
    opacity: 0.7;
    margin-left: 4px;
    transition: opacity 0.2s ease;
}

.team-linkedin:hover {
    opacity: 1;
}

.team-photo-wrap {
    width: 160px;
    height: 213px; /* 3:4 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 14px;
    border: 2px solid rgba(237,80,126,0.4);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.team-info {
    padding: 0 4px;
}

.team-bio {
    font-style: italic !important;
    margin-top: 6px;
}

.masthead img {
    max-width: 360px;
}

/* Custom Accordion Styling (Pink) */
.accordion-button:not(.collapsed) {
    color: #ed507e;
    background-color: rgba(237, 80, 126, 0.1);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.accordion-button:focus {
    border-color: #f27ea0;
    box-shadow: 0 0 0 0.25rem rgba(237, 80, 126, 0.25);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ed507e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Tech Showcase Styles */
.tech-showcase {
    background: #131313;
}

.tech-showcase .section-label {
    color: rgba(255, 255, 255, 0.85);
}

.tech-ticker {
    overflow: hidden;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.tech-ticker-track {
    display: flex;
    align-items: flex-start;
    width: max-content;
    gap: 2.25rem;
    padding: 0 1.125rem;
    will-change: transform;
    touch-action: pan-y;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.tech-ticker-track.is-dragging {
    cursor: grabbing;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    width: 68px;
    flex-shrink: 0;
    text-decoration: none;
}

.tech-logo {
    height: 32px;
    width: auto;
    opacity: 1;
}

.tech-logo-name {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #fff;
    opacity: 0.75;
    text-align: center;
}

/* Certification Badges */
.cert-badges {
    gap: 1.5rem 3rem;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 90px;
}

.cert-logo {
    height: 72px;
    width: auto;
    max-width: 90px;
}

.cert-logo-name {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #6c757d;
}

/* Scroll-in animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: calc(var(--aos-delay, 0) * 1ms);
}

[data-aos="fade-up"] {
    transform: translateY(24px);
}

[data-aos="zoom-in"] {
    transform: scale(0.92);
}

[data-aos].aos-in {
    opacity: 1;
    transform: none;
}

