/* ===========================
   GOOGLE FONT
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

section{
    padding:90px 0;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
   COLORS
=========================== */

:root{

    --gold:#d8a93b;
    --dark:#0d0d0d;
    --light:#ffffff;
    --gray:#777;
    --border:#ececec;
    --shadow:0 15px 40px rgba(0,0,0,.08);

}

/* ===========================
   BUTTONS
=========================== */

.btn{

    display:inline-block;
    padding:14px 35px;
    border-radius:8px;
    transition:.35s;
    font-weight:600;

}

.btn-gold{

    background:var(--gold);
    color:#fff;

}

.btn-gold:hover{

    background:#b8891d;
    color:#fff;

}

.btn-dark{

    background:#111;
    color:#fff;

}

.btn-dark:hover{

    background:var(--gold);

}

.btn-outline-light{

    border:2px solid #fff;
    color:#fff;

}

.btn-outline-light:hover{

    background:#fff;
    color:#111;

}

/* ===========================
   HEADER
=========================== */

.navbar-area{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:#000;
    transition:.4s;

}

.navbar{

    padding:18px 0;

}

.logo{

    height:60px;

}

.navbar-nav{

    gap:28px;

}

.navbar-nav a{

    color:#fff;
    font-weight:500;
    transition:.3s;

}

.navbar-nav a:hover{

    color:var(--gold);

}

.whatsapp-btn{

    background:var(--gold);
    color:#fff;
    padding:12px 24px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;

}

.whatsapp-btn:hover{

    background:#fff;
    color:#111;

}

/* ===========================
   HERO
=========================== */

.hero-section{

    background:#0d0d0d;
    color:#fff;
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    padding-top:120px;

}

.hero-section::before{

    content:'';
    position:absolute;
    right:-200px;
    top:-120px;
    width:600px;
    height:600px;
    background:radial-gradient(circle,var(--gold),transparent 70%);
    opacity:.18;
    border-radius:50%;

}

.hero-section h1{

    font-size:76px;
    font-weight:800;
    line-height:1.05;

}

.hero-section h1 span{

    color:var(--gold);

}

.hero-section h2{

    letter-spacing:8px;
    margin:18px 0;
    font-size:32px;
    font-weight:600;

}

.hero-section p{

    color:#d8d8d8;
    font-size:18px;
    margin-bottom:15px;
    max-width:520px;

}

.hero-buttons{

    margin-top:35px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;

}

.hero-image{

    width:100%;
    max-width:650px;
    margin:auto;
    animation:float 5s ease-in-out infinite;

}

/* ===========================
   FEATURES
=========================== */

.features{

    display:flex;
    gap:30px;
    margin-top:55px;
    flex-wrap:wrap;

}

.features div{

    text-align:center;

}

.features i{

    width:65px;
    height:65px;
    background:#1d1d1d;
    border:2px solid rgba(216,169,59,.35);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
    font-size:24px;
    margin:auto;
    transition:.35s;

}

.features div:hover i{

    background:var(--gold);
    color:#fff;
    transform:translateY(-8px);

}

.features p{

    margin-top:14px;
    font-size:15px;
    color:#eee;

}

/* ===========================
   SECTION TITLE
=========================== */

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h5{

    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:12px;

}

.section-title h2{

    font-size:42px;
    font-weight:700;
    color:#111;

}

/* ===========================
   ANIMATION
=========================== */

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0px);

    }

}

/*==================================================
ABOUT SECTION
==================================================*/

.about{
    background:#ffffff;
}

.about h5{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:10px;
}

.about h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:25px;
    color:#111;
}

.about p{
    color:var(--gray);
    font-size:17px;
    margin-bottom:20px;
}

.info-box{
    display:flex;
    align-items:center;
    gap:20px;
    background:#fff;
    padding:25px;
    border-radius:15px;
    margin-bottom:25px;
    box-shadow:var(--shadow);
    transition:.35s;
    border:1px solid var(--border);
}

.info-box:hover{
    transform:translateY(-8px);
    border-color:var(--gold);
}

.info-box i{
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--gold);
    color:#fff;
    font-size:28px;
}

.info-box h6{
    font-size:20px;
    margin-bottom:5px;
    font-weight:600;
}

.info-box p{
    margin:0;
    color:var(--gray);
}


/*==================================================
PRODUCT SECTION
==================================================*/

.products{
    background:#f8f8f8;
}

.product-card{

    background:#fff;
    border-radius:18px;
    padding:40px;
    text-align:center;
    transition:.4s;
    box-shadow:var(--shadow);
    margin-bottom:30px;
    overflow:hidden;
    position:relative;

}

.product-card::before{

    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:var(--gold);

}

.product-card:hover{

    transform:translateY(-10px);

}

.product-card img{

    width:260px;
    margin:auto;
    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-card h3{

    margin-top:30px;
    margin-bottom:15px;
    font-size:30px;
    font-weight:700;
    color:#111;

}

.product-card p{

    color:var(--gray);
    margin-bottom:30px;

}

.product-card .btn{

    width:100%;

}


/*==================================================
PRODUCT BADGES
==================================================*/

.product-badge{

    display:inline-block;
    background:var(--gold);
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
    font-weight:600;

}


/*==================================================
HOVER EFFECT
==================================================*/

.product-card:hover{

    background:#111;
    color:#fff;

}

.product-card:hover h3{

    color:#fff;

}

.product-card:hover p{

    color:#ddd;

}

.product-card:hover .btn{

    background:var(--gold);
    color:#fff;

}


/*==================================================
CARD SHADOW
==================================================*/

.product-card{

    box-shadow:
    0 10px 40px rgba(0,0,0,.08);

}

.product-card:hover{

    box-shadow:
    0 25px 60px rgba(0,0,0,.18);

}


/*==================================================
IMAGE ANIMATION
==================================================*/

.product-card img{

    animation:phoneFloat 5s ease-in-out infinite;

}

@keyframes phoneFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0);

}

}


/*==================================================
SECTION SPACING
==================================================*/

.products .row{

    margin-top:30px;

}

.about .row{

    align-items:center;

}


/*==================================================
GRADIENT BUTTON
==================================================*/

.btn-dark{

    background:linear-gradient(
        45deg,
        #111,
        #333
    );

    border:none;

}

.btn-dark:hover{

    background:linear-gradient(
        45deg,
        var(--gold),
        #b8891d
    );

}

/*==================================================
WHY CHOOSE US
==================================================*/

.why-us{
    background:#111;
    color:#fff;
}

.why-us .section-title h2{
    color:#fff;
}

.why-us .section-title h5{
    color:var(--gold);
}

.why-us .col-md-3{
    margin-bottom:30px;
}

.why-us i{
    width:100px;
    height:100px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    border-radius:50%;
    background:#1c1c1c;
    color:var(--gold);
    font-size:38px;
    border:2px solid rgba(216,169,59,.35);
    transition:.4s;
}

.why-us h4{
    font-size:22px;
    font-weight:600;
}

.why-us .col-md-3:hover i{
    background:var(--gold);
    color:#fff;
    transform:translateY(-8px) rotate(8deg);
}


/*==================================================
CONTACT SECTION
==================================================*/

.contact{
    background:#f8f8f8;
}

.contact img{
    border-radius:20px;
    box-shadow:var(--shadow);
}

.contact h5{
    color:var(--gold);
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.contact h2{
    font-size:40px;
    font-weight:700;
    margin-bottom:25px;
}

.contact-list{
    padding:0;
    margin-top:20px;
}

.contact-list li{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:25px;
    color:#555;
    font-size:17px;
}

.contact-list i{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--gold);
    color:#fff;
    border-radius:50%;
    font-size:20px;
    flex-shrink:0;
}


/*==================================================
FOOTER
==================================================*/

footer{
    background:#000;
    color:#bbb;
    text-align:center;
    padding:35px 0;
}

footer p{
    margin:0;
    font-size:15px;
}

footer a{
    color:var(--gold);
}

footer a:hover{
    color:#fff;
}


/*==================================================
FLOATING WHATSAPP BUTTON
==================================================*/

.floating-whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    z-index:9999;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.35s;
}

.floating-whatsapp:hover{
    color:#fff;
    transform:scale(1.12);
}


/*==================================================
SCROLL TO TOP BUTTON
==================================================*/

.scroll-top{
    position:fixed;
    right:25px;
    bottom:105px;
    width:55px;
    height:55px;
    background:var(--gold);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:999;
}

.scroll-top.show{
    opacity:1;
    visibility:visible;
}

.scroll-top:hover{
    background:#111;
}


/*==================================================
HOVER EFFECTS
==================================================*/

.info-box,
.product-card,
.why-us .col-md-3,
.contact img{
    transition:all .35s ease;
}

.contact img:hover{
    transform:scale(1.03);
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}


/*==================================================
GLASS EFFECT (OPTIONAL)
==================================================*/

.glass{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.12);
}


/*==================================================
SMALL ANIMATIONS
==================================================*/

.fade-up{
    animation:fadeUp .8s ease forwards;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


/*==================================================
CUSTOM SCROLLBAR
==================================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:var(--gold);
    border-radius:10px;
}

::-webkit-scrollbar-thumb:hover{
    background:#b8891d;
}

/* Active Navigation Link */
.navbar-nav a.active{
    color:#d8a93b;
    font-weight:600;
}

/* Ripple Effect */
.btn{
    position:relative;
    overflow:hidden;
}

.ripple{
    position:absolute;
    width:15px;
    height:15px;
    background:rgba(255,255,255,.5);
    border-radius:50%;
    transform:translate(-50%, -50%);
    animation:ripple .6s linear;
}

@keyframes ripple{
    from{
        width:0;
        height:0;
        opacity:.8;
    }
    to{
        width:400px;
        height:400px;
        opacity:0;
    }
}