*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f5f7fb;
color:#222;
line-height:1.6;
}

header{
background:#0b3d91;
color:#fff;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.logo{
font-size:34px;
font-weight:bold;
letter-spacing:2px;
}

nav{
display:flex;
gap:20px;
}

nav a{
color:#fff;
text-decoration:none;
font-weight:bold;
transition:.3s;
}

nav a:hover{
color:#25D366;
}

.hero{
display:flex;
flex-wrap:wrap;
align-items:center;
justify-content:space-between;
padding:70px 8%;
background:linear-gradient(135deg,#0b3d91,#1565c0);
color:#fff;
}

.left{
max-width:500px;
}

.offer-badge{
display:inline-block;
background:#ff9800;
padding:10px 18px;
border-radius:30px;
font-size:16px;
font-weight:bold;
margin-bottom:20px;
}

.left h1{
font-size:50px;
margin-bottom:15px;
color:#fff;
}

.left h2{
font-size:30px;
margin-bottom:15px;
}

.left p{
font-size:20px;
margin-bottom:30px;
}

.btn{
display:inline-block;
background:#25D366;
color:#fff;
padding:15px 30px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
transition:.3s;
}

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

.right{
    margin-top:30px;
}

.right img{
    width:100%;
    max-width:520px;
    display:block;
    margin:25px auto 0;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.3);
}
.services{
padding:70px 8%;
text-align:center;
}

.services h2{
font-size:36px;
margin-bottom:35px;
color:#0b3d91;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.card{
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,.1);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card i{
font-size:45px;
color:#0b3d91;
margin-bottom:15px;
}

.card h3{
font-size:22px;
}

#gallery img{
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.floating-whatsapp{
position:fixed;
bottom:20px;
right:20px;
width:60px;
height:60px;
background:#25D366;
color:#fff;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:32px;
text-decoration:none;
box-shadow:0 6px 15px rgba(0,0,0,.3);
z-index:999;
}

@media(max-width:768px){

header{
flex-direction:column;
}

nav{
margin-top:15px;
flex-wrap:wrap;
justify-content:center;
}

.hero{
text-align:center;
padding:50px 6%;
}

.left h1{
font-size:36px;
}

.left h2{
font-size:24px;
}

.left p{
font-size:18px;
}
  }
.menu-btn{
    font-size:32px;
    color:#fff;
    cursor:pointer;
    display:none;
}

@media (max-width:768px){

.menu-btn{
    display:block;
}

nav{
    display:none;
    flex-direction:column;
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#0b3d91;
    padding:20px;
}

nav.active{
    display:flex;
}

nav a{
    margin:10px 0;
}
}
.floating-whatsapp {
    animation: whatsappPulse 1.2s ease-in-out infinite !important;
    transform-origin: center !important;
}

.floating-whatsapp::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: whatsappRing 1.5s infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
}

@keyframes whatsappRing {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
.floating-whatsapp {
    position: fixed;
    z-index: 9999;
    overflow: visible !important;
}

.floating-whatsapp::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 3px solid #25D366;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    animation: whatsappRing 1.5s ease-out infinite;
    pointer-events: none;
}

@keyframes whatsappRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}
.floating-whatsapp {
    outline: 4px solid #25D366 !important;
    outline-offset: 8px !important;
}
/* AVAILABLE LAPTOPS */

.stock-section {
    padding: 70px 20px;
    text-align: center;
    background: #f7f9fc;
}

.stock-section h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.stock-subtitle {
    color: #666;
    margin-bottom: 35px;
}

.stock-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.laptop-card {
    position: relative;
    width: 300px;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.10);
    transition: 0.3s ease;
}

.laptop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.16);
}

.laptop-card img {
    width: 100%;
    height: 210px;
    object-fit: contain;
    padding: 15px;
}

.stock-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #111;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.laptop-info {
    padding: 20px;
    text-align: left;
}

.laptop-info h3 {
    font-size: 21px;
    margin-bottom: 15px;
}

.laptop-info p {
    margin: 7px 0;
    color: #555;
}

.laptop-price {
    font-size: 25px;
    font-weight: bold;
    margin: 18px 0;
}

.stock-whatsapp {
    display: block;
    text-align: center;
    background: #25D366;
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

.stock-whatsapp:hover {
    transform: scale(1.03);
}
.brand-card{
    background:#fff;
    border-radius:18px;
    padding:20px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.brand-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.brand-card img{
    width:180px;
    height:140px;
    object-fit:contain;
    transition:.35s;
}

.brand-card:hover img{
    transform:scale(1.08);
}

.brand-card h3{
    margin-top:15px;
    color:#0b3d91;
    font-size:22px;
}
/* BRAND CARDS FINAL FIX */

#brands .cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px;
}

#brands .brand-card {
    width: 100% !important;
    min-width: 0 !important;
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

#brands .brand-card img {
    display: block;
    width: 100% !important;
    max-width: 220px !important;
    height: 160px !important;
    object-fit: contain !important;
    margin: 0 auto;
}

#brands .brand-card h3 {
    margin: 12px 0 0;
    font-size: 20px;
    color: #0b3d91;
}

#brands .brand-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0,0,0,.14);
}

#brands .brand-card:hover img {
    transform: scale(1.05);
}

/* Mobile */

@media (max-width: 768px) {
    #brands .cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 0 15px;
    }

    #brands .brand-card img {
        height: 110px !important;
        max-width: 150px !important;
    }

    #brands .brand-card {
        padding: 15px 10px;
    }
}
.brand-grid {
    width: 90%;
    max-width: 1100px;
    margin: 35px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.brand-item {
    background: white;
    border-radius: 18px;
    padding: 20px;
    height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    overflow: hidden;
}

.brand-item img {
    width: 100%;
    height: 190px;
    object-fit: contain;
    display: block;
}

.brand-item h3 {
    margin: 8px 0 0;
    font-size: 20px;
    color: #174a96;
}

.brand-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.brand-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        width: 94%;
    }

    .brand-item {
        height: 190px;
        padding: 12px;
    }

    .brand-item img {
        height: 135px;
    }
}
/* ===== BRANDS SECTION ===== */

.brands-section {
    padding: 70px 20px 90px;
    text-align: center;

    background:
        radial-gradient(circle at 15% 20%, rgba(74, 144, 226, 0.18), transparent 32%),
        radial-gradient(circle at 90% 75%, rgba(80, 160, 255, 0.20), transparent 35%),
        linear-gradient(135deg, #f4f9ff, #dcecff);
}

.brands-section h2 {
    font-size: 38px;
    color: #12499b;
    margin-bottom: 10px;
}

.brand-line {
    width: 75px;
    height: 5px;
    background: #2f80ed;
    border-radius: 10px;
    margin: 0 auto 35px;
}

.brand-grid {
    max-width: 1000px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.brand-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 22px;
    padding: 20px;

    height: 320px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    box-shadow: 0 10px 25px rgba(20, 70, 130, 0.15);

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.brand-card img {
    width: 100%;
    height: 235px;

    object-fit: contain;
    display: block;
}

.brand-card h3 {
    font-size: 25px;
    color: #12499b;
    margin: 8px 0 0;
}

/* Hover effect */

.brand-card:hover {
    transform: translateY(-8px) scale(1.02);

    box-shadow:
        0 18px 35px rgba(20, 70, 130, 0.25);
}

/* Tablet */

@media (max-width: 850px) {

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

}

/* Mobile */

@media (max-width: 550px) {

    .brands-section {
        padding: 50px 15px;
    }

    .brands-section h2 {
        font-size: 30px;
    }

    .brand-grid {
        grid-template-columns: 1fr;
    }

    .brand-card {
        height: 300px;
    }

}
/* =========================================
   LAPCOREX NEON / GLOSSY THEME
   ========================================= */

:root {
    --dark: #020817;
    --dark2: #06152d;
    --blue: #00a8ff;
    --cyan: #00e5ff;
    --green: #8cff00;
    --green2: #39ff14;
    --text: #ffffff;
    --muted: #b8c6d9;
}

/* PAGE */

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 20% 20%, rgba(0,168,255,.12), transparent 30%),
        radial-gradient(circle at 80% 60%, rgba(140,255,0,.08), transparent 30%),
        linear-gradient(135deg, #020817, #06152d 55%, #010611);
    color: var(--text);
}

/* HEADER */

header {
    background: rgba(2, 8, 23, .94) !important;
    border-bottom: 1px solid rgba(0,229,255,.7);
    box-shadow:
        0 0 10px rgba(0,168,255,.4),
        0 0 28px rgba(0,168,255,.18);
    backdrop-filter: blur(12px);
}

header h1,
.logo {
    color: var(--blue) !important;
    text-shadow:
        0 0 8px rgba(0,168,255,.8),
        0 0 20px rgba(0,168,255,.35);
}

/* NAVIGATION */

nav a {
    color: #fff !important;
    position: relative;
    transition: .3s ease;
}

nav a:hover {
    color: var(--green) !important;
    text-shadow: 0 0 10px rgba(140,255,0,.8);
}

nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--green);
    box-shadow: 0 0 10px var(--green);

    transform: translateX(-50%);
    transition: .3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* HERO */

.hero {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at 65% 45%, rgba(0,168,255,.17), transparent 32%),
        radial-gradient(circle at 80% 60%, rgba(140,255,0,.10), transparent 25%),
        linear-gradient(120deg, #020817, #06152d 60%, #010611) !important;

    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;

    top: -250px;
    right: -120px;

    background: var(--blue);
    opacity: .08;
    filter: blur(90px);
    border-radius: 50%;
}

.hero h1,
.hero h2 {
    color: white;
    text-shadow: 0 0 20px rgba(0,168,255,.2);
}

.hero h1 span,
.hero h2 span {
    color: var(--green);
    text-shadow: 0 0 18px rgba(140,255,0,.45);
}

.hero p {
    color: var(--muted);
}

/* HERO IMAGE */

.hero img {
    filter:
        drop-shadow(0 15px 25px rgba(0,0,0,.5))
        drop-shadow(0 0 12px rgba(0,168,255,.18));

    transition: .4s ease;
}

.hero img:hover {
    transform: translateY(-8px) scale(1.02);
}

/* BUTTONS */

.btn,
.hero a,
.stock-whatsapp {
    border-radius: 10px !important;
    transition: .3s ease !important;
}

.btn,
.stock-whatsapp {
    background: linear-gradient(135deg, #62d900, #9cff00) !important;
    color: #04120a !important;

    box-shadow:
        0 0 8px rgba(140,255,0,.6),
        0 0 25px rgba(140,255,0,.25);

    border: 1px solid var(--green) !important;
}

.btn:hover,
.stock-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 12px rgba(140,255,0,.9),
        0 0 35px rgba(140,255,0,.45);
}

/* =========================================
   BRANDS
   ========================================= */

.brands-section,
#brands {
    background:
        radial-gradient(circle at 50% 0%, rgba(0,168,255,.12), transparent 40%),
        linear-gradient(180deg, #031126, #020817) !important;

    color: white;
}

.brands-section h2,
#brands h2 {
    color: #fff !important;
    font-size: 38px;

    text-shadow:
        0 0 10px rgba(0,168,255,.6),
        0 0 25px rgba(0,168,255,.25);
}

.brand-line {
    background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
    box-shadow: 0 0 12px var(--cyan);
}

/* BRAND CARDS */

.brand-card,
.brand-item {
    position: relative;

    background:
        linear-gradient(
            145deg,
            rgba(8,30,58,.96),
            rgba(2,10,24,.98)
        ) !important;

    border: 1px solid rgba(0,200,255,.75);

    box-shadow:
        inset 0 0 20px rgba(0,168,255,.05),
        0 0 8px rgba(0,168,255,.25),
        0 10px 30px rgba(0,0,0,.45) !important;

    color: white;
    overflow: hidden;
}

/* glossy shine */

.brand-card::before,
.brand-item::before {
    content: "";
    position: absolute;

    top: -80%;
    left: -80%;

    width: 70%;
    height: 250%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.13),
        transparent
    );

    transform: rotate(25deg);
    transition: .7s;
}

.brand-card:hover::before,
.brand-item:hover::before {
    left: 130%;
}

.brand-card:hover,
.brand-item:hover {
    transform: translateY(-8px) scale(1.02);

    border-color: var(--green);

    box-shadow:
        0 0 10px rgba(0,168,255,.8),
        0 0 25px rgba(0,168,255,.35),
        0 0 35px rgba(140,255,0,.18) !important;
}

.brand-card img,
.brand-item img {
    filter: drop-shadow(0 12px 12px rgba(0,0,0,.5));
}

.brand-card h3,
.brand-item h3 {
    color: var(--blue) !important;
    text-shadow: 0 0 10px rgba(0,168,255,.45);
}

.brand-card:hover h3,
.brand-item:hover h3 {
    color: var(--green) !important;
    text-shadow: 0 0 12px rgba(140,255,0,.65);
}

/* =========================================
   AVAILABLE LAPTOPS
   ========================================= */

.stock-section,
#stock {
    background:
        radial-gradient(circle at 10% 50%, rgba(0,168,255,.10), transparent 25%),
        radial-gradient(circle at 90% 50%, rgba(140,255,0,.07), transparent 25%),
        #020817 !important;

    color: white;
}

.stock-section h2,
#stock h2 {
    color: white !important;

    text-shadow:
        0 0 10px rgba(0,168,255,.55);
}

.stock-subtitle {
    color: var(--muted) !important;
}

/* LAPTOP CARDS */

.laptop-card {
    background:
        linear-gradient(
            145deg,
            rgba(8,30,58,.97),
            rgba(2,9,22,.98)
        ) !important;

    color: white !important;

    border: 1px solid rgba(0,168,255,.65);

    box-shadow:
        0 12px 35px rgba(0,0,0,.5),
        0 0 10px rgba(0,168,255,.15);

    transition: .35s ease;
}

.laptop-card:hover {
    transform: translateY(-8px);

    border-color: var(--green);

    box-shadow:
        0 0 12px rgba(0,168,255,.7),
        0 0 30px rgba(0,168,255,.25),
        0 0 20px rgba(140,255,0,.15);
}

.laptop-card h3 {
    color: var(--blue) !important;
}

.laptop-card p {
    color: #d7e5f5 !important;
}

.laptop-price {
    color: var(--green) !important;
    text-shadow: 0 0 10px rgba(140,255,0,.35);
}

/* BADGE */

.stock-badge {
    background: linear-gradient(135deg, #73e600, #b1ff25) !important;
    color: #031008 !important;

    box-shadow:
        0 0 10px rgba(140,255,0,.6);
}

/* =========================================
   SERVICES / GALLERY / OTHER SECTIONS
   ========================================= */

.services,
#services,
#gallery {
    background: #031126 !important;
    color: white !important;
}

.services h2,
#services h2,
#gallery h2 {
    color: var(--blue) !important;
    text-shadow: 0 0 12px rgba(0,168,255,.35);
}

/* FLOATING WHATSAPP */

.floating-whatsapp {
    background: #25d366 !important;

    border: 3px solid rgba(140,255,0,.9);

    box-shadow:
        0 0 10px #25d366,
        0 0 25px rgba(37,211,102,.7),
        0 0 45px rgba(140,255,0,.35) !important;
}

/* SELECTION */

::selection {
    background: var(--green);
    color: #020817;
}

/* MOBILE */

@media (max-width: 768px) {

    .brands-section h2,
    #brands h2 {
        font-size: 30px;
    }

    .brand-card:hover,
    .brand-item:hover,
    .laptop-card:hover {
        transform: none;
    }
}
/* ===== LAPCOREX FINAL GLOSSY OVERRIDE ===== */

body{
    background:
        radial-gradient(circle at 15% 20%, rgba(0,168,255,.12), transparent 30%),
        radial-gradient(circle at 85% 60%, rgba(140,255,0,.08), transparent 30%),
        linear-gradient(135deg,#01040a,#031126 50%,#010611) !important;
    color:#fff;
}

/* HEADER */
header{
    background:linear-gradient(180deg,#061a35,#020817) !important;
    border-bottom:2px solid #00a8ff;
    box-shadow:
        0 3px 15px rgba(0,168,255,.45),
        0 0 35px rgba(0,168,255,.15) !important;
}

.logo{
    color:#fff !important;
    text-shadow:
        0 0 8px #00a8ff,
        0 0 20px rgba(0,168,255,.8);
}

/* HERO */
.hero{
    background:
        radial-gradient(circle at 75% 40%,rgba(0,168,255,.20),transparent 35%),
        radial-gradient(circle at 30% 70%,rgba(140,255,0,.08),transparent 30%),
        linear-gradient(135deg,#020817,#061b38,#020817) !important;
}

/* ALL MAIN SECTIONS */
.brands-section,
.stock-section,
.services,
#services,
#brands,
#stock,
#gallery,
#contact{
    background:
        radial-gradient(circle at 20% 20%,rgba(0,168,255,.08),transparent 30%),
        radial-gradient(circle at 80% 80%,rgba(140,255,0,.05),transparent 30%),
        linear-gradient(135deg,#031126,#020817) !important;
}

/* HEADINGS */
.brands-section h2,
.stock-section h2,
.services h2{
    color:#fff !important;
    text-shadow:
        0 0 8px #00a8ff,
        0 0 22px rgba(0,168,255,.55);
}

/* BRAND CARDS */
.brand-card{
    background:
        linear-gradient(145deg,
        rgba(12,39,70,.96),
        rgba(2,10,24,.98)) !important;

    border:1px solid rgba(0,229,255,.65) !important;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        inset 0 0 25px rgba(0,168,255,.06),
        0 12px 30px rgba(0,0,0,.55),
        0 0 12px rgba(0,168,255,.20) !important;
}

.brand-card:hover{
    border-color:#8cff00 !important;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.18),
        0 0 12px #00a8ff,
        0 0 30px rgba(0,168,255,.45),
        0 0 45px rgba(140,255,0,.20) !important;

    transform:translateY(-8px) scale(1.02);
}

.brand-card h3{
    color:#00b7ff !important;
}

.brand-card:hover h3{
    color:#9cff00 !important;
}

/* LAPTOP PRODUCT CARDS */
.laptop-card{
    background:
        linear-gradient(145deg,#09213d,#020916) !important;

    border:1px solid rgba(0,168,255,.7) !important;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.10),
        0 15px 35px rgba(0,0,0,.55),
        0 0 15px rgba(0,168,255,.18) !important;
}

.laptop-card:hover{
    border-color:#8cff00 !important;

    box-shadow:
        0 0 12px #00a8ff,
        0 0 28px rgba(0,168,255,.45),
        0 0 40px rgba(140,255,0,.15) !important;
}

.laptop-info h3{
    color:#00b7ff !important;
}

.laptop-info p{
    color:#dcecff !important;
}

.laptop-price{
    color:#9cff00 !important;
    text-shadow:0 0 12px rgba(156,255,0,.55);
}

/* GREEN BUTTONS */
.btn,
.stock-whatsapp{
    background:
        linear-gradient(180deg,#b4ff27,#64d900) !important;

    color:#031008 !important;

    border:1px solid #a6ff00 !important;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.6),
        0 0 10px rgba(140,255,0,.65),
        0 0 25px rgba(140,255,0,.25) !important;
}

.btn:hover,
.stock-whatsapp:hover{
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.8),
        0 0 15px #8cff00,
        0 0 35px rgba(140,255,0,.55) !important;
}

/* SERVICE CARDS */
.card{
    background:
        linear-gradient(145deg,#09213d,#020916) !important;

    color:#fff;

    border:1px solid rgba(0,168,255,.55);

    box-shadow:
        0 12px 30px rgba(0,0,0,.5),
        0 0 12px rgba(0,168,255,.15) !important;
}

.card i{
    color:#00b7ff !important;
    text-shadow:0 0 15px rgba(0,183,255,.6);
}

.card:hover{
    border-color:#8cff00;

    box-shadow:
        0 0 15px rgba(0,168,255,.65),
        0 0 30px rgba(140,255,0,.15) !important;
}

/* IMAGE GLOSS */
.brand-card img,
.laptop-card img{
    filter:
        drop-shadow(0 12px 15px rgba(0,0,0,.55))
        drop-shadow(0 0 6px rgba(0,168,255,.18));
}

/* NAV */
nav a:hover{
    color:#9cff00 !important;
    text-shadow:0 0 10px #8cff00;
}

/* MOBILE MENU */
@media(max-width:768px){
    nav{
        background:
            linear-gradient(180deg,#061a35,#020817) !important;
        border-bottom:1px solid #00a8ff;
    }
}
/* SERVICE CARD TEXT FIX */

.card h3 {
    color: #0b3d91 !important;
    font-size: 22px;
    font-weight: 700;
    margin-top: 12px;
    text-shadow: none !important;
}

.card {
    color: #0b3d91 !important;
}

.card i {
    color: #0b4da2 !important;
}
/* ===== OUR SERVICES FINAL FIX ===== */

.cards .card {
    background: linear-gradient(145deg, #071b35, #020817) !important;
    border: 1px solid #00a8ff !important;
    color: #ffffff !important;
    min-height: 190px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    box-shadow:
        0 0 12px rgba(0,168,255,.35),
        inset 0 0 20px rgba(0,168,255,.08) !important;
}

.cards .card i {
    display: block !important;
    color: #00a8ff !important;
    font-size: 45px !important;
    margin-bottom: 18px !important;
    text-shadow: 0 0 12px rgba(0,168,255,.7) !important;
}

.cards .card h3 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: center !important;
    text-shadow: none !important;
}

.cards .card:hover {
    border-color: #8cff00 !important;
    transform: translateY(-7px) !important;

    box-shadow:
        0 0 15px rgba(0,168,255,.8),
        0 0 30px rgba(140,255,0,.2) !important;
}

.cards .card:hover i {
    color: #8cff00 !important;
}
/* ===========================
   PREMIUM MOBILE ANIMATIONS
=========================== */

/* Floating Hero Image */
.right img{
    animation: floatLaptop 4s ease-in-out infinite;
}

@keyframes floatLaptop{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-15px);
    }
}

/* Brand Cards */
.brand-card{
    animation:fadeUp .8s ease both;
}

.brand-card:nth-child(2){animation-delay:.1s;}
.brand-card:nth-child(3){animation-delay:.2s;}
.brand-card:nth-child(4){animation-delay:.3s;}
.brand-card:nth-child(5){animation-delay:.4s;}
.brand-card:nth-child(6){animation-delay:.5s;}

/* Laptop Cards */
.laptop-card{
    animation:fadeUp .8s ease both;
}

.laptop-card:hover{
    transform:translateY(-10px) scale(1.03);
}

/* Shine Effect */

.brand-card::after,
.laptop-card::after{
    content:"";
    position:absolute;
    top:-150%;
    left:-60%;
    width:45%;
    height:350%;
    background:rgba(255,255,255,.18);
    transform:rotate(25deg);
    transition:.8s;
}

.brand-card:hover::after,
.laptop-card:hover::after{
    left:150%;
}

/* Button Animation */

.btn,
.stock-whatsapp{

transition:.35s;
}

.btn:hover,
.stock-whatsapp:hover{

transform:scale(1.05);

box-shadow:0 0 25px #00a8ff,
0 0 40px #8cff00;
}

/* Service Cards */

.card{

transition:.4s;

}

.card:hover{

transform:translateY(-10px);

box-shadow:0 0 20px rgba(0,168,255,.4);

}

/* Fade Animation */

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/* Smooth Scroll */

section{

animation:fadeUp .9s ease;

}

/* Mobile */

@media(max-width:768px){

.brand-card:hover,

.laptop-card:hover,

.card:hover{

transform:none;

}

.right img{

animation:floatLaptop 3s ease-in-out infinite;

}

}
/* ===== MOBILE WHATSAPP POSITION FIX ===== */

@media (max-width: 768px) {

    .floating-whatsapp {
        position: fixed !important;

        right: 22px !important;
        left: auto !important;
        bottom: 25px !important;

        width: 55px !important;
        height: 55px !important;

        font-size: 28px !important;

        margin: 0 !important;

        z-index: 99999 !important;

        /* old outline is causing overflow */
        outline: none !important;
        outline-offset: 0 !important;

        transform: none;
    }

    /* Keep pulse/ring inside safe mobile area */

    .floating-whatsapp::before {
        width: 55px !important;
        height: 55px !important;

        top: 50% !important;
        left: 50% !important;

        border-width: 2px !important;
    }
}
/* ===== MOBILE SCREEN OVERFLOW FIX ===== */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {

    .floating-whatsapp {
        position: fixed !important;
        right: 25px !important;
        bottom: 25px !important;
        left: auto !important;

        width: 55px !important;
        height: 55px !important;

        margin: 0 !important;
        z-index: 99999 !important;
    }

}
/* MOBILE OVERFLOW FIX */

html,
body{
    overflow-x:hidden !important;
    width:100%;
}

*{
    max-width:100%;
}

.hero,
header,
.services,
.stock-section,
.brands-section{
    width:100%;
    overflow:hidden;
}

img{
    max-width:100%;
    height:auto;
}

.floating-whatsapp{
    right:15px !important;
    bottom:15px !important;
}
.hero .btn{
    display:inline-block;
    margin-bottom:35px !important;
    position:relative;
    z-index:10;
}

.right img{
    margin-top:20px;
}
/* ABOUT SECTION */

.about-section{
    padding:80px 8%;
    background:linear-gradient(180deg,#031126,#061c34);
    color:#fff;
    text-align:center;
}

.about-content{
    max-width:1100px;
    margin:auto;
}

.about-section h2{
    font-size:42px;
    color:#00a8ff;
    text-shadow:0 0 15px rgba(0,168,255,.4);
}

.about-line{
    width:90px;
    height:5px;
    margin:15px auto 35px;
    border-radius:20px;
    background:linear-gradient(90deg,#00a8ff,#39ff14);
}

.about-section p{
    font-size:18px;
    line-height:1.9;
    color:#d8e6f5;
    margin-bottom:18px;
}

.about-boxes{
    margin-top:45px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.about-box{
    background:rgba(8,30,58,.95);
    border:1px solid #00a8ff;
    border-radius:20px;
    padding:30px;
    transition:.35s;
    box-shadow:0 0 20px rgba(0,168,255,.15);
}

.about-box:hover{
    transform:translateY(-8px);
    border-color:#39ff14;
    box-shadow:0 0 30px rgba(57,255,20,.25);
}

.about-box i{
    font-size:45px;
    color:#00a8ff;
    margin-bottom:20px;
}

.about-box h3{
    color:#39ff14;
    margin-bottom:12px;
}

.about-box p{
    margin:0;
    font-size:16px;
}
/* WHY CHOOSE LAPCOREX */

.why-section{
    padding:80px 8%;
    background:linear-gradient(180deg,#041425,#061d35);
    text-align:center;
}

.why-section h2{
    font-size:42px;
    color:#00a8ff;
    text-shadow:0 0 15px rgba(0,168,255,.5);
}

.why-line{
    width:90px;
    height:5px;
    margin:15px auto 45px;
    border-radius:20px;
    background:linear-gradient(90deg,#00a8ff,#39ff14);
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.why-card{
    background:rgba(8,30,58,.95);
    border:1px solid #00a8ff;
    border-radius:20px;
    padding:35px 25px;
    transition:.35s;
    box-shadow:0 0 20px rgba(0,168,255,.15);
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:#39ff14;
    box-shadow:0 0 30px rgba(57,255,20,.25);
}

.why-card i{
    font-size:50px;
    color:#00a8ff;
    margin-bottom:20px;
}

.why-card h3{
    color:#39ff14;
    margin-bottom:15px;
    font-size:24px;
}

.why-card p{
    color:#dce8f8;
    line-height:1.7;
    font-size:16px;
}
/* ===== PREMIUM FONTS ===== */

.about-section h2,
.why-section h2{
    font-family:'Space Grotesk',sans-serif;
    font-size:48px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.about-section h3,
.why-card h3{
    font-family:'Space Grotesk',sans-serif;
    font-size:24px;
    font-weight:600;
    letter-spacing:.5px;
}

.about-section p,
.why-card p{
    font-family:'Poppins',sans-serif;
    font-size:17px;
    line-height:1.9;
    font-weight:400;
    color:#dce8f8;
}
@media (max-width: 768px) {

    #menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        height: auto;
        max-height: none;
        overflow: visible;
        background: #0b3d91;
        padding: 10px 0;
        z-index: 9999;
    }

    #menu.active {
        display: flex;
    }

    #menu a {
        display: block;
        width: 100%;
        padding: 14px 30px;
        margin: 0;
        color: white;
        text-decoration: none;
        box-sizing: border-box;
    }
}
@media (max-width: 768px) {

    header {
        overflow: visible !important;
    }

    #menu {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;

        width: 100% !important;
        height: auto !important;
        max-height: none !important;

        flex-direction: column !important;
        align-items: stretch !important;

        padding: 0 !important;
        margin: 0 !important;

        background: #06264a !important;
        overflow: visible !important;
        z-index: 99999 !important;
    }

    #menu.active {
        display: flex !important;
    }

    #menu a {
        display: block !important;
        position: relative !important;
        width: 100% !important;
        height: auto !important;

        padding: 16px 30px !important;
        margin: 0 !important;

        color: white !important;
        background: #06264a !important;
        box-sizing: border-box !important;

        z-index: 100000 !important;
    }

    .hero {
        position: relative !important;
        z-index: 1 !important;
    }
}
@media (max-width: 768px) {

    header {
        position: relative !important;
        z-index: 999999 !important;
        overflow: visible !important;
    }

    #menu {
        z-index: 9999999 !important;
    }

    #menu.active {
        display: flex !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;

        flex-direction: column !important;
        background: #06264a !important;

        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

    #menu a {
        display: block !important;
        position: relative !important;
        z-index: 10000000 !important;
        width: 100% !important;
        padding: 16px 30px !important;
        background: #06264a !important;
        color: #fff !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .hero {
        position: relative !important;
        z-index: 1 !important;
    }
}
@media (max-width: 768px) {

    header {
        position: relative !important;
        height: auto !important;
        overflow: visible !important;
    }

    #menu {
        display: none !important;
        position: static !important;
        width: 100% !important;
        height: auto !important;
        flex-direction: column !important;
        padding: 0 !important;
        margin: 0 !important;
        background: #06264a !important;
    }

    #menu.active {
        display: flex !important;
    }

    #menu a {
        display: block !important;
        width: 100% !important;
        padding: 15px 30px !important;
        margin: 0 !important;
        color: white !important;
        background: #06264a !important;
        box-sizing: border-box !important;
    }
}
/* LAPCOREX AI ASSISTANT */

.ai-chat-btn {
    position: fixed;
    right: 22px;
    bottom: 90px;
    width: 58px;
    height: 58px;
    border: none;
    border-radius: 50%;
    background: #00bfff;
    font-size: 27px;
    cursor: pointer;
    z-index: 999999;
    box-shadow: 0 5px 20px rgba(0,191,255,.4);
}

.ai-chat-box {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 160px;
    width: 350px;
    height: 500px;
    background: #071b30;
    border: 1px solid #00bfff;
    border-radius: 18px;
    overflow: hidden;
    z-index: 999999;
    box-shadow: 0 10px 40px rgba(0,0,0,.5);
}

.ai-chat-box.show {
    display: flex;
    flex-direction: column;
}

.ai-chat-header {
    background: #0b3d91;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-chat-header small {
    display: block;
    margin-top: 3px;
    opacity: .8;
}

.ai-chat-header button {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.ai-chat-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
}

.ai-message,
.user-message {
    padding: 11px 13px;
    margin-bottom: 10px;
    border-radius: 12px;
    line-height: 1.5;
    font-size: 14px;
}

.ai-message {
    background: #123554;
    color: white;
    margin-right: 25px;
}

.user-message {
    background: #00bfff;
    color: #001525;
    margin-left: 25px;
}

.ai-options {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 12px 0;
}

.ai-options button {
    background: #102d48;
    border: 1px solid #00bfff;
    color: white;
    padding: 8px 10px;
    border-radius: 15px;
    cursor: pointer;
}

.ai-chat-input {
    display: flex;
    padding: 10px;
    background: #061525;
    gap: 7px;
}

.ai-chat-input input {
    flex: 1;
    min-width: 0;
    border: 1px solid #254866;
    background: #10283d;
    color: white;
    padding: 11px;
    border-radius: 10px;
    outline: none;
}

.ai-chat-input button {
    border: none;
    background: #00bfff;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

@media (max-width: 768px) {

    .ai-chat-box {
        width: calc(100% - 24px);
        height: 70vh;
        right: 12px;
        bottom: 85px;
    }

    .ai-chat-btn {
        right: 18px;
        bottom: 85px;
    }
}
/* AI ROBOT ANIMATION */

.ai-chat-btn {
    animation: robotFloat 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes robotFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-5px) rotate(-6deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    75% {
        transform: translateY(-5px) rotate(6deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.ai-chat-btn:hover {
    animation: robotExcited 0.4s ease-in-out infinite alternate;
}

@keyframes robotExcited {
    from {
        transform: scale(1.05) rotate(-8deg);
    }

    to {
        transform: scale(1.15) rotate(8deg);
    }
}
