/* ==========================================================================
   Parallax Starter - Free HTML CSS Template
   
TemplateMo 612 Parallax Starter

https://templatemo.com/tm-612-parallax-starter

   ========================================================================== */

/* --- CSS Variables --- */
:root {
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-20: rgba(255, 255, 255, 0.2);
    --nav-bg: rgba(0, 0, 0, 0.25);
    --nav-bg-scrolled: rgba(0, 0, 0, 0.85);
    --transition-smooth: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* --- Navigation --- */
#templatemo-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background var(--transition-smooth);
}

#templatemo-nav.scrolled {
    background: var(--nav-bg-scrolled);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.nav-logo {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 4px;
	color: var(--white);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2.5px;
    color: var(--white-70);
    transition: color var(--transition-smooth), opacity var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-smooth);
}

/* --- Parallax Sections --- */
.parallax-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Parallax Background Image Layer
   Height is 200% and starts at top: -50% to give
   maximum room for large vertical translations */
.parallax-bg {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}

/* Dark Overlay */
.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 1;
}

.parallax-overlay.overlay-dark {
    background: rgba(0, 0, 0, 0.55);
}

.parallax-overlay.overlay-medium {
    background: rgba(0, 0, 0, 0.50);
}

/* Content Layer */
.section-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    width: 100%;
    padding: 100px 30px;
    text-align: center;
}

/* --- Typography --- */
.section-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(36px, 6vw, 64px);
    letter-spacing: 8px;
    color: var(--white);
    margin-bottom: 200px;
    line-height: 1.2;
}

.hero-title {
    font-weight: 400;
    letter-spacing: 12px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(13px, 1.6vw, 16px);
    letter-spacing: 4px;
    color: var(--white-70);
    margin-bottom: 40px;
}

.caps {
    text-transform: uppercase;
}

.content-block {
    max-width: 680px;
    margin: 0 auto;
}

.content-block p {
    font-size: 17px;
    color: var(--white-90);
    margin-bottom: 20px;
    line-height: 1.85;
}

/* --- Hero Button --- */
.btn-scroll {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--white);
    border: 1px solid var(--white-40);
    padding: 14px 45px;
    transition: all var(--transition-smooth);
}

.btn-scroll:hover {
    background: var(--white);
    color: #111;
    border-color: var(--white);
}

/* --- About Columns --- */
.unsplash-credit {
    font-size: 14px;
    color: var(--white-40);
    margin-top: 25px;
    letter-spacing: 1px;
}

.unsplash-credit a {
    color: var(--white-70);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.about-col {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-thumb {
    overflow: hidden;
    width: 120px;
    height: 120px;
    border-radius: 8px;
}

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

.thumb-top-left {
    float: left;
    margin: 0 20px 15px 0;
}

.about-thumb-wide {
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 2 / 1;
    border-radius: 8px;
    margin-bottom: 20px;
}

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


.product-gallery{
    width:100%;
    padding:40px %;
    background:#;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    width:180%;
}

.product-item{
    display:block;
    overflow:hidden;
    background:#1A1A1A;
    cursor:pointer;
}

.product-item img{
    width:100%;
    height:285px;
    object-fit:cover;
    display:block;
    transition:transform 0.45s ease, filter 0.45s ease;
}

.product-item:hover img{
    transform:scale(1.15);
    filter:brightness(1.08);
}

.product-item:hover{
    z-index:5;
}

@media(max-width:1000px){
    .product-gallery{
        padding:35px 5%;
    }

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

@media(max-width:600px){
    .product-grid{
        grid-template-columns:1fr;
    }
}

.about-col p {
    font-size: 16px;
    color: var(--white-90);
    margin-bottom: 20px;
    line-height: 1.85;
}

.about-col p:last-child {
    margin-bottom: 0;
}

.about-col a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 50px;
}

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

.service-icon {
    margin-bottom: 20px;
    opacity: 0.85;
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 12px;
    color: var(--white);
}

.service-item p {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--white-70);
    line-height: 1.9;
}

/* --- Stats Row --- */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 45px;
    padding-top: 40px;
    border-top: 1px solid var(--white-20);
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--white-70);
}

/* --- Contact Form --- */
.contact-form-wrap {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--white-20);
    padding: 16px 20px;
    outline: none;
    transition: border-color var(--transition-smooth);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--white-40);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--white-70);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--white);
    background: transparent;
    border: 1px solid var(--white-40);
    padding: 16px 45px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    align-self: flex-start;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: var(--white);
    color: #111;
    border-color: var(--white);
}

/* --- Footer --- */
#templatemo-footer {
    background: #111;
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
    color: var(--white-40);
    letter-spacing: 1px;
}

#templatemo-footer a {
    color: var(--white-70);
    transition: color var(--transition-smooth);
}

#templatemo-footer a:hover {
    color: var(--white);
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive
   =================================== */

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stats-row {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 30px;
        padding: 100px 30px 60px;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 16px;
        letter-spacing: 4px;
    }

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

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

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

    /* Disable parallax on mobile — static bg */
    .parallax-bg {
        top: 0;
        height: 100%;
    }

    .section-title {
        letter-spacing: 4px;
    }

    .hero-title {
        letter-spacing: 6px;
    }

    .section-subtitle {
        letter-spacing: 2px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-cols {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .form-row {
        flex-direction: column;
    }

    .btn-submit {
        align-self: stretch;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }

    .section-content {
        padding: 80px 20px;
    }

    .section-title {
        letter-spacing: 3px;
    }

    .content-block p {
        font-size: 15px;
    }

    .stat-number {
        font-size: 34px;
    }
}

/* ==========================================================================
   EWARS360 CUSTOM HERO SECTION
   ========================================================================== */

.section-content{
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 30px;
    text-align: center;
}

/* ===============================
   HERO TITLE
================================= */

.hero-title{
    font-family: var(--font-heading);
    font-size: 90px;
    font-weight: 400;
    letter-spacing: 10px;
    color: #ffffff;
    margin-bottom: 50px;
    line-height: 1.1;
    text-transform: uppercase;
}

.section-subtitle{
    font-family: var(--font-body);
    font-size: 15px;
    letter-spacing: 5px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 35px;
    text-transform: uppercase;
}

/* ===============================
   DESCRIPTION
================================= */

.hero-description{
    max-width: 850px;
    margin: 0 auto 50px auto;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255,255,255,0.88);
    font-weight: 300;
}

/* ===============================
   FEATURE GRID
================================= */

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

/* ===============================
   FEATURE BOX
================================= */

.feature-box{
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 30px 25px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.35s ease;
}

.feature-box:hover{
    transform: translateY(-8px);
    border-color: #ff2a2a;
    background: rgba(0,0,0,0.60);
    box-shadow: 0 10px 35px rgba(255,0,0,0.15);
}

/* ===============================
   FEATURE TITLE
================================= */

.feature-box h3{
    font-family: var(--font-heading);
    color: #ff2a2a;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* ===============================
   FEATURE TEXT
================================= */

.feature-box p{
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 300;
}

/* ===============================
   BUTTON
================================= */

.btn-scroll{
    display: inline-block;
    margin-top: 50px;
    padding: 16px 45px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.30);
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.35s ease;
}

.btn-scroll:hover{
    background: #ff1e1e;
    border-color: #ff1e1e;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,0,0,0.25);
}

/* ===============================
   MOBILE RESPONSIVE
================================= */

@media(max-width:991px){

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

    .hero-title{
        font-size: 70px;
    }

}

@media(max-width:768px){

    .section-content{
        padding: 100px 25px;
    }

    .hero-features{
        grid-template-columns: 1fr;
    }

    .hero-title{
        font-size: 48px;
        letter-spacing: 4px;
    }

    .section-subtitle{
        font-size: 13px;
        letter-spacing: 2px;
    }

    .hero-description{
        font-size: 15px;
        line-height: 1.8;
    }

    .feature-box{
        padding: 25px 20px;
    }

}

@media(max-width:480px){

    .hero-title{
        font-size: 38px;
        letter-spacing: 2px;
    }

    .hero-description{
        font-size: 14px;
    }

    .btn-scroll{
        width: 100%;
        text-align: center;
    }

}

/* ===============================
   COMMUNITY BASE SIREN SPACING
================================= */

.section-title{
    margin-bottom: 80px;
}

.section-subtitle{
    margin-top: -40px;
    margin-bottom: 25px;
    font-size: 15px;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.75);
}

.hero-description{
    max-width: 850px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255,255,255,0.88);
}

/* ==================================================
   EWARS360° CBS SECTION
================================================== */

.cbs-content{
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding-top: 120px;
}

/* ==================================================
   LEFT CONTENT
================================================== */

.cbs-left{
    width: 58%;
    text-align: left;
}

.cbs-badge{
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255,0,0,0.15);
    border: 1px solid rgba(255,0,0,0.45);
    color: #ff2a2a;
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.cbs-title{
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 400;
    letter-spacing: 8px;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.cbs-subtitle{
    font-size: 15px;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.72);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.cbs-description{
    max-width: 700px;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.88);
    margin-bottom: 40px;
}

/* ==================================================
   BUTTONS
================================================== */

.cbs-buttons{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.cbs-btn{
    display: inline-block;
    padding: 15px 36px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 3px;
    transition: 0.3s ease;
    text-transform: uppercase;
}

.cbs-btn.primary{
    background: #ff1e1e;
    color: #ffffff;
    border: 1px solid #ff1e1e;
}

.cbs-btn.secondary{
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.35);
}

.cbs-btn:hover{
    transform: translateY(-4px);
}

/* ==================================================
   RIGHT SIDE
================================================== */

.cbs-right{
    width: 42%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==================================================
   ALERT CARD
================================================== */

.alert-popup{
    width: 100%;
    max-width: 420px;
    padding: 35px;
    border-radius: 24px;
    background: rgba(0,0,0,0.60);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}

/* ==================================================
   LIVE ALERT
================================================== */

.alert-live{
    display: inline-block;
    color: #ff2a2a;
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

/* ==================================================
   ALERT TITLE
================================================== */

.alert-popup h3{
    font-family: var(--font-heading);
    font-size: 42px;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 20px;
}

/* ==================================================
   ALERT TEXT
================================================== */

.alert-popup p{
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 25px;
}

/* ==================================================
   ALERT INFO
================================================== */

.alert-info{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.alert-info span{
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    letter-spacing: 1px;
}

/* ==================================================
   MOBILE RESPONSIVE
================================================== */

@media(max-width:991px){

    .cbs-content{
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .cbs-left,
    .cbs-right{
        width: 100%;
        text-align: center;
    }

    .cbs-title{
        font-size: 48px;
        letter-spacing: 4px;
    }

    .cbs-description{
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
    }

    .cbs-buttons{
        justify-content: center;
    }

}

@media(max-width:768px){

    .cbs-title{
        font-size: 40px;
    }

    .cbs-subtitle{
        font-size: 13px;
        letter-spacing: 2px;
    }

    .alert-popup{
        padding: 28px;
    }

    .alert-popup h3{
        font-size: 32px;
    }

}

@media(max-width:480px){

    .cbs-title{
        font-size: 34px;
        letter-spacing: 2px;
    }

    .cbs-description{
        font-size: 15px;
    }

    .cbs-btn{
        width: 100%;
        text-align: center;
    }
	
	.cbs-title{
    font-size: 20px;
    letter-spacing: 6px;
}

.cbs-subtitle{
    font-size: 13px;
    letter-spacing: 3px;
}

.cbs-description{
    font-size: 15px;
    line-height: 1.8;
}

}

.cbs-content{
    display: block;
    max-width: 900px;
    margin-left: 120px;
    text-align: left;
}

.cbs-title,
.cbs-subtitle,
.cbs-description{
    text-align: left;
}

.cbs-description{
    max-width: 750px;
}

.cbs-content{
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */

.cbs-left{
    width: 45%;
}

/* RIGHT */

.cbs-right{
    width: 55%;
    display: flex;
    justify-content: center;
}

.cbs-image{
    width: 100%;
    max-width: 700px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
    animation: floatImage 5s ease-in-out infinite;
}

/* FLOAT */

@keyframes floatImage{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-15px);
    }

    100%{
        transform: translateY(0px);
    }

}


/* =====================================
   EWARS360 CBS PREMIUM LAYOUT
===================================== */

.cbs-content{
    max-width: 1450px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 60px;
}

/* =====================================
   LEFT SIDE TEXT
===================================== */

.cbs-left{
    width: 38%;
}

.cbs-title{
    font-size: 74px;
    line-height: 1.05;
    letter-spacing: 6px;
    margin-bottom: 25px;
}

.cbs-subtitle{
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 35px;
}

.cbs-description{
    font-size: 17px;
    line-height: 1.9;
    max-width: 520px;
}
/* =====================================
   RIGHT SIDE IMAGE STACK
===================================== */

.cbs-right{
    width: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

/* IMAGE */

.cbs-image{
    width: 100%;
    max-width: 540px;
    border-radius: 18px;
    object-fit: cover;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.45);

    transition: 0.4s ease;
}

/* TOP IMAGE */

.top-image{
    margin-top: -20px;
}

/* BOTTOM IMAGE */

.bottom-image{
    margin-left: 0px;
}

/* HOVER */

.cbs-image:hover{
    transform: translateY(-88px) scale(90.02);
}

/* MOBILE */

@media(max-width:991px){

    .cbs-right{
        width: 100%;
        align-items: center;
    }

    .bottom-image{
        margin-left: 0;
    }

}

/* =====================================
   IMAGE HOVER ZOOM
===================================== */

.cbs-right{
    overflow: visible !important;
}

.cbs-right img{
    transition: all 0.4s ease !important;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.cbs-right img:hover{
    transform: scale(1.18) !important;
    z-index: 9999 !important;
    box-shadow: 0 35px 90px rgba(0,0,0,0.8) !important;
}

/* =====================================
   IMAGE HOVER
===================================== */

.cbs-image{

    cursor: pointer;

    transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;

    border-radius: 18px;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.20);

}

/* HOVER */

.cbs-image:hover{

    transform:
    scale(1.05)
    translateY(-8px);

    box-shadow:
    0 35px 20px rgba(0,0,0,0.20);

}

/* =====================================
   POPUP BACKGROUND
===================================== */

.image-popup{

    display: none;

    position: fixed;

    z-index: 99999;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background:
    rgba(0,0,0,0.92);

    justify-content: center;
    align-items: center;

    backdrop-filter: blur(8px);

}

/* =====================================
   POPUP IMAGE
===================================== */

.popup-image{

    max-width: 90%;
    max-height: 90%;

    border-radius: 20px;

    box-shadow:
    0 30px 120px rgba(0,0,0,0.8);

    animation:
    popupZoom 0.35s ease;

}

/* =====================================
   CLOSE BUTTON
===================================== */

.close-popup{

    position: absolute;

    top: 25px;
    right: 40px;

    color: white;

    font-size: 55px;

    cursor: pointer;

    transition: 0.3s ease;

    font-family: Arial;

}

/* HOVER */

.close-popup:hover{

    transform: scale(1.2);

    color: #ff2a2a;

}

/* =====================================
   ANIMATION
===================================== */

@keyframes popupZoom{

    from{

        transform: scale(0.7);
        opacity: 0;

    }

    to{

        transform: scale(1);
        opacity: 1;

    }

}
/* ===============================
   HERO TITLE ANIMATION
================================= */

.hero-title{
    animation: rotateForwardBack 10s ease-in-out infinite;
    transform-style: preserve-3d;
    display: inline-block;
}

@keyframes rotateForwardBack{

    0%{
        transform: perspective(900px) rotateX(0deg) scale(1);
    }

    25%{
        transform: perspective(900px) rotateX(12deg) scale(1.04);
    }

    50%{
        transform: perspective(900px) rotateX(0deg) scale(1);
    }

    75%{
        transform: perspective(900px) rotateX(-12deg) scale(1.04);
    }

    100%{
        transform: perspective(900px) rotateX(0deg) scale(1);
    }

}

.product-grid,
.product-gallery{

    width:100%;
    max-width:1700px;

    margin:0 auto;

    padding:20px 0 20px 0;

    display:grid;

    grid-template-columns:repeat(4, 1fr);

    gap:15px;

    justify-content:start;

    align-items:start;

}

.product-section{
    width:100%;
    padding-left:300px;
    padding-right:0px;
}
.product-gallery{
    margin-left:-0px;
}

.product-img-box{
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.product-img-box img{
    width: 100%;
    transition: 0.4s ease;
}

.product-info{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.75);
    color: white;
    text-align: center;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;

    opacity: 0;
    transform: translateY(100%);
    transition: 0.4s ease;
}

.product-img-box:hover img{
    transform: scale(1.08);
}

.product-img-box:hover .product-info{
    opacity: 1;
    transform: translateY(0);
}

.touch-wrapper{
    position: relative;
    display: inline-block;
    text-align: center;
}

.touch-title{
    font-size: 90px;
    color: white;
    letter-spacing: 4px;
    cursor: pointer;
    transition: 0.4s;
}

.touch-title:hover{
    color: #ff6b2c;
    text-shadow: 0 0 20px rgba(255,107,44,0.8);
}

.contact-popup{
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 420px;
    background: rgba(0,0,0,0.38);
    border: 1px solid rgba(255,107,44,0.45);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 30px rgba(255,107,44,0.35);
}

/* AUTO FADE IN / OUT */
.touch-wrapper:hover .contact-popup{
    visibility: visible;
    animation: popupAutoFade 5s ease forwards;
}

@keyframes popupAutoFade{
    0%{
        opacity: 0;
        transform: translateX(-50%) translateY(25px);
    }
    15%{
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    75%{
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100%{
        opacity: 0;
        transform: translateX(-50%) translateY(25px);
        visibility: hidden;
    }
}

.contact-item{
    color: white;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-item:last-child{
    margin-bottom: 0;
}

/* GLASSMORPHISM POPUP */
.contact-popup{
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);

    width: 800px;
    padding: 26px;

    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 22px;

    box-shadow:
        0 8px 32px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.25);

    opacity: 0;
    visibility: hidden;
}

/* AUTO FADE IN / OUT */
.touch-wrapper:hover .contact-popup{
    visibility: visible;
    animation: popupAutoFade 5s ease forwards;
}

/* SHINY TOP LINE */
.contact-popup::before{
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.8),
        transparent
    );
}

@keyframes popupAutoFade{
    0%{
        opacity: 0;
        transform: translateX(-50%) translateY(25px) scale(0.96);
    }
    15%{
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    75%{
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    100%{
        opacity: 0;
        transform: translateX(-50%) translateY(25px) scale(0.96);
        visibility: hidden;
    }
}

.contact-item{
    color: rgba(255,255,255,0.95);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}

.contact-item:last-child{
    margin-bottom: 0;
}

/* FLOATING ANIMATION */
.contact-popup{
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);

    width: 450px;
    padding: 26px;

    background: rgba(255,255,255,0.10);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 22px;

    box-shadow:
        0 8px 32px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.25);

    opacity: 0;
    visibility: hidden;
}

/* SHOW POPUP */
.touch-wrapper:hover .contact-popup{
    visibility: visible;

    animation:
        popupFade 6s ease forwards,
        floatingBox 3s ease-in-out infinite;
}

/* FLOATING EFFECT */
@keyframes floatingBox{

    0%{
        transform: translateX(-50%) translateY(0px);
    }

    50%{
        transform: translateX(-50%) translateY(-10px);
    }

    100%{
        transform: translateX(-50%) translateY(0px);
    }

}

/* AUTO FADE */
@keyframes popupFade{

    0%{
        opacity: 0;
        transform: translateX(-50%) translateY(25px) scale(0.96);
    }

    15%{
        opacity: 1;
        transform: translateX(-50%) translateY(0px) scale(1);
    }

    80%{
        opacity: 1;
        transform: translateX(-50%) translateY(0px) scale(1);
    }

    100%{
        opacity: 0;
        transform: translateX(-50%) translateY(25px) scale(0.96);
    }

}

.intro-animate{
    opacity:0;
    transform:translateY(80px) scale(0.9);
    filter:blur(10px);
    animation:sirenEnter 1.8s ease-out forwards;
    animation-delay:0.5s;

    color:#fff;
    letter-spacing:3px;
    text-shadow:
        0 0 10px rgba(255,0,0,0.8),
        0 0 20px rgba(255,0,0,0.5),
        0 0 40px rgba(255,255,255,0.3);
}

@keyframes sirenEnter{

    0%{
        opacity:0;
        transform:translateY(80px) scale(0.85);
        filter:blur(12px);
        letter-spacing:12px;
    }

    50%{
        opacity:1;
        transform:translateY(0px) scale(1.05);
        filter:blur(0px);
        letter-spacing:5px;
    }

    75%{
        transform:scale(0.98);
    }

    100%{
        opacity:1;
        transform:translateY(0px) scale(1);
        filter:blur(0px);
        letter-spacing:3px;
    }
}

.intro-animate{
    opacity:0;
    transform:translateY(80px) scale(0.9);
    filter:blur(10px);
    animation:sirenEnter 1.8s ease-out forwards;
    animation-delay:0.5s;

    color:#fff;
    letter-spacing:3px;
    text-shadow:
        0 0 10px rgba(255,0,0,0.8),
        0 0 20px rgba(255,0,0,0.5),
        0 0 40px rgba(255,255,255,0.3);
}

@keyframes sirenEnter{

    0%{
        opacity:0;
        transform:translateY(80px) scale(0.85);
        filter:blur(12px);
        letter-spacing:12px;
    }

    50%{
        opacity:1;
        transform:translateY(0px) scale(1.05);
        filter:blur(0px);
        letter-spacing:5px;
    }

    75%{
        transform:scale(0.98);
    }

    100%{
        opacity:1;
        transform:translateY(0px) scale(1);
        filter:blur(0px);
        letter-spacing:3px;
    }
}

.demo-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-top:28px;
    padding:16px 34px;

    border-radius:60px;

    background:
        linear-gradient(135deg,#ff4b1f,#ff7b00);

    color:white;
    text-decoration:none;

    font-size:15px;
    font-weight:900;
    letter-spacing:1px;

    box-shadow:
        0 0 25px rgba(255,75,31,.35);

    transition:.35s;
    position:relative;
    overflow:hidden;
}

/* SHINE EFFECT */
.demo-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:100%;
    height:100%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.35),
            transparent
        );

    transition:.6s;
}

.demo-btn:hover::before{
    left:120%;
}

.demo-btn:hover{

    transform:
        translateY(-5px)
        scale(1.03);

    box-shadow:
        0 0 40px rgba(255,75,31,.65);

}