/* --- Core Variables --- */
:root {
    --nb-orange: #c96b24;
    --nb-grey: #a3a3a3;
    --nb-black: #000000;
    --nb-white: #ffffff;
    --nb-border: 4px; 
}

/* --- Main Section Layout --- */
.nb-section {
    padding: 100px 0;
    background-color: var(--nb-orange);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* --- Decorative Grid Background --- */
.nb-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.nb-container {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.nb-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center; 
}

/* --- Left Side Content --- */
.nb-content {
    position: relative;
}

/* Neo-Brutalism Tag */
.nb-tag {
    display: inline-block;
    background: var(--nb-black);
    color: var(--nb-white);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border: var(--nb-border) solid var(--nb-black);
    box-shadow: 6px 6px 0px var(--nb-grey);
}

/* Tilted Main Title */
.nb-title {
    font-size: clamp(36px, 6vw, 64px); 
    font-weight: 900;
    line-height: 1.05;
    color: var(--nb-black);
    text-transform: uppercase;
    margin-bottom: 35px;
    background: var(--nb-white);
    padding: 25px;
    border: var(--nb-border) solid var(--nb-black);
    box-shadow: 12px 12px 0px var(--nb-black);
    transform: rotate(-1.5deg);
}

.nb-title em {
    font-style: normal;
    background: var(--nb-orange);
    color: white;
    padding: 0 10px;
}

/* High-impact Paragraph */
.nb-para {
    font-size: 24px; 
    font-weight: 800;
    line-height: 1.4;
    color: var(--nb-black);
    background: rgba(255, 255, 255, 0.95);
    padding: 35px;
    border: var(--nb-border) solid var(--nb-black);
    box-shadow: 10px 10px 0px var(--nb-grey);
    margin: 0;
}

/* --- Right Side Column --- */
.nb-right-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.nb-image-area {
    position: relative;
}

.nb-img-wrapper {
    position: relative;
    border: var(--nb-border) solid var(--nb-black);
    background: var(--nb-black);
    box-shadow: 15px 15px 0px var(--nb-black);
    line-height: 0;
}

.nb-img-wrapper img {
    width: 100%;
    height: auto;
}

/* Floating Statistics Badges */
.nb-stat-badge {
    position: absolute;
    background: var(--nb-white);
    border: var(--nb-border) solid var(--nb-black);
    padding: 12px;
    z-index: 10;
    box-shadow: 5px 5px 0px var(--nb-black);
}

.nb-stat-1 { top: -15px; left: -20px; transform: rotate(-5deg); }
.nb-stat-2 { bottom: -10px; right: -15px; transform: rotate(3deg); background: var(--nb-black); color: white; }

.nb-stat-num { display: block; font-size: 24px; font-weight: 900; }
.nb-stat-label { font-size: 11px; text-transform: uppercase; font-weight: 700; }

/* Feature Cards on the Right */
.nb-features-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.nb-feat-card {
    background: var(--nb-white);
    border: var(--nb-border) solid var(--nb-black);
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 8px 8px 0px var(--nb-black);
    transition: 0.2s;
}

.nb-feat-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0px var(--nb-black);
}

.nb-feat-icon {
    width: 45px;
    height: 45px;
    background: var(--nb-orange);
    border: 3px solid var(--nb-black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .nb-row { 
        grid-template-columns: 1fr; 
    }
    .nb-title { 
        transform: none; 
        font-size: 32px; 
    }
    .nb-para { 
        font-size: 20px; 
    }
}

/* --- Core Variables --- */
:root {
    --nb-orange: #c96b24;
    --nb-grey: #a3a3a3;
    --nb-black: #000000;
    --nb-white: #ffffff;
    --nb-stroke: 4px;
}

/* --- Section Container --- */
.nb2-section {
    background-color: var(--nb-orange);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* --- Background Decorative Patterns --- */
.nb2-bg-grid {
    position: absolute; 
    inset: 0;
    background-image: radial-gradient(var(--nb-black) 4px, transparent 4px);
    background-size: 30px 30px;
    opacity: 0.1;
}

.nb2-bg-number {
    position: absolute; 
    right: -20px; 
    top: -50px;
    font-size: 320px; 
    font-weight: 900;
    color: rgba(0,0,0,0.05); 
    pointer-events: none;
}

/* --- Main Layout --- */
.nb2-container {
    max-width: 1350px; 
    margin: 0 auto;
    position: relative;
    z-index: 5;
    padding: 0 40px;
}

.nb2-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr; 
    align-items: center;
    gap: 0;
}

/* --- Image Area Layout --- */
.nb2-img-area {
    position: relative;
    /* Shifts the image to the left for layout balance */
    transform: translateX(-100px); 
    z-index: 1;
}

.nb2-img-frame {
    position: relative;
    border: var(--nb-stroke) solid var(--nb-black);
    background: var(--nb-black);
    box-shadow: 25px 25px 0px var(--nb-black);
}

.nb2-img-frame img {
    width: 100%; 
    display: block;
}

/* Secondary overlapping image */
.nb2-img-overlay {
    position: absolute;
    bottom: -60px;
    right: -60px; 
    width: 260px; 
    border: var(--nb-stroke) solid var(--nb-black);
    box-shadow: 10px 10px 0px var(--nb-grey);
    z-index: 10;
}

/* --- Content Box Area --- */
.nb2-content-box {
    background: var(--nb-white);
    border: var(--nb-stroke) solid var(--nb-black);
    padding: 12px; 
    margin-left: -60px; /* Overlaps with the image area */
    position: relative;
    z-index: 5;
    box-shadow: 15px 15px 0px var(--nb-black);
}

.nb2-tag {
    display: inline-block;
    background: var(--nb-black);
    color: var(--nb-white);
    padding: 5px 15px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.nb2-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: var(--nb-black);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.nb2-title span {
    color: var(--nb-orange);
    -webkit-text-stroke: 1.5px var(--nb-black);
}

.nb2-info-row {
    border-top: 3px solid var(--nb-black);
    border-bottom: 3px solid var(--nb-black);
    padding: 12px 0;
    margin-bottom: 30px;
    font-weight: 800;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
}

.nb2-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--nb-black);
    margin-bottom: 35px;
}

/* --- List Items --- */
.nb2-list { 
    margin-bottom: 40px; 
}

.nb2-item {
    display: flex; 
    gap: 20px; 
    margin-bottom: 20px;
    padding: 20px; 
    border: 3px solid var(--nb-black);
    background: #f4f4f4;
}

.nb2-item-box {
    width: 24px; 
    height: 24px;
    border: 3px solid var(--nb-black);
    background: var(--nb-orange);
    flex-shrink: 0;
}

/* --- Quote Box --- */
.nb2-quote {
    background: var(--nb-black);
    color: var(--nb-white);
    padding: 30px;
    position: relative;
    border: var(--nb-stroke) solid var(--nb-black);
    box-shadow: 10px 10px 0px var(--nb-grey);
    font-size: 16px;
}

.nb2-quote::after {
    content: "ARCHIVE NO. 2015";
    position: absolute; 
    top: -15px; 
    right: 25px;
    background: var(--nb-orange); 
    color: white;
    font-size: 11px; 
    padding: 3px 10px;
    border: 2px solid var(--nb-black);
}

/* --- Responsive Media Queries --- */

/* For large tablets and smaller desktops */
@media (max-width: 1200px) {
    .nb2-container { max-width: 95%; }
    .nb2-title { font-size: 40px; }
}

/* For mobile devices (Vertical Stack) */
@media (max-width: 992px) {
    .nb2-layout { grid-template-columns: 1fr; }
    .nb2-img-area { transform: none; margin-bottom: 80px; }
    .nb2-content-box { margin-left: 0; padding: 35px; }
    .nb2-img-overlay { width: 180px; right: 0; bottom: -40px; }
}

/* --- Core Variables --- */
:root {
    --nb-orange: #c96b24;
    --nb-dark: #1a1a1a;
    --nb-white: #ffffff;
    --nb-stroke: 4px;
}

/* --- Main Section Layout --- */
.nb-tabs-section {
    background-color: #242424;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Large background decorative number */
.nb-floating-num {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 250px;
    font-weight: 950;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
}

/* Wide container for expansive horizontal layout */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Main grid: Sidebar and Content */
.nb-main-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* --- Vertical Navigation Sidebar --- */
.nb-tab-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: var(--nb-stroke) solid var(--nb-orange);
    padding-left: 30px;
}

.nb-tab-nav li {
    cursor: pointer;
    margin-bottom: 25px;
}

.nb-tab-nav li span {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(255,255,255,0.1);
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
}

/* Active navigation state */
.nb-tab-nav li.active-btn span {
    color: var(--nb-orange);
    transform: translateX(15px);
}

/* --- Content Area & Tabs --- */
.nb-content-area {
    position: relative;
    z-index: 5;
}

.tab {
    display: none; 
    width: 100%;
}

.tab.active-tab {
    display: block !important;
    animation: brutalIn 0.6s ease forwards;
}

/* Tab entrance animation */
@keyframes brutalIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --- Flexible Component Wrapper --- */
.nb-flex-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
}

/* The primary text card */
.nb-card {
    background: var(--nb-white);
    border: var(--nb-stroke) solid var(--nb-dark);
    padding: 60px;
    flex: 0 0 65%; 
    box-shadow: 15px 15px 0px #000;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* The overlapping image box */
.nb-img-box {
    flex: 0 0 45%; 
    margin-left: -10%; /* Creates the Brutalist overlap effect */
    margin-top: 40px;
    margin-bottom: -40px;
    border: var(--nb-stroke) solid var(--nb-dark);
    box-shadow: 12px 12px 0px var(--nb-orange);
    z-index: 10;
    background: #000;
    overflow: hidden;
}

.nb-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(1);
    transition: 0.5s;
}

.nb-flex-wrapper:hover .nb-img-box img {
    filter: grayscale(0);
    transform: scale(1.05);
}

/* --- Typography --- */
.nb-heading {
    font-size: 52px;
    font-weight: 900;
    color: var(--nb-dark);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 25px;
}

.nb-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    border-top: 3px solid var(--nb-dark);
    padding-top: 30px;
    max-width: 90%;
}

/* --- Responsive Design --- */

/* Desktop & Large Tablets */
@media (max-width: 1200px) {
    .nb-heading { font-size: 42px; }
    .nb-flex-wrapper { flex-direction: column; }
    .nb-card { flex: 1 1 auto; width: 100%; }
    .nb-img-box { flex: 1 1 auto; width: 90%; margin: -30px 0 0 10%; }
}

/* Mobile View */
@media (max-width: 991px) {
    .nb-main-layout { grid-template-columns: 1fr; gap: 40px; }
    .nb-tab-nav { 
        display: flex; 
        gap: 30px; 
        border-left: none; 
        border-bottom: var(--nb-stroke) solid var(--nb-orange); 
        padding-left: 0; 
        padding-bottom: 10px; 
    }
    .nb-tab-nav li { margin-bottom: 0; }
    .nb-tab-nav li span { font-size: 24px; }
    .nb-tab-nav li.active-btn span { transform: translateY(-5px); }
}

/* ================================================================
   MAIN SLIDER - BASE STYLES
================================================================ */
.main-slider {
    height: 85vh; 
    min-height: 700px;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.swiper-container, .swiper-wrapper, .swiper-slide {
    height: 100%;
}

.swiper-slide {
    position: relative;
    background-color: #000;
}

/* Background Image Layer with Dark-to-Light Animation */
.image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    filter: brightness(0); /* Start dark for animation */
}

/* ================================================================
   TEXT CONTAINER - BRUTALIST STYLE
================================================================ */
.main-slider__content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 750px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.05); /* Glassmorphism effect */
    backdrop-filter: blur(8px);
    border: 3px solid #fff; /* Thick industrial border */
    box-shadow: 15px 15px 0px var(--brand-orange, #c96b24); /* Signature hard shadow */
    color: #fff;
    text-align: left !important;
}

/* ================================================================
   TYPOGRAPHY
================================================================ */
.main-slider__sub-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: var(--brand-orange, #c96b24);
    display: block;
}

.main-slider__title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
}

/* ================================================================
   NAVIGATION BUTTONS
================================================================ */
.swiper-button-prev,
.swiper-button-next {
    width: 35px !important;
    height: 35px !important;
    background: #fff !important;
    border: 3px solid #000 !important;
    color: #000 !important;
    opacity: 1 !important;
    box-shadow: 5px 5px 0px #000;
    transition: 0.2s;
}

.swiper-button-prev:after, 
.swiper-button-next:after {
    font-size: 20px !important;
    font-weight: 900;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px var(--brand-orange, #c96b24);
    background: var(--brand-orange, #c96b24) !important;
    color: #fff !important;
}

/* ================================================================
   ANIMATIONS
================================================================ */
@keyframes brutalistDarkToLight {
    0%   { filter: brightness(0) grayscale(1); }
    12%  { filter: brightness(0.7) grayscale(0); }
    78%  { filter: brightness(0.7) grayscale(0); }
    92%  { filter: brightness(0) grayscale(1); } 
    100% { filter: brightness(0) grayscale(1); }
}

@keyframes brutalistTextReveal {
    0%   { opacity: 0; transform: translateY(-40%) translateX(-30px); }
    12%  { opacity: 1; transform: translateY(-50%) translateX(0px); }
    75%  { opacity: 1; transform: translateY(-50%) translateX(0px); }
    90%  { opacity: 0; transform: translateY(-60%) translateX(30px); }
    100% { opacity: 0; transform: translateY(-60%) translateX(30px); }
}

.swiper-slide-active .image-layer {
    animation: brutalistDarkToLight 4s ease-in-out forwards;
}

.swiper-slide-active .main-slider__content {
    animation: brutalistTextReveal 4s ease-in-out forwards;
}

/* ================================================================
   RESPONSIVE OVERRIDES
================================================================ */
@media (max-width: 1024px) {
    .main-slider__content { max-width: 500px; padding: 30px; }
    .main-slider__title { font-size: 48px; }
}

@media (max-width: 767px) {
    .main-slider { height: auto; }
    .desktop-banner { display: none; }
    .mobile-banner { display: block; background: #000; padding-bottom: 40px; }
    .mobile-banner__text { padding: 40px 20px; border-bottom: 4px solid var(--brand-orange, #c96b24); }
    .mobile-banner__text .main-slider__title { font-size: 32px; color: #fff; }
    .mobile-banner__image img { width: 100%; border-top: 4px solid #000; }
}

/* --- Page Header Main Container --- */
.page-header {
    position: relative;
    overflow: hidden;
    height: 450px;
    background-color: #1a1a1a;
    border-bottom: 5px solid #000;
}

/* --- Layer 1: Background Image --- */
.ph-bg-image {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 110%; /* Extra height for parallax-like feel */
    position: absolute;
    top: -5%;
    left: 0;
    z-index: 1;
    opacity: 0.6;
    filter: grayscale(0.3);
}

/* --- Layer 2: Radial Grid Pattern --- */
.ph-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 2;
}

/* --- Layer 3: Decorative Slanted Box (Bottom Right) --- */
.ph-deco-box {
    position: absolute;
    bottom: 40px;
    right: -50px;
    width: 400px;
    height: 80px;
    background: #c96b24;
    transform: rotate(-5deg);
    z-index: 2;
    border: 4px solid #000;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.5);
}

/* --- Layer 4: Linear Gradient Fade --- */
.ph-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #1a1a1a 15%, rgba(26,26,26,0.6) 50%, transparent 100%);
    z-index: 3;
}

/* --- Content Wrapper --- */
.ph-container {
    position: relative; 
    z-index: 4; 
    height: 100%; 
    display: flex; 
    align-items: center;
}

.ph-inner {
    position: relative;
}

/* L-Shaped Corner Decoration */
.ph-corner-deco {
    position: absolute; 
    top: -20px; 
    left: -20px; 
    width: 60px; 
    height: 60px; 
    border-top: 5px solid #c96b24; 
    border-left: 5px solid #c96b24;
}

/* Main Content Box (Brutalist style) */
.ph-content-box {
    background: #000;
    padding: 50px 0px;
    border: 4px solid #fff;
    box-shadow: 15px 15px 0px #c96b24;
    position: relative;
}

/* --- Typography & Breadcrumbs --- */
.ph-breadcrumb {
    display: flex; 
    gap: 15px; 
    margin-bottom: 20px; 
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    font-size: 12px;
    list-style: none;
    padding: 0;
}

.ph-breadcrumb li a {
    color: #c96b24; 
    text-decoration: none;
}

.ph-breadcrumb .ph-sep {
    color: rgba(255,255,255,0.4);
}

.ph-title {
    font-size: 64px; 
    line-height: 0.9; 
    font-weight: 900; 
    text-transform: uppercase; 
    margin: 0; 
    letter-spacing: -2px;
    color: #fff;
}

.ph-title span {
    color: #c96b24;
}

/* Small Security Reference Badge */
.ph-sec-ref {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: #fff;
    color: #000;
    padding: 2px 10px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

/* ================================================================
   404 ERROR STATE STYLES
================================================================ */
.ph-error-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        linear-gradient(45deg, #1a1a1a 25%, transparent 25%), 
        linear-gradient(-45deg, #1a1a1a 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #1a1a1a 75%), 
        linear-gradient(-45deg, transparent 75%, #1a1a1a 75%);
    background-size: 40px 40px;
    background-color: #111;
    z-index: 1;
    opacity: 0.5;
}

.ph-error-box {
    text-align: center; 
    border: 10px solid #c96b24; 
    padding: 60px; 
    background: #000;
}

.ph-error-title {
    font-size: 100px; 
    font-weight: 900; 
    color: #fff; 
    line-height: 1; 
    margin: 0;
}

.ph-error-tag {
    background: #c96b24; 
    color: #000; 
    font-weight: 900; 
    display: inline-block; 
    padding: 5px 20px; 
    margin-top: 10px; 
    text-transform: uppercase;
}

.ph-error-link {
    color: #fff; 
    text-decoration: underline; 
    font-weight: 700;
}

/* --- Design System: Industrial Neo-Brutalism --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700;900&display=swap');

:root {
    --brand-orange: #c96b24;
    --pure-black: #1a1a1a;
    --blueprint-grid: #e5e5e5;
    --thick-border: 3px solid #000;
}

/* --- Main Content Area with Grid Background --- */
.blog-main-wrapper {
    background-color: #fcfcfc !important;
    background-image: 
        linear-gradient(var(--blueprint-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--blueprint-grid) 1px, transparent 1px);
    background-size: 30px 30px;
    padding: 40px 0;
    min-height: 100vh;
}

/* --- SMALL GRID LAYOUT (FOR LIST VIEW) --- */
.blog-small-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two compact columns */
    gap: 20px;
}

.blog-small-card {
    background: #fff;
    border: var(--thick-border);
    box-shadow: 6px 6px 0px #000;
    transition: 0.2s ease;
    display: flex;
    flex-direction: column;
}

.blog-small-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0px var(--brand-orange);
}

.blog-small-card__img {
    position: relative;
    border-bottom: var(--thick-border);
    aspect-ratio: 16 / 11; /* Forces small, uniform image size */
    overflow: hidden;
}

.blog-small-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-small-card__label {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--brand-orange);
    color: #fff;
    padding: 3px 12px;
    font-size: 11px;
    font-weight: 900;
    border-right: 3px solid #000;
    border-bottom: 3px solid #000;
    text-transform: uppercase;
}

.blog-small-card__content {
    padding: 15px;
}

.blog-small-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #000;
}

/* --- BLOG DETAILS VIEW --- */
.blog-details-card {
    box-shadow: 10px 10px 0px #000;
    background: #fff;
}

.blog-details-img {
    width: 100%; 
    border-bottom: 3px solid #000;
}

.blog-details-body {
    padding: 40px;
}

.blog-details-header {
    font-family: 'Outfit', sans-serif; 
    font-weight: 900;
    margin-bottom: 20px;
}

.blog-details-text {
    margin-top: 30px; 
    font-size: 16px; 
    line-height: 1.8;
}

/* --- BUTTON STYLING --- */
.btn-compact {
    display: inline-block;
    background: var(--brand-orange);
    color: #fff !important;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 900;
    border: 2px solid #000;
    box-shadow: 3px 3px 0px #000;
    text-decoration: none;
    text-transform: uppercase;
}

/* --- SIDEBAR STYLING --- */
.sidebar-industrial {
    background: #fff;
    border: var(--thick-border);
    box-shadow: 6px 6px 0px #000;
    margin-bottom: 30px;
}

.sidebar-industrial__header {
    background: #000;
    color: #fff;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.sidebar-industrial__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-industrial__list li {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.sidebar-date {
    color: var(--brand-orange); 
    font-weight: 900; 
    font-size: 10px;
    display: block;
}

.sidebar-link {
    text-decoration: none; 
    color: #000; 
    font-weight: 700; 
    font-size: 13px;
}

.sidebar-category-link {
    text-decoration: none; 
    color: #000; 
    font-weight: 700; 
    display: flex; 
    justify-content: space-between; 
    font-size: 13px;
}

/* --- RESPONSIVE FIX --- */
@media (max-width: 768px) {
    .blog-small-grid { 
        grid-template-columns: 1fr; 
    }
}

/* --- Design System Variables --- */
:root {
    --brand-orange: #c96b24;
    --industrial-grey: #a3a3a3;
    --deep-black: #1a1a1a;
    --raw-white: #ffffff;
    --stroke: 4px;
}

/* --- Page Wrapper with Blueprint Grid Background --- */
.nb-page-wrapper {
    background-color: #f5f5f5;
    background-image: radial-gradient(var(--industrial-grey) 1px, transparent 1px);
    background-size: 30px 30px;
    padding-bottom: 100px;
}

/* --- Hero Map Container --- */
.nb-hero-map-container {
    width: 100%;
    height: 500px; /* Fixed height to prevent collapse */
    border-bottom: var(--stroke) solid var(--deep-black);
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
}

/* Ensure the iframe fills the container */
.nb-hero-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Decorative status tag over the map */
.nb-map-status-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--deep-black);
    color: var(--brand-orange);
    padding: 5px 15px;
    font-weight: 900;
    font-size: 12px;
    z-index: 5;
    border: 2px solid var(--brand-orange);
}

/* --- Main Layout Grid --- */
.nb-main-grid { 
    margin-top: 60px; 
}

/* --- Form Card Styling --- */
.nb-form-card {
    background: var(--raw-white);
    border: var(--stroke) solid var(--deep-black);
    padding: 40px;
    box-shadow: 12px 12px 0px var(--deep-black);
}

/* Form Heading */
.nb-form-title {
    font-weight: 900; 
    margin-bottom: 30px; 
    text-transform: uppercase;
}

/* Brutalist Input Fields */
.nb-input {
    width: 100%;
    border: var(--stroke) solid var(--deep-black);
    padding: 15px;
    margin-bottom: 20px;
    font-weight: 800;
    font-family: inherit;
}

/* High-contrast Submit Button */
.nb-submit-btn {
    background: var(--deep-black); 
    color: #fff; 
    width: 100%; 
    padding: 20px; 
    border: none; 
    font-weight: 900; 
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.2s;
}

.nb-submit-btn:hover {
    background: var(--brand-orange);
    color: #000;
}

/* --- Sidebar & Info Boxes --- */
.nb-sidebar { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}

.nb-info-box {
    background: var(--industrial-grey);
    border: var(--stroke) solid var(--deep-black);
    padding: 25px;
    box-shadow: 8px 8px 0px var(--deep-black);
}

.nb-info-box h4 {
    background: var(--deep-black);
    color: #fff;
    display: inline-block;
    padding: 4px 10px;
    margin-bottom: 10px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
}

.nb-info-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.btn-view-all {
    display: inline-block;
    padding: 15px 35px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 2px;
    border: 3px solid #000;
    box-shadow: 8px 8px 0px #000;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.btn-view-all:hover {
    background-color: var(--brand-orange, #c96b24);
    color: #fff;
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0px #000;
}

/* Additional helper styles if not in your CSS file */
.nb-input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 3px solid #000;
    font-weight: 700;
    font-family: inherit;
    outline: none;
}
.nb-input:focus {
    box-shadow: 5px 5px 0px #000;
}
.nb-info-box {
    border: 3px solid #000;
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
}
.nb-info-box h4 {
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 5px;
    color: #888;
}
/* CSS Variables for easy customization */
:root {
    --neo-black: #000000;
    --neo-white: #ffffff;
    --neo-accent: #c96b24; /* Your brand orange */
    --neo-border-width: 3px;
    --neo-shadow-offset: 8px;
    --neo-font-main: 'Outfit', sans-serif; /* Modern sans-serif */
}

.neo-brutal-section {
    padding: 80px 0;
    background-color: #f0f0f0; /* Light gray background to pop the white cards */
    font-family: var(--neo-font-main);
}

.neo-card {
    background: var(--neo-white);
    border: var(--neo-border-width) solid var(--neo-black);
    box-shadow: var(--neo-shadow-offset) var(--neo-shadow-offset) 0px var(--neo-black);
    padding: 30px;
    margin-bottom: 40px;
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    transition: all 0.2s cubic-bezier(.17,.67,.83,.67);
    position: relative;
}

/* Hover effect: "Pressing" the card down */
.neo-card:hover {
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0px var(--neo-black);
}

/* Header: Name and Designation */
.neo-header {
    margin-bottom: 20px;
}

.neo-name {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.6rem;
    margin: 0;
    color: var(--neo-black);
    letter-spacing: -1px;
}

.neo-badge {
    display: inline-block;
    background: var(--neo-accent);
    color: var(--neo-white);
    padding: 4px 12px;
    border: 2px solid var(--neo-black);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 8px;
}

/* Video: Framed as a structural element */
.neo-video-wrapper {
    border: var(--neo-border-width) solid var(--neo-black);
    background: var(--neo-black);
    margin: 15px 0 25px 0;
    overflow: hidden;
    line-height: 0;
}

.neo-video-wrapper video {
    width: 100%;
    height: auto;
    filter: grayscale(0.2); /* Optional: slight stylistic choice */
}

/* Content: Text and Quotes */
.neo-body {
    flex-grow: 1;
}

.neo-text {
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--neo-black);
    font-weight: 500;
}

/* Footer: Rating and Icon */
.neo-footer {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--neo-black);
    padding-top: 20px;
}

.neo-stars .fa {
    font-size: 1.2rem;
    margin-right: 3px;
    color: var(--neo-black);
}

.neo-stars .fa-star-o {
    opacity: 0.3;
}

.neo-quote-mark {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: var(--neo-black);
    opacity: 0.2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .neo-card {
        box-shadow: 5px 5px 0px var(--neo-black);
    }
}

/* ================================================================
   MAIN SLIDER - RESPONSIVE ARCHITECTURE (FULL SCREEN MOBILE)
   Fixes: Black gap, forces image to fill screen from 989px downwards.
   ================================================================ */

/* --- Base Container Styling --- */
.main-slider { 
    position: relative; 
    width: 100%; 
    background: #000; 
    overflow: hidden;
}

/* --- Desktop View (Default > 989px) --- */
.desktop-banner { 
    display: block; 
    height: 100vh; 
    min-height: 600px; 
    position: relative; 
}
.mobile-banner { display: none !important; }



/* ================================================================
    Home page banner slide 
   MAIN SLIDER - UNIFIED RESPONSIVE ARCHITECTURE (989px to 0px)
   Goal: Full screen image, White Glassmorphism, Large Interactive Arrows.
   ================================================================ */

/* --- Base Container Styling --- */
.main-slider { 
    position: relative; 
    width: 100%; 
    background: #000; 
    overflow: hidden;
}

/* --- Desktop View (Default > 989px) --- */
.desktop-banner { 
    display: block; 
    height: 100vh; 
    min-height: 600px; 
    position: relative; 
}
.mobile-banner { display: none !important; }

/* --- Unified Tablet & Mobile View (989px and below) --- */
@media (max-width: 989px) {
    /* 1. Force container and image to fill the viewport */
    .main-slider, 
    .thm-swiper__slider,
    .swiper-container,
    .swiper-wrapper,
    .swiper-slide { 
        height: 100vh !important; 
        min-height: 0 !important; 
    }

    .main-slider { background-color: #3a3a3a !important; }
    .mobile-banner { display: none !important; }

    .desktop-banner { 
        display: block !important; 
        height: 100% !important; 
        width: 100% !important;
        position: relative;
    }

    /* 2. Image fills the entire screen */
    .image-layer {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        display: block !important;
        filter: brightness(0.65) !important; 
        background-size: cover !important; 
        background-position: center center !important;
        z-index: 1;
    }

    /* --- 3. White Glassmorphism Content Box --- */
/* This ensures every slide looks identical regardless of content length */
.main-slider .swiper-slide .main-slider__content {
    width: 85% !important; 
    max-width: 745px !important;
    
    /* FIX: Set a fixed height so all boxes are the same size */
    height: 77vh !important; 
    
    /* Internal spacing: Keep these small so they don't fight with the fixed height */
    padding-top: 50px !important; 
    padding-bottom: 90px !important;
    padding-left: 23% !important;  
    padding-right: 23% !important;
    
    box-sizing: border-box !important;
    
    /* Perfect Centering */
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    
    /* Visuals */
    background-color: rgba(255, 255, 255, 0.15) !important; 
    backdrop-filter: blur(10px) !important; 
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid #ffffff !important; 
    
    /* Layout: Vertical Centering for different content */
    display: flex !important; 
    flex-direction: column;
    justify-content: center !important; /* Centers different amounts of text vertically */
    align-items: center;
    text-align: center;
    z-index: 10;
    margin: 0 !important;
}

/* --- 4. Text & Title Sync --- */
.main-slider__title {
    font-size: 30px !important; /* Scaled down for mobile to prevent overflow */
    color: #fff !important;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.9) !important; 
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    
    /* Core: Forces title to follow Title Case (First letter of each word capitalized) */
    text-transform: capitalize !important; 
}

.main-slider__sub-title {
    font-size: 14px !important;
    color: #d16527 !important;
    letter-spacing: 2px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    
    /* Core: Forces subtitle to follow Title Case */
    text-transform: capitalize !important;
}

/* Enhanced Active State: 
   Arrows scale up slightly more when clicked for better tactile feedback. 
*/
.swiper-button-prev:active, 
.swiper-button-next:active {
    transform: translateY(-50%) scale(1.1) !important; 
    transition: transform 0.1s !important; 
}

    /* 5. Extra Large Interactive Arrows */
    .swiper-button-prev, 
    .swiper-button-next {
        top: 50% !important;
        transform: translateY(-50%) scale(0.7) !important; 
        z-index: 100 !important;
        transition: all 0.2s ease-in-out !important; 
        opacity: 0.85; 
    }

    .swiper-button-prev { left: 10px !important; }
    .swiper-button-next { right: 10px !important; }

    .swiper-button-prev:hover, 
    .swiper-button-next:hover {
        transform: translateY(-50%) scale(0.9) !important; 
        opacity: 1 !important;
        cursor: pointer;
    }

    .swiper-button-prev:active, 
    .swiper-button-next:active {
        transform: translateY(-50%) scale(0.9) !important; 
        transition: transform 0.1s !important; 
    }
}






/* ================================================================
   ULTRA-SMART FLUID LAYOUT (520px to 0px)
   Replicating the "About Us" smart scaling behavior
================================================================ */
@media (max-width: 520px) {

    /* 1. The Container: Smooth breathing space */
    .ph-content-box {
        /* This makes the box width relative to the screen size, 
           always keeping a balanced gap on both sides. */
        width: 88% !important; 
        max-width: 450px !important;
        margin: 0 auto !important;
        
        /* Using vw for padding makes the "inner breath" also scale */
        padding: 8vw 4vw !important; 
        
        /* Shadow scales down to keep it subtle on tiny screens */
        box-shadow: 4px 4px 0px #c96b24 !important;
        
        box-sizing: border-box !important;
        position: relative !important;
        left: -2px !important; /* Offset for the shadow */
    }

    /* 2. The Title: Dynamic shrinking without breaking */
    .ph-title {
        /*
        The "Brain" of the title:
        - 16px: Minimum (for micro-screens like 172px)
        - 9.5vw: This makes it scale perfectly with the screen
        - 42px: Maximum (for larger mobile screens)
        */
        font-size: clamp(16px, 9.5vw, 42px) !important;
        
        letter-spacing: -1px !important;
        line-height: 1.1 !important;
        text-align: center !important;
        
        /* Prevents long words from being "eaten" by wrapping them intelligently */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        display: block !important;
        width: 100% !important;
        white-space: normal !important;
    }

    /* 3. Safety Net: Root container handling */
    .page-header {
        height: auto !important;
        min-height: 300px !important;
        overflow: hidden !important; /* No horizontal scrolling allowed */
    }

    /* 4. Hide decos that block the smart flow */
    .ph-deco-box, .ph-corner-deco {
        display: none !important;
    }
}
/* ================================================================
   NEO-BRUTALIST TESTIMONIALS - FULL STYLE SHEET
   ================================================================ */

/* --- Section Container --- */
.neo-brutal-section {
    background-color: #f3f3f3;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* --- Decorative Background Element (Breaking the Monotony) --- */
.neo-brutal-section::before {
    content: "FEEDBACK";
    position: absolute;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(0,0,0,0.03); /* Very faint large text in background */
    top: 0;
    left: -50px;
    z-index: 0;
    white-space: nowrap;
}

/* --- Geo Tag: The orange accent label --- */
.geo-tag {
    display: inline-block;
    background: #d16527; /* Your signature orange */
    color: #ffffff;
    padding: 8px 20px;
    font-weight: 800;
    text-transform: uppercase;
    border: 3px solid #000000;
    box-shadow: 4px 4px 0px #000000;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

/* --- Headline Styling --- */
.geo-headline {
    font-size: 48px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

/* --- Main Card: Neo-Brutalist "Pop" effect --- */
.neo-card {
    background: #ffffff;
    border: 4px solid #000000;
    box-shadow: 12px 12px 0px #000000; /* Distinctive heavy shadow */
    padding: 40px;
    margin-bottom: 50px;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Interactive Hover State */
.neo-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 17px 17px 0px #d16527; /* Changes to orange on hover */
}

/* --- Card Header: Name & Badge --- */
.neo-header {
    margin-bottom: 25px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

.neo-name {
    font-size: 24px;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    color: #000;
}

.neo-badge {
    background: #000;
    color: #fff;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
    display: inline-block;
    border: 2px solid #000;
}

/* --- Video Content: Framed style --- */
.neo-video-wrapper {
    margin: 25px 0;
    border: 3px solid #000;
    box-shadow: 8px 8px 0px #000;
    background: #000;
    position: relative;
}

.neo-video-wrapper video {
    width: 100%;
    display: block;
}

/* --- Testimonial Body Text --- */
.neo-body {
    position: relative;
}

.neo-text {
    font-size: 17px;
    line-height: 1.7;
    color: #222;
    font-weight: 500;
    margin: 0;
}

/* --- Footer: Stars and Large Quote --- */
.neo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
}

.neo-stars i {
    color: #000;
    font-size: 20px;
    margin-right: 4px;
}

/* Giant background quote for visual interest */
.neo-quote-mark {
    font-size: 120px;
    line-height: 0;
    color: rgba(209, 101, 39, 0.15); /* Semi-transparent orange quote */
    font-family: serif;
    position: absolute;
    bottom: 40px;
    right: 20px;
    pointer-events: none;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .geo-headline { font-size: 32px; }
    .neo-card { padding: 25px; box-shadow: 8px 8px 0px #000; }
    .neo-card:hover { box-shadow: 10px 10px 0px #d16527; }
}
/* --- Whatsapp button --- */
@media (max-width: 767px) {
    .floating-buttons a {
        width: 38px !important;
        height: 38px !important;
        font-size: 18px !important;
    }
}