
:root{
    --gold:#D4AF37;
    --dark:#05070F;
    --dark-card:#0E1424;
    --white:#FFFFFF;
    --gray:#9CA3AF;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--dark);
    color:white;
    overflow-x:hidden;
}

body::before{
    content:'';
    position:fixed;
    width:100%;
    height:100%;
    background:
    radial-gradient(circle at top right,#1f2937 0%,transparent 30%),
    radial-gradient(circle at bottom left,#0f172a 0%,transparent 35%);
    z-index:-1;
}

/* ===== CONTAINER ===== */
.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* ===== HEADER ===== */
header{
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
    backdrop-filter:blur(15px);
    background:rgba(5,7,15,.85);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.navbar{
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* ===== LOGO ===== */
.logo{
    font-size:28px;
    font-weight:800;
    color:var(--gold);
    letter-spacing:3px;
}

/* ===== NAV ===== */
.nav-links{
    display:flex;
    gap:35px;
    align-items:center;
}

.nav-links a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--gold);
}

/* ===== BUTTONS ===== */
.btn{
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    display:inline-block;
    transition:.3s;
    position:relative;
    overflow:hidden;
}

.btn-gold{
    background:var(--gold);
    color:black;
    font-weight:600;
}

.btn-gold:hover{
    transform:translateY(-3px);
    color:var(--white);
}

.btn-primary{
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: .3s;
}

.btn-primary:hover{
    background: var(--gold);
    color: black;
    transform: translateY(-3px);
}

/* ===== HERO ===== */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:80px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-content h4{
    color:var(--gold);
    margin-bottom:15px;
    letter-spacing:2px;
}

.hero-content h1{
    font-family:'Playfair Display',serif;
    font-size:70px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-content p{
    color:var(--gray);
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

/* .hero-image{
    height:600px;
    border-radius:30px;
    background:
    linear-gradient(135deg,
    rgba(212,175,55,.2),
    rgba(255,255,255,.03)),
        url("../images/ecommerce/product-1.jpg");;
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    position:relative;
    overflow:hidden;
}

.hero-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at center, rgba(212,175,55,.2), transparent 60%);
    animation:pulse 4s infinite;
} */
.hero-image {
    height: 600px;
    border-radius: 30px;

    background:
        radial-gradient(circle at center, rgba(212,175,55,.25), transparent 60%),
        linear-gradient(135deg, rgba(212,175,55,.25), rgba(0,0,0,.6)),
        url("../images/ecommerce/product-1.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border: 1px solid rgba(255,255,255,.08);
    position: relative;
    overflow: hidden;
}
.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(212,175,55,.25),
        transparent 65%
    );
    animation: pulse 4s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%,100% { opacity: .5; }
    50% { opacity: .9; }
}
.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(212,175,55,.15),
        rgba(0,0,0,.5)
    );
    backdrop-filter: blur(6px);
    pointer-events: none;
}
@keyframes pulse{
    0%,100%{opacity:.6;}
    50%{opacity:1;}
}

/* ===== SECTIONS ===== */
section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:48px;
    font-family:'Playfair Display',serif;
}

.section-title p{
    color:var(--gray);
    margin-top:15px;
}

/* ===== GRIDS ===== */
.services,
.services-grid,
.dashboard-preview{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

/* ===== CARDS ===== */
.card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border-radius:25px;
    padding:35px;
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
    border-color:var(--gold);
    box-shadow:0 10px 40px rgba(0,0,0,.4);
}

.card h3{
    margin-bottom:15px;
}

.card p{
    color:var(--gray);
    line-height:1.7;
}

/* ===== STATS ===== */
.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-box{
    text-align:center;
    padding:40px;
    border-radius:20px;
    background:rgba(255,255,255,.03);
}

.stat-box h2{
    color:var(--gold);
    font-size:50px;
}

/* ===== TIMELINE ===== */
.timeline{
    max-width:900px;
    margin:auto;
}

.timeline-item{
    margin-bottom:30px;
    padding:25px;
    border-left:3px solid var(--gold);
    background:rgba(255,255,255,.03);
    border-radius:15px;
}

/* ===== CONTACT ===== */
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.form-group{
    margin-bottom:20px;
}

input,
textarea{
    width:100%;
    padding:16px;
    border:none;
    outline:none;
    border-radius:12px;
    background:#111827;
    color:white;
}

textarea{
    height:180px;
    resize:none;
}

/* ===== TRUSTED ===== */
.trusted{
    text-align:center;
    padding:80px 0;
    color:var(--gray);
}

.trusted-logos{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    margin-top:25px;
}

.trusted-logos div{
    padding:12px 20px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,.1);
    background:rgba(255,255,255,.03);
    transition:.3s;
}

.trusted-logos div:hover{
    border-color:var(--gold);
    color:var(--gold);
}

/* ===== NAV TOGGLE ===== */
.menu-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
    color:white;
}

/* ===== MOBILE ===== */
@media(max-width:992px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:80px;
        right:0;
        width:100%;
        background:rgba(5,7,15,.98);
        flex-direction:column;
        padding:20px;
        display:none;
        gap:20px;
        border-top:1px solid rgba(255,255,255,.08);
    }

    .nav-links.active{
        display:flex;
    }

    .hero-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:50px;
    }

    .stats{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){

    .hero-content h1{
        font-size:38px;
    }

    .stats{
        grid-template-columns:1fr;
    }
}

/* ===== BUTTON EFFECTS ===== */
.ripple{
    position:absolute;
    width:20px;
    height:20px;
    background:rgba(255,255,255,.5);
    border-radius:50%;
    transform:scale(0);
    animation:rippleAnim .6s linear;
}

@keyframes rippleAnim{
    to{
        transform:scale(15);
        opacity:0;
    }
}

/* ===== PDF VIEWER ===== */
.pdf-viewer{
    width:100%;
    height:80vh;
    background:#111827;
    border-radius:20px;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:10px;
}

/* ===== FORM BUTTON ===== */
form button{
    width:100%;
    margin-top:10px;
}

footer{ padding:40px 0; border-top:1px solid rgba(255,255,255,.08); text-align:center; color:var(--gray); }
