*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#fff;
}


/* Top Header */

.top-bar{
background:#0095D9;
padding:12px 0;
font-size:14px;
}

.top-left span{
color:#fff;
margin-right:30px;
}

.top-left i{
margin-right:6px;
}

.top-right a{
text-decoration:none;
color:#fff;
margin-left:28px;
}



/* Main Nav */
.site-logo{
height:50px;
width:auto;
display:block;
}

/* Tablet */
@media(max-width:991px){
.site-logo{
height:42px;
}
}

/* Mobile */
@media(max-width:576px){
.site-logo{
height:36px;
}
}


.main-nav{
background:#fff;
padding:18px 0;
box-shadow:0 2px 6px rgba(0,0,0,.05);
}

.logo{
font-size:32px;
font-weight:700;
color:#003366 !important;
}

.navbar-nav .nav-link{
font-weight:600;
color:#243b64;
margin:0 15px;
}

.navbar-nav .nav-link:hover{
color:#0095D9;
}



/* Search */

.nav-actions{
display:flex;
align-items:center;
gap:18px;
}

.search-box input{
width:200px;
height:46px;
padding:0 20px;
border:1px solid #d5ddeb;
border-radius:30px;
outline:none;
}



/* Login */

.login-btn{
text-decoration:none;
font-weight:600;
color:#243b64;
}

.login-btn i{
margin-right:7px;
}



/* Cart */

.cart-btn{
background:#edf3ff;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
color:#243b64;
font-weight:600;
position:relative;
}

.cart-btn span{
position:absolute;
right:10px;
top:-6px;
background:#0d6efd;
color:white;
width:22px;
height:22px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:11px;
}



/* Dropdown */

.dropdown-menu{
border:none;
border-radius:10px;
box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.dropdown-item:hover{
background:#0095D9;
color:#fff;
}



/* Mobile */

.navbar-toggler{
border:none;
font-size:28px;
}

.navbar-toggler:focus{
box-shadow:none;
}

@media(max-width:991px){

.top-left span{
display:block;
margin:8px 0;
}

.top-right{
margin-top:10px;
}

.nav-actions{
flex-direction:column;
padding-top:20px;
}

.search-box input{
width:100%;
}

}






.slider-img{
width:100%;
height:500px;
object-fit:cover;
display:block;
}

.carousel-control-prev,
.carousel-control-next{
width:5%;
}

.carousel-indicators button{
width:14px;
height:14px;
border-radius:50%;
}


@media(max-width:991px){
.slider-img{
height:500px;
}
}

@media(max-width:576px){
.slider-img{
height:420px;
}
}










.featured-categories{
background:#f3f3f3;
padding:70px 0;
}

.section-title{
font-size:50px;
font-weight:700;
letter-spacing:2px;
margin-bottom:50px;
color:#111;
}

.category-box{
background:#fff;
padding:30px 20px;
border-radius:15px;
height:100%;
transition:.3s;
box-shadow:0 3px 12px rgba(0,0,0,.05);
}

.category-box:hover{
transform:translateY(-8px);
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.cat-img{
height:150px;
max-width:100%;
object-fit:contain;
margin-bottom:20px;
}

.category-box h4{
font-size:24px;
font-weight:600;
line-height:1.4;
margin:0;
}


/* Tablet */
@media(max-width:991px){

.section-title{
font-size:38px;
}

.cat-img{
height:110px;
}

.category-box h4{
font-size:18px;
}

}


/* Mobile */
@media(max-width:767px){

.featured-categories{
padding:50px 0;
}

.section-title{
font-size:30px;
margin-bottom:30px;
letter-spacing:1px;
}

.col-6{
padding:8px;
}

.category-box{
padding:18px 12px;
border-radius:12px;
}

.cat-img{
height:75px;
margin-bottom:12px;
}

.category-box h4{
font-size:13px;
line-height:1.3;
}

}





.support-area{
background:#f7f9fc;
}

.support-title{
font-size:52px;
font-weight:700;
color:#10234d;
}

.support-subtitle{
font-size:20px;
color:#5d6775;
}


/* CARD */
.support-card{
background:#fff;
padding:40px 30px;
border:2px solid #dbe5f3;
border-radius:14px;
position:relative;
overflow:hidden;
transition:.35s;
height:100%;
}

/* Top Border Animation */
.support-card:before{
content:"";
position:absolute;
top:0;
left:0;
width:0%;
height:4px;
background:#0046ff;
transition:.4s;
}

.support-card:hover:before{
width:100%;
}

/* Hover Border + Lift */
.support-card:hover{
transform:translateY(-10px);
border-color:#0046ff;
box-shadow:0 12px 30px rgba(0,70,255,.12);
}

/* Side Accent Line */
.support-card:after{
content:"";
position:absolute;
left:0;
bottom:0;
width:4px;
height:0;
background:#0046ff;
transition:.4s;
}

.support-card:hover:after{
height:100%;
}

/* Icon */
.icon-wrap{
width:72px;
height:72px;
background:#edf3ff;
border:2px solid #c8d8ff;
border-radius:14px;
display:flex;
justify-content:center;
align-items:center;
font-size:32px;
color:#0046ff;
margin-bottom:30px;
transition:.3s;
}

.support-card:hover .icon-wrap{
background:#0046ff;
color:white;
transform:rotate(6deg);
}

.support-card h4{
font-size:28px;
margin-bottom:16px;
}

.support-card p{
font-size:17px;
color:#5a6370;
line-height:1.7;
}

.support-card a{
text-decoration:none;
font-weight:600;
color:#0046ff;
}






.brands-section{
background:linear-gradient(135deg,#081b4d,#103887);
overflow:hidden;
}

.brands-heading h2{
color:#fff;
font-size:52px;
font-weight:700;
}

.brands-heading p{
color:#c8d3f7;
}

.brand-marquee{
overflow:hidden;
}

.brand-track{
display:flex;
width:max-content;
animation:moveBrand 25s linear infinite;
}

.brand-box{
background:#fff;
padding:30px 40px;
margin:15px;
border-radius:18px;
box-shadow:0 5px 20px rgba(0,0,0,.1);
display:flex;
align-items:center;
justify-content:center;
min-width:220px;
height:120px;
}

.brand-box img{
max-width:150px;
max-height:60px;
width:auto;
height:auto;
filter:grayscale(100%);
transition:.3s;
}

.brand-box:hover img{
filter:grayscale(0%);
transform:scale(1.08);
}

@keyframes moveBrand{
from{
transform:translateX(0);
}
to{
transform:translateX(-50%);
}
}











.blog-section{
background:#f7f9fc;
}

.blog-title{
font-size:52px;
font-weight:700;
color:#10234d;
}

.blog-sub{
font-size:20px;
color:#677282;
}

.blog-card{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 4px 18px rgba(0,0,0,.05);
transition:.35s;
height:100%;
}

.blog-card:hover{
transform:translateY(-10px);
box-shadow:0 10px 28px rgba(0,0,0,.08);
}

.blog-img{
overflow:hidden;
}

.blog-img img{
width:100%;
height:250px;
object-fit:cover;
transition:.4s;
}

.blog-card:hover img{
transform:scale(1.08);
}

.blog-content{
padding:30px;
}

.blog-date{
display:inline-block;
background:#edf3ff;
color:#1d5cff;
padding:7px 15px;
border-radius:30px;
font-size:14px;
font-weight:600;
margin-bottom:18px;
}

.blog-content h4{
font-size:28px;
line-height:1.4;
margin-bottom:18px;
}

.blog-content p{
color:#5d6776;
line-height:1.7;
margin-bottom:20px;
}

.blog-content a{
text-decoration:none;
font-weight:600;
color:#1d5cff;
};


/* Section */
.lp-section{
background:linear-gradient(135deg,#f4f7ff,#eef3ff);
}

/* Title */
.lp-title{
font-size:48px;
font-weight:700;
color:#10234d;
}

.lp-sub{
color:#6c7787;
font-size:18px;
}

/* Card */
.lp-card{
background:#fff;
border-radius:20px;
border:1px solid #e2e8f5;
overflow:hidden;
position:relative;
transition:.4s;
box-shadow:0 8px 25px rgba(0,0,0,.05);
}

/* Gradient Border */
.lp-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
border-radius:20px;
border:2px solid transparent;
/* background:linear-gradient(120deg,#1d5cff,#6ea3ff); */
z-index:-1;
opacity:0;
transition:.3s;
}

.lp-card:hover::before{
opacity:1;
}

/* Hover */
.lp-card:hover{
transform:translateY(-12px) scale(1.02);
box-shadow:0 18px 40px rgba(0,0,0,.12);
}

/* Image */
.lp-img{
position:relative;
background:#f7f9fc;
padding:30px;
text-align:center;
}

.lp-img img{
height:150px;
transition:.4s;
}

.lp-card:hover img{
transform:scale(1.12);
}

/* Badge */
.lp-badge{
position:absolute;
top:15px;
left:15px;
background:#ff3b3b;
color:#fff;
padding:5px 12px;
font-size:12px;
border-radius:20px;
font-weight:600;
}

/* Info */
.lp-info{
padding:25px;
}

.lp-info h4{
font-size:22px;
margin-bottom:8px;
}

.lp-info p{
color:#6b7685;
margin-bottom:18px;
}

/* Buttons */
.lp-actions{
display:flex;
gap:10px;
}

.lp-btn-view{
flex:1;
text-align:center;
padding:10px;
border-radius:30px;
border:1px solid #1d5cff;
color:#1d5cff;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.lp-btn-view:hover{
background:#1d5cff;
color:#fff;
}

.lp-btn-cart{
flex:1;
text-align:center;
padding:10px;
border-radius:30px;
background:#1d5cff;
color:#fff;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.lp-btn-cart:hover{
background:#003fc4;
}

/* Animation */
.lp-card{
opacity:0;
transform:translateY(40px);
animation:lpFade .8s ease forwards;
}

.col-lg-3:nth-child(1) .lp-card{animation-delay:.2s;}
.col-lg-3:nth-child(2) .lp-card{animation-delay:.4s;}
.col-lg-3:nth-child(3) .lp-card{animation-delay:.6s;}
.col-lg-3:nth-child(4) .lp-card{animation-delay:.8s;}

@keyframes lpFade{
to{
opacity:1;
transform:translateY(0);
}
}

/* Mobile */
@media(max-width:767px){

.lp-title{
font-size:30px;
}

.lp-img img{
height:110px;
}

.lp-info h4{
font-size:18px;
}

}

.imagea a{
text-decoration:none;   /* underline hata dega */
color:#000;             /* black color */
}

h4 a:hover{
color:#000;             /* hover pe bhi black hi rahe */
}


