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

body{
    background:#050505;
    color:#fff;
    position:relative;
    overflow-x:hidden;
}

/*==========================
 AMBIENT CORE BACKGROUND
===========================*/

body::before{

    content:"";
    position:fixed;
    inset:0;

    z-index:-2;

    background:
        radial-gradient(circle at 15% 20%, rgba(255,43,43,.07), transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(255,0,0,.05), transparent 42%),
        radial-gradient(circle at 75% 80%, rgba(255,43,43,.06), transparent 38%),
        radial-gradient(circle at 20% 85%, rgba(255,0,0,.045), transparent 40%),
        #020202;

    background-size:220% 220%;

    animation:coreShift 26s ease-in-out infinite;

}

body::after{

    content:"";
    position:fixed;
    inset:0;

    z-index:-1;

    background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%27140%27%20height%3D%27140%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27rgba%28255%2C45%2C45%2C0.55%29%27%20stroke-width%3D%271.4%27%3E%3Cpath%20d%3D%27M0%2035%20H45%20V95%20H140%27/%3E%3Cpath%20d%3D%27M70%200%20V45%20H140%27/%3E%3Cpath%20d%3D%27M0%20115%20H35%20V70%20H90%20V140%27/%3E%3Cpath%20d%3D%27M110%200%20V25%20H140%27/%3E%3C/g%3E%3Cg%20fill%3D%27rgba%28255%2C45%2C45%2C0.75%29%27%3E%3Ccircle%20cx%3D%2745%27%20cy%3D%2735%27%20r%3D%272.6%27/%3E%3Ccircle%20cx%3D%2745%27%20cy%3D%2795%27%20r%3D%272.6%27/%3E%3Ccircle%20cx%3D%2770%27%20cy%3D%2745%27%20r%3D%272.6%27/%3E%3Ccircle%20cx%3D%2735%27%20cy%3D%27115%27%20r%3D%272.6%27/%3E%3Ccircle%20cx%3D%2735%27%20cy%3D%2770%27%20r%3D%272.6%27/%3E%3Ccircle%20cx%3D%2790%27%20cy%3D%2770%27%20r%3D%272.6%27/%3E%3Ccircle%20cx%3D%27110%27%20cy%3D%2725%27%20r%3D%272.6%27/%3E%3C/g%3E%3C/svg%3E");
    background-repeat:repeat;
    background-size:140px 140px;

    opacity:.5;

    mask-image:radial-gradient(circle at 50% 25%, #000 0%, transparent 70%);
    -webkit-mask-image:radial-gradient(circle at 50% 25%, #000 0%, transparent 70%);

}

@keyframes coreShift{
    0%{background-position:0% 0%;}
    50%{background-position:100% 100%;}
    100%{background-position:0% 0%;}
}

/*==========================
 PRELOADER
===========================*/

#preloader{

    position:fixed;
    inset:0;
    z-index:99999;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:22px;

    background:#020202;

    transition:opacity .6s ease, visibility .6s ease;

}

#preloader.loaded{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}

.preloader-logo{
    position:relative;
    width:90px;
    height:90px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.preloader-logo span{
    font-size:28px;
    font-weight:800;
    color:#ff2b2b;
    letter-spacing:1px;
    text-shadow:0 0 18px rgba(255,43,43,.6);
}

.preloader-ring{
    position:absolute;
    inset:0;
    border-radius:50%;
    border:3px solid rgba(255,43,43,.15);
    border-top-color:#ff2b2b;
    border-right-color:#ff2b2b;
    animation:preloaderSpin 1s linear infinite;
    box-shadow:0 0 20px rgba(255,43,43,.35);
}

.preloader-text{
    color:#ddd;
    font-size:14px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;
    opacity:.8;
}

@keyframes preloaderSpin{
    100%{transform:rotate(360deg);}
}

/*==========================
 PREMIUM HEADER
===========================*/

header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    padding:15px 0;

    display:flex;
    justify-content:center;

    z-index:9999;

    background:transparent;

}

/* Navbar */

.navbar{

    width:92%;
    max-width:1350px;

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

    padding:8px 24px;

    min-height:68px;

    background:rgba(20,10,10,.55);

    border-radius:45px;

    border:1.5px solid rgba(255,43,43,.28);

    box-shadow:
    0 0 8px rgba(255,0,0,.15),
    0 0 18px rgba(255,0,0,.08);

    backdrop-filter:blur(22px) saturate(150%);
    -webkit-backdrop-filter:blur(22px) saturate(150%);

}
/* Logo */

.logo{

    text-decoration:none;

}

.logo-circle{

    width:58px;
    height:58px;

    overflow:hidden;

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

    background:#fff;
    border-radius:50%;

    animation:logoGlow 2.5s infinite;
}

.logo-circle img{

    width:42px;       /* bada rakho */
    height:42px;

    object-fit:cover;

    transform:scale(1.1);   /* logo zoom */
}

/* Navigation */

nav{

    display:flex;
    gap:45px;

}

nav a{

    color:#f2f2f2;

    text-decoration:none;

    font-weight:600;

    font-size:18px;

    transition:.35s;

    position:relative;

}

nav a:hover{

    color:#e10600;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;

    height:2px;

    background:#e10600;

    transition:.35s;

}

nav a:hover::after{

    width:100%;

}

/* Logo Glow */

@keyframes logoGlow{

0%{

box-shadow:
0 0 8px rgba(255,0,0,.20),
0 0 16px rgba(255,0,0,.10);

}

50%{

box-shadow:
0 0 14px rgba(255,0,0,.40),
0 0 26px rgba(255,0,0,.20);

}

100%{

box-shadow:
0 0 8px rgba(255,0,0,.20),
0 0 16px rgba(255,0,0,.10);

}

}

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    padding:120px 8% 80px;

    background:radial-gradient(circle at right,#3b0000 0%,#090909 45%,#090909 100%);
}

.hero-left{
    flex:1;
}

.hero-right{
    flex:1;
    width:100%;
    max-width:650px;
    aspect-ratio:1/1;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
}

#heroImage{
    width:100%;
    max-width:650px;
    max-height:100%;
    height:auto;
    display:block;
    object-fit:contain;

    filter:drop-shadow(0 0 22px rgba(255,43,43,.30));

    animation:float 4s ease-in-out infinite;
}


.hero h1{
    font-size:64px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-2px;
}

.hero h1 span{

color:#ff2b2b;

}

.rotating-word{

    display:inline-block;

    color:#ff2b2b;

    text-shadow:0 0 20px rgba(255,43,43,.6);

    transition:opacity .4s ease, transform .4s ease, filter .4s ease;

    will-change:opacity, transform;

}

.rotating-word.word-swap{

    opacity:0;

    transform:translateY(14px);

    filter:blur(4px);

}

.hero p{

font-size:20px;

color:#d0d0d0;

line-height:1.1;

margin-bottom:15px;

}

.badge{

display:inline-block;

background:#151515;

padding:8px 24px;

border:1px solid #ff2b2b;

border-radius:30px;

color:white;

animation:badgeGlow 2.5s infinite;

}

@keyframes float{

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

}

@media(max-width:900px){

.hero{

flex-direction:column;

text-align:center;

}

.hero h1{

font-size:42px;

}

.hero-right{

margin-top:40px;

}

}@media(max-width:768px){

.hero{

    flex-direction:column;

    text-align:center;

    gap:35px;

    padding:100px 20px 50px;

}

.hero-left{

    width:100%;

}

.hero-right{

    width:100%;

    margin:0;

}

#heroImage{

    max-width:350px;

}

.hero h1{

    font-size:38px;

}

.hero p{

    font-size:17px;

}

}

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

@media(max-width:768px){

header{

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

    padding:12px 20px;

}

.logo img{

    height:42px;

}

nav{

    display:flex;

    flex-direction:row;

    align-items:center;

    gap:15px;

    margin-top:0;

}

nav a{

    display:inline-block;

    margin:0;

    font-size:14px;

}

.hero{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:30px;

    text-align:center;

    padding:100px 20px 60px;

}.hero-left{

    order:1;

    width:100%;

}

.hero-right{

    order:2;

    width:100%;

    margin-top:25px;

    margin-bottom:0;

}

#heroImage{

    width:100%;

    max-width:330px;

    height:auto;

}

.hero h1{

    font-size:38px;

    line-height:1.15;

}

.hero p{

    font-size:17px;

}

.hero-buttons{

    justify-content:center;

}

.hero-features{

    justify-content:center;

}

.hero-right{

    margin-bottom:35px;

}

}

.services{
    padding:80px 20px;
    background:transparent;
}

.services h2{
    text-align:center;
    font-size:48px;
    color:#fff;
    margin-bottom:60px;
}

.service-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    max-width:1200px;
    margin:auto;
}

.card{
    background:rgba(255,255,255,.045);
    backdrop-filter:blur(18px) saturate(140%);
    -webkit-backdrop-filter:blur(18px) saturate(140%);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:30px;
    text-align:center;
    transition:.35s;
    box-shadow:0 8px 32px rgba(0,0,0,.35);
}

.card:hover{
    transform:translateY(-12px);
    border-color:#ff2b2b;
    box-shadow:0 15px 40px rgba(255,0,0,.25);
}

.icon{
    font-size:55px;
    color:#ff2b2b;
}

.card h3{
    color:#fff;
    margin:20px 0;
}

.card p{
    color:#bdbdbd;
    line-height:1.8;
}

/* ===== SERVICES MOBILE FIX ===== */

@media(max-width:768px){

    .services{
        padding:40px 15px 50px;
    }

    .services h2{
        font-size:30px;
        margin-bottom:25px;
    }

    .service-container{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .card{
        padding:16px 10px;
        border-radius:14px;
    }

    .icon{
        font-size:32px;
    }

    .card h3{
        font-size:14px;
        margin:10px 0 6px;
    }

    .card p{
        font-size:11px;
        line-height:1.5;
    }

}

@media(max-width:380px){

    .service-container{
        gap:8px;
    }

    .card{
        padding:12px 8px;
    }

    .icon{
        font-size:26px;
    }

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

    .card p{
        font-size:10.5px;
    }

}
.pricing{
    padding:90px 20px;
    background:transparent;
}

.pricing h2{
    text-align:center;
    font-size:48px;
    color:#fff;
    font-weight:800;
    margin-bottom:60px;
}

.price-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
    max-width:1100px;
    margin:auto;
}

.price-card{
    background:rgba(255,255,255,.045);
    backdrop-filter:blur(18px) saturate(140%);
    -webkit-backdrop-filter:blur(18px) saturate(140%);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.35s;
    box-shadow:0 8px 32px rgba(0,0,0,.35);
}

.price-card:hover{
    transform:translateY(-10px);
    border-color:#ff2b2b;
    box-shadow:0 15px 40px rgba(255,0,0,.30);
}

.price-card h1{
    color:#ff2b2b;
}

.price-card p{
    color:#777;
    margin-bottom:20px;
}

.price-card button{

background:#ff2b2b;

color:#fff;

border:none;

padding:14px 30px;

border-radius:8px;

font-weight:700;

transition:.3s;

}

.price-card button:hover{

background:#fff;

color:#ff2b2b;

}

.featured{
    border:2px solid #ff2b2b;
}

.tag{
    position:absolute;
    top:-12px;
    left:50%;
    transform:translateX(-50%);
    background:#ff2b2b;
    color:white;
    padding:6px 15px;
    border-radius:20px;
    font-size:13px;
    font-weight:bold;

}.why-us{
    padding:100px 8%;
    background:transparent;
}

.section-title{
    width:100%;
    max-width:800px;
    margin:0 auto 60px;
    text-align:center;
}

.section-title span{
    display:block;
    color:#ff3b3b;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.section-title h2{
    color:#fff;
    font-size:48px;
    margin-bottom:20px;
}

.section-title p{
    color:#bdbdbd;
    font-size:16px;
    line-height:1.8;
}

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

.why-card{

background:rgba(255,255,255,.045);

backdrop-filter:blur(18px) saturate(140%);

-webkit-backdrop-filter:blur(18px) saturate(140%);

border:1px solid rgba(255,255,255,.08);

padding:35px;

border-radius:18px;

transition:.35s;

box-shadow:0 8px 32px rgba(0,0,0,.35);

}

.why-card:hover{

transform:translateY(-10px);

border-color:#ff2b2b;

box-shadow:0 15px 40px rgba(255,0,0,.25);

}

.why-card h3{

color:#fff;

margin-bottom:15px;

}

.why-card p{

color:#bbb;

line-height:1.8;

}

/* Floating Buttons */

.float-whatsapp,
.float-call{
    position:fixed;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:28px;
    color:white;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    z-index:999;
    transition:.3s;
}

.float-whatsapp{
    background:#25D366;
    right:20px;
    bottom:90px;
}

.float-call{
    background:#ff6b00;
    right:20px;
    bottom:20px;
}

.float-whatsapp:hover,
.float-call:hover{
    transform:scale(1.1);
}@keyframes pulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.08);
}

100%{
transform:scale(1);
}

}

.float-whatsapp{

animation:pulse 2s infinite;

}@keyframes ring{

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

25%{
transform:rotate(10deg);
}

75%{
transform:rotate(-10deg);
}

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

}

.float-call{

animation:ring 2s infinite;

}
.hero-buttons a{

cursor:pointer;

}

.hero-buttons a:visited{

color:#fff;

}

.hero-buttons a:active{

transform:scale(.96);

}
/* ================= HERO BUTTONS ================= */

.hero-buttons{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:20px;
    margin-top:35px;
    flex-wrap:nowrap;
}

.btn-primary,
.btn-whatsapp{

    width:230px;
    height:60px;

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

    gap:12px;

    padding:0 24px;

    border-radius:12px;

    font-size:18px;
    font-weight:700;

    text-decoration:none;

    white-space:nowrap;

    transition:all .35s ease;
}

/* BOOK REPAIR */

.btn-primary{

    background:linear-gradient(45deg,#ff1a1a,#d60000);

    color:#fff;

    border:2px solid #ff2b2b;

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

}

.btn-primary:hover{

    background:#fff;

    color:#ff1a1a !important;

    border-color:#ff1a1a;

    transform:translateY(-5px);

    box-shadow:0 0 35px rgba(255,0,0,.45);

}

/* WHATSAPP */

.btn-whatsapp{

    background:#25D366;

    color:#fff;

    border:2px solid #25D366;

    box-shadow:0 0 20px rgba(37,211,102,.30);

}

.btn-whatsapp:hover{

    background:#fff;

    color:#25D366 !important;

    border-color:#25D366;

    transform:translateY(-5px);

    box-shadow:0 0 35px rgba(37,211,102,.55);

}@media (max-width:768px){

.hero-buttons{

    flex-direction:column;

    align-items:center;

    width:100%;

}

.btn-primary,
.btn-whatsapp{

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

}

}

.features{
    max-width:1200px;
    margin:40px auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding:0 20px;
}

.feature-box{
    background:rgba(255,255,255,.045);
    backdrop-filter:blur(18px) saturate(140%);
    -webkit-backdrop-filter:blur(18px) saturate(140%);
    border:1px solid rgba(255,43,43,.18);
    border-radius:12px;
    padding:25px;
    text-align:center;
    transition:.3s;
    box-shadow:0 8px 32px rgba(0,0,0,.3);
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(255,43,43,.3);
}

.feature-box h3{
    color:#fff;
    margin-bottom:10px;
}

.feature-box p{
    color:#bbb;
}

@media(max-width:900px){
    .features{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .features{
        grid-template-columns:1fr;
    }
}/* Stats Section */

.stats{
    max-width:1200px;
    margin:70px auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding:0 20px;
}

.stat-box{
    background:rgba(255,255,255,.045);
    backdrop-filter:blur(18px) saturate(140%);
    -webkit-backdrop-filter:blur(18px) saturate(140%);
    border:1px solid rgba(255,255,255,.08);
    border-radius:15px;
    padding:35px;
    text-align:center;
    transition:.3s;
    box-shadow:0 8px 32px rgba(0,0,0,.3);
}

.stat-box:hover{
    border-color:#ff2b2b;
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(255,0,0,.25);
}

.stat-box h2{
    color:#ff2b2b;
    font-size:42px;
    margin-bottom:10px;
}

.stat-box p{
    color:#ccc;
    font-size:18px;
}

@media(max-width:900px){
    .stats{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .stats{
        grid-template-columns:1fr;
    }
}/* Reviews */

.reviews{
    padding:40px 8% 100px;
    background:transparent;
}

.reviews h2{
    text-align:center;
    color:#fff;
    font-size:42px;
    margin-bottom:50px;
}

.review-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.review-card{
    background:rgba(255,255,255,.045);
    backdrop-filter:blur(18px) saturate(140%);
    -webkit-backdrop-filter:blur(18px) saturate(140%);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:30px;
    transition:.3s;
    box-shadow:0 8px 32px rgba(0,0,0,.3);
}

.review-card:hover{
    transform:translateY(-10px);
    border-color:#ff2b2b;
}

.review-card h3{
    color:#fff;
    margin:15px 0;
}

.review-card p{
    color:#ccc;
    line-height:1.8;
}

@media(max-width:900px){

.review-container{

grid-template-columns:1fr;

}

}/* Contact */

.contact{
    max-width:1200px;
    margin:80px auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact h2{
    font-size:42px;
    margin-bottom:20px;
    color:#fff;
}

.contact p{
    color:#ccc;
    line-height:1.8;
}

.contact-info{
    margin-top:30px;
}

.contact-info p{
    margin-bottom:15px;
}

.contact form{
    background:rgba(255,255,255,.045);
    backdrop-filter:blur(18px) saturate(140%);
    -webkit-backdrop-filter:blur(18px) saturate(140%);
    padding:35px;
    border-radius:15px;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 8px 32px rgba(0,0,0,.3);
}

.contact input,
.contact select,
.contact textarea{
    width:100%;
    margin-bottom:18px;
    padding:15px;
    background:#1b1b1b;
    color:#fff;
    border:1px solid #333;
    border-radius:8px;
    outline:none;
}

.contact button{
    width:100%;
    padding:16px;
    background:#ff2b2b;
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.contact button:hover{
    background:#d60000;
}

@media(max-width:900px){

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

}/* Brands */

.brands{
    padding:80px 20px;
    background:transparent;
}

.brands h2{
    text-align:center;
    color:#fff;
    font-size:42px;
    margin-bottom:50px;
}

.brand-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
    gap:20px;
}

.brand-card{
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(14px) saturate(140%);
    -webkit-backdrop-filter:blur(14px) saturate(140%);
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    padding:25px;
    text-align:center;
    color:#fff;
    font-size:22px;
    font-weight:700;
    transition:.3s;
}

.brand-card:hover{
    border-color:#ff2b2b;
    color:#ff2b2b;
    transform:translateY(-6px);
}/* CTA */

.cta{
    padding:90px 20px;
    background:linear-gradient(135deg,#111,#1b1b1b);
}

.cta-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.cta h2{
    color:#fff;
    font-size:46px;
    margin-bottom:20px;
}

.cta p{
    color:#bbb;
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-call,
.cta-whatsapp{
    text-decoration:none;
    padding:16px 35px;
    border-radius:10px;
    color:#fff;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.cta-call{
    background:#ff2b2b;
}

.cta-whatsapp{
    background:#25D366;
}

.cta-call:hover,
.cta-whatsapp:hover{
    transform:translateY(-5px);
}/* ===========================
   GOOGLE REVIEWS SECTION
=========================== */

.reviews{
    padding:100px 8%;
    background:transparent;
}

.review-heading{
    text-align:center;
     margin-bottom:60px;
}

.review-heading span{

display:inline-flex;

align-items:center;

justify-content:center;

padding:12px 28px;

border-radius:50px;

background:rgba(255,255,255,.06);

backdrop-filter:blur(14px) saturate(140%);

-webkit-backdrop-filter:blur(14px) saturate(140%);

border:1.5px solid rgba(255,43,43,.35);

font-weight:700;

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

}

.review-heading h2{
    font-size:48px;
    color:#fff;
    font-weight:800;
    margin-bottom:15px;
}

.review-heading p{
    color:#a8a8a8;
    font-size:18px;
}

.reviewSwiper{
    width:100%;
    padding:20px 10px 80px;
    overflow:hidden;
}

.review-card{

    background:rgba(255,255,255,.045);

    backdrop-filter:blur(18px) saturate(140%);

    -webkit-backdrop-filter:blur(18px) saturate(140%);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:30px;

    transition:.35s;

    min-height:380px;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    max-width:380px;
    margin:auto;
}

.review-card:hover{

    transform:translateY(-10px);

    border-color:#ff2b2b;

    box-shadow:0 0 30px rgba(255,43,43,.25);

}.review-top{

display:flex;

align-items:center;

gap:14px;

margin-bottom:20px;

}

.google-badge{

display:flex;

align-items:center;

gap:10px;

}

.google-logo{

width:28px;

height:28px;

border-radius:50%;

}

.google-badge span{

font-size:15px;

font-weight:600;

color:#fff;

}.stars{

color:#FFD700;

font-size:20px;

letter-spacing:3px;

margin-bottom:18px;

}

.customer h3{

font-size:22px;

color:#fff;

margin-bottom:4px;

}

.customer span{

color:#999;

font-size:14px;

}.service-type{

display:inline-flex;

align-items:center;

gap:8px;

background:#1b1b1b;

border:1px solid #ff2b2b;

padding:8px 16px;

border-radius:40px;

font-size:14px;

font-weight:600;

color:#fff;

margin:20px 0;

}

.service-type i{

color:#ff2b2b;

}.review-card p{

color:#cfcfcf;

line-height:1.9;

font-size:16px;

margin-top:10px;

flex:1;

}

.verified{

display:flex;

align-items:center;

gap:8px;

margin-top:20px;

font-size:14px;

color:#6dd96d;

font-weight:600;

}

.verified i{

color:#25D366;

}.google-review-btn{

display:inline-block;

margin-top:60px;

background:#ff2b2b;

color:#fff;

padding:16px 36px;

border-radius:12px;

text-decoration:none;

font-weight:700;

transition:.35s;

}

.google-review-btn:hover{

background:#fff;

color:#ff2b2b;

box-shadow:0 0 25px rgba(255,43,43,.40);

}

.review-button{

text-align:center;

}.swiper-wrapper{
    align-items:stretch;
}

.swiper-slide{
    display:flex;
    justify-content:center;
    height:auto;
}
.reviews{
    padding:80px 8%;
    background:transparent;
}

.reviewSwiper{
    width:100%;
    overflow:hidden;
    padding:20px 10px 80px;
}

.swiper-wrapper{
    align-items:stretch;
}

.swiper-slide{
    display:flex;
    justify-content:center;
    height:auto;
}

.review-card{
    background:rgba(255,255,255,.045);
    backdrop-filter:blur(18px) saturate(140%);
    -webkit-backdrop-filter:blur(18px) saturate(140%);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:30px;
    height:100%;
    width:100%;
    box-shadow:0 8px 32px rgba(0,0,0,.3);
}
/* ================= GLOBAL SMOOTH ANIMATION ================= */

html{
    scroll-behavior:smooth;
}

#services, #pricing, #contact, #why-us, #reviews{
    scroll-margin-top:100px;
}

*{
    transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease,
    background .35s ease,
    color .35s ease;
}

img{
    transition:transform .35s ease;
}

button,
a{
    transition:all .35s ease;
}.service-card:hover{

    transform:translateY(-10px);

    border-color:#ff3030;

    box-shadow:0 15px 40px rgba(255,0,0,.15);

}

.service-card:hover img{

    transform:scale(1.05);

}.why-card:hover{

    transform:translateY(-10px);

    border-color:#ff3030;

    box-shadow:0 15px 35px rgba(255,0,0,.15);

}

.why-card:hover i{

    color:#ff3030;

    transform:scale(1.15) rotate(10deg);

}.review-card:hover{

    transform:translateY(-10px);

    border-color:#ff3030;

    box-shadow:0 20px 40px rgba(255,0,0,.18);

}@keyframes badgeGlow{

0%{

box-shadow:0 0 0 rgba(225,6,0,0);

}

50%{

box-shadow:0 0 20px rgba(225,6,0,.45);

}

100%{

box-shadow:0 0 0 rgba(225,6,0,0);

}



}/* ================= HERO SWIPER ================= */

.heroSwiper{
    width:100%;
    max-width:650px;
    margin:auto;
    overflow:hidden;
}

.heroSwiper .swiper-wrapper{
    align-items:center;
}

.heroSwiper .swiper-slide{
    display:flex;
    justify-content:center;
    align-items:center;
}

.heroSwiper .swiper-slide img{
    width:100%;
    height:auto;
    display:block;
    border-radius:20px;
}.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin:30px 0;
    color:#fff;
    font-size:22px;
}

.hero-features span{
    display:flex;
    align-items:center;
    white-space:nowrap;
}

/* ===== FINAL MOBILE NAVBAR ===== */

@media(max-width:768px){

.navbar{

    width:106%;
    padding:4px 12px;

}

nav{

    gap:10px;

}

nav a{

    font-size:12px;

}

.logo-circle{

    width:42px;
    height:42px;

}

.logo-circle img{

    width:42px;

}

}