/* ============================================
   SecurXcess Clone - Main Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #333;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-red {
    color: #eb1c24;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 10px 30px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-red {
    background: #eb1c24;
    color: #fff;
}

.btn-red:hover {
    background: #c9171e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(235, 28, 36, 0.4);
}

.btn-lg {
    padding: 14px 40px;
    font-size: 16px;
}

/* --- Section --- */
.section {
    padding: 80px 0;
}

.section-heading {
    font-family: 'Prompt', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav .nav-list a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.main-nav .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #eb1c24;
    transition: width 0.3s ease;
}

.main-nav .nav-list a:hover::after {
    width: 100%;
}

.main-nav .has-dropdown {
    position: relative;
}

.main-nav .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    min-width: 180px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 2px solid #eb1c24;
}

.main-nav .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .dropdown a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    text-transform: none;
}

.main-nav .dropdown a::after {
    display: none;
}

.main-nav .dropdown a:hover {
    background: rgba(235, 28, 36, 0.1);
    color: #eb1c24;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-contact a {
    color: #fff;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.header-contact a:hover {
    background: #eb1c24;
    border-color: #eb1c24;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 0, 22, 0.6);
}

.slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 80px;
}

.slide-content-split {
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.slide-left {
    flex: 1;
}

.slide-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.slide-event-logo {
    max-width: 200px;
    margin-bottom: 30px;
}

.slide-event-img {
    max-width: 100%;
    max-height: 500px;
}

.slide-overline {
    font-family: 'Prompt', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #eb1c24;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.slide-title {
    font-family: 'Prompt', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 4rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.slide-text {
    font-size: 1rem;
    color: #fff;
    max-width: 600px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(235, 28, 36, 0.8);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #eb1c24;
    border-color: #eb1c24;
}

.dot:hover {
    background: rgba(235, 28, 36, 0.7);
    border-color: rgba(235, 28, 36, 0.7);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.section-features {
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-lottie {
    display: flex;
    justify-content: center;
}

.features-text .section-heading {
    margin-bottom: 25px;
}

.features-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ============================================
   CYBERSECURITY MODEL SECTION
   ============================================ */
.section-model {
    background: #f8f8f8;
}

.model-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.model-text .section-heading {
    margin-bottom: 25px;
}

.model-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.model-lottie {
    display: flex;
    justify-content: center;
}

/* ============================================
   SHIELD GRAPHIC FALLBACK (Lottie replacement)
   ============================================ */
.shield-graphic {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-graphic-lg {
    max-width: 500px;
}

.shield-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(64, 39, 74, 0.15);
}

.shield-ring-1 {
    width: 74%;
    height: 74%;
    animation: shield-spin 16s linear infinite;
}

.shield-ring-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    border-radius: 50%;
    background: #eb1c24;
    box-shadow: 0 0 0 4px rgba(235, 28, 36, 0.15);
}

.shield-ring-2 {
    width: 96%;
    height: 96%;
    border-style: dashed;
    border-color: rgba(235, 28, 36, 0.35);
    animation: shield-spin 30s linear infinite reverse;
}

.shield-icon {
    font-size: 88px;
    color: #40274a;
    position: relative;
    z-index: 1;
}

.shield-graphic-lg .shield-icon {
    font-size: 104px;
}

@keyframes shield-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   SOC SECTION
   ============================================ */
.section-soc {
    background: #fff;
}

.soc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.soc-video video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.soc-text .section-heading {
    margin-bottom: 25px;
}

.soc-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ============================================
   WHY TRUST US SECTION
   ============================================ */
.section-trust {
    background: #1a1a2e;
    color: #fff;
}

.trust-header {
    text-align: center;
    margin-bottom: 50px;
}

.trust-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #ccc;
}

.values-title {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.value-card img {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.value-card h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #fff;
}

.accreditations {
    text-align: center;
}

.accreditations h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 30px;
}

.accreditation-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.accreditation-logos img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.accreditation-logos img:hover {
    opacity: 1;
}

/* ============================================
   PARTNERS & CUSTOMERS SECTION
   ============================================ */
.section-partners {
    background: #fff;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.partners-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
}

.partners-gallery img {
    width: 100%;
    aspect-ratio: 21/9;
    object-fit: contain;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.partners-gallery img:hover {
    background: #f0f0f0;
    transform: scale(1.02);
}

.partners-text .section-heading {
    margin-bottom: 20px;
}

.partners-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

/* --- Customer Carousels --- */
.customers-section {
    padding-top: 20px;
}

.customer-carousel {
    overflow: hidden;
    margin-top: 30px;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 40px;
    animation: scrollLeft 20s linear infinite;
}

.carousel-track-reverse {
    animation: scrollRight 20s linear infinite;
}

.carousel-track img {
    flex-shrink: 0;
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.carousel-track img:hover {
    filter: grayscale(0%);
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ============================================
   LET'S TALK CTA SECTION
   ============================================ */
.section-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 100px 0;
}

.section-cta .section-heading {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-weight: 400;
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 35px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #111;
    color: #ccc;
}

.footer-upper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 60px 20px;
}

.footer-title {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #eb1c24;
}

.footer-address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.8;
    color: #999;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 13px;
    color: #666;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #eb1c24;
    border-color: #eb1c24;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .features-grid,
    .model-grid,
    .soc-grid,
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .slide-content-split {
        flex-direction: column;
        text-align: center;
    }

    .slide-right {
        justify-content: center;
    }

    .slide-event-logo {
        margin: 0 auto 30px;
    }

    .footer-upper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav.open {
        display: block;
    }

    .main-nav .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .main-nav .nav-list a {
        display: block;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .main-nav .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.5);
        border-top: none;
        padding-left: 20px;
    }

    .burger {
        display: flex;
    }

    .header-contact {
        gap: 8px;
    }

    .header-contact a {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-upper {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .partners-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 60px 0;
    }

    .section-cta {
        padding: 60px 0;
    }

    .section-cta .section-heading {
        font-size: 2rem;
    }

    .accreditation-logos img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        height: 65px;
    }

    .logo img {
        height: 40px;
    }

    .hero-slider {
        min-height: 500px;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .partners-gallery {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   INNER PAGES (added for sub-pages)
   ============================================ */

.page-wrap {
    min-height: 50vh;
}

.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 180px 0 90px;
    text-align: center;
}

.page-hero .section-heading {
    margin-bottom: 0;
}

/* --- Services hero (matches original SECTION-BG-03) --- */
.services-hero {
    background: #eb1c24 url('../assets/images/pages/SECTION-BG-03.jpg') top center / cover no-repeat;
    color: #40274a;
}

.services-hero .svc-page-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
}

@media (min-width: 993px) {
    .services-hero {
        background-attachment: fixed;
    }
}

.page-hero .page-lead {
    max-width: 720px;
    margin: 20px auto 0;
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- Company stats --- */
.company-body {
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    text-align: center;
    padding: 35px 20px;
    background: #f8f8f8;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.stat-card img {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    object-fit: contain;
}

.stat-card h3 {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
}

/* --- Service rows (matches original 1/3 image + 2/3 text) --- */
.service-row {
    display: grid;
    grid-template-columns: 32% 66%;
    gap: 0 2%;
    align-items: center;
    margin-bottom: 2em;
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-img {
    padding: 1em;
    line-height: 0;
}

.service-img img {
    width: 91%;
    max-width: 91%;
    height: auto;
}

.service-img.img-end {
    text-align: end;
}

.service-body {
    padding: 1em;
}

.service-title {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 2em;
    line-height: 1.2;
    color: #40274a;
    margin-bottom: 0.5em;
}

.service-title.align-start {
    text-align: start;
}

.service-title.align-end {
    text-align: end;
}

.service-body p {
    font-family: 'Prompt', sans-serif;
    font-size: 1em;
    color: #40274a;
    line-height: 1.7;
    margin-bottom: 1.2em;
}

.btn-readmore {
    background: transparent;
    color: #eb1c24;
    border: 1px solid #eb1c24;
    border-radius: 0;
    padding: 10px 50px;
}

.btn-readmore:hover {
    background: #eb1c24;
    color: #fff;
}

/* --- Company page (matches original) --- */
.company-banner {
    min-height: 210px;
    background: url('../assets/images/pages/COMPANY-BANNER-03.jpg') top center / cover no-repeat;
}

.company-intro {
    background: url('../assets/images/pages/SECTION-BG-03.jpg') top center / cover no-repeat;
    padding: 4em 0 6em;
}

@media (min-width: 993px) {
    .company-intro {
        background-attachment: fixed;
    }
}

.company-title {
    font-family: 'Prompt', sans-serif;
    font-weight: 800;
    font-size: 3.5em;
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
    color: #40274a;
    margin-bottom: 0.6em;
}

.company-lead {
    font-family: 'Prompt', sans-serif;
    font-size: 1em;
    text-align: center;
    color: #40274a;
    margin: 0 140px;
}

.company-lead p + p {
    margin-top: 1em;
}

.company-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    padding-top: 2em;
}

.company-card {
    flex: 1 1 20%;
    max-width: 20%;
    min-height: 17vh;
    background: #F5F5F5 url('../assets/images/pages/SOC-04.png');
    border-radius: 8px;
    box-shadow: 0 0 15px 0 rgba(255, 0, 0, 0.49);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 3em 2em;
    transition: background 0.3s, box-shadow 0.3s, transform 0.5s;
}

.company-card:hover {
    background: #fff url('../assets/images/pages/SOC-04.png');
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.5);
    transform: translateY(-1px);
}

.company-card img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.company-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.7em;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    color: #40274a;
    margin: 0;
}

.card-divider {
    display: block;
    height: 3px;
    width: 30%;
    border-top: 2px dashed #eb1c24;
    transition: width 0.8s ease-in-out;
}

.company-card:hover .card-divider {
    width: 100%;
}

/* --- SOC page --- */
.soc-hero {
    background: url('../assets/images/pages/SECTION-BG-03.jpg') top center / cover no-repeat;
    padding: 180px 0 0;
}

@media (min-width: 993px) {
    .soc-hero {
        background-attachment: fixed;
    }
}

.soc-title {
    text-align: center;
    font-family: 'Prompt', sans-serif;
    font-size: 2.5em;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1em;
    color: #40274a;
    padding: 40px 0;
}

.soc-video {
    padding: 0 0 40px;
}

.soc-video-frame {
    width: 100%;
    aspect-ratio: 21 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.5);
}

.soc-video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.soc-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 40px;
    padding: 30px 0 40px;
}

.soc-img {
    flex: 0 0 34%;
    max-width: 34%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.soc-img img {
    width: 100%;
    height: auto;
}

.soc-text {
    flex: 1 1 500px;
    min-width: 300px;
    font-family: 'Prompt', sans-serif;
    color: #40274a;
}

.soc-text h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2em;
    font-weight: 700;
    color: #eb1c24;
    margin-bottom: 0.5em;
}

.soc-text p {
    margin-bottom: 1em;
    color: #40274a;
}

.soc-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 20px 0 60px;
}

.soc-feat {
    flex: 1 1 0;
    max-width: 20%;
    min-height: 17vh;
    background: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 11px;
    padding: 3em 2em;
    text-align: center;
    font-family: 'Prompt', sans-serif;
    color: #40274a;
    transition: background 0.3s, box-shadow 0.3s, transform 0.5s;
}

.soc-feat:hover {
    background: #fff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.5);
    transform: translateY(-1px);
}

.soc-feat-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.soc-feat-icon svg {
    width: 60px;
    height: 60px;
    fill: #eb1c24;
}

.soc-feat h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 2em;
    font-weight: 700;
    line-height: 1.1;
    color: #40274a;
    margin: 0;
}

.soc-feat:hover .card-divider {
    width: 100%;
}

/* --- Insights page (matches original) --- */
.insight-banner {
    min-height: 200px;
    background: url('../assets/images/pages/INSIGHT.jpg') top center / cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 110px 0 35px;
}

.insight-banner .banner-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5em;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1em;
    color: #fff;
}

.insight-posts {
    background: url('../assets/images/pages/SECTION-BG-03.jpg') top center / cover no-repeat;
    padding: 3em 0;
}

.insight-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.insight-loop {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.insight-loop:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.insight-body {
    flex: 0 0 75%;
    max-width: 75%;
    padding: 29px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.insight-cat {
    font-family: 'Prompt', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d3bfe9;
}

.insight-title {
    font-family: 'Prompt', sans-serif;
    font-size: 26px;
    line-height: 27px;
    color: #40274a;
    margin: 0;
}

.insight-title a {
    color: inherit;
}

.insight-title a:hover,
.insight-more:hover {
    color: #c9171e;
}

.insight-excerpt {
    font-family: 'Prompt', sans-serif;
    font-size: 1em;
    color: #40274a;
    text-align: left;
    margin: 0;
}

.insight-more {
    font-family: 'Prompt', sans-serif;
    color: #eb1c24;
}

.insight-thumb {
    flex: 0 0 25%;
    max-width: 25%;
    min-height: 243px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.insight-thumb img {
    width: 100%;
    height: 242px;
    object-fit: contain;
    object-position: center left;
}

/* --- Events page (matches original) --- */
.events-banner {
    min-height: 200px;
    background: url('../assets/images/pages/THREAT-INTELLIGENCE-PLATFORM-05.jpg') top center / cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 110px 0 35px;
}

.events-banner .banner-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5em;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1em;
    color: #fff;
}

.news-banner {
    min-height: 200px;
    background: url('../assets/images/pages/THREAT-INTELLIGENCE-PLATFORM-05.jpg') top center / cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 110px 0 35px;
}

.news-banner .banner-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5em;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1em;
    color: #fff;
}

/* --- Careers page (matches original) --- */
.careers-banner {
    min-height: 200px;
    background: url('../assets/images/pages/SOC-BANNER.jpg') top center / cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 110px 0 35px;
}

.careers-banner .banner-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5em;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1em;
    color: #fff;
}

.careers-banner .banner-title .text-red {
    color: #ed1c24;
}

.careers-posts {
    background: url('../assets/images/pages/SECTION-BG-03.jpg') top center / cover no-repeat;
    padding: 3em 0;
}

.careers-jobs {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 1080px;
    margin: 0 auto;
}

.careers-job {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 50px;
}

.careers-job-icon {
    flex: 0 0 auto;
    width: 110px;
    text-align: center;
}

.careers-job-icon img {
    max-width: 100%;
    height: auto;
}

.careers-job-text {
    flex: 1 1 auto;
    min-width: 0;
}

.careers-job-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #40274a;
    margin: 0 0 0.6em;
}

.careers-job-desc {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    color: #40274a;
    margin: 0;
}

.careers-job-action {
    flex: 0 0 auto;
}

.careers-more {
    display: inline-block;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #eb1c24;
    color: #fff;
    border: 1px solid #eb1c24;
    border-radius: 0;
    padding: 1em;
    transition: all 0.3s ease;
}

.careers-more:hover {
    background: #fff;
    color: #eb1c24;
}

.events-posts {
    background: url('../assets/images/pages/SECTION-BG-03.jpg') top center / cover no-repeat;
    padding: 3em 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 30px;
}

.event-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.event-card:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.event-thumb {
    width: 100%;
}

.event-thumb img {
    width: 100%;
    height: 195px;
    object-fit: cover;
    object-position: center center;
    border-radius: 8px 8px 0 0;
    filter: saturate(30%);
    transition: filter 0.3s ease;
}

.event-card:hover .event-thumb img {
    filter: saturate(100%);
}

.event-tag {
    font-family: 'Prompt', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #d3bfe9;
    padding: 0 1rem;
    margin-top: 1em;
}

.event-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #40274a;
    padding: 0 1rem;
    margin: 0.5em 0 0;
}

.event-date {
    font-family: 'Prompt', sans-serif;
    font-size: 1em;
    color: #40274a;
    padding: 0 1rem;
    margin: 0.25em 0 0;
}

.event-more {
    font-family: 'Prompt', sans-serif;
    color: #eb1c24;
    padding: 0 1rem 1rem;
    margin-top: 0.5em;
}

.event-more:hover {
    color: #c9171e;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.tech-card {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 26px;
    display: flex;
    flex-direction: column;
}

.tech-card h4 {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #222;
}

.tech-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.tech-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* --- Article / Event / News cards --- */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.article-card {
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}

.article-card .article-thumb {
    overflow: hidden;
}

.article-card .article-thumb img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-thumb img {
    transform: scale(1.05);
}

.article-card .article-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-card .article-cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #eb1c24;
    font-weight: 600;
    margin-bottom: 8px;
}

.article-card h3 {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #222;
}

.article-card h3 a:hover { color: #eb1c24; }

.article-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    flex: 1;
}

.article-card .article-meta {
    font-size: 0.8rem;
    color: #999;
    margin-top: 12px;
}

.event-card .article-body .article-meta i { color: #eb1c24; margin-right: 4px; }

/* --- Job cards --- */
.job-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.job-card {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}

.job-card img {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    object-fit: contain;
}

.job-card h3 {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #222;
    line-height: 1.4;
}

.job-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.job-card .btn {
    align-self: center;
}

/* --- Press release --- */
/* --- Press Release page (matches original) --- */
.press-banner {
    min-height: 200px;
    background: url('../assets/images/pages/SOC-BANNER.jpg') top center / cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 110px 0 35px;
}

.press-banner .banner-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5em;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1em;
    color: #fff;
}

.press-posts {
    padding: 3em 0;
}

.press-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px 30px;
}

.press-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.press-card:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.press-thumb {
    aspect-ratio: 3 / 2;
}

.press-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.press-body {
    padding: 29px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1 1 auto;
}

.press-date {
    font-family: 'Prompt', sans-serif;
    font-size: 0.85rem;
    color: #40274a;
}

.press-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    color: #40274a;
    margin: 0;
}

.press-title a {
    color: inherit;
}

.press-title a:hover {
    color: #c9171e;
}

.press-excerpt {
    font-family: 'Prompt', sans-serif;
    font-size: 1em;
    color: #40274a;
    margin: 0;
}

.press-more {
    font-family: 'Prompt', sans-serif;
    color: #eb1c24;
    margin-top: 6px;
}

.press-more:hover {
    color: #c9171e;
}

/* --- WBS --- */
.wbs-banner {
    min-height: 200px;
    background: url('../assets/images/pages/SOC-BANNER.jpg') top center / cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 110px 0 35px;
}

.wbs-banner .banner-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5em;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1em;
    color: #fff;
}

.wbs-posts {
    padding: 40px 0;
}

.wbs-box {
    max-width: 780px;
    margin: 0 auto;
}

.wbs-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1em;
    line-height: 1.8;
    color: #40274a;
    margin: 0 0 1em;
}

.wbs-text a {
    color: #eb1c24;
}

.wbs-email {
    margin-bottom: 0.4em;
}

.wbs-btn {
    display: inline-block;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #fff;
    color: #eb1c24;
    border: 1px solid #eb1c24;
    border-radius: 0;
    padding: 1em;
    margin: 10px 0 20px;
    transition: all 0.3s ease;
}

.wbs-btn:hover {
    background: #eb1c24;
    color: #fff;
}

.wbs-conf-heading {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    color: #40274a;
    margin: 2em 0 0.6em;
}

/* --- Lets Talk page (matches original) --- */
.lets-banner {
    min-height: 210px;
    background: url('../assets/images/pages/LETS-TALK-02.jpg') top center / cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 110px 0 35px;
}

.lets-banner .banner-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5em;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1em;
    color: #fff;
}

.lets-intro {
    background: url('../assets/images/pages/SECTION-BG-03.jpg') top center / cover no-repeat;
    padding-top: 3em;
}

.lets-title-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.lets-title {
    text-align: center;
    font-family: 'Prompt', sans-serif;
    font-size: 2.5em;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1em;
    color: #40274a;
}

.lets-form-sec {
    background: url('../assets/images/pages/SECTION-BG-03.jpg') top center / cover no-repeat;
    padding: 0 0 2em;
}

.lets-inner {
    max-width: 720px;
    margin: 0 auto;
}

.lets-form-sec .form-row {
    margin-bottom: 12px;
}

.lets-form-sec label {
    display: block;
    font-family: 'Prompt', sans-serif;
    font-size: 1em;
    color: #40274a;
    padding-bottom: 8px;
}

.lets-form-sec input,
.lets-form-sec select,
.lets-form-sec textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #CFCFCF;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    color: #40274a;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lets-form-sec textarea {
    resize: vertical;
}

.lets-form-sec input:focus,
.lets-form-sec select:focus,
.lets-form-sec textarea:focus {
    border-color: #eb1c24;
    outline: none;
}

.lets-form-sec .lets-submit {
    width: 100%;
    border-radius: 0;
    text-transform: none;
    letter-spacing: 0;
}

.lets-form-sec .form-msg + form { margin-top: 16px; }

.lets-info {
    background: url('../assets/images/pages/SECTION-BG-03.jpg') top center / cover no-repeat;
    padding: 8em 0 7em;
}

.lets-info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 46px;
}

.lets-address {
    flex: 0 0 25%;
    max-width: 25%;
}

.lets-address h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #40274a;
    margin-bottom: 1em;
}

.lets-address p {
    font-family: 'Prompt', sans-serif;
    font-size: 1em;
    color: #40274a;
    line-height: 1.7;
}

.lets-map {
    flex: 0 0 75%;
    max-width: 75%;
}

.lets-map iframe {
    width: 100%;
    height: 402px;
    border: 0;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(295deg);
    transition: filter 0.3s ease;
}

.lets-map:hover iframe {
    filter: brightness(100%) contrast(97%) saturate(80%) blur(0px) hue-rotate(0deg);
}

@media (min-width: 993px) {
    .lets-intro,
    .lets-form-sec,
    .lets-info {
        background-attachment: fixed;
    }
    .insight-posts,
    .events-posts {
        background-attachment: fixed;
    }
}

.form-msg {
    display: none;
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
}

.form-msg.success { background: #edfaef; border-left: 4px solid #00a32a; color: #008a20; }

/* --- Library download --- */
.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.download-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
}

.download-card i {
    font-size: 3rem;
    color: #eb1c24;
    margin-bottom: 16px;
}

.download-card h3 {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #222;
}

.download-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* --- CTA banner (matches original LETS-TALK section) --- */
.cta-banner {
    background: url('../assets/images/pages/LETS-TALK.jpg') center center / cover no-repeat;
    color: #fff;
    min-height: 277px;
    padding: 3em 0;
    display: flex;
    align-items: center;
}

.cta-banner .container {
    width: 100%;
    text-align: left;
}

.cta-banner h2 {
    font-family: 'Prompt', sans-serif;
    font-weight: 800;
    font-size: 3.5em;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: 1.9px;
    margin-bottom: 15px;
    color: #fff;
}

.cta-banner p {
    font-family: 'Prompt', sans-serif;
    font-weight: 300;
    font-size: 27px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
}

.cta-banner .btn {
    padding: 10px 50px;
    border-radius: 0;
}

/* --- Responsive for inner pages --- */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
    .tech-grid,
    .article-grid,
    .job-grid,
    .press-grid { grid-template-columns: 1fr 1fr; }
    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .service-title { font-size: 1.6em; }
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr; }
    .soc-hero { padding: 150px 0 0; }
    .soc-main { flex-direction: column; }
    .soc-img { flex: 0 0 100%; max-width: 100%; }
    .soc-text { flex: 1 1 100%; }
    .soc-text h2,
    .soc-title { text-align: center; }
    .soc-text p { text-align: justify; }
    .soc-feat { flex: 1 1 100%; max-width: 100%; min-height: 15vh; padding: 2em; }
    .soc-feat h3 { font-size: 1.8em; }
    .tech-grid,
    .article-grid,
    .job-grid,
    .download-grid { grid-template-columns: 1fr; }
    .press-banner { min-height: 150px; padding: 90px 0 20px; }
    .press-banner .banner-title { font-size: 2em; }
    .press-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-grid { gap: 30px; }

    .lets-banner { min-height: 150px; padding: 90px 0 20px; }
    .lets-banner .banner-title { font-size: 2em; }

    .wbs-banner { min-height: 150px; padding: 90px 0 20px; }
    .wbs-banner .banner-title { font-size: 2em; }
    .lets-intro { padding-top: 2em; }
    .lets-form-sec .lets-inner { padding: 0 1em; }
    .lets-info { padding: 4em 0; }
    .lets-info-grid { flex-direction: column; gap: 30px; }
    .lets-address,
    .lets-map { flex: 0 0 85%; max-width: 85%; }

    .insight-banner { min-height: 150px; padding: 90px 0 20px; }
    .insight-banner .banner-title { font-size: 2em; }
    .insight-loop { flex-direction: column-reverse; }
    .insight-body,
    .insight-thumb { flex: 0 0 100%; max-width: 100%; }
    .insight-thumb { min-height: 0; }
    .events-banner { min-height: 150px; padding: 90px 0 20px; }
    .events-banner .banner-title { font-size: 2em; }
    .events-posts { padding: 2em 0; }
    .events-grid { grid-template-columns: 1fr; gap: 30px; }

    .news-banner { min-height: 150px; padding: 90px 0 20px; }
    .news-banner .banner-title { font-size: 2em; }

    .careers-banner { min-height: 150px; padding: 90px 0 20px; }
    .careers-banner .banner-title { font-size: 2em; }
    .careers-job { flex-direction: column; text-align: center; gap: 20px; }
    .careers-job-icon { width: auto; }

    .service-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .service-img,
    .service-img.img-end {
        text-align: center;
    }
    .service-img img {
        margin-bottom: 1em;
    }
    .service-title.align-start,
    .service-title.align-end,
    .service-title { text-align: center; }
    .service-body p { text-align: justify; }
    .btn-readmore { display: inline-block; }

    .page-hero { padding: 150px 0 60px; }
    .services-hero .svc-page-title { font-size: 2rem; }

    .company-banner { min-height: 150px; }
    .company-title { font-size: 2.5em; }
    .company-lead { margin: 0 10px; text-align: justify; }
    .company-cards { gap: 35px; }
    .company-card { flex: 1 1 100%; max-width: 100%; min-height: 15vh; padding: 2em; }
    .company-card img { width: 80px; height: 80px; }
    .company-card h3 { font-size: 1.5em; }

    .cta-banner { padding: 2em 0; }
    .cta-banner .container { text-align: center; }
    .cta-banner h2 { font-size: 2em; }
    .cta-banner p { font-size: 1.3em; }
}

/* --- Active nav item --- */
.main-nav .nav-list li.active-page > a { color: #eb1c24; }
.main-nav .nav-list li.active-page > a::after { width: 100%; }
