/* ==========================================================
   AURA DIGITAL
   Premium Landing Page
   style.css (Part 1)
   Theme : Dark Navy + Luxury Gold
========================================================== */

/* ===============================
   GOOGLE FONTS
================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Cinzel:wght@500;600;700&display=swap');

/*==========================================================
PRELOADER
==========================================================*/

#preloader{

    position:fixed;

    inset:0;

    background:#07111f;

    z-index:99999;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:1s;

}

.loader{

    text-align:center;

}

.loader img{

    width:140px;

    margin:auto;

    margin-bottom:20px;

    animation:float 4s infinite ease-in-out;

}

.loader h2{

    margin-top:30px;

    color:var(--gold);

}

.loader p{

    margin-top:10px;

    color:#bbb;

}

.loader-ring{

    width:170px;

    height:170px;

    border-radius:50%;

    border:3px solid rgba(255,255,255,.08);

    border-top:3px solid var(--gold);

    position:absolute;

    animation:spin 1.4s linear infinite;

}

@keyframes spin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

/*==========================================================
SCROLL BAR
==========================================================*/

#progress-bar{

    position:fixed;

    top:0;

    left:0;

    width:0%;

    height:4px;

    z-index:9999;

    background:

    linear-gradient(
        90deg,
        #D4AF37,
        #FFE082,
        #D4AF37
    );

    box-shadow:

    0 0 18px rgba(212,175,55,.5);

}
/* ===============================
   ROOT VARIABLES
================================= */

:root{

    --primary:#081522;
    --secondary:#0E2238;
    --card:#10263d;

    --gold:#D4AF37;
    --gold-light:#F4D878;
    --gold-dark:#A67C00;

    --white:#ffffff;
    --text:#d8dee9;
    --gray:#98a6b8;

    --border:rgba(255,255,255,.08);

    --shadow:0 10px 35px rgba(0,0,0,.45);

    --gold-shadow:0 0 25px rgba(212,175,55,.35);

    --transition:.35s ease;

    --radius:18px;

}

/* ===============================
   RESET
================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:var(--primary);

    color:var(--white);

    font-family:'Poppins',sans-serif;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

section{

    padding:120px 0;

    position:relative;

}

.container{

    width:min(1200px,90%);

    margin:auto;

}

/* ===============================
   CUSTOM SCROLLBAR
================================= */

::-webkit-scrollbar{

    width:9px;

}

::-webkit-scrollbar-track{

    background:#05101b;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(var(--gold),#ffdd78);

    border-radius:50px;

}

/* ===============================
   BACKGROUND
================================= */

body::before{

    content:"";

    position:fixed;

    inset:0;

    background:

    radial-gradient(circle at 10% 10%,rgba(212,175,55,.08),transparent 28%),

    radial-gradient(circle at 90% 80%,rgba(212,175,55,.06),transparent 35%),

    radial-gradient(circle at 80% 15%,rgba(0,119,255,.12),transparent 25%),

    radial-gradient(circle at 20% 90%,rgba(30,144,255,.08),transparent 28%);

    z-index:-2;

}

#particles{

    position:fixed;

    inset:0;

    z-index:-1;

    pointer-events:none;

}

/* ===============================
   TYPOGRAPHY
================================= */

h1,h2,h3,h4{

    font-family:'Cinzel',serif;

    font-weight:700;

    color:#fff;

}

p{

    line-height:1.9;

    color:var(--text);

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--gold);

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:.9rem;

}

.section-title h2{

    margin-top:15px;

    font-size:2.7rem;

}

/* ===============================
   HEADER
================================= */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.4s;

}

header.scrolled{

    background:rgba(7,19,32,.92);

    backdrop-filter:blur(16px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.navbar{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo img{

    width:120px;

}

.nav-links{

    display:flex;

    gap:35px;

}

.nav-links a{

    position:relative;

    font-weight:500;

    transition:var(--transition);

}

.nav-links a:hover{

    color:var(--gold);

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.35s;

}

.nav-links a:hover::after{

    width:100%;

}

.mobile-menu{

    display:none;

    font-size:28px;

    cursor:pointer;

}

/* ===============================
   BUTTONS
================================= */

.btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:15px 34px;

    border-radius:50px;

    transition:.4s;

    font-weight:600;

}

.btn-gold{

    color:#111;

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    box-shadow:var(--gold-shadow);

}

.btn-gold:hover{

    transform:translateY(-5px);

    box-shadow:

    0 12px 30px rgba(212,175,55,.45);

}

.btn-outline{

    border:2px solid var(--gold);

    color:var(--gold);

}

.btn-outline:hover{

    background:var(--gold);

    color:#111;

}

/* ===============================
   HERO
================================= */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 500px;

    align-items:center;

    gap:70px;

}

.tag{

    display:inline-block;

    padding:8px 18px;

    border:1px solid rgba(212,175,55,.3);

    border-radius:40px;

    color:var(--gold);

    background:rgba(212,175,55,.08);

    margin-bottom:25px;

}

.hero h1{

    font-size:4.4rem;

    line-height:1.15;

    margin-bottom:25px;

}

.hero h1 span{

    color:var(--gold);

}

.hero p{

    max-width:650px;

    margin-bottom:40px;

    font-size:1.05rem;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:45px;

}

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:10px;

    color:var(--gray);

}

.hero-features i{

    color:var(--gold);

}

.hero-right{

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-right img{

    width:420px;

    animation:float 5s ease-in-out infinite;

    filter:

    drop-shadow(0 0 40px rgba(212,175,55,.28));

}

/* ===============================
   GLASS CARD
================================= */

.glass{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border-radius:var(--radius);

}

/* ===============================
   UTILITIES
================================= */

.text-gold{

    color:var(--gold);

}

.center{

    text-align:center;

}

.mt-2{

    margin-top:20px;

}

.mt-3{

    margin-top:30px;

}

.mt-5{

    margin-top:50px;

}

/* ===============================
   SELECTION
================================= */

::selection{

    background:var(--gold);

    color:#111;

}
/*==========================================================
    PLATFORMS SECTION
==========================================================*/

.platforms{
    background:linear-gradient(to bottom,#09131f,#0b1827);
}

.platforms h2{
    text-align:center;
    font-size:2.6rem;
    margin-bottom:60px;
}

.platform-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:30px;

}

.platform-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border-radius:20px;

    padding:35px 20px;

    text-align:center;

    transition:.35s;

    cursor:pointer;

}

.platform-card:hover{

    transform:translateY(-12px);

    border-color:rgba(212,175,55,.45);

    box-shadow:
    0 0 35px rgba(212,175,55,.18);

}

.platform-card i{

    font-size:55px;

    color:var(--gold);

    margin-bottom:20px;

}

.platform-card img{

    width:65px;

    margin:auto;

    margin-bottom:18px;

}

.platform-card h3{

    font-family:'Poppins';

    font-size:1.1rem;

    font-weight:600;

}

/*==========================================================
    SERVICES
==========================================================*/

.services{

    background:transparent;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.service-card{

    position:relative;

    overflow:hidden;

    padding:40px;

    border-radius:22px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(16px);

    transition:.4s;

}

.service-card::before{

    content:"";

    position:absolute;

    top:-80px;

    right:-80px;

    width:180px;

    height:180px;

    background:radial-gradient(var(--gold),transparent);

    opacity:.08;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:rgba(212,175,55,.45);

    box-shadow:

    0 20px 45px rgba(0,0,0,.4),

    0 0 30px rgba(212,175,55,.18);

}

.service-card i{

    width:75px;

    height:75px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    color:#111;

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    margin-bottom:28px;

    box-shadow:var(--gold-shadow);

}

.service-card h3{

    margin-bottom:18px;

    font-size:1.5rem;

}

.service-card p{

    margin-bottom:25px;

}

.service-card ul{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.service-card ul li{

    color:var(--gray);

    display:flex;

    gap:10px;

    align-items:center;

}

.service-card ul li i{

    width:auto;

    height:auto;

    background:none;

    color:var(--gold);

    font-size:14px;

    box-shadow:none;

    margin:0;

}

/*==========================================================
    WHY CHOOSE US
==========================================================*/

.why{

    background:linear-gradient(to bottom,#0b1827,#081522);

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.why-card{

    padding:35px;

    border-radius:20px;

    text-align:center;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:rgba(212,175,55,.35);

}

.why-card i{

    font-size:45px;

    color:var(--gold);

    margin-bottom:20px;

}

.why-card h3{

    margin-bottom:15px;

}

/*==========================================================
    PROCESS TIMELINE
==========================================================*/

.process{

    position:relative;

}

.timeline{

    position:relative;

    width:100%;

    margin-top:70px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    width:4px;

    height:100%;

    background:linear-gradient(var(--gold),transparent);

    transform:translateX(-50%);

}

.timeline-item{

    width:50%;

    position:relative;

    padding:20px 60px;

    margin-bottom:70px;

}

.timeline-item:nth-child(odd){

    left:0;

    text-align:right;

}

.timeline-item:nth-child(even){

    left:50%;

}

.timeline-content{

    padding:30px;

    border-radius:18px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(16px);

    transition:.4s;

}

.timeline-content:hover{

    border-color:rgba(212,175,55,.45);

    box-shadow:0 0 25px rgba(212,175,55,.15);

}

.timeline-number{

    position:absolute;

    top:35px;

    width:55px;

    height:55px;

    background:linear-gradient(var(--gold),var(--gold-light));

    color:#111;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    box-shadow:var(--gold-shadow);

}

.timeline-item:nth-child(odd) .timeline-number{

    right:-28px;

}

.timeline-item:nth-child(even) .timeline-number{

    left:-28px;

}

/*==========================================================
    PORTFOLIO
==========================================================*/

.portfolio{

    background:#09131f;

}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:35px;

}

.portfolio-card{

    overflow:hidden;

    border-radius:22px;

    background:#13283f;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.portfolio-card:hover{

    transform:translateY(-12px);

    box-shadow:

    0 15px 40px rgba(0,0,0,.4),

    0 0 30px rgba(212,175,55,.15);

}

.portfolio-image{

    overflow:hidden;

    height:250px;

}

.portfolio-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.portfolio-card:hover img{

    transform:scale(1.08);

}

.portfolio-content{

    padding:30px;

}

.portfolio-content span{

    color:var(--gold);

    font-size:.85rem;

    letter-spacing:1px;

    text-transform:uppercase;

}

.portfolio-content h3{

    margin:15px 0;

}

/*==========================================================
    STATS
==========================================================*/

.stats{

    background:linear-gradient(to right,#081522,#10263d);

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.stat-card{

    padding:45px 25px;

    text-align:center;

    border-radius:20px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

    border-color:rgba(212,175,55,.35);

}

.stat-card h2{

    font-size:3.2rem;

    color:var(--gold);

    margin-bottom:10px;

}

.stat-card p{

    color:var(--gray);

    font-size:1rem;

}
/*==========================================================
    CLIENT REVIEWS
==========================================================*/
/* 
.reviews{
    background:linear-gradient(180deg,#081522,#0b1d30);
    overflow:hidden;
}

.review-slider{
    display:flex;
    gap:30px;
    margin-top:60px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding-bottom:15px;
}

.review-slider::-webkit-scrollbar{
    display:none;
}

.review-card{

    min-width:370px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:35px;

    transition:.35s;

    backdrop-filter:blur(18px);

}

.review-card:hover{

    transform:translateY(-10px);

    border-color:rgba(212,175,55,.35);

    box-shadow:
    0 20px 40px rgba(0,0,0,.35),
    0 0 30px rgba(212,175,55,.12);

}

.review-stars{

    color:var(--gold);

    margin-bottom:18px;

    font-size:18px;

}

.review-card p{

    margin-bottom:25px;

    color:var(--text);

}

.review-user{

    display:flex;

    align-items:center;

    gap:15px;

}

.review-avatar{

    width:60px;

    height:60px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

    color:#111;

    font-size:20px;

}

.review-user h4{

    font-family:Poppins;

    font-size:1rem;

}

.review-user span{

    color:var(--gray);

    font-size:.9rem;

} */
.review-slider{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

    margin-top:60px;

}

.review-card{

    padding:35px;

    border-radius:22px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.review-card::before{

    content:"❝";

    position:absolute;

    top:15px;

    right:25px;

    font-size:90px;

    color:rgba(212,175,55,.08);

    font-family:serif;

}

.review-card:hover{

    transform:translateY(-12px);

    border-color:rgba(212,175,55,.35);

    box-shadow:

    0 20px 45px rgba(0,0,0,.35),

    0 0 30px rgba(212,175,55,.18);

}

.review-stars{

    color:var(--gold);

    font-size:18px;

    margin-bottom:20px;

}

.review-card p{

    color:#d7dde5;

    line-height:1.8;

    margin-bottom:30px;

}

.review-user{

    display:flex;

    align-items:center;

    gap:15px;

}

.review-avatar{

    width:65px;

    height:65px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,var(--gold),#f8df87);

    color:#111;

    font-size:24px;

    font-weight:700;

}

.review-user h4{

    margin-bottom:4px;

    font-family:'Poppins',sans-serif;

}

.review-user span{

    color:#9daaba;

    font-size:.9rem;

}
/*==========================================================
    FAQ
==========================================================*/

.faq{

    background:#081522;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-item{

    margin-bottom:20px;

    border-radius:16px;

    overflow:hidden;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

}

.faq-question{

    padding:22px 30px;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.faq-question h3{

    font-size:1.1rem;

    font-family:Poppins;

}

.faq-question i{

    color:var(--gold);

    transition:.3s;

}

.faq-answer{

    display:none;

    padding:0 30px 25px;

}

.faq-item.active .faq-answer{

    display:block;

}

.faq-item.active .faq-question i{

    transform:rotate(180deg);

}

/*==========================================================
    CTA
==========================================================*/

.cta{

    padding:100px 0;

}

.cta-box{

    background:linear-gradient(135deg,#10263d,#132f4d);

    border-radius:25px;

    border:1px solid rgba(212,175,55,.2);

    padding:70px;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:radial-gradient(var(--gold),transparent);

    top:-180px;

    right:-150px;

    opacity:.08;

}

.cta-box h2{

    font-size:3rem;

    margin-bottom:20px;

}

.cta-box p{

    max-width:700px;

    margin:auto;

    margin-bottom:40px;

}

/*==========================================================
    CONTACT
==========================================================*/

.contact{

    background:#09131f;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.contact-card{

    display:flex;

    gap:18px;

    padding:22px;

    border-radius:18px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

}

.contact-card i{

    color:var(--gold);

    font-size:28px;

    width:50px;

}

.contact-card h4{

    font-family:Poppins;

    margin-bottom:6px;

}

.contact-social{

    display:flex;

    gap:18px;

    margin-top:30px;

}

.contact-social a{

    width:55px;

    height:55px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#10263d;

    transition:.35s;

}

.contact-social a:hover{

    background:var(--gold);

    color:#111;

    transform:translateY(-6px);

}

/*==========================================================
    FOOTER
==========================================================*/

footer{

    border-top:1px solid rgba(255,255,255,.08);

    padding:30px 0;

    background:#06111d;

}

.footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-links{

    display:flex;

    gap:25px;

}

.footer-links a{

    transition:.3s;

}

.footer-links a:hover{

    color:var(--gold);

}

/*==========================================================
    FLOATING WHATSAPP
==========================================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    box-shadow:0 10px 30px rgba(37,211,102,.4);

    z-index:999;

    transition:.35s;

}

.whatsapp:hover{

    transform:scale(1.12);

}

/*==========================================================
    CURSOR GLOW
==========================================================*/

.cursor-glow{

    position:fixed;

    width:350px;

    height:350px;

    border-radius:50%;

    background:radial-gradient(circle,
        rgba(212,175,55,.16),
        transparent 70%);

    pointer-events:none;

    transform:translate(-50%,-50%);

    z-index:-1;

}

/*==========================================================
    GOLDEN SHINE EFFECT
==========================================================*/

.btn-gold{

    position:relative;

    overflow:hidden;

}

.btn-gold::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:80%;

    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform:skewX(-25deg);

}

.btn-gold:hover::before{

    animation:shine 1s forwards;

}

/*==========================================================
    IMAGE HOVER
==========================================================*/

img{

    user-select:none;

}

.service-card,
.platform-card,
.review-card,
.portfolio-card,
.stat-card,
.why-card{

    will-change:transform;

}

/*==========================================================
    END OF STYLE.CSS
==========================================================*/

.stat-card i{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:30px;

    color:#111;

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    box-shadow:0 0 25px rgba(212,175,55,.35);

}

/* -------------------------------------------------- */

/*==================================================
FOOTER
==================================================*/

footer{

    background:#050d17;

    border-top:1px solid rgba(255,255,255,.08);

    padding:70px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    width:210px;

    margin-bottom:20px;

}

.footer-column h3{

    margin-bottom:20px;

    color:var(--gold);

}

.footer-column p{

    color:#b6c0cc;

    line-height:1.8;

}

.footer-column ul{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer-column ul li{

    color:#cfd6df;

}

.footer-column ul li a{

    transition:.3s;

}

.footer-column ul li a:hover{

    color:var(--gold);

    padding-left:6px;

}

.footer-social{

    display:flex;

    gap:12px;

    margin-top:20px;

}

.footer-social a{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#10263d;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--gold);

    color:#111;

    transform:translateY(-5px);

}

footer hr{

    border:none;

    border-top:1px solid rgba(255,255,255,.08);

    margin:50px 0 25px;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.back-top{

    width:50px;

    height:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    color:#111;

    transition:.35s;

}

.back-top:hover{

    transform:translateY(-5px);

}