* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}


.bss-highlights {
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}




/* ================= WHAT IS BSS ARMS SECTION START ================= */

.home-about-advanced {
    padding: 140px 24px;
    background: #000;
}

.home-about-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* IMAGE */
.home-about-image img {
    width: 100%;
    max-width: 520px;
    display: block;
    border-radius: 6px;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.9));
}

/* TEXT */
.home-about-text h2 {
    font-family: 'Orbitron', sans-serif;
    color: #8fbf2f;
    margin-bottom: 24px;
}

.home-about-text p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 16px;
    max-width: 520px;
}

/* BUTTONS */
.home-about-actions {
    margin-top: 30px;
    display: flex;
    gap: 16px;
}

/* ================= WHAT IS BSS ARMS SECTION END ================= */





/* ================= SCROLL ANIMATIONS START ================= */

.animate-left {
    opacity: 0;
    transform: translateX(-40px);
    animation: slideLeft 0.9s ease forwards;
}

.animate-right {
    opacity: 0;
    transform: translateX(40px);
    animation: slideRight 0.9s ease forwards;
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================= SCROLL ANIMATIONS END ================= */


@media (max-width: 900px) {

    .home-about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .home-about-text p {
        max-width: 100%;
    }

    .home-about-image {
        text-align: center;
    }

}





/* ================= WHAT WE OFFER SECTION START ================= */

.home-offer {
    padding: 140px 24px;
    background: #050505;
}

.home-offer-header {
    max-width: 700px;
    margin: auto;
    text-align: center;
    margin-bottom: 80px;
}

.home-offer-header h2 {
    font-family: 'Orbitron', sans-serif;
    color: #8fbf2f;
    margin-bottom: 16px;
}

.home-offer-header p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.8;
}

/* GRID */
.home-offer-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.offer-card {
    background: #000;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 50px 40px;
    position: relative;
    transition: all 0.4s ease;
}

.offer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(143,191,47,0.08), transparent);
    opacity: 0;
    transition: 0.4s;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: #8fbf2f;
}

/* ICON */
.offer-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

/* TEXT */
.offer-card h3 {
    color: #ffffff;
    margin-bottom: 12px;
}

.offer-card p {
    color: #ccc;
    font-size: 14.5px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* LINK */
.offer-card a {
    color: #8fbf2f;
    text-decoration: none;
    font-weight: 500;
}





/* ================= OFFER CARD ANIMATION START ================= */

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.9s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= OFFER CARD ANIMATION END ================= */

/* ================= WHAT WE OFFER RESPONSIVE START ================= */

@media (max-width: 900px) {

    .home-offer-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        text-align: center;
    }

}

/* ================= WHAT WE OFFER RESPONSIVE END ================= */



/* ================= WHAT WE OFFER SECTION END ================= */



/* ================= OUR PHILOSOPHY SECTION START ================= */

.home-philosophy-advanced {
    padding: 140px 24px;
    background: radial-gradient(circle at center, #0b1a0b, #000);
}

.philosophy-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

/* IMAGE */
.philosophy-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 6px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.9));
}

/* CONTENT */
.philosophy-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #8fbf2f;
    margin-bottom: 20px;
}

.philosophy-intro {
    color: #ccc;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.philosophy-points .point {
    margin-bottom: 12px;
    color: #aaa;
    font-size: 14.5px;
}

/* ================= OUR PHILOSOPHY SECTION END ================= */


/* ================= RESPONSIBILITY STRIP START ================= */

.home-responsibility-advanced {
    padding: 50px 24px;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.home-responsibility-advanced p {
    color: #888;
    font-size: 14px;
    max-width: 900px;
    margin: auto;
    line-height: 1.8;
}

/* ================= RESPONSIBILITY STRIP END ================= */


/* ================= HOME CTA SECTION START ================= */

.home-cta-advanced {
    padding: 120px 24px;
    background: linear-gradient(120deg, #050505, #0b1a0b);
    text-align: center;
}

.home-cta-advanced h2 {
    color: #ffffff;
    margin-bottom: 16px;
}

.home-cta-advanced p {
    color: #aaa;
    font-size: 15px;
    margin-bottom: 30px;
}

/* ================= HOME CTA SECTION END ================= */



/* ========================================================= */
/* ================= HOME PAGE STYLES START ================= */
/* ========================================================= */

.home-hero {
    min-height: calc(100vh - 80px);
    background: radial-gradient(circle at top, #0b1a0b, #000);
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.home-hero-content {
    max-width: 800px;
    margin: auto;
}

.home-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    color: #fff;
}

.hero-subtitle {
    display: block;
    color: #8fbf2f;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.home-hero p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 30px;
}

.home-hero-actions {
    display: flex;
    gap: 16px;
}

/* About */
.home-about-advanced,
.home-philosophy-advanced,
.home-offer,
.home-cta-advanced {
    padding: 140px 24px;
    background: #000;
}

.home-about-wrapper,
.philosophy-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.home-about-image img,
.philosophy-image img {
    width: 100%;
    max-width: 520px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.9));
}

.home-offer-header {
    text-align: center;
    margin-bottom: 80px;
}

.home-offer-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
}

.offer-card {
    border: 1px solid rgba(255,255,255,0.08);
    padding: 50px 40px;
    transition: 0.4s;
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: #8fbf2f;
}

.home-responsibility-advanced {
    padding: 50px 24px;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

/* CTA */
.home-cta-advanced {
    background: linear-gradient(120deg, #050505, #0b1a0b);
    text-align: center;
}

/* ========================================================= */
/* ================= HOME PAGE STYLES END =================== */
/* ========================================================= */


/* ========================================================= */
/* ============ SCROLL TRIGGER ANIMATION START ============== */
/* ========================================================= */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-left {
    transform: translateX(-40px);
}

.scroll-right {
    transform: translateX(40px);
}

.scroll-left.active,
.scroll-right.active {
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ========================================================= */
/* ============ SCROLL TRIGGER ANIMATION END ================ */
/* ========================================================= */



/* ========================================================= */
/* ================ HOME HERO SECTION START ================= */
/* ========================================================= */

.home-hero-advanced {
    min-height: calc(100vh - 80px);
    background: radial-gradient(circle at top, #0b1a0b, #000);
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.home-hero-wrapper {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* TEXT */
.home-hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 10px;
}

.hero-typing {
    display: block;
    font-size: 18px;
    letter-spacing: 2px;
    color: #8fbf2f;
    margin-bottom: 20px;
}

.home-hero-content p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 32px;
}

.home-hero-actions {
    display: flex;
    gap: 16px;
}

/* IMAGE */
.hero-image img {
    width: 100%;
    max-width: 520px;
    filter: drop-shadow(0 40px 70px rgba(0,0,0,0.9));
    animation: floatHero 4s ease-in-out infinite;
}

/* FLOAT EFFECT */
@keyframes floatHero {
    0% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .home-hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1; /* image goes on top on mobile */
    }

    .hero-image img {
        max-width: 360px;
        animation: none;
    }

    .home-hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ========================================================= */
/* ================ HOME HERO SECTION END =================== */
/* ========================================================= */


/* ================= TYPING CURSOR START ================= */

#typing-text {
    border-right: 2px solid #8fbf2f;
    padding-right: 6px;
    animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
    0%, 50%, 100% { border-color: #8fbf2f; }
    25%, 75% { border-color: transparent; }
}

/* ================= TYPING CURSOR END =================== */







/* ========================================================= */
/* ================ OUR PHILOSOPHY UI START ================= */
/* ========================================================= */

.home-philosophy-ui {
    padding: 140px 24px;
    background: radial-gradient(circle at left, #0b1a0b, #000);
}

.philosophy-ui-wrapper {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

/* IMAGE */
.philosophy-ui-image {
    position: relative;
}

.philosophy-ui-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 8px;
    filter: drop-shadow(0 40px 70px rgba(0,0,0,0.9));
}

/* Subtle overlay for depth */
.philosophy-ui-image .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0,0,0,0.3),
        rgba(143,191,47,0.08)
    );
    border-radius: 8px;
    pointer-events: none;
}

/* CONTENT */
.philosophy-ui-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #8fbf2f;
    margin-bottom: 20px;
}

.philosophy-desc {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
    max-width: 520px;
}

/* LIST */
.philosophy-list {
    list-style: none;
    padding: 0;
}

.philosophy-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #bbbbbb;
    font-size: 15px;
}

.philosophy-list .check {
    color: #8fbf2f;
    font-weight: bold;
}

/* ========================================================= */
/* ================ OUR PHILOSOPHY UI END =================== */
/* ========================================================= */

/* ========================================================= */
/* ============ OUR PHILOSOPHY RESPONSIVE START ============== */
/* ========================================================= */

@media (max-width: 900px) {

    .philosophy-ui-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .philosophy-desc {
        max-width: 100%;
    }

    .philosophy-list li {
        justify-content: center;
    }

}

/* ========================================================= */
/* ============ OUR PHILOSOPHY RESPONSIVE END ================ */
/* ========================================================= */
