/*==================================================
IT MARKETPLACE
Style.css
Version : 1.0
Author : Digital Yaarana
==================================================*/


/*====================================
Google Font
====================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');


/*====================================
Root Variables
====================================*/

:root{

    --primary:#2563EB;
    --secondary:#0F172A;
    --success:#10B981;
    --danger:#EF4444;
    --warning:#F59E0B;

    --white:#ffffff;
    --black:#000000;

    --text:#334155;
    --heading:#0F172A;

    --border:#E5E7EB;

    --light:#F8FAFC;

    --shadow:0 10px 35px rgba(0,0,0,.08);

    --shadow-lg:0 20px 60px rgba(0,0,0,.12);

    --radius:15px;

    --transition:.4s ease;

}


/*====================================
Reset
====================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--light);

    color:var(--text);

    overflow-x:hidden;

    font-size:15px;

    line-height:1.7;

}


a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

    margin:0;

    padding:0;

}

img{

    max-width:100%;

    display:block;

}

section{

    padding:90px 0;

}

.container{

    max-width:1320px;

}


/*====================================
Typography
====================================*/

h1,h2,h3,h4,h5,h6{

    color:var(--heading);

    font-weight:700;

}

p{

    margin-bottom:15px;

}


/*====================================
Buttons
====================================*/

.theme-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:15px 35px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    transition:.4s;

    font-weight:600;

}

.theme-btn:hover{

    transform:translateY(-5px);

    background:#1748b8;

    color:#fff;

    box-shadow:0 15px 30px rgba(37,99,235,.35);

}

.outline-btn{

    border:2px solid var(--primary);

    color:var(--primary);

    padding:14px 35px;

    border-radius:50px;

    font-weight:600;

}

.outline-btn:hover{

    background:var(--primary);

    color:#fff;

}

/*====================================
Top Bar
====================================*/

.top-bar{
    background:var(--secondary);
    color:#fff;
    padding:10px 0;
    font-size:14px;
}

.top-left{
    display:flex;
    align-items:center;
    gap:10px;
}

.top-left i{
    color:#22C55E;
}

.top-right{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:25px;
}

.top-right a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    transition:.3s;
}

.top-right a i{
    color:#22C55E;
    margin-right:6px;
}

.top-right a:hover{
    color:#22C55E;
}


/*====================================
Navbar
====================================*/

.main-header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:#fff;
    backdrop-filter:blur(15px);
    box-shadow:var(--shadow);
}

.navbar{
    padding:18px 0;
}

.navbar-brand img{
    height:55px;
}

.navbar-nav{
    gap:8px;
}

.nav-link{
    color:var(--heading);
    font-weight:600;
    padding:14px 18px !important;
    position:relative;
    transition:.3s;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:18px;
    bottom:8px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.3s;
}

.nav-link:hover::after{
    width:60%;
}

.nav-link:hover{
    color:var(--primary);
}

.navbar .active{
    color:var(--primary)!important;
}


/*====================================
Dropdown
====================================*/

.dropdown-menu{
    display:block;
    opacity:0;
    visibility:hidden;
    transform:translateY(12px);
    transition:.3s;
    border:none;
    border-radius:14px;
    padding:10px 0;
    margin-top:0;
    min-width:240px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

@media(min-width:992px){

.navbar .dropdown:hover>.dropdown-menu{

    opacity:1;
    visibility:visible;
    transform:translateY(0);

}

}

.dropdown-toggle::after{
    margin-left:8px;
    vertical-align:middle;
}

.dropdown-item{
    padding:12px 22px;
    font-weight:500;
    transition:.3s;
}

.dropdown-item:hover{
    background:var(--primary);
    color:#fff;
}


/*====================================
Header Actions
====================================*/

.header-actions{
    display:flex;
    align-items:center;
    gap:15px;
}

.search-btn{
    width:48px;
    height:48px;
    border:none;
    background:#EEF2FF;
    border-radius:50%;
    color:var(--primary);
    transition:.3s;
}

.search-btn:hover{
    background:var(--primary);
    color:#fff;
}

.cart-btn{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#EEF2FF;
    display:flex;
    justify-content:center;
    align-items:center;
    color:var(--primary);
    position:relative;
    transition:.3s;
    text-decoration:none;
}

.cart-btn span{
    position:absolute;
    top:-4px;
    right:-2px;
    width:20px;
    height:20px;
    border-radius:50%;
    background:#EF4444;
    color:#fff;
    font-size:11px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.cart-btn:hover{
    background:var(--primary);
    color:#fff;
}

.login-btn{
    color:var(--heading);
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.login-btn:hover{
    color:var(--primary);
}

.register-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 30px;
    background:var(--primary);
    color:#fff;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.register-btn:hover{
    background:var(--secondary);
    color:#fff;
}


/*====================================
Navbar Toggler
====================================*/

.navbar-toggler{
    border:none;
    box-shadow:none !important;
}

.navbar-toggler:focus{
    box-shadow:none;
}

.navbar-toggler i{
    font-size:28px;
    color:var(--primary);
}


/*====================================
Responsive
====================================*/

@media(max-width:991px){

.top-left,
.top-right{
    justify-content:center;
    text-align:center;
}

.top-right{
    margin-top:10px;
    gap:15px;
    flex-wrap:wrap;
}

.header-actions{
    margin-top:20px;
    justify-content:center;
}

.dropdown-menu{
    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    padding-left:15px;
}

.dropdown-menu.show{
    display:block;
}

.navbar-nav{
    margin-top:20px;
}

}
/*==================================================
 HERO SECTION
==================================================*/

.hero-section{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#f8fbff 0%,#eef5ff 50%,#ffffff 100%);
    padding:120px 0;
    min-height:90vh;
    display:flex;
    align-items:center;
}

.hero-section::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:rgba(37,99,235,.08);
    border-radius:50%;
    top:-250px;
    right:-180px;
    filter:blur(30px);
}

.hero-section::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(16,185,129,.08);
    border-radius:50%;
    bottom:-150px;
    left:-150px;
    filter:blur(20px);
}

/*=============================
 Hero Content
==============================*/

.hero-content{
    position:relative;
    z-index:5;
}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    background:#E8F1FF;

    color:var(--primary);

    border-radius:50px;

    font-weight:600;

    margin-bottom:25px;

}

.hero-badge i{

    color:#F59E0B;

}

.hero-title{

    font-size:58px;

    font-weight:800;

    color:var(--heading);

    line-height:1.2;

    margin-bottom:25px;

}

.hero-title span{

    color:var(--primary);

}

.hero-description{

    font-size:18px;

    line-height:1.9;

    max-width:600px;

    margin-bottom:35px;

    color:#64748B;

}

/*=============================
 Hero Buttons
==============================*/

.hero-buttons{

    display:flex;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.hero-buttons .theme-btn{

    min-width:200px;

    justify-content:center;

}

.hero-buttons .outline-btn{

    min-width:200px;

    text-align:center;

}

/*=============================
 Hero Features
==============================*/

.hero-list{

    display:flex;

    flex-wrap:wrap;

    gap:30px;

    margin-top:45px;

}

.hero-list li{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    color:var(--heading);

}

.hero-list i{

    width:35px;

    height:35px;

    border-radius:50%;

    background:#DCFCE7;

    color:#16A34A;

    display:flex;

    align-items:center;

    justify-content:center;

}

/*=============================
 Hero Image
==============================*/

.hero-image{

    position:relative;

    z-index:5;

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:650px;

    animation:floatImage 5s ease-in-out infinite;

}

/*=============================
 Floating Cards
==============================*/

.floating-card{

    position:absolute;

    background:#fff;

    border-radius:18px;

    box-shadow:var(--shadow-lg);

    padding:18px;

    display:flex;

    align-items:center;

    gap:15px;

    animation:floatCard 4s ease-in-out infinite;

}

.floating-card i{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#EEF2FF;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

}

.floating-card h6{

    margin:0;

    font-size:16px;

}

.floating-card small{

    color:#64748B;

}

/* Card Positions */

.card-one{

    top:50px;

    left:-20px;

}

.card-two{

    bottom:40px;

    right:-30px;

}

.card-three{

    top:45%;

    right:-60px;

}

.hero-image{
    position:relative;
    text-align:center;
}

.main-dashboard{
    max-width:100%;
    border-radius:20px;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
    position:relative;
    z-index:2;
}

.floating-card{
    position:absolute;
    background:#fff;
    border-radius:15px;
    padding:15px 20px;
    display:flex;
    align-items:center;
    gap:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    z-index:3;
    animation:float 4s ease-in-out infinite;
}

.floating-card i{
    width:45px;
    height:45px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.floating-card h6{
    margin:0;
    font-size:15px;
    font-weight:700;
}

.floating-card span{
    color:#666;
    font-size:13px;
}

.card-one{
    top:40px;
    left:-40px;
}

.card-two{
    bottom:70px;
    right:-40px;
}

.card-three{
    top:65%;
    left:-20px;
}

.hero-circle{
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(37,99,235,.08);
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:1;
}

.hero-dots{
    position:absolute;
    width:180px;
    height:180px;
    background:url('../images/dots.png');
    right:-40px;
    top:30px;
    opacity:.4;
}

@keyframes float{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

}

@media(max-width:991px){

.hero-image{

    margin-top:60px;

}

.card-one,
.card-two,
.card-three{

    display:none;

}

.hero-circle{

    width:300px;
    height:300px;

}

}


/*=============================
 Hero Stats
==============================*/

.hero-stats{

    margin-top:60px;

    display:flex;

    gap:40px;

    flex-wrap:wrap;

}

.hero-stat{

    display:flex;

    flex-direction:column;

}

.hero-stat h3{

    color:var(--primary);

    font-size:34px;

    font-weight:800;

    margin-bottom:5px;

}

.hero-stat p{

    margin:0;

    color:#64748B;

}

/*=============================
 Shapes
==============================*/

.hero-shape{

    position:absolute;

    border-radius:50%;

    animation:rotateShape 20s linear infinite;

}

.shape-1{

    width:80px;

    height:80px;

    background:#DBEAFE;

    top:120px;

    left:10%;

}

.shape-2{

    width:40px;

    height:40px;

    background:#FDE68A;

    right:15%;

    top:180px;

}

.shape-3{

    width:60px;

    height:60px;

    background:#BBF7D0;

    bottom:120px;

    left:20%;

}

/*=============================
 Hero Wave
==============================*/

.hero-wave{

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    line-height:0;

}

.hero-wave svg{

    display:block;

    width:100%;

    height:120px;

}

/*=============================
 Animations
==============================*/

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes rotateShape{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

/*==================================================
        BRANDS SECTION
==================================================*/

.brands-section{
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
}

/* Background Shapes */

.brands-section::before{
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(37,99,235,.06);
    border-radius: 50%;
    top: -100px;
    left: -80px;
    filter: blur(10px);
}

.brands-section::after{
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(16,185,129,.05);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
    filter: blur(20px);
}

/*==============================
Section Heading
===============================*/

.section-heading{
    position: relative;
    z-index: 2;
}

.section-subtitle{

    display:inline-block;

    padding:10px 24px;

    background:#EAF2FF;

    color:var(--primary);

    font-weight:700;

    border-radius:50px;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:18px;

    font-size:14px;

}

.section-title{

    font-size:42px;

    font-weight:800;

    color:var(--heading);

    margin-bottom:18px;

}

.section-description{

    max-width:760px;

    margin:auto;

    font-size:17px;

    line-height:1.9;

    color:#64748B;

}

/*==============================
Slider
===============================*/

.brands-slider{

    overflow:hidden;

    position:relative;

    margin-top:60px;

}

.brands-track{

    display:flex;

    align-items:center;

    width:max-content;

    animation:brandSlider 40s linear infinite;

}

.brands-slider:hover .brands-track{

    animation-play-state:paused;

}

/*==============================
Brand Card
===============================*/

.brand-item{

    width:180px;

    height:160px;

    background:#fff;

    border-radius:20px;

    margin:15px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

    transition:.4s;

    border:1px solid #eef2f7;

    cursor:pointer;

    position:relative;

    overflow:hidden;

}

.brand-item::before{

    content:"";

    position:absolute;

    width:100%;

    height:0;

    left:0;

    bottom:0;

    background:linear-gradient(135deg,#2563EB,#3B82F6);

    transition:.4s;

    z-index:0;

}

.brand-item:hover::before{

    height:100%;

}

.brand-item i{

    position:relative;

    z-index:2;

    font-size:54px;

    color:var(--primary);

    transition:.4s;

}

.brand-item span{

    position:relative;

    z-index:2;

    margin-top:18px;

    font-weight:700;

    color:#334155;

    transition:.4s;

    font-size:16px;

}

.brand-item:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(37,99,235,.20);

}

.brand-item:hover i{

    color:#fff;

    transform:scale(1.15) rotate(8deg);

}

.brand-item:hover span{

    color:#fff;

}

/*==============================
Glow Effect
===============================*/

.brand-item::after{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    background:rgba(255,255,255,.18);

    border-radius:50%;

    top:-60px;

    right:-60px;

}

/*==============================
Animation
===============================*/

@keyframes brandSlider{

    0%{

        transform:translateX(0);

    }

    100%{

        transform:translateX(-50%);

    }

}

/*==============================
Responsive
===============================*/

@media(max-width:991px){

    .section-title{

        font-size:34px;

    }

    .brand-item{

        width:150px;

        height:140px;

    }

    .brand-item i{

        font-size:46px;

    }

}

@media(max-width:767px){

    .brands-section{

        padding:70px 0;

    }

    .section-title{

        font-size:28px;

    }

    .section-description{

        font-size:15px;

    }

    .brand-item{

        width:130px;

        height:120px;

        margin:10px;

    }

    .brand-item i{

        font-size:38px;

    }

    .brand-item span{

        font-size:14px;

    }

}



/*==================================================
            CATEGORIES SECTION
==================================================*/

.categories-section{
    position: relative;
    padding: 100px 0;
    background: #f8fbff;
    overflow: hidden;
}

.categories-section::before{
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(37,99,235,.05);
    border-radius: 50%;
    top: -120px;
    left: -100px;
}

.categories-section::after{
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(16,185,129,.05);
    border-radius: 50%;
    bottom: -150px;
    right: -120px;
}

/*==========================
Category Card
==========================*/

.category-card{

    position: relative;

    display: block;

    background: #fff;

    border-radius: 25px;

    padding: 35px 30px;

    overflow: hidden;

    transition: .45s;

    box-shadow: 0 12px 35px rgba(0,0,0,.06);

    border: 1px solid #edf2f7;

    height: 100%;

    text-decoration: none;

}

.category-card::before{

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background: rgba(37,99,235,.05);

    right: -90px;

    top: -90px;

    transition: .5s;

}

.category-card:hover::before{

    transform: scale(2);

}

.category-card:hover{

    transform: translateY(-12px);

    box-shadow: 0 25px 55px rgba(37,99,235,.15);

}

/*==========================
Category Icon
==========================*/

.category-icon{

    width: 90px;

    height: 90px;

    border-radius: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    transition: .4s;

}

.category-icon i{

    font-size: 42px;

    color: #fff;

}

.category-card:hover .category-icon{

    transform: rotate(-10deg) scale(1.08);

}

/*==========================
Heading
==========================*/

.category-card h4{

    font-size: 24px;

    font-weight: 700;

    color: var(--heading);

    margin-bottom: 10px;

}

.category-card p{

    color: #64748B;

    margin-bottom: 30px;

    font-size: 15px;

}

/*==========================
Arrow
==========================*/

.category-arrow{

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: #eef4ff;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary);

    transition: .4s;

}

.category-card:hover .category-arrow{

    background: var(--primary);

    color: #fff;

    transform: translateX(8px);

}

/*==========================
Gradient Colors
==========================*/

.bg-primary-gradient{

    background: linear-gradient(135deg,#2563EB,#3B82F6);

}

.bg-success-gradient{

    background: linear-gradient(135deg,#10B981,#34D399);

}

.bg-warning-gradient{

    background: linear-gradient(135deg,#F59E0B,#FBBF24);

}

.bg-danger-gradient{

    background: linear-gradient(135deg,#EF4444,#F87171);

}

.bg-info-gradient{

    background: linear-gradient(135deg,#06B6D4,#22D3EE);

}

.bg-purple-gradient{

    background: linear-gradient(135deg,#8B5CF6,#A855F7);

}

.bg-teal-gradient{

    background: linear-gradient(135deg,#14B8A6,#2DD4BF);

}

.bg-orange-gradient{

    background: linear-gradient(135deg,#F97316,#FB923C);

}

.bg-dark-gradient{

    background: linear-gradient(135deg,#0F172A,#334155);

}

.bg-pink-gradient{

    background: linear-gradient(135deg,#EC4899,#F472B6);

}

.bg-green-gradient{

    background: linear-gradient(135deg,#16A34A,#22C55E);

}

.bg-gold-gradient{

    background: linear-gradient(135deg,#EAB308,#FACC15);

}

/*==========================
Hover Border Effect
==========================*/

.category-card::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:25px;

    border:2px solid transparent;

    transition:.4s;

}

.category-card:hover::after{

    border-color:rgba(37,99,235,.15);

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

    .category-card{

        padding:30px;

    }

    .category-icon{

        width:80px;

        height:80px;

    }

    .category-icon i{

        font-size:36px;

    }

}

@media(max-width:767px){

    .categories-section{

        padding:70px 0;

    }

    .category-card{

        text-align:center;

    }

    .category-icon{

        margin:auto;

        margin-bottom:20px;

    }

    .category-arrow{

        margin:auto;

    }

    .category-card h4{

        font-size:21px;

    }

}


/*==================================================
            FEATURED PRODUCTS
==================================================*/

.featured-products{
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg,#ffffff,#f8fbff);
    overflow: hidden;
}

.featured-products::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(37,99,235,.05);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.featured-products::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(16,185,129,.05);
    border-radius:50%;
    bottom:-120px;
    left:-100px;
}

/*==============================
Filter
==============================*/

.product-filter{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

}

.product-filter button{

    border:none;

    background:#fff;

    padding:12px 28px;

    border-radius:50px;

    font-weight:600;

    color:#334155;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    transition:.4s;

}

.product-filter button.active,

.product-filter button:hover{

    background:var(--primary);

    color:#fff;

}

/*==============================
Product Card
==============================*/

.product-card{

    position:relative;

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    border:1px solid #edf2f7;

    transition:.45s;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    height:100%;

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(37,99,235,.15);

}

/*==============================
Ribbon
==============================*/

.product-ribbon{

    position:absolute;

    top:20px;

    left:-38px;

    background:linear-gradient(135deg,#EF4444,#F97316);

    color:#fff;

    padding:8px 45px;

    transform:rotate(-45deg);

    font-size:12px;

    font-weight:700;

    z-index:9;

}

.product-ribbon.new{

    background:linear-gradient(135deg,#10B981,#22C55E);

}

/*==============================
Actions
==============================*/

.product-actions{

    position:absolute;

    top:20px;

    right:20px;

    display:flex;

    flex-direction:column;

    gap:12px;

    z-index:10;

}

.product-actions a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#334155;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;

}

.product-actions a:hover{

    background:var(--primary);

    color:#fff;

    transform:scale(1.1);

}

/*==============================
Product Image
==============================*/

.product-image{

    height:220px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#eef4ff,#ffffff);

}

.product-image i{

    font-size:95px;

    color:var(--primary);

    transition:.4s;

}

.product-card:hover .product-image i{

    transform:scale(1.12) rotate(-8deg);

}

/*==============================
Content
==============================*/

.product-content{

    padding:28px;

}

.product-category{

    display:inline-block;

    background:#EAF2FF;

    color:var(--primary);

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    margin-bottom:15px;

}

.product-content h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

    color:var(--heading);

}

/*==============================
Rating
==============================*/

.rating{

    color:#F59E0B;

    margin-bottom:15px;

}

.rating span{

    color:#64748B;

    margin-left:10px;

    font-size:14px;

}

/*==============================
Version
==============================*/

.version{

    margin-bottom:18px;

    color:#64748B;

    font-weight:600;

}

.version i{

    color:var(--primary);

    margin-right:8px;

}

/*==============================
Demo Box
==============================*/

.demo-box{

    background:#F8FAFC;

    border:1px solid #e2e8f0;

    border-radius:15px;

    padding:18px;

    margin-bottom:22px;

}

.demo-box h6{

    font-size:16px;

    margin-bottom:12px;

    color:var(--heading);

}

.demo-box h6 i{

    color:var(--primary);

    margin-right:8px;

}

.demo-box ul{

    padding:0;

    margin:0;

    list-style:none;

}

.demo-box li{

    padding:6px 0;

    font-size:14px;

    color:#475569;

}

.demo-box strong{

    color:var(--heading);

}

/*==============================
Price
==============================*/

.price-box{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:25px;

}

.price-box h3{

    color:var(--primary);

    font-size:32px;

    margin:0;

    font-weight:800;

}

.price-box del{

    color:#94A3B8;

    font-size:18px;

}

/*==============================
Buttons
==============================*/

.product-buttons{

    display:flex;

    gap:12px;

}

.demo-btn,

.buy-btn{

    flex:1;

    text-align:center;

    padding:14px;

    border-radius:12px;

    font-weight:600;

    transition:.35s;

}

.demo-btn{

    background:#EEF4FF;

    color:var(--primary);

}

.demo-btn:hover{

    background:var(--primary);

    color:#fff;

}

.buy-btn{

    background:linear-gradient(135deg,#2563EB,#3B82F6);

    color:#fff;

}

.buy-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(37,99,235,.25);

    color:#fff;

}

/*==============================
Responsive
==============================*/

@media(max-width:991px){

    .product-content{

        padding:22px;

    }

    .product-image{

        height:190px;

    }

    .product-image i{

        font-size:75px;

    }

}

@media(max-width:767px){

    .featured-products{

        padding:70px 0;

    }

    .product-buttons{

        flex-direction:column;

    }

    .price-box{

        flex-direction:column;

        align-items:flex-start;

        gap:5px;

    }

    .product-content h4{

        font-size:20px;

    }

}


/*==================================================
            WHY CHOOSE US
==================================================*/

.why-choose-section{
    position:relative;
    padding:110px 0;
    background:linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
    overflow:hidden;
}

.why-choose-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(37,99,235,.05);
    border-radius:50%;
    top:-180px;
    left:-120px;
    filter:blur(20px);
}

.why-choose-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(16,185,129,.05);
    border-radius:50%;
    bottom:-150px;
    right:-100px;
    filter:blur(20px);
}

/*==============================
Left Content
==============================*/

.why-content{
    position:sticky;
    top:120px;
    z-index:2;
}

.why-content .section-title{
    margin:20px 0;
    font-size:46px;
    line-height:1.3;
}

.why-content .section-description{
    margin-bottom:35px;
}

.why-btn{
    margin-top:35px;
}

/*==============================
Cards
==============================*/

.why-card{

    position:relative;

    background:#fff;

    border-radius:22px;

    padding:35px;

    overflow:hidden;

    transition:.45s;

    border:1px solid #eef2f7;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

    height:100%;

}

.why-card::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    background:rgba(37,99,235,.05);

    border-radius:50%;

    top:-120px;

    right:-120px;

    transition:.45s;

}

.why-card:hover::before{

    transform:scale(2);

}

.why-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(37,99,235,.15);

}

/*==============================
Icon
==============================*/

.why-icon{

    width:85px;

    height:85px;

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

    transition:.45s;

}

.why-icon i{

    color:#fff;

    font-size:38px;

}

.why-card:hover .why-icon{

    transform:rotate(-10deg) scale(1.08);

}

/*==============================
Heading
==============================*/

.why-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

    color:var(--heading);

}

.why-card p{

    color:#64748B;

    line-height:1.8;

    margin:0;

}

/*==============================
Hover Border
==============================*/

.why-card::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:22px;

    border:2px solid transparent;

    transition:.4s;

}

.why-card:hover::after{

    border-color:rgba(37,99,235,.15);

}

/*==============================
Floating Effect
==============================*/

.why-card:nth-child(odd){

    animation:whyFloat 5s ease-in-out infinite;

}

.why-card:nth-child(even){

    animation:whyFloat2 5s ease-in-out infinite;

}

@keyframes whyFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes whyFloat2{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(8px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==============================
Responsive
==============================*/

@media(max-width:991px){

    .why-content{

        position:relative;

        top:0;

        margin-bottom:50px;

    }

    .why-content .section-title{

        font-size:38px;

    }

}

@media(max-width:767px){

    .why-choose-section{

        padding:70px 0;

    }

    .why-content .section-title{

        font-size:30px;

    }

    .why-card{

        padding:28px;

        text-align:center;

    }

    .why-icon{

        margin:auto auto 20px;

    }

    .why-card h4{

        font-size:21px;

    }

}

/*====================================
Statistics
====================================*/

.statistics-section{

    padding:100px 0;
    background:#f8faff;

}

.statistics-wrapper{

    background:#fff;
    border-radius:25px;
    padding:50px 40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.stat-card{

    display:flex;
    align-items:center;
    gap:20px;
    padding:30px;
    border-radius:18px;
    background:#fff;
    transition:.4s;
    border:1px solid #eef2f7;
    height:100%;

}

.stat-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.stat-icon{

    width:75px;
    height:75px;
    min-width:75px;
    border-radius:18px;
    background:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;

}

.stat-icon.bg-success{

    background:#10b981;

}

.stat-icon.bg-warning{

    background:#f59e0b;

}

.stat-icon.bg-danger{

    background:#ef4444;

}

.stat-content h2{

    font-size:42px;
    font-weight:800;
    margin-bottom:8px;
    color:#111827;

}

.stat-content p{

    margin:0;
    color:#6b7280;
    font-size:17px;

}

@media(max-width:991px){

.statistics-wrapper{

    padding:30px;

}

.stat-card{

    text-align:center;
    flex-direction:column;

}

}


/*====================================
Latest Products
====================================*/

.latest-products{

    padding:100px 0;
    background:#ffffff;

}

.latest-product-card{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    border:1px solid #edf2f7;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.latest-product-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.latest-product-image{

    position:relative;
    overflow:hidden;

}

.latest-product-image img{

    width:100%;
    height:220px;
    object-fit:cover;
    transition:.4s;

}

.latest-product-card:hover img{

    transform:scale(1.08);

}

.new-badge{

    position:absolute;
    top:15px;
    left:15px;
    background:#10b981;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;

}

.latest-product-content{

    padding:25px;

}

.product-category{

    color:#2563eb;
    font-size:14px;
    font-weight:600;

}

.latest-product-content h4{

    font-size:22px;
    margin:15px 0;

}

.product-rating{

    color:#f59e0b;
    margin-bottom:18px;

}

.product-rating span{

    color:#6b7280;
    margin-left:8px;

}

.product-price{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:22px;

}

.product-price h5{

    margin:0;
    color:#2563eb;
    font-size:24px;

}

.product-price del{

    color:#9ca3af;

}


/*====================================
Pricing
====================================*/

.pricing-section{

    padding:100px 0;
    background:#f8faff;

}

.pricing-card{

    background:#fff;
    border-radius:20px;
    padding:45px 35px;
    text-align:center;
    position:relative;
    transition:.4s;
    border:1px solid #e8eef7;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    height:100%;

}

.pricing-card:hover{

    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.active-plan{

    border:2px solid var(--primary);
    transform:scale(1.05);

}

.popular-badge{

    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:var(--primary);
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;

}

.pricing-card h5{

    font-size:24px;
    margin-bottom:15px;

}

.pricing-card h2{

    font-size:52px;
    color:var(--primary);
    font-weight:700;

}

.pricing-duration{

    display:block;
    color:#777;
    margin-bottom:30px;

}

.pricing-card ul{

    list-style:none;
    padding:0;
    margin:0 0 35px;

}

.pricing-card ul li{

    padding:12px 0;
    border-bottom:1px solid #edf2f7;

}

.pricing-card ul li:last-child{

    border:none;

}

.pricing-card ul li i{

    color:#22c55e;
    margin-right:10px;

}


/*====================================
Testimonials
====================================*/

.testimonial-section{

    padding:100px 0;
    background:#ffffff;

}

.testimonial-card{

    background:#fff;
    border-radius:20px;
    padding:35px;
    transition:.4s;
    border:1px solid #edf2f7;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.testimonial-rating{

    color:#fbbf24;
    margin-bottom:20px;
    font-size:18px;

}

.testimonial-card p{

    color:#6b7280;
    line-height:30px;
    margin-bottom:30px;

}

.testimonial-user{

    display:flex;
    align-items:center;
    gap:15px;

}

.testimonial-user img{

    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;

}

.testimonial-user h5{

    margin:0;
    font-size:20px;

}

.testimonial-user span{

    color:#6b7280;
    font-size:14px;

}


/*====================================
FAQ
====================================*/

.faq-section{

    padding:100px 0;
    background:#f8faff;

}

.custom-faq .accordion-item{

    border:none;
    margin-bottom:20px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.custom-faq .accordion-button{

    background:#fff;
    font-size:18px;
    font-weight:600;
    padding:22px 25px;
    box-shadow:none;

}

.custom-faq .accordion-button:not(.collapsed){

    background:var(--primary);
    color:#fff;

}

.custom-faq .accordion-button:focus{

    box-shadow:none;

}

.custom-faq .accordion-body{

    padding:25px;
    color:#6b7280;
    line-height:30px;

}

.custom-faq .accordion-button::after{

    background-size:18px;

}


/*==================================================
            CONTACT SECTION
==================================================*/

.contact-section{
    position:relative;
    padding:110px 0;
    background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
    overflow:hidden;
}

.contact-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(37,99,235,.05);
    top:-180px;
    left:-120px;
}

.contact-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(16,185,129,.05);
    right:-120px;
    bottom:-150px;
}

/*=================================
Contact Info
=================================*/

.contact-info{

    display:flex;

    flex-direction:column;

    gap:25px;

}

/*=================================
Contact Card
=================================*/

.contact-card{

    display:flex;

    align-items:flex-start;

    gap:20px;

    background:#fff;

    border-radius:20px;

    padding:30px;

    border:1px solid #edf2f7;

    transition:.4s;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.contact-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(37,99,235,.15);

}

.contact-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#2563EB,#3B82F6);

    flex-shrink:0;

}

.contact-icon i{

    color:#fff;

    font-size:28px;

}

.contact-card h5{

    margin-bottom:10px;

    font-size:22px;

    font-weight:700;

}

.contact-card p{

    margin:0;

    color:#64748B;

    line-height:1.8;

}

/*=================================
Contact Form
=================================*/

.contact-form{

    background:#fff;

    padding:45px;

    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    border:1px solid #edf2f7;

}

.contact-form .form-control{

    height:58px;

    border-radius:14px;

    border:1px solid #e5e7eb;

    padding:15px 20px;

    box-shadow:none;

    transition:.35s;

}

.contact-form textarea.form-control{

    height:auto;

    resize:none;

}

.contact-form .form-control:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(37,99,235,.10);

}

.contact-form .theme-btn{

    border:none;

    padding:15px 35px;

}

.contact-form .theme-btn i{

    margin-right:10px;

}

/*=================================
Responsive
=================================*/

@media(max-width:991px){

    .contact-form{

        margin-top:40px;

    }

}

@media(max-width:767px){

    .contact-section{

        padding:70px 0;

    }

    .contact-card{

        flex-direction:column;

        text-align:center;

    }

    .contact-icon{

        margin:auto;

    }

    .contact-form{

        padding:25px;

    }

}




/*====================================
Floating Contact
====================================*/

.floating-contact{

    position:fixed;
    right:25px;
    bottom:25px;
    z-index:99999;

}

.call-btn,
.whatsapp-btn{

    width:72px;
    height:72px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:30px;
    margin-top:18px;
    transition:.35s;
    box-shadow:0 12px 30px rgba(0,0,0,.20);

}

/* Call */

.call-btn{

    background:#2563eb;

}

/* WhatsApp */

.whatsapp-btn{

    background:#25D366;

}

.call-btn:hover{

    background:#1d4ed8;
    color:#fff;
    transform:scale(1.1);

}

.whatsapp-btn:hover{

    background:#1faa59;
    color:#fff;
    transform:scale(1.1);

}

/* Pulse Animation */

.call-btn::before,
.whatsapp-btn::before{

    content:"";
    position:absolute;
    width:72px;
    height:72px;
    border-radius:50%;
    animation:pulse 2s infinite;
    z-index:-1;

}

.call-btn::before{

    background:rgba(37,99,235,.35);

}

.whatsapp-btn::before{

    background:rgba(37,211,102,.35);

}

@keyframes pulse{

    0%{

        transform:scale(1);
        opacity:.7;

    }

    70%{

        transform:scale(1.6);
        opacity:0;

    }

    100%{

        opacity:0;

    }

}

/* Mobile */

@media(max-width:768px){

.call-btn,
.whatsapp-btn{

    width:60px;
    height:60px;
    font-size:24px;

}

.call-btn::before,
.whatsapp-btn::before{

    width:60px;
    height:60px;

}

.floating-contact{

    right:15px;
    bottom:15px;

}

}