

/* ================= END COMMON IMAGES AND TEXT GLOW ================= */

/* ======================================================
  BASE PRODUCTS PAGE START HERE 
====================================================== */

/* ================= BODY ================= */

.product-base-page-body{
    padding-bottom:0;
    background:
    linear-gradient(90deg,
    #ffecd2 0%,
    #ffdde1 20%,
    #c2e9fb 40%,
    #a1c4fd 60%,
    #d4fc79 80%,
    #cfd9df 100%);

    background-size:300% 300%;
    animation:bgMove 14s ease infinite;

    font-family:'Inter',sans-serif;
    min-height:100vh;
    overflow-x:hidden;
}

@keyframes bgMove{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}


/* ================= HEADER ================= */

.product-base-page-top{
    text-align:center;
    margin-bottom:60px;
 padding-top:120px;
}

.product-base-page-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:100px;
    background:rgba(255,255,255,0.55);
    color:#0b2a4a;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:12px;
    margin-bottom:25px;
}

.product-base-page-title{
    font-family:'Orbitron',sans-serif;
    font-size:clamp(2.8rem,6vw,5rem);
    color:#08203a;
    margin-bottom:18px;
}

.product-base-page-desc{
    max-width:800px;
    margin:auto;
    color:#2a4b6e;
    font-size:16px;
    line-height:1.7;
}

/* ================= GRID ================= */

.product-base-page-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(430px,1fr));

    gap:140px 50px; /* row-gap column-gap */

    margin-bottom:120px;
    margin-left:10px;
    margin-right:10px;

    overflow:visible;
}

/* ================= CARD ================= */

.product-base-page-card{
    position:relative;
    overflow:visible;
    border-radius:34px;
    background:linear-gradient(135deg,#0e2d55 0%,#123b70 35%,#0b2344 100%);
    padding:35px 30px 120px;
    box-shadow:0 25px 60px rgba(0,0,0,0.25);
    transition:all 0.8s ease;
     opacity:0;
    transform:translateY(80px);
}
/* when visible */
.product-base-page-card.show{
    opacity:1;
    transform:translateY(0);
}

/* ================= HOVER ================= */

.product-base-page-card:hover{
    transform:translateY(-35px);
    box-shadow:0 50px 100px rgba(0,0,0,0.45), 0 0 40px rgba(0,170,255,0.30);
}

/* ================= TOP GLOW ================= */

.product-base-page-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,#ff7300,#ffb347,#ff7300);
    opacity:0;
    transition:0.4s;
}

.product-base-page-card:hover::before{
    opacity:1;
}

/* ================= INNER GLOW ================= */

.product-base-page-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:34px;
    background:radial-gradient(circle at center, rgba(0,170,255,0.22), transparent 70%);
    opacity:0;
    transition:0.4s;
}

.product-base-page-card:hover::after{
    opacity:1;
}
/* ================= ANIMATION SCROLLING ================= */
.product-base-page-anim-card{
    opacity:0;
    transform:translateY(80px);
    transition:all 0.8s ease;
}

.product-base-page-anim-card.product-base-page-anim-show{
    opacity:1;
    transform:translateY(0);
}
/* ================= CATEGORY ================= */

.product-base-page-cat{
    position:relative;
    z-index:2;
    margin-bottom:30px;
}

.product-base-page-cat h2{
    font-family:'Orbitron',sans-serif;
    font-size:32px;
    color:#fff;
    margin-bottom:8px;
}

.product-base-page-cat span{
    color:#9fd1ff;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
}

/* ================= PRODUCTS ================= */

.product-base-page-products{
    display:flex;
    flex-direction:column;
    gap:22px;
    position:relative;
    z-index:2;
}

/* ================= PRODUCT ================= */

.product-base-page-product{
    position:relative;
    display:flex;
    align-items:center;
    gap:20px;
    text-decoration:none;
    padding:18px;
    border-radius:26px;
    background:linear-gradient(135deg,#0f3b73 0%,#1257a8 35%,#0e4c9a 70%,#0b2f5c 100%);
    border:1px solid rgba(255,255,255,0.15);
    overflow:hidden;
    transition:0.4s ease;
}

/* hover slide */
.product-base-page-product::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(90deg,#ff7300,#ffb347);
    transition:0.4s ease;
}

.product-base-page-product:hover::before{
    left:0;
}

.product-base-page-product:hover{
    transform:translateY(-10px);
}

/* ================= IMAGE ================= */

.product-base-page-imgBox{
    width:200px;
    height:200px;
    min-width:200px;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.2);
    position:relative;
    z-index:2;
}

.product-base-page-imgBox img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* ================= INFO ================= */

.product-base-page-info{
    flex:1;
    position:relative;
    z-index:2;
}

.product-base-page-info h3{
    font-size:24px;
    color:#fff;
    margin-bottom:8px;
}

.product-base-page-info p{
    font-size:15px;
    color:#cfe8ff;
    line-height:1.6;
}

/* ================= ARROW ================= */

.product-base-page-arrow{
    width:50px;
    height:50px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.12);
    color:#fff;
    font-size:22px;
    z-index:2;
}

/* ================= BUTTON ================= */

.product-base-page-explore{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:90px;
    border:none;
    cursor:pointer;
    background:transparent;
    overflow:hidden;
    text-decoration:none;
}

.product-base-page-explore::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(90deg,#ff7300,#ffb347);
    transition:0.4s;
}

.product-base-page-explore:hover::before{
    left:0;
}

.product-base-page-explore span{
    position:relative;
    z-index:2;
    color:#fff;
    font-weight:700;
    letter-spacing:2px;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100%;
}
/* ======================================================
  END HERE BASE PRODUCTS PAGE 
====================================================== */

/* ================= CATAGORIES PAGE START HERE ================= */

.cata-base-page{

    background:
    linear-gradient(90deg,
    #061423 0%,
    #0b2a4a 40%,
    #102f55 70%,
    #07101c 100%);

    background-size:300% 300%;

    animation:cataBaseBgMove 12s ease infinite;

    font-family:'Inter',sans-serif;

    min-height:100vh;

    overflow-x:hidden;

    color:#fff;

    padding:80px 5%;
}

/* ================= BACKGROUND ANIMATION ================= */

@keyframes cataBaseBgMove{

    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

/* ================= TOP ================= */

.cata-base-top{
    margin-top:60px;   /* 80px navbar + 50px gap */
    margin-bottom:60px;
}

.cata-base-badge{

    display:inline-block;
    padding:10px 22px;
    border-radius:100px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    color:#9fd1ff;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.cata-base-title{

    font-family:'Orbitron',sans-serif;
    font-size:clamp(2.8rem,6vw,5rem);
    margin-bottom:18px;
    line-height:1.1;
}

.cata-base-desc{
    max-width:900px;
    color:#c8def5;
    line-height:1.8;
    font-size:16px;
}

/* ================= GRID ================= */

.cata-base-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(420px,1fr));
    gap:40px;
}

/* ================= PRODUCT CARD ================= */

.cata-base-product{

    position:relative;
    overflow:hidden;
    border-radius:34px;

    background:linear-gradient(135deg,
    #0f3b73 0%,
    #1257a8 35%,
    #0e4c9a 70%,
    #0b2f5c 100%);

    padding:28px;

    border:1px solid rgba(255,255,255,0.12);

    transition:0.6s ease;

    opacity:0;
    transform:translateY(80px);
}
/* scroll reveal active */
.cata-base-product.cata-show{
    opacity:1;
    transform:translateY(0);
}

.cata-base-product::before{

    content:"";

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(90deg,#ff7300,#ffb347,#ff7300);

    opacity:0;

    transition:0.4s;

}
.cata-base-product:hover::before{
    opacity:1;
}



/* hover effect */
.cata-base-product:hover{
    transform:translateY(-28px);
}

/* ================= IMAGE ================= */

.cata-base-imgBox{

    width:100%;
   aspect-ratio: 4 / 3.5;

    border-radius:24px;
    overflow:hidden;

    margin-bottom:24px;
}

.cata-base-imgBox img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.cata-base-product:hover .cata-base-imgBox img{
    transform:scale(1.08);
}

/* ================= TEXT ================= */

.cata-base-name{
    font-family:'Orbitron',sans-serif;
    font-size:28px;
    margin-bottom:12px;
}

.cata-base-info{
    color:#d7e9ff;
    line-height:1.7;
    font-size:15px;
    margin-bottom:28px;
}

/* ================= BUTTON ================= */

.cata-base-btn{

    display:flex;
    justify-content:center;
    align-items:center;

    height:62px;

    border-radius:18px;

    text-decoration:none;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.12);

    color:#fff;

    font-weight:700;

    letter-spacing:2px;

    position:relative;

    overflow:hidden;
}

.cata-base-btn::before{

    content:"";

    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;

    background:linear-gradient(90deg,#ff7300,#ffb347);

    transition:0.4s;
}

.cata-base-btn:hover::before{
    left:0;
}

.cata-base-btn span{
    position:relative;
    z-index:2;
}
/* ======================================================
  END HERE CATAGORIES PAGE 
====================================================== */

/* ==================DISPLAY PAGE BOARD START HERE ================================ */
/* ================= BODY ================= */

.display-board-body{
    position:relative;

    min-height:100vh;

    background:#050b14;

    font-family:'Inter',sans-serif;

    color:#fff;

    overflow-x:hidden;

    animation:pageFade .6s ease-in-out;
}

@keyframes pageFade{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ================= BACKGROUND ================= */

.display-board-body .bg{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    z-index:-1;

    opacity:.30;

    overflow:hidden;

    pointer-events:none;
}

.display-board-body .glow{
    position:absolute;

    width:280px;
    height:280px;

    border-radius:50%;

    filter:blur(70px);

    animation:move 6s infinite alternate ease-in-out;
}

.display-board-body .glow:nth-child(1){background:#00e5ff;}
.display-board-body .glow:nth-child(2){background:#ff3df2;}
.display-board-body .glow:nth-child(3){background:#ffb300;}
.display-board-body .glow:nth-child(4){background:#3dff8b;}

@keyframes move{
    0%{
        transform:translate(0,0);
    }
    50%{
        transform:translate(160px,90px);
    }
    100%{
        transform:translate(-140px,-80px);
    }
}

/* ================= MOVING BACKGROUND IMAGE ================= */

.display-board-body .bg::before{
    content:"";
    position:absolute;
    inset:-10%;

    url("/assets/images/banners/world-map.webp") no-repeat;


    animation:displayBgMove 35s linear infinite alternate;

    z-index:-1;
    opacity:0.45;

    will-change:transform;
}

@keyframes displayBgMove{

    0%{
        transform:scale(1.05) translate(0,0);
    }

    50%{
        transform:scale(1.12) translate(-2%, -1%);
    }

    100%{
        transform:scale(1.08) translate(2%, 1%);
    }

}
/* ================= NAV SPACE ================= */

.display-board-body .nav-space{
    height:160px;
}

/* ================= WRAPPER (WIDER) ================= */

.display-board-body .wrapper{
    max-width:1550px;
    margin:auto;
    padding:0 4% 40px;
}

/* ================= HEADER ================= */

.display-board-body .header{
    font-size: clamp(20px, 3vw, 42px);
    font-family:'Orbitron';
    margin-bottom:40px;
}

/* ================= GRID (WIDER BALANCE) ================= */

.display-board-body .grid{
    display:grid;
    grid-template-columns: 2.6fr 1.2fr;
    gap:35px;
}

/* ================= LEFT ================= */

.display-board-body .left{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:20px;
    padding:25px;
    backdrop-filter:blur(10px);
}

/* ================= TITLE ROW ================= */

.display-board-body .title-row{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:10px;
}

.display-board-body .title{
  margin: 0;
 font-size: clamp(15px, 2vw, 30px);
   font-family:'Orbitron';
    font-weight:600;
}

/* CATEGORY */
.display-board-body .category{
    padding:8px 14px;
    border-radius:12px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    background:linear-gradient(90deg,#ff7300,#ffb347);
    box-shadow:0 10px 20px rgba(255,120,0,0.25);
}

/* LESS BUTTON */
.display-board-body .less-btn{
    margin-left:auto;
    padding:12px 22px;
    border-radius:14px;

    background:linear-gradient(90deg,#ff6a00,#ffb347);
    color:#fff;
    text-decoration:none;

    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;

    min-width:220px;
    text-align:center;

    box-shadow:0 10px 25px rgba(255,120,0,0.25);
    transition:0.3s;
}

.display-board-body .less-btn:hover{
    transform:translateY(-2px);
}

/* ================= DESCRIPTION ================= */

.display-board-body .desc-box{
    margin-top:15px;
    background:rgba(0,255,255,0.05);
    border-left:4px solid #00e5ff;
    padding:18px;
    border-radius:10px;
    font-size:18px;
    line-height:1.6;
    color:#cfefff;
}

/* ================= IMAGE GRID ================= */

.display-board-body .image-grid{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-top: 20px;

    align-items: center;
}

/* ================= IMAGE BOX ================= */

.display-board-body .img{
    width: 100%;
    aspect-ratio: 4 / 3;

    position: relative;
    overflow: hidden;

    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.15);

    background: linear-gradient(135deg,#ffffff10,#00e5ff10);

    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease; /* ✔ ADD HERE */
    will-change: transform; /* ✔ ADD HERE */
}

/* SIDE BOX SQUARE */

.display-board-body .side-img{
    aspect-ratio: 4 / 3;
}

.display-side-viewer{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.95);
    display:none;
    z-index:99999;
    overflow:hidden;
    cursor:grab;
}

.display-side-viewer img{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%) scale(1);
    max-width:none;
    user-select:none;
    pointer-events:none;
}

/* ================= IMAGE (NO CROP, SMALLER INSIDE) ================= */ 

.display-board-body .img img{
      width: calc(100% * var(--display-page-image));     /* 🔥 10% smaller than box */
    height: calc(100% * var(--display-page-image));

    object-fit: contain;  /* 🔥 IMPORTANT: no cropping */

    display: block;

    transition: 0.4s;
}

/* ================= HOVER ================= */

.display-board-body .img:hover img{
    transform: scale(1.10);
}

.display-board-body .img:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.45);
}

/* ================= IMAGE GLOW DISPLAY IMAGE ================= */
.display-random-glow{

    display:block;

    animation:
    displayRandomGlowFloat 5s ease-in-out infinite;

    transition:
    filter .8s ease;

    will-change:
    transform,
    filter;
}

@keyframes displayRandomGlowFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }
}

/* ================= TECH PANEL ================= */

.display-board-body .tech-panel{
    margin-top:25px;
    padding:20px;
    border-radius:16px;

    background:linear-gradient(135deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02));

    border:1px solid rgba(255,255,255,0.12);

    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.display-board-body .tech-title{
    font-family:'Orbitron';
    font-size:18px;
    margin-bottom:15px;
    color:#00e5ff;
}

/* TABLE */
.display-board-body table{
    width:100%;
    border-collapse:collapse;
}

.display-board-body td{
    padding:12px;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.display-board-body td:first-child{
    color:#00e5ff;
    width:40%;
}
.product-spec-table{
    width:100%;
    border-collapse:collapse;
    margin-top:15px;
}

.product-spec-table td{
    padding:12px;
    border-bottom:1px solid rgba(255,255,255,0.12);
}

.spec-key{
    color:#9fd1ff;
    width:40%;
    font-weight:600;
}

.spec-value{
    color:#fff;
}

/* ================= RIGHT ================= */

.display-board-body .right{
    display:flex;
    flex-direction:column;
}

/* NAV BOX */
.display-board-body .nav-box{
    background:rgba(255,255,255,0.04);
    border-radius:18px;
    padding:20px;
    border:1px solid rgba(255,255,255,0.1);
    min-width:320px;
}

/* ================= SIMILAR ITEMS ================= */

.display-board-body .similar a{
    display:block;
    margin-bottom:10px;
    padding:14px 16px;
    border-radius:12px;

    text-decoration:none;
    color:#fff;

    border:1px solid rgba(255,255,255,0.12);
    background:rgba(255,255,255,0.03);

    position:relative;
    transition:0.3s;
    overflow:hidden;
}

/* YELLOW BAR */
.display-board-body .similar a::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:6px;
    height:100%;
    background:#ffcc00;
}

.display-board-body .similar a:hover{
    transform:translateX(10px);
    border-color:#ffcc00;
    background:rgba(255,204,0,0.08);
}



/* ======================================================
  END HERE DISPLAY PAGE 
====================================================== */
/* ======================================================
   DISPLAY PAGE RESPONSIVE
====================================================== */

@media (max-width:768px){

    /* Main Layout */
    .display-board-body .grid{
        display:grid;
        grid-template-columns:1fr;
        gap:25px;
        width:100%;
    }

    /* Wrapper */
    .display-board-body .wrapper{
        width:100%;
        max-width:100%;
        padding:0 15px 30px;
        overflow:hidden;
    }

    /* Critical Overflow Fix */
    .display-board-body .left,
    .display-board-body .right,
    .display-board-body .nav-box{
        width:100%;
        max-width:100%;
        min-width:0;
        overflow:hidden;
    }

    /* Title */
    .display-board-body .title-row{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .display-board-body .title{
        width:100%;
        overflow-wrap:break-word;
        word-break:break-word;
    }

    /* Description */
    .display-board-body .desc-box{
        overflow-wrap:break-word;
        word-break:break-word;
    }

    /* Images */
    .display-board-body .image-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:15px;
        width:100%;
    position:sticky;
    top:90px;

    align-self:start;
    }

    .display-board-body .main-img,
    .display-board-body .side-img{
        width:100%;
        max-width:100%;
        min-width:0;
        overflow:hidden;
        border-radius:12px;
    }

    .display-board-body .image-grid img,
    .display-board-body .main-img img,
    .display-board-body .side-img img{
        width:100%;
        max-width:100%;
        aspect-ratio:4/3;
        object-fit:contain;
        height:auto;
        display:block;
    }

    /* Similar Products */
    .display-board-body .similar{
        width:100%;
    }

    .display-board-body .similar a{
        display:block;
        overflow-wrap:break-word;
        word-break:break-word;
    }

    /* Specification Table */
    .display-board-body .product-spec-table{
        width:100%;
        max-width:100%;
        table-layout:fixed;
        border-collapse:collapse;
    }

    .display-board-body .spec-key,
    .display-board-body .spec-value{
        white-space:normal;
        overflow-wrap:break-word;
        word-break:break-word;
    }

    /* Buttons */
    .display-board-body .less-btn{
        width:100%;
        min-width:0;
        margin-left:0;
    }

    /* Universal Safety */
    .display-board-body *{
        box-sizing:border-box;
    }

    .display-board-body .nav-space{
        height:110px;
    }
}

@media (max-width:992px){

    .display-board-body .image-grid{

        position:relative;
        top:auto;

    }

}
/* ================= SMALL PHONES ================= */

@media (max-width:430px){

    .display-board-body .wrapper{
        padding:0 10px 25px;
    }

    .display-board-body .grid{
        gap:18px;
    }

    .display-board-body .title{
        font-size:clamp(22px,6vw,30px);
    }

    .display-board-body .tech-title{
        font-size:18px;
    }

    .display-board-body .product-spec-table{
        font-size:14px;
    }

    .display-board-body .image-grid img,
    .display-board-body .main-img img,
    .display-board-body .side-img img{
        aspect-ratio:1/1;
    }

    .display-board-body .nav-space{
        height:50px;DISPLAY
    }
}

/* ======================================================
   END DISPLAY PAGE RESPONSIVE
====================================================== */


/* ================= CONTACT PAGE ================= */

 .am-contact-page{
    min-height:160vh;
    display:flex;
    flex-direction:column;

        background:
        url('/assets/images/banners/contact-map.webp') no-repeat center center;
        background-size: cover;

    color:#fff;

    animation: contactBgMove 50s ease-in-out infinite;
}

@keyframes contactBgMove {
    0% {
        background-position: 20% center;
    }
    50% {
        background-position: 80% center;
    }
    100% {
        background-position: 20% center;
    }
}

/* ================= HERO ================= */

.am-contact-hero{
     padding:200px 20px 80px;
    text-align:center;
    background:
    radial-gradient(circle at top,
    rgba(255,255,255,0.08),
    transparent 60%);
}

.am-contact-title{
     font-size: clamp(1.75rem, 4vw, 3.5rem); /* 28px → 56px */
    font-weight:800;
    letter-spacing:3px;
    text-transform:uppercase;
}

.am-contact-subtitle{
    max-width:850px;
    margin:20px auto;
    color:#c7d2e0;
    line-height:1.8;
    font-size:18px;
}

/* ================= CONTAINER ================= */

.am-contact-container{
    width:95%;
    max-width:1400px;
    margin:auto;
    padding:10px 0;
}

/* ================= INFO CARDS ================= */

.am-contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.am-contact-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:20px;
    padding:35px;
    backdrop-filter:blur(15px);
    transition:.4s;
}

.am-contact-card:hover{
    transform:translateY(-8px);
    border-color:#c0c0c0;
    box-shadow:0 0 35px rgba(255,255,255,0.15);
}


.am-contact-card h3{
    margin-bottom:12px;
    color:#ffffff;
}

.am-contact-card p{
    color:#c5cfda;
    line-height:1.8;
}

/* email link */

.am-contact-card p a{
    color:#ffffff;
    text-decoration:none;
    transition:0.3s ease;
}

.am-contact-card p a:hover{
    color:#ff7300;
    text-decoration:none;
}

/* ================= FORM + QR ================= */

.am-contact-flex{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:35px;
    margin-top:60px;
}

@media(max-width:900px){
.am-contact-flex{
grid-template-columns:1fr;
}
}

.am-contact-form-box,
.am-contact-qr-box{
    background:rgba(255,255,255,0.05);
    border-radius:20px;
    padding:40px;
    border:1px solid rgba(255,255,255,0.1);
}

/* ================= FORM ================= */

.am-contact-form{
    display:grid;
    gap:20px;
}

.am-contact-form input,
.am-contact-form textarea{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    background:rgba(255,255,255,0.08);
    color:white;
    font-size:15px;
}

.am-contact-form textarea{
    height:180px;
    resize:none;
}

.am-contact-btn{
    background:linear-gradient(135deg,#b6b6b6,#ffffff);
    color:#111;
    border:none;
    padding:16px 35px;
    border-radius:50px;
    cursor:pointer;
    font-weight:bold;
    transition:.4s;
}

.am-contact-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 25px rgba(255,255,255,0.3);
}

/* ================= QR ================= */

.am-contact-qr-box{
    text-align:center;
}

.am-contact-qr{
    width:220px;
    height:220px;
    margin:25px auto;
    background:#fff;
    padding:12px;
    border-radius:15px;
}

.am-contact-qr img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.am-contact-qr-text{
    color:#c8d2de;
    line-height:1.8;
}

/* ================= MAP SECTION ================= */

.am-contact-map{
    margin-top:60px;
    border-radius:20px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.1);
}

.am-contact-map iframe{
    width:100%;
    height:450px;
    border:none;
}

/* ================= CTA ================= */

.am-contact-cta{
    text-align:center;
    padding:80px 20px;
}

.am-contact-cta h2{
    font-size:40px;
    
}
.am-contact-form-box h2,
.am-contact-cta h2{
    margin-bottom:20px;
}
.am-contact-cta p{
    color:#c5cfda;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

/* ================= WHEN TROUGH EXCEPTION BY THE FORM ================= */

.newsletter-header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:5px;
}

/* keep message stable */
.form-exception{
    display:none;
    margin-top:6px;
    font-weight:600;
    font-size:20px;
    white-space:nowrap;
}

.form-exception.show{
    display:inline-block;
}

.form-exception.success{
    color:lime;
}

.form-exception.error{
    color:#EE4B2B;
}

.loading{
    opacity:.7;
    pointer-events:none;
}

/* ================= CONTAINER ================= */
.contact-signal-box{
    position: relative;
    width: var(--signal-size);
    height: var(--signal-size);
    overflow: visible;
 margin-bottom: 15px;
}

/* ================= FLOAT ANIMATION ================= */
@keyframes contactSignalFloat {
    0%   { transform: translate(-50%, -50%) translateY(0px); }
    50%  { transform: translate(-50%, -50%) translateY(-6px); }
    100% { transform: translate(-50%, -50%) translateY(0px); }
}

/* ================= ICON ================= */
.contact-signal-icon{
    position:absolute;
    top:50%;
    left:50%;
 width: var(--signal-size);
height: var(--signal-size);
    transform:translate(-50%,-50%);
    z-index:10;
    filter: drop-shadow(0 0 12px rgba(0,255,255,0.8));
}

/* apply floating */
.contact-signal-phone .contact-signal-icon{
    animation: contactSignalFloat 2.5s ease-in-out infinite;
}

.contact-signal-email .contact-signal-icon{
    animation: contactSignalFloat 2.8s ease-in-out infinite;
}

/* ================= PULSE CORE ================= */
.contact-signal-node::after,
.contact-signal-email-node::after{
    content:"";
    position:absolute;
    top:50%;
    left:50%;

    /* 🔥 SCALE WITH ICON */
    width: calc(var(--signal-size) * 0.18);
    height: calc(var(--signal-size) * 0.18);

    transform:translate(-50%,-50%);
    border-radius:50%;
    animation:contactSignalPulse 1.5s infinite ease-in-out;
}

.contact-signal-node::after{
    background:#00f7ff;
    box-shadow:0 0 28px #00f7ff, 0 0 10px #00f7ff;
}

.contact-signal-email-node::after{
    background:#ffcc00;
    box-shadow:0 0 20px #ffcc00;
}

@keyframes contactSignalPulse{
    0%{
        transform:translate(-50%,-50%) scale(0.6);
        opacity:0.5;
    }
    50%{
        transform:translate(-50%,-50%) scale(1.4);
        opacity:1;
    }
    100%{
        transform:translate(-50%,-50%) scale(0.6);
        opacity:0.5;
    }
}

/* ================= PHONE BEAM ================= */
.contact-signal-beam{
    position:absolute;
    top:50%;
    left:50%;
    width: calc(var(--signal-size) * var(--beam-length));
    height:6px;
    transform-origin:left center;
    transform:rotate(-45deg);
    opacity:0;
    filter: blur(1px);
}

@keyframes contactSignalBeamMove{
    0%{
        transform: rotate(-45deg) translateX(0);
        opacity:0;
    }
    15%{ opacity:1; }
    100%{
        transform: rotate(-45deg) translateX(calc(var(--signal-size) * var(--beam-length)));
        opacity:0;
    }
}

.contact-signal-phone .contact-signal-beam{
    background: linear-gradient(90deg, transparent, #00f7ff, transparent);
    box-shadow:0 0 20px #00f7ff;
    animation: contactSignalBeamMove 1.6s infinite ease-out;
}

/* ================= EMAIL SEGMENTED BEAM ================= */
.contact-signal-segment{
    position:absolute;
    top:50%;
    left:50%;

    /* 🔥 SCALE WITH ICON */
    width: calc(var(--signal-size) * 0.5);
    height: clamp(3px, calc(var(--signal-size) * 0.08), 6px);

    transform-origin:left center;
    transform:rotate(-45deg) translateX(0);
    opacity:0;
    border-radius:10px;
}

@keyframes contactSignalSegmentMove{
    0%{
        transform: rotate(-45deg) translateX(0);
        opacity:0;
    }
    10%{ opacity:1; }
    100%{
        transform: rotate(-45deg) translateX(calc(var(--signal-size) * var(--beam-length)));
        opacity:0;
    }
}

/* email segments */
.contact-signal-s1{
    background:#ffcc00;
    box-shadow:0 0 12px #ffcc00;
    animation:contactSignalSegmentMove 1.6s infinite ease-out;
}

.contact-signal-s2{
    background:#00f7ff;
    box-shadow:0 0 12px #00f7ff;
    animation:contactSignalSegmentMove 1.6s infinite ease-out;
    animation-delay:0.3s;
}

.contact-signal-s3{
    background:#ff4dff;
    box-shadow:0 0 12px #ff4dff;
    animation:contactSignalSegmentMove 1.6s infinite ease-out;
    animation-delay:0.6s;
}

.contact-signal-s4{
    background:#00ff85;
    box-shadow:0 0 12px #00ff85;
    animation:contactSignalSegmentMove 1.6s infinite ease-out;
    animation-delay:0.9s;
}


/* ======================================================
  END  CONTACT  PAGE 
====================================================== */

/* ================================= START HERE CONTACT PAGE PAGES  ===================== */

@media (max-width: 768px){
    .am-contact-page{
        animation: contactBgMove 60s linear infinite;
    }

    @keyframes contactBgMove {
        0% { background-position: 20% center; }
        50% { background-position: 80% center; }
        100% { background-position: 20% center; }
    }
}



/* ================= 	START CONTACT PAGE RESPONSIVE ================= */
@media (max-width: 768px){
    :root{
        --signal-size: 60px;
        --beam-length: 2.6;
    }
}
@media (max-width: 480px){
    :root{
        --signal-size: 45px;
        --beam-length: 2.4;
    }
}

/* ================= 430px MOBILE FIX ================= */

@media (max-width:430px){

    .am-contact-container{

        width:100%;

        padding:0 12px;

        box-sizing:border-box;
    }

    .am-contact-form-box,
    .am-contact-qr-box,
    .am-contact-card{

        padding:20px;
    }

    .am-contact-title{

        font-size:34px;

        letter-spacing:1px;
    }

    .am-contact-subtitle{

        font-size:15px;
    }

    .am-contact-qr{

        width:160px;
        height:160px;
    }
 .am-contact-map{

        margin-top:40px;

        border-radius:12px;
    }

    .am-contact-map iframe{

        height:280px;
    }

}

/* ======================================================
  END HERE CONTACT PAGE 
====================================================== */


/* ================= LEGAL PAGES START HERE, ABOUT, TERMS,PRIVECY AND TERMS ================= */

/* ================= BODY ================= */

.amx-story-body{
    padding-top:90px;
    font-family:Arial, sans-serif;
    color:#fff;

    background:
      linear-gradient(180deg, rgba(5,8,22,0.88), rgba(11,20,48,0.92)),
      url("/assets/images/banners/world-map.webp") no-repeat;

    background-size: cover;

    animation: storyMove 40s ease-in-out infinite;
}

@keyframes storyMove {
     0% {
        background-position: 20% center;
    }
    50% {
        background-position: 80% center;
    }
    100% {
        background-position: 20% center;
    }
}



/* ================= WRAPPER ================= */

.amx-story-wrapper{
    display:flex;
    min-height:100dvh;
    align-items:flex-start;
}

/* ================= SIDE MENU ================= */

.amx-story-side{
    flex: 0 0 260px;

    margin-left:40px;
    margin-top:90px;

    padding:25px;

    background:rgba(0,0,0,0.45);
    border:1px solid rgba(0,229,255,0.2);
    border-radius:16px;

    position:sticky;
    top:90px;

    height:fit-content;
}

/* SIDE TITLE */

.amx-story-side-title{
    font-size:20px;
    font-weight:bold;
    color:#00e5ff;
    margin-bottom:20px;
    letter-spacing:2px;
}

/* SIDE LINKS */

.stody-hyper{
    display:block;
    padding:12px 14px;
    margin-bottom:10px;

    text-decoration:none;
    color:#d6d6d6;

    background:rgba(255,255,255,0.04);
    border-radius:10px;
    border:1px solid transparent;

    transition:0.3s;
}

.stody-hyper:hover{
    transform:translateX(6px);
    border-color:#00e5ff;
    color:#00e5ff;
}

/* ================= CONTENT ================= */

.amx-story-content{
    flex:1;

    padding:60px 40px;
    margin-left:120px;
}

/* HERO TITLE */

.amx-story-hero{
    font-size:58px;
    font-weight:900;
    letter-spacing:4px;

    margin-bottom:50px;

    color:#00e5ff;
    text-shadow:0 0 25px rgba(0,229,255,0.35);
}

/* ================= SECTION ================= */

.amx-story-section{
    margin-bottom:70px;
}

/* ================= CARD ================= */

.amx-story-card{
    padding:35px 30px;

    border-radius:18px;

    background:
    radial-gradient(circle at top left, rgba(0,229,255,0.15), transparent 60%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 55%),
    rgba(0,0,0,0.35);

    border:1px solid rgba(255,255,255,0.10);

    transition:0.35s ease;
}

.amx-story-card:hover{
    transform:translateY(-10px);
    border-color:#00e5ff;
    box-shadow:0 25px 60px rgba(0,0,0,0.6);
}

/* TITLES */

.amx-story-card-title{
    font-size:28px;
    font-weight:bold;
    margin-bottom:15px;
    color:#ff9800;
}

/* TEXT */

.amx-story-card-text{
    font-size:18px;
    line-height:1.9;
    color:#d6d6d6;
}

/* ================= MAIN FOOTER (FIXED LOCATION) ================= */

.amx-story-footer{
    margin-top:80px;
    padding:20px;

    text-align:center;
    font-size:13px;
    color:#9aa4b2;

    border-top:1px solid rgba(255,255,255,0.08);
}


/* ======================================================
  END HERE LEGAL PAGES   PAGE 
====================================================== */

/* =================LEGAL PAGES ABOUT, TERMS,PRIVECY AND COOKIES RESPONSIVE ================= */
/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {

    .amx-story-wrapper {
        display: block !important;
        min-height: auto !important;
    }

    .amx-story-side {
        flex: 0 0 100%;
        margin: 20px 0;
        position: relative;
        top: auto;
    }

    .amx-story-content {
        margin-left: 0 !important;
        padding: 30px 20px !important;
    }

    .amx-story-hero {
        font-size: 36px !important;
    }
}

@media (max-width: 600px) {

    .amx-story-body {
        padding-top: 70px;
    }

    .amx-story-side {
        flex: 0 0 100%;
        margin: 15px 0;
        padding: 18px;
        position: relative;
    }

    .amx-story-content {
        padding: 20px 12px;
    }

    .amx-story-hero {
        font-size: 28px;
        letter-spacing: 1px;
        word-break: break-word;
    }

    .amx-story-card {
        padding: 18px;
    }

    .amx-story-card-title {
        font-size: 20px;
    }

    .amx-story-card-text {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* ======================================================
  END HERE LEGAL PAGES  
====================================================== */

/* ======================================================
   START GALLERY + PHOTO PAGES
====================================================== */

/* ======================================================
   START GALLERY + PHOTO PAGES
====================================================== */

/* ================= PAGE BACKGROUND ================= */

body.gallery-page,
body.photo-page{
    min-height:100vh;

    background-image:url('/assets/images/banners/gallery-map.webp');
    background-repeat:no-repeat;
    background-size:140% 100%;
    background-position:0% center;

    animation:galleryMove 25s ease-in-out infinite alternate;
}

@keyframes galleryMove{
    0%{background-position:0% center;}
    100%{background-position:100% center;}
}

/* ================= WRAPPER ================= */

.gallery--wrapper{
    max-width:1400px;

    margin:110px auto 70px;

    padding:100px 60px 60px;

    position:relative;
    z-index:2;
}

/* ================= TITLE ================= */

.gallery--page-title{
    text-align:center;
    color:#fff;

    font-size:28px;
    letter-spacing:2px;

    margin-top:100px;
}

/* ================= CATEGORY NAV ================= */

.gallery--category-nav{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;

    gap:15px;
    margin:40px 0;
}

.gallery--category-nav a{
    cursor:pointer;

    color:#fff;
    text-decoration:none;

    padding:6px 12px;

    transition:.3s;
}

.gallery--category-nav a:hover,
.gallery--category-nav a.active{
    color:#ff9800;

    background:rgba(255,152,0,.15);

    border:1px solid rgba(255,152,0,.4);
    border-radius:6px;
}

/* ================= CATEGORY SECTION ================= */

.gallery--section{
    margin-top:100px;
}

/* ================= CATEGORY TITLE ================= */

.gallery--category-title{
    text-align:center;

    font-size:20px;
    color:#00e5ff;

    margin-bottom:25px;
}

/* ================= SLIDER ================= */

.gallery--slider{
    width:100%;
    overflow:hidden;
}

.gallery--slider .gallery--track{
    display:flex;

    width:max-content;
    margin:0 auto;

    animation:gallery--scroll 20s linear infinite;
}

@keyframes gallery--scroll{
    0%{transform:translateX(0);}
    100%{transform:translateX(-50%);}
}

.gallery--slider:hover .gallery--track{
    animation-play-state:paused;
}

/* ================= GALLERY ITEM ================= */

.gallery-page .gallery--item{
    width:200px;

    margin:0 20px;

    text-align:center;

    transition:.3s;
}

.gallery-page .gallery--item:hover{
    transform:translateY(-10px);
}

/* ================= IMAGE BOX ================= */

.gallery--img-box{
    width:200px;
    height:200px;

    aspect-ratio:1/1;

    border-radius:14px;
    overflow:hidden;

    border:1px solid rgba(255,255,255,.15);

    background:linear-gradient(
        135deg,
        #ffffff10,
        #00e5ff10
    );
}

.gallery--img-box img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:.4s;
}

.gallery-page .gallery--item:hover .gallery--img-box img{
    transform:scale(1.1);
}

/* ================= ITEM NAME ================= */

.gallery--item-name{
    display:block;

    margin-top:10px;

    color:#0079EB;
    text-decoration:none;

    transition:.3s;
}

.gallery--item-name:hover{
    color:#ff8c00;
}

/* ================= BUTTON ================= */

.gallery--btn{
    display:inline-block;

    margin-top:6px;
    padding:6px 14px;

    border-radius:20px;

    border:1px solid #ff8c00;

    color:#ff8c00;
    text-decoration:none;

    transition:.3s;
}

.gallery--btn:hover{
    background:#ff8c00;
    color:#000;
}

/* ================= BACKGROUND GLOW ================= */

#Gallery--glowContainer{
    position:fixed;
    inset:0;

    z-index:0;

    overflow:hidden;

    pointer-events:none;
}

.gallery--glow{
    position:absolute;

    width:200px;
    height:200px;

    border-radius:50%;

    filter:blur(80px);

    opacity:.25;
}

/* ================= FOOTER ================= */

.gallery--footer{
    text-align:center;

    margin-top:80px;
    padding:20px;

    color:#9fd1ff;
    font-size:14px;

    opacity:.8;
}

/* ======================================================
   PHOTO PAGE
====================================================== */

.product-grid{
    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:20px;

    padding:10px;
}

.photo-page .photo-card{
    background:#fff;

    border-radius:14px;
    overflow:hidden;

    box-shadow:0 2px 10px rgba(0,0,0,.08);

    display:flex;
    flex-direction:column;
    align-items:center;

    transition:.3s ease;
}

.photo-page .photo-card:hover{
    transform:translateY(-5px);
}

.photo-loading{
    text-align:center;
    padding:20px;
    color:#777;
}

/* ===================================================
   RESPONSIVE
=================================================== */

@media (max-width:768px){

    .gallery--wrapper{
        margin:80px auto 40px;
        padding:70px 20px 40px;
    }

    .gallery--category-nav{
        justify-content:center;
        flex-wrap:wrap;
        gap:10px;
        margin:25px 0;
    }

    .product-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:15px;
        padding:0;
    }

    .photo-card{
        width:100%;
        margin:0;
    }

    .gallery--img-box{
        width:100%;
        max-width:220px;
        height:auto;
        aspect-ratio:1/1;
        margin:auto;
    }

    .gallery--img-box img{
        width:100%;
        height:100%;
        object-fit:cover;
    }
}

@media (max-width:480px){

    .gallery--wrapper{
        margin:70px auto 30px;
        padding:90px 10px 30px;
    }

    .product-grid{
        grid-template-columns:1fr;
        gap:12px;
    }

    .photo-card{
        width:100%;
        max-width:320px;
        margin:auto;
    }

    .gallery--category-nav{
        width:100%;
        justify-content:center;
        gap:8px;
    }

    .gallery--category-nav a{
        width:100%;
        max-width:280px;
        text-align:center;
    }

    .gallery--img-box{
        max-width:200px;
    }
}

@media (max-width:350px){

    .gallery--wrapper{
        margin:60px auto 20px;
        padding:40px 8px 20px;
    }

    .gallery--img-box{
        max-width:170px;
    }

    .gallery--category-nav a{
        max-width:100%;
        font-size:14px;
    }
}

/* ======================================================
   END GALLERY + PHOTO PAGES
====================================================== */
/* ======================================================
   END GALLERY + PHOTO PAGES
====================================================== */
/* ================= VIDEO.PHP START HERE  ================= */

.video-page-body{
    min-height:100vh;

    background:
        /* subtle grid lines */
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,0.03) 0px,
            rgba(255,255,255,0.03) 1px,
            transparent 1px,
            transparent 120px
        ),

        repeating-linear-gradient(
            0deg,
            rgba(255,255,255,0.03) 0px,
            rgba(255,255,255,0.03) 1px,
            transparent 1px,
            transparent 120px
        ),

        /* dark overlay */
        linear-gradient(
            rgba(0,0,0,0.65),
            rgba(0,0,0,0.65)
        ),

        /* background image */
        url('/assets/images/banners/video-map.webp')
        no-repeat center center;

    background-size:
        auto,
        auto,
        auto,
        cover;

    color:#fff;

    animation:videoBgMove 50s ease-in-out infinite;
}

@keyframes videoBgMove{
    0%{
        background-position:
            0 0,
            0 0,
            center center,
            20% center;
    }

    50%{
        background-position:
            0 0,
            0 0,
            center center,
            80% center;
    }

    100%{
        background-position:
            0 0,
            0 0,
            center center,
            20% center;
    }
}


/* ================= TOP BAR ================= */
.top-bar{
    position:fixed;
    top:0;
    left:0;
    right:0;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 20px;
    background:#0b1220;
    z-index:1000;
}

/* ================= BACK BUTTON (MIDDLE RIGHT) ================= */
.back-btn{
    position:fixed;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    
    background:#ff8c00;
    border:none;
    padding:10px 16px;
    font-weight:bold;
    border-radius:8px;
    cursor:pointer;
    z-index:2000;

    display:none;
    box-shadow:0 4px 15px rgba(0,0,0,0.4);
}

/* ================= TITLE ================= */
.page-main-title{
    margin: 120px 0 20px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1rem, 3vw, 2.675rem);
    font-weight: 800;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.3;
}

.page-title{
    text-align: center;
   font-size: clamp(1rem, 2vw, 1.5rem);
    color: #00e5ff;
}

/* ================= GRID ================= */
.video-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:30px;
    max-width:1200px;
    margin:40px auto;
    padding:0 20px;
}

/* ================= CARD ================= */
.video-card{
    position:relative;
    border-radius:14px;
    overflow:hidden;
    cursor:pointer;
    background:#111;
}

/* ================= 16:9 BOX ================= */
.video-box{
    position:relative;
    width:100%;
    padding-top:56.25%;
}

/* ================= THUMBNAIL ================= */
.video-box img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.3s;
}

/* hover zoom */
.video-card:hover img{
    transform:scale(1.05);
    filter:brightness(0.7);
}

/* ================= PLAY ICON ================= */
.play-icon{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:45px;
    color:#fff;
    opacity:0.8;
    pointer-events:none;
    transition:0.3s;
}

.video-card:hover .play-icon{
    opacity:0;
}

/* ================= FULLSCREEN PLAYER ================= */
.fullscreen{
    position:fixed;
     top:100px; 
    left:0;
    width:100%;
     height:calc(100vh - 200px); /* 👈 leave space for footer too */
    background:black;
    display:none;
    align-items:center;
    justify-content:center;
    z-index:999;
}

.fullscreen video{
    width:90%;
    height:90%;
    object-fit:contain;
}

.video-box{
    position:relative;
    width:100%;
    padding-top:56.25%;
    overflow:hidden;
}

/* thumbnail */
.video-box img.thumb{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.3s;
}

/* hover video */
.video-box video.hover-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    pointer-events: none;
    opacity:0;
    transition:0.3s;
}

/* hover effect */
.video-card:hover img.thumb{
    opacity:0;
}

.video-card:hover video.hover-video{
    opacity:1;
}

/* play icon */
.play-icon{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:45px;
    color:#fff;
    pointer-events:none;
    transition:0.3s;
}

.video-card:hover .play-icon{
    opacity:0;
}
/* ================= FOOTER ================= */
.footer{
    text-align:center;
    padding:30px;
    margin-top:50px;
    color:#9fd1ff;
    font-size:14px;
}

/* ================= END HERE VIDEO.PHP START HERE  ================= */


/* ================= DASHBOARD ================= */

.amd-body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:#0b1220;
    color:#fff;
}

/* ================= LAYOUT ================= */

.amd-wrapper{
    display:flex;
    min-height:calc(100vh - 120px);
    margin-top:120px;
}

/* ================= SIDEBAR ================= */

.amd-sidebar{

    width:280px;

    background:
    linear-gradient(
    180deg,
    #0f172a,
    #172338);

    border-right:
    1px solid rgba(255,255,255,.08);

    padding:30px 0;
}

.amd-logo{
    text-align:center;
    margin-bottom:40px;
}

.amd-logo h2{
    margin:0;
    color:#fff;
    letter-spacing:3px;
}

.amd-logo span{
    color:#aab7cc;
    font-size:12px;
}

.amd-menu{
    list-style:none;
    margin:0;
    padding:0;
}

.amd-menu li{
    margin:5px 15px;
}

.amd-menu a{

    display:block;

    padding:15px 20px;

    color:#d5deeb;

    text-decoration:none;

    border-radius:12px;

    transition:.3s;
}

.amd-menu a:hover{

    background:
    rgba(255,255,255,.08);

    color:#fff;
}

/* ================= CONTENT ================= */

.amd-content{
    flex:1;
    padding:30px;
}

/* ================= TOPBAR ================= */

.amd-topbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;
}

.amd-title{
    font-size:32px;
    font-weight:bold;
}

.amd-admin-user{

    background:
    rgba(255,255,255,.06);

    padding:12px 20px;

    border-radius:50px;
}

/* ================= STATS ================= */

.amd-stats{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:20px;

    margin-bottom:35px;
}

.amd-stat-card{

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:25px;

    transition:.3s;
}

.amd-stat-card:hover{

    transform:translateY(-5px);

    box-shadow:
    0 0 25px rgba(255,255,255,.08);
}

.amd-stat-number{

    font-size:38px;

    font-weight:bold;

    margin-top:10px;
}

.amd-stat-label{
    color:#b7c4d7;
}

/* ================= QUICK ACTIONS ================= */

.amd-actions{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:20px;

    margin-bottom:35px;
}

.amd-action-btn{

    background:
    linear-gradient(
    135deg,
    #c9c9c9,
    #ffffff);

    color:#111;

    text-decoration:none;

    text-align:center;

    padding:18px;

    border-radius:15px;

    font-weight:bold;

    transition:.3s;
}

.amd-action-btn:hover{
    transform:translateY(-3px);
}

/* ================= TABLE ================= */

.amd-table-box{

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:20px;

    overflow:hidden;
}

.amd-table-title{

    padding:20px;

    font-size:22px;

    font-weight:bold;
}

.amd-table{

    width:100%;

    border-collapse:collapse;
}

.amd-table th{

    background:
    rgba(255,255,255,.08);

    text-align:left;

    padding:15px;
}

.amd-table td{

    padding:15px;

    border-top:
    1px solid rgba(255,255,255,.05);
}

.amd-status{

    padding:6px 12px;

    border-radius:30px;

    background:#1f7a3d;
}

/* ======================================================
   🚀 AMX CATALOG DESIGN SYSTEM (BOOTSTRAP FREE)
====================================================== */

body.amx-catalog{
      font-family:Arial, sans-serif;
    color:#fff;

    background:
      linear-gradient(180deg, rgba(5,8,22,0.88), rgba(11,20,48,0.92)),
      url("/assets/images/banners/world-map.webp") no-repeat;

    background-size: cover;

    animation: catalogMove 40s ease-in-out infinite;
}

@keyframes catalogMove {
     0% {
        background-position: 20% center;
    }
    50% {
        background-position: 80% center;
    }
    100% {
        background-position: 20% center;
    }
}

/* ================= WRAPPER ================= */
.amx-wrapper{

    position:relative;

    z-index:2;

    padding:120px 40px 200px;
}

/* ================= TITLE ================= */
.amx-title{
    position:sticky;
    top:0;
    z-index:999;

    text-align:center;
    font-size:28px;
    letter-spacing:3px;
    padding:100px 60px;

    background:rgba(0,0,0,0.65);

    border-bottom:1px solid rgba(255,140,0,0.25);

    /* 🔥 GRADIENT TEXT */
    background: linear-gradient(90deg, #ff8c00, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-weight:700;
}
/* ================= GRID SYSTEM ================= */
.amx-catalog-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:35px;
    max-width:1300px;
    margin:0 auto;
}

/* ================= CARD ================= */
.amx-catalog-card{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:18px;
    padding:22px;
    backdrop-filter:blur(12px);
    transition:0.3s;
    overflow:hidden;
}

.amx-catalog-card:hover{
    transform:translateY(-8px);
}

/* CARD TITLE */
.amx-card-title{
    text-align:center;
    font-size:20px;
    color:#fff;
    margin-bottom:18px;
}

/* ================= PDF PREVIEW ================= */
.amx-pdf{
    width:100%;
    height:790px;
    border:none;
    border-radius:12px;
    background:#000;
}

/* ================= BUTTON SYSTEM ================= */
.amx-btn-group{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:18px;
}

.amx-btn{
    padding:10px 18px;
    border-radius:25px;
    font-size:14px;
    text-decoration:none;
    transition:0.3s;
    display:inline-block;
}

/* VIEW BUTTON */
.amx-btn-view{
    border:1px solid #00e5ff;
    color:#00e5ff;
}

.amx-btn-view:hover{
    background:#00e5ff;
    color:#000;
}

/* DOWNLOAD BUTTON */
.amx-btn-download{
    border:1px solid #ff8c00;
    color:#ff8c00;
}

.amx-btn-download:hover{
    background:#ff8c00;
    color:#000;
}

/* ================= RESPONSIVE CATALOGUE================= */

@media(max-width:900px){
    .amx-catalog-grid{
        grid-template-columns:1fr;
    }

    .amx-pdf{
        height:380px;
    }
}

@media (max-width:430px){

    .amx-wrapper{

        padding:90px 12px 120px;
    }

}

/* ======================================================
   NEW LOGING PAGE START HERE
================================================================ */
/* ================= MESSAGE ================= */

/* ================= BODY ================= */
.login-page-body{
    min-height:160vh;
    display:flex;
    flex-direction:column;

    background: url('/assets/images/banners/world-map.webp') no-repeat center center;
    background-size: cover;

    color:#fff;

    animation: bgMove 18s ease-in-out infinite;
}

/* LEFT ↔ RIGHT MOVEMENT */
@keyframes bgMove {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}
/* ================= NAV OFFSET HEADER ================= */
.login-page-header{
    text-align:center;
    padding-top:180px;
    font-size:26px;
    font-weight:bold;
    letter-spacing:1px;
}

/* ================= WRAPPER ================= */
.login-page-wrapper{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:60px 15px;
}

/* ================= LOGIN CARD ================= */
.login-card{
    width:100%;
    max-width:380px;

    padding:35px;

    border-radius:16px;

    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(18px);

    border:1px solid rgba(255,255,255,0.12);

    box-shadow:0 0 40px rgba(0,0,0,0.4);

    text-align:center;
}

/* INPUTS */
.login-card input{
    width:100%;
    padding:12px 14px;
    margin-bottom:12px;

    border-radius:10px;

    border:1px solid rgba(255,255,255,0.15);

    background: rgba(0,0,0,0.25);

    color:#fff;
    outline:none;
}

/* BUTTON */
.login-card button{
    width:100%;
    padding:12px;

    border:none;
    border-radius:30px;

    background: linear-gradient(135deg,#ff9800,#ff5722);
    color:#fff;

    font-weight:bold;
    cursor:pointer;

    transition:0.3s;
}

.login-card button:hover{
    transform:translateY(-2px);
}

/* ================= FOOTER ================= */
.login-page-footer{
    text-align:center;
    padding:20px;
    font-size:12px;
    color:rgba(255,255,255,0.6);
}


/* ======================================================
  ADDITIONAL FEATURES JS CLASS class="typewriter" data-text="
================================================================ */
/* ========================================
   TYPEWRITER STABLE VERSION
======================================== */

.display-type-panel{

    width:min(700px,90vw);

    height:80px;

     margin:0 auto 40px;

    display:grid;
    place-items:center;

    overflow:hidden;

    border-radius:14px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    box-sizing:border-box;

    position:relative;
}

/* TYPEWRITER */

.display-type-panel .typewriter{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    white-space:nowrap;

    margin:0;
    padding:0;

    font-family:'Orbitron',sans-serif;

    font-size:clamp(20px,3vw,42px);

    font-weight:700;

    line-height:1;

    color:#FDDA0D;

    text-shadow:0 0 10px rgba(255,204,102,.4);

    box-sizing:border-box;
}

/* TABLET */

@media(max-width:768px){

    .display-type-panel{

        width:min(600px,92vw);

        height:65px;

        margin:0px auto 30px;
    }

    .display-type-panel .typewriter{

        font-size:22px;
    }

}

/* MOBILE */

@media(max-width:430px){

    .display-type-panel{

        width:85%;

        max-width:320px;

        height:55px;

        margin:0px auto 20px;
    }

    .display-type-panel .typewriter{

        font-size:18px;
    }

}

/* ======================================================
   BASE PRODUCTS PAGE START HERE 
====================================================== */
/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width:1024px){

    .product-base-page-grid{

        grid-template-columns:
        repeat(auto-fit,minmax(320px,1fr));

        gap:100px 30px;

        margin-left:15px;
        margin-right:15px;
    }

    .product-base-page-card{
        padding:30px 25px 110px;
    }

    .product-base-page-imgBox{

        width:160px;
        height:160px;
        min-width:160px;
    }

    .product-base-page-cat h2{
        font-size:28px;
    }

    .product-base-page-info h3{
        font-size:20px;
    }
}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width:768px){

    .product-base-page-top{

        padding-top:130px;
        margin-bottom:40px;
    }

    .product-base-page-title{
        font-size:2.3rem;
    }

    .product-base-page-desc{

        padding:0 20px;
        font-size:15px;
    }

    .product-base-page-grid{

        grid-template-columns:1fr;

        gap:60px;

        margin-left:12px;
        margin-right:12px;
    }

    .product-base-page-card{

        padding:25px 20px 100px;

        border-radius:25px;
    }

    .product-base-page-product{

        flex-direction:column;

        text-align:center;

        gap:15px;
    }

    .product-base-page-imgBox{

        width:100%;
        height:260px;

        min-width:100%;
    }

    .product-base-page-arrow{

        width:45px;
        height:45px;
    }

    .product-base-page-cat h2{
        font-size:24px;
    }

    .product-base-page-info h3{
        font-size:20px;
    }

    .product-base-page-info p{
        font-size:14px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width:480px){

    .product-base-page-top{
        padding-top:130px;
    }

    .product-base-page-title{
        font-size:2rem;
    }

    .product-base-page-badge{

        font-size:11px;

        padding:8px 18px;
    }

    .product-base-page-grid{

        gap:30px;
        margin-left:10px;
        margin-right:10px;
    }

    .product-base-page-card{

        padding:20px 15px 95px;

        border-radius:20px;
    }

    .product-base-page-imgBox{
        height:220px;
    }

    .product-base-page-cat h2{
        font-size:22px;
    }

    .product-base-page-info h3{
        font-size:18px;
    }

    .product-base-page-explore{
        height:80px;
    }

    .product-base-page-explore span{
        font-size:13px;
        letter-spacing:1px;
    }
}


/* ======================================================
  END HERE BASE PRODUCTS PAGE 
====================================================== */

/* ================= START HERE CATAGORIES PAGE RESPONSIVE ================= */

@media(max-width:900px){
    .cata-base-grid{
        grid-template-columns:1fr;
    }
}

/* ======================================================
  END HERE CATAGORIES  PAGE 
====================================================== */



/* ================= LOGIN PAGE RESPONSIVE ================= */

@media (max-width:768px){

    .am-admin-card{
        width:95%;
        padding:35px 25px;
        border-radius:20px;
    }

    .am-admin-logo h1{
        font-size:28px;
        letter-spacing:2px;
    }

    .am-admin-logo span{
        font-size:11px;
        letter-spacing:1px;
    }

    .am-admin-badge{
        margin:20px 0;
    }

    .am-admin-badge span{
        font-size:11px;
        padding:7px 14px;
    }

    .am-admin-input{
        padding:14px 16px;
        font-size:14px;
    }

    .am-admin-options{
        flex-direction:column;
        gap:12px;
        align-items:flex-start;
    }

    .am-admin-remember,
    .am-admin-forgot{
        font-size:13px;
    }

    .am-admin-btn{
        padding:14px;
        font-size:14px;
    }

    .am-admin-footer{
        font-size:11px;
    }

    .am-admin-bg-glow{
        width:500px;
        height:500px;
    }
}

/* ================= SMALL MOBILE ================= */

@media (max-width:480px){

    .am-admin-card{
        width:92%;
        padding:28px 18px;
        border-radius:18px;
    }

    .am-admin-logo h1{
        font-size:24px;
    }

    .am-admin-logo span{
        font-size:10px;
    }

    .am-admin-badge span{
        font-size:10px;
        padding:6px 12px;
    }

    .am-admin-input{
        padding:13px 14px;
        font-size:14px;
    }

    .am-admin-btn{
        padding:13px;
        font-size:13px;
    }

    .am-admin-bg-glow{
        width:350px;
        height:350px;
    }
}

/* ================= login end here================= */

/* ================= START DASHBOARD ================= */
/* ================= MOBILE ================= */

@media(max-width:900px){

.amd-wrapper{
    flex-direction:column;
}

.amd-sidebar{
    width:100%;
}

}





@media (max-width:991px){
    .video-grid{
        grid-template-columns:1fr;
    }
}
@media (max-width:430px){

    .gallery--category-nav{
        justify-content:center;
        align-items:center;
        gap:10px;
        padding:0 10px;
    }

    .gallery--category-nav a{
        width:100%;
        max-width:280px;
        text-align:center;
    }

}

/* ================= SEARCH BOX CSS ================= */

/* ==========================
   WRAPPER
========================== */

.search-wrapper{
    max-width:350px;
    width:100%;
    position: relative;
}


/* ==========================
   SEARCH BOX
========================== */

.search-box{
    position:relative;
}

.floating-search{
    position: fixed;
    top: 120px;          /* Navbar height + desired gap */
    right: 20px;
    width:clamp(220px, 28vw, 360px);       /* Adjust as needed */
    z-index: 9998;       /* Slightly below navbar if navbar is 9999 */
    transition: all .25s ease;
}


.search-box input{
    width:100%;
    height:68px;
    border:none;
    outline:none;
    border-radius:60px;
    padding:0 75px 0 25px;
    font-size:18px;
    color:#ff8c00;

    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(16px);

    transition:.35s;
    box-shadow:0 18px 40px rgba(0,0,0,.35);
}

.search-box input::placeholder{
        color:#ff6a00;
    opacity:1;
}

.search-box input:focus{
    border-color:#60a5fa;
    box-shadow:
        0 0 0 5px rgba(59,130,246,.18),
        0 18px 40px rgba(0,0,0,.40);
}

/* ==========================
   BUTTON
========================== */

.search-btn{
    position:absolute;
    right:8px;
    top:50%;
    transform:translateY(-50%);
    width:54px;
    height:54px;
    border:none;
    border-radius:50%;
    cursor:pointer;

    display:flex;
    justify-content:center;
    align-items:center;

    background:linear-gradient(135deg,#3b82f6,#06b6d4);
    transition:.35s;
    box-shadow:0 10px 28px rgba(37,99,235,.45);
}

.search-btn:hover{
    transform:translateY(-50%) scale(1.08);
    box-shadow:0 15px 35px rgba(37,99,235,.60);
}

.search-btn:active{
    transform:translateY(-50%) scale(.95);
}

/* ==========================
   SVG ICON
========================== */

.search-icon{
    width:24px;
    height:24px;
    fill:none;
    stroke:#ffffff;
    stroke-width:2.5;
    stroke-linecap:round;
    stroke-linejoin:round;
}

/* ==========================================
   DROPDOWN BASE
========================================== */

.search-results{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    margin-top:12px;

    border-radius:18px;
    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.18);

    display:none;
    z-index:9999;

    animation:dropdown .18s ease;
}

/* OPEN ANIMATION */
@keyframes dropdown{
    from{
        opacity:0;
        transform:translateY(-8px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ==========================
   LIGHT MODE (DEFAULT)
========================== */

.search-results{
    background:#ffffff;
}

/* ==========================
   DARK NAVY MODE (JS ENABLED)
========================== */

.search-results.dark-mode{
    background:#0b1b3a;
    border:1px solid rgba(255,165,0,0.25);
}

/* ==========================
   ITEMS
========================== */

.search-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px 18px;
    cursor:pointer;
    transition:.25s;
    border-bottom:1px solid #f1f5f9;
    font-size:15px;
    color:#111827;
}

.search-item:last-child{
    border-bottom:none;
}

.search-item:hover{
    background:#eff6ff;
}

.search-item svg{
    width:18px;
    height:18px;
    stroke:#2563eb;
}

/* DARK MODE ITEMS */
.search-results.dark-mode .search-item{
    color:orange;
    border-bottom:1px solid rgba(255,165,0,0.12);
}

.search-results.dark-mode .search-item:hover{
    background:#102a57;
}

.search-results.dark-mode .search-item svg{
    stroke:orange;
}

/* ==========================
   NO RESULT
========================== */

.no-result{
    padding:18px;
    text-align:center;
    color:#64748b;
    font-size:15px;
}

.search-results.dark-mode .no-result{
    color:orange;
}

/* ==========================
   HIGHLIGHT
========================== */

mark{
    background:yellow;
    color:black;
}

/* ==========================
   RESPONSIVE
========================== */


/* Tablet */

@media (max-width:991px){

    .floating-search{

    top:90px;      /* 80px navbar + 10px gap */
        right:10px;
        width:clamp(220px,42vw,280px);

    }

    .search-box input{

        height:50px;

        padding:0 58px 0 18px;

        font-size:15px;

    }

    .search-btn{

        width:40px;
        height:40px;

        right:5px;

    }

}

@media(max-width:700px){

     .floating-search{
        top:60px;
        right:10px;
        width:clamp(160px,60vw,230px);

    }
.search-box input{
    height:60px;
    font-size:16px;

}

.search-btn{
    width:48px;
    height:48px;
}

.search-icon{
    width:21px;
    height:21px;
}

}

/* Mobile */

/* ==========================
   MOBILE
========================== */

@media (max-width:576px){

     .floating-search{
        top:60px;
        right:10px;
        width:clamp(160px,60vw,230px);

    }

    .search-box input{

        height:42px;

        border-radius:40px;

        padding:0 48px 0 15px;

        font-size:14px;

    }

    .search-btn{

        width:34px;
        height:34px;

        right:4px;

    }

    .search-icon{

        width:15px;
        height:15px;

    }

}