/*==================================================
            GADGETMOBI PREMIUM UI V2
===================================================*/

/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ROOT COLORS */

:root{

--dark:#464646;
--orange:#dc7123;
--white:#ffffff;
--light:#f7f7f7;
--text:#333;
--radius:18px;

--gradient:linear-gradient(135deg,#464646,#dc7123);

--shadow:
0 15px 40px rgba(0,0,0,.12);

--transition:.35s ease;

}


/* RESET */

*{

margin:0;
padding:0;
box-sizing:border-box;

}


html{

scroll-behavior:smooth;

}


body{

font-family:'Poppins',sans-serif;

background:#f7f7f7;

color:var(--text);

overflow-x:hidden;

}


/* SCROLLBAR */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#ececec;

}
::-webkit-scrollbar-thumb{

background:var(--gradient);

border-radius:20px;

}


/* CONTAINER */

.container{
    width:100%;
    max-width:1350px;
    margin:auto;
    padding:0 25px;
}


/* LINKS */

a{

text-decoration:none;

color:inherit;

}


/* IMAGE */

img{

max-width:100%;

display:block;

}


/* BUTTON */

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

padding:14px 28px;

border-radius:50px;

font-weight:600;

transition:var(--transition);

cursor:pointer;

border:none;

}


.btn-primary{

background:var(--gradient);

color:#fff;

box-shadow:0 12px 30px rgba(220,113,35,.35);

}


.btn-primary:hover{

transform:translateY(-4px);

box-shadow:0 20px 40px rgba(220,113,35,.45);

}


.btn-outline{

background:#fff;

border:2px solid #dc7123;
box-shadow:0 10px 25px rgba(220,113,35,.20);

color:#dc7123;

}


.btn-outline:hover{

background:var(--gradient);

color:#fff;

}


/* SECTION */

section{

padding:90px 0;

}


/*=========================
ANNOUNCEMENT BAR
=========================*/

.top-offer{

background:var(--gradient);

color:#fff;

padding:8px 0;

font-size:14px;

font-weight:600;

text-align:center;

letter-spacing:.5px;
}
/*=========================
HEADER
=========================*/

header{

border-bottom:none;

box-shadow:0 5px 20px rgba(0,0,0,.08);

position:sticky;

top:0;

left:0;

width:100%;

z-index:999;

background:rgba(255,255,255,.92);

backdrop-filter:blur(16px);

}
.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    height:86px;   /* 72px ki jagah 86px */
}


/* LOGO */

.logo{

display:flex;

align-items:center;

gap:3px;

}


.logo img{

width:52px;

filter:drop-shadow(0 0 10px rgba(220,113,35,.35));

}


.logo h2{

font-size:22px;

font-weight:700;

color:#464646;

}


.logo span{

color:#dc7123;

}


.logo p{

font-size:11px;

color:#777;

margin-top:-2px;

}


/* MENU */

.nav-links{
    flex:1;
    display:flex;
    justify-content:center;
    gap:42px;
}


.nav-links a{
    color:#464646;
    font-weight:600;
    position:relative;
    transition:var(--transition);
}


.nav-links a:hover,
.nav-links a.active{
    color:#dc7123;
}


.nav-links a::after{

content:'';

position:absolute;

left:0;

bottom:-8px;

width:0;

height:3px;

background:#dc7123;

transition:.35s;

border-radius:20px;

}


.nav-links a:hover::after,
.nav-links a.active::after{

width:100%;

}
/*=========================================
            HERO SECTION
=========================================*/

.hero{
    min-height:85vh;
    background:
    linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35)),
    linear-gradient(135deg,#464646,#dc7123);
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
    text-align:center;
}

.hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    top:-180px;
    right:-150px;
}

.hero::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    bottom:-150px;
    left:-120px;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
    padding:20px;
}

.hero-content h1{
    font-size:72px;
    color:#fff;
    font-weight:700;
    margin-bottom:20px;
}

.hero-content h1 span{
    color:#dc7123;
}

.hero-content p{
    color:#f4f1ea;
    font-size:22px;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    padding:16px 42px;
    background:#dc7123;
    color:#fff;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
    transition:.35s;
}

.hero-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 45px rgba(220,113,35,.45);
}
/*=========================================
            NAVIGATION
=========================================*/

nav ul{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
}

nav ul li{
    position:relative;
}

nav ul li a{
    color:#464646;
    font-size:17px;
    font-weight:600;
    padding:8px 0;
    transition:all .3s ease;
}

nav ul li a::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-8px;
    width:0;
    height:3px;
    background:#dc7123;
    border-radius:20px;
    transform:translateX(-50%);
    transition:.35s ease;
}

nav ul li a:hover{
    color:#dc7123;
}

nav ul li a:hover::after,
nav ul li a.active::after{
    width:100%;
}

nav ul li a.active{
    color:#dc7123;
}
/*================ HEADER RIGHT BUTTONS ================*/

.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.header-right a{
    width:46px;
    height:46px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    text-decoration:none;
    font-size:18px;
    transition:.35s ease;
}

.call-btn{
    background:#464646;
    color:#fff;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
}

.cart-btn{
    background:#dc7123;
    color:#fff;
}

.login-btn{
    background:#f4f1ea;
    color:#464646;
    border:1px solid #ddd;
}

.header-right a:hover{
    transform:translateY(-4px) scale(1.08);
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}
/* =========================
   EMAIL SECTION
========================= */

.email-section{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
    margin-top:30px;
}

.email-card{
    background:#fff;
    padding:50px;
    border-radius:50px;
    display:flex;
    align-items:center;
    gap:18px;
    text-decoration:none;
    border:1px solid rgba(220,113,35,0.15);
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
}

.email-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
    background:var(--orange);
    transition:.35s;
}

.email-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(220,113,35,0.18);
}

.email-card:hover::before{
    width:100%;
    opacity:.08;
}

.email-card i{
    width:55px;
    height:55px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(
        135deg,
        var(--orange),
        #f08d44
    );
    color:#fff;
    font-size:22px;
    flex-shrink:0;
}

.email-card span{
    display:block;
    font-size:13px;
    color:#888;
    margin-bottom:3px;
}

.email-card strong{
    color:var(--dark);
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.email-card:hover strong{
    color:var(--orange);
}
/* =========================
   STATS COUNTER SECTION
========================= */

.stats-section{
  max-width:1200px;
  margin:80px auto;
  padding:40px;
  background:linear-gradient(135deg,#464646,#5a5a5a);
  border-radius:30px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.stat-box{
  text-align:center;
  color:#fff;
}

.stat-box h2{
  font-size:52px;
  color:var(--orange);
  font-weight:700;
  margin-bottom:10px;
}

.stat-box span{
  font-size:15px;
  opacity:.95;
  letter-spacing:.5px;
}

@media(max-width:768px){

  .stats-section{
    padding:30px 20px;
  }

  .stat-box h2{
    font-size:40px;
  }

}

/*=========================================
                FOOTER
=========================================*/

.footer{
    background:#1f1f1f;
    color:#ddd;
    padding:80px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:45px;
}

.footer-logo{
    font-size:36px;
    color:#fff;
    margin-bottom:18px;
}

.footer-logo span{
    color:#dc7123;
}

.footer-col p{
    color:#bbb;
    line-height:1.9;
    margin-bottom:25px;
}

.footer-col h3{
    color:#fff;
    font-size:22px;
    margin-bottom:22px;
    position:relative;
}

.footer-col h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:50px;
    height:3px;
    background:#dc7123;
    border-radius:20px;
}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:14px;
    color:#bbb;
}

.footer-col ul li a{
    color:#bbb;
    text-decoration:none;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#dc7123;
    padding-left:6px;
}

.footer-col ul li i{
    color:#dc7123;
    margin-right:10px;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#2d2d2d;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#dc7123;
    transform:translateY(-5px);
}

.footer hr{
    margin:55px 0 25px;
    border:none;
    height:1px;
    background:#3d3d3d;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-bottom p{
    color:#aaa;
}

.footer-links{
    display:flex;
    gap:25px;
}

.footer-links a{
    color:#aaa;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#dc7123;
}

@media(max-width:992px){

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.footer-grid{
    grid-template-columns:1fr;
}

.footer-bottom{
    flex-direction:column;
    text-align:center;
}

.footer-links{
    flex-direction:column;
    gap:12px;
}

}

