:root {
    --vs-red: #b31312;
    --vs-dark: #1a1a1a;
    --vs-bg: #ffffff;
    --vs-border: #e0e0e0;
    --vs-light-grey: #fafafa;
    --vs-pink-soft: #fdf5f5;
    --vs-cream: #f8f5f0;
}

h1 {
    font-size: 50px;
}

body {
    background-color: var(--vs-bg);
    font-family: 'Marcellus', serif;
    color: var(--vs-dark);
    overflow-x: hidden;
}

/* Label Caps */

html {
    overflow-x: hidden;
}

/* Section Spacing */
section {
    padding: 20px;
    position: relative;
}

/* --- HERO IMAGE SLIDER --- */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* --- HERO LEFT BLUR PANEL --- */
.hero-left-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(18px);
    background: linear-gradient(to right,
            rgba(214, 170, 170, 0.65),
            rgba(214, 170, 170, 0.35),
            rgba(214, 170, 170, 0.05));
    z-index: -1;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-section {
    position: relative;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(214, 170, 170, 0.65) 25%,
            rgba(255, 255, 255, 0.15));
    z-index: -1;
}

.hero-title {
    color: var(--vs-dark);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.hero-title span {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--vs-red);
    margin-bottom: 20px;
    font-family: 'Marcellus', serif;
}

.hero-text {
    font-size: 1.15rem;
    color: #ffffff;
    max-width: 650px;
    line-height: 1.8;
    font-weight: 300;
    margin-top: 25px;
}

.cta-group {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.btn-primary-vs {
    background: var(--vs-dark);
    color: #fff !important;
    padding: 14px;
    font-family: 'Marcellus', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    border: 1px solid var(--vs-dark);
    transition: 0.4s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-vs {
    background: transparent;
    color: var(--vs-dark) !important;
    padding: 14px;
    font-family: 'Marcellus', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    border: 1px solid var(--vs-dark);
    transition: 0.4s;
    text-decoration: none;
    display: inline-block;
}
.btn-primary-vs:hover,
.btn-secondary-vs:hover {
    background: var(--vs-red);
    border-color: var(--vs-red);
    color: #fff !important;
    transform: translateY(-3px);
}
.section-drift {
    background: #fff;
    border-bottom: 1px solid #eee;
}
.drift-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
}
.drift-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.3);
}

.philosophy-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.drift-image:hover .philosophy-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(179, 19, 18, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

/* Content Styles */

.philosophy-text {
    font-family: 'Marcellus', serif;
    color: #333;
}

.philosophy-text p {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 300;
    color: #444;
}

.text-large {
    font-size: 1.3rem !important;
    font-weight: 400 !important;
    color: #1a1a1a !important;
    border-left: 3px solid var(--vs-red);
    padding-left: 20px;
}

.text-emphasis {
    font-size: 1.2rem;
    font-weight: 400;
    color: #1a1a1a;
    font-style: italic;
    padding: 3x 0;
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
}

.btn {
    padding-top: 18px;
}

.text-mandate {
    font-size: 16px !important;
}

.mandate-highlight {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--vs-red);
    font-family: 'Marcellus', serif;
    margin-top: 10px;
    padding: 5px 0;
    border-bottom: 2px solid var(--vs-red);
}

.vs-btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Marcellus', serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--vs-dark);
    text-decoration: none;
    color: var(--vs-dark);
    transition: all 0.4s ease;
    background: transparent;
}

.vs-btn:hover {
    background: var(--vs-red);
    border-color: var(--vs-red);
    color: #fff !important;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .drift-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .drift-image {
        max-height: 400px;
    }

    .philosophy-image {
        object-fit: cover;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .philosophy-text p {
        font-size: 16px;
    }

    .hero-section {
        padding: 40px 0 20px;
        min-height: auto;
    }

    section {
        padding: 0;
    }

    .footer-container {
        padding: 0 15px;
    }

    .text-large {
        font-size: 1.2rem !important;
    }

    .mandate-highlight {
        font-size: 1.1rem;
    }
}

/* --- SECTION 3: SPATIAL INTELLIGENCE --- */
.section-intelligence {
    background: var(--vs-light-grey);
    border-bottom: 1px solid #eee;
    position: relative;
    overflow: hidden;
}
.intelligence-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
}

/* Image Styles */
.intelligence-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(179, 19, 18, 0.3);
}

.spatial-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
    filter: grayscale(20%);
}

.intelligence-image:hover .spatial-img {
    transform: scale(1.03);
}

.image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(179, 19, 18, 0.1) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.intelligence-image:hover .image-glow {
    opacity: 1;
}

.label-caps {
    font-family: 'Marcellus', serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--vs-red);
    display: block;
    margin-bottom: 10px;
}

.spatial-text {
    font-family: 'Marcellus', serif;
    color: #333;
}

.spatial-text p {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 300;
    color: #444;
}

.text-intro {
    font-size: 20px;
    font-weight: 400 !important;
    color: #1a1a1a !important;
    border-left: 3px solid var(--vs-red);
    padding-left: 20px;
}

.text-highlight {
    font-size: 1.2rem;
    font-weight: 400;
    color: #1a1a1a;
}

.accent-text {
    color: var(--vs-red);
    font-family: 'Marcellus', serif;
    font-weight: 500;
    font-size: 1.3rem;
    border-bottom: 1px dashed var(--vs-red);
    padding-bottom: 2px;
}

.key-points {
    background: rgba(179, 19, 18, 0.03);
    padding: 14px;
    border-radius: 4px;
    border: 1px solid rgba(179, 19, 18, 0.1);
}

.key-points p {
    display: flex;
    align-items: center;
}

.key-points p:last-child {
    margin-bottom: 0 !important;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--vs-red);
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: rgba(179, 19, 18, 0.2);
    border-radius: 50%;
    top: -4px;
    left: -4px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.text-emphasis {
    font-size: 16px;
    color: #1a1a1a !important;
    border-top: 2px solid var(--vs-red);
    font-family: 'Marcellus', serif;
}

.vs-btn {
    display: inline-block;
    padding: 14px;
    font-family: 'Marcellus', serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--vs-dark);
    text-decoration: none;
    color: var(--vs-dark);
    transition: all 0.4s ease;
    background: transparent;
}

.vs-btn:hover {
    background: var(--vs-red);
    border-color: var(--vs-red);
    color: #fff !important;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .intelligence-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intelligence-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .spatial-text p {
        font-size: 16px;
    }

    .text-intro {
        font-size: 1.2rem !important;
    }

    .accent-text {
        font-size: 1.1rem;
    }

    .key-points {
        padding: 15px;
    }
}

/* --- SECTION 4: METHOD --- */
.method-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    opacity: 0.9;
}

.method-step:hover .method-icon {
    transform: scale(1.1);
    opacity: 1;
}
.section-method {
    background: #fff;
    border-bottom: 1px solid #eee;
    text-align: center;
}
.method-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: #f3bdaba1;
    margin: -7px 0px 0px;
}

.method-step {
    background: #fff;
    padding: 14px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.method-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--vs-red);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.method-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.method-step:hover::before {
    transform: scaleX(1);
}

.method-num {
    font-family: 'Marcellus', serif;
    font-size: 18px;
    color: var(--vs-red);
    display: block;
}

.method-step h5 {
    font-family: 'Marcellus', serif;
    font-size: 16px;
}

/* --- SECTION 5: ENGAGEMENT PATHWAYS --- */
.section-engagement {
    position: relative;
    border-bottom: 1px solid #eee;
    padding: 40px 0;
}
/* Background GIF Layer */
.section-engagement::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("{{ asset('/gif/back.gif') }}") center center / cover no-repeat;
    filter: blur(20px);
    transform: scale(1.1);
    opacity: 0.45;
    z-index: 0;
}

/* Dark overlay for contrast */
.section-engagement::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(161 14 14 / 6%);
    backdrop-filter: blur(1px);
    z-index: 1;
}

/* Keep content above background */
.section-engagement .container {
    position: relative;
    z-index: 2;
}

.col-lg-6 {
    width: 100%;
}

.container {
    max-width: 100%;
}

/* Cards Grid */
.pathway-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/* Card Styling */
.pathway-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Bottom Accent Line */
.pathway-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--vs-red);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pathway-card:hover {
    transform: translateY(-15px);
    border-color: var(--vs-red);
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.25);
}

.pathway-card:hover::after {
    transform: scaleX(1);
}

.pathway-card h4 {
    font-family: 'Marcellus', serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

/* --- SECTION 6: SELF ASSESSMENT --- */
.section-assessment {
    background: var(--vs-cream);
    border-bottom: 1px solid #eee;
}

.assessment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.assessment-box {
    background: #fff;
    padding: 15px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.assessment-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.1);
}

.video-inline {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
    transition: all 0.4s ease;
}

.video-inline:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.15);
}

/* --- SECTION 7: PREM PANJWANI --- */
.section-prem {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.prem-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.prem-image {
    position: relative;
    overflow: hidden;
}

.profile-img {
    width: 100%;
    filter: grayscale(100%);
    transition: all 0.8s ease;
}

.prem-image:hover .profile-img {
    filter: grayscale(0);
    transform: scale(1.02);
}

.prem-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
}

.prem-image:hover::before {
    left: 100%;
}

/* --- SECTION 8: INSIGHTS --- */
.section-insights {
    background: var(--vs-light-grey);
    border-bottom: 1px solid #eee;
}
.insights-header {
    display: flex;
    justify-content: space-between;
    align-items: anchor-center;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.insight-card {
    background: #9f9d9d1a;
    padding: 14px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.insight-card:hover {
    transform: translateY(-10px);
    border-color: var(--vs-red);
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.1);
}

.insight-category {
    font-family: 'Marcellus', serif;
    font-size: 0.7rem;
    color: var(--vs-red);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.read-more {
    color: var(--vs-dark);
    text-decoration: none;
    font-family: 'Marcellus', serif;
    font-size: 0.8rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.read-more:hover {
    border-bottom-color: var(--vs-red);
    color: var(--vs-red);
}

/* --- SECTION 9: FOUNDATION (LIGHT VERSION) --- */
.section-foundation-light {
    background: var(--vs-cream);
    border-bottom: 1px solid #eee;
    position: relative;
    overflow: hidden;
}
.section-foundation-light::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgb(159 159 165 / 89%) 0%, #97282805 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, 30px);
    }
}

.foundation-header h2 {
    font-family: 'Marcellus', serif;
    font-size: 40px;
    line-height: 1.1;
}

.foundation-subhead {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.foundation-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    align-items: anchor-center;
}

.foundation-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.foundation-item {
    background: #f7e9e9;
    padding: 14px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.foundation-item:hover {
    transform: translateY(-10px);
    border-color: var(--vs-red);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.foundation-item h5 {
    font-family: 'Marcellus', serif;
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--vs-dark);
}

.foundation-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.3;
    margin: 0;
}

.foundation-badge-light {
    background: #fff;
    padding: 35px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    position: relative;
}

.btnn {
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
    padding-bottom: 3px;
}

.foundation-badge-light:hover {
    transform: translateY(-10px);
    border-color: var(--vs-red);
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.1);
}

.foundation-badge-light .small {
    color: var(--vs-red);
    font-family: 'Marcellus', serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
}

.foundation-badge-light p {
    color: #555;
    font-size: 16px;
    line-height: 1.4;
}

.foundation-badge-light a {
    color: var(--vs-dark);
    text-decoration: none;
    font-family: 'Marcellus', serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--vs-red);
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.foundation-badge-light a:hover {
    color: var(--vs-red);
}

/* --- SECTION 10: INQUIRY --- */
.section-inquiry {
    background: var(--vs-pink-soft);
    text-align: center;
}
.inquiry-form {
    max-width: 810px;
    margin: 0px auto 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    background: #fff;
    font-family: 'Marcellus', serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--vs-red);
    box-shadow: 0 5px 15px -5px rgba(179, 19, 18, 0.1);
    transform: translateY(-2px);
}

/* VS Button */
.vs-btn {
    display: inline-block;
    padding: 14px;
    font-family: 'Marcellus', serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--vs-dark);
    text-decoration: none;
    color: var(--vs-dark);
    transition: all 0.4s ease;
    background: transparent;
}

.vs-btn-dark {
    background: var(--vs-dark);
    color: #fff;
    border-color: var(--vs-dark);
}

.vs-btn:hover {
    background: var(--vs-red);
    border-color: var(--vs-red);
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .drift-grid,
    .intelligence-grid,
    .assessment-grid,
    .prem-grid,
    .foundation-grid {
        grid-template-columns: 1fr;
    }

    .method-grid {
        grid-template-columns: 1fr;
    }

    .pathway-grid,
    .insight-grid,
    .foundation-items {
        grid-template-columns: 1fr;
    }

    .insights-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-overlay {
        background: rgba(245, 202, 202, 0.85);
    }

    .hero-section {
        position: relative;
        padding: 50px 0 140px;
        min-height: 60vh;
        display: flex;
        align-items: center;
        background: transparent;
        overflow: hidden;
    }

    .hero-left-blur {
        position: absolute;
        top: 0;
        left: 0;
        width: 55%;
        height: 100vh;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(18px);
        background: linear-gradient(to right,
                rgba(214, 170, 170, 0.65),
                rgba(214, 170, 170, 0.35),
                rgba(214, 170, 170, 0.05));
        z-index: -1;
        pointer-events: none;
    }

    .cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .drift-content h2,
    .foundation-header h2 {
        font-size: 40px;
    }
	.insight-grid {
		margin: 20px 0 0 0;
	}
	section.section-prem {
		padding: 30px 0;
	}
	.section-assessment {
		padding: 30px 0;
	}
}

/* AOS Animations */
[data-aos] {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}