:root{
    --bg:#0B0B0B;
    --card:#07121F;
    --gold:#D4AF37;
    --white:#ffffff;
    --muted:#9ca3af;
    --border:rgba(212,175,55,.18);
}

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

html{
    scroll-behavior:smooth;
}

body{
    background:var(--bg);
    color:var(--white);
    font-family:'Montserrat',sans-serif;
    overflow-x:hidden;
    line-height:1.7;
}

/* ===========================
   GLOBAL
=========================== */

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

.container{
    max-width:1320px;
}

.section{
    padding:120px 0;
}

.text-gold{
    color:var(--gold);
}

.section-subtitle{
    color:var(--gold);
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:15px;
    display:block;
}

.section-title{
    font-size:52px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.section-desc{
    color:var(--muted);
    max-width:700px;
}

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

.aurum-bg{
    position:fixed;
    inset:0;
    z-index:-2;

    background:
    radial-gradient(
        circle at top right,
        rgba(212,175,55,.08),
        transparent 30%
    ),

    radial-gradient(
        circle at bottom left,
        rgba(212,175,55,.05),
        transparent 30%
    );

}

.aurum-grid{
    position:fixed;
    inset:0;
    z-index:-1;
    opacity:.03;

    background-image:
    linear-gradient(
    rgba(255,255,255,.12) 1px,
    transparent 1px),

    linear-gradient(
    90deg,
    rgba(255,255,255,.12) 1px,
    transparent 1px);

    background-size:80px 80px;
}

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

.gold-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 32px;

    border-radius:50px;

    background:var(--gold);
    color:#000;

    font-weight:600;

    transition:.3s;
}

.gold-btn:hover{
    transform:translateY(-3px);
    color:#000;
}

.outline-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 32px;

    border-radius:50px;

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

    color:var(--gold);

    transition:.3s;
}

.outline-btn:hover{
    background:var(--gold);
    color:#000;
}

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

.glass-card{
    background:
    rgba(7,18,31,.75);

    backdrop-filter:blur(20px);

    border:1px solid var(--border);

    border-radius:24px;
}

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

.aurum-header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:999;

    background:
    rgba(11,11,11,.8);

    backdrop-filter:blur(18px);

    border-bottom:
    1px solid rgba(212,175,55,.08);

    transition:.3s;
}

.aurum-header.scrolled{

    background:
    rgba(11,11,11,.95);

    box-shadow:
    0 15px 40px rgba(0,0,0,.35);

}

.navbar{
    min-height:90px;
}

.navbar-brand img{
    height:55px;
}

.navbar-nav{
    gap:35px;
}

.navbar-nav a{

    color:#fff;
    font-weight:500;
    transition:.3s;
}

.navbar-nav a:hover{
    color:var(--gold);
}

.header-right{

    display:flex;
    align-items:center;
    gap:12px;

    margin-left:35px;
}

.lang-btn{

    width:40px;
    height:40px;

    border-radius:50%;

    border:1px solid var(--border);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
}

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

.aurum-footer{

    padding:
    100px 0 40px;

    background:#050505;

    border-top:
    1px solid rgba(212,175,55,.08);

}

.footer-logo{
    height:60px;
    margin-bottom:25px;
}

.aurum-footer h5{

    color:var(--gold);

    margin-bottom:20px;
}

.aurum-footer ul{
    list-style:none;
    padding:0;
}

.aurum-footer li{
    margin-bottom:12px;
}

.aurum-footer a{

    color:#d1d5db;
}

.aurum-footer a:hover{
    color:var(--gold);
}

.footer-disclaimer{

    margin-top:60px;
    padding-top:25px;

    border-top:
    1px solid rgba(212,175,55,.08);

    color:#9ca3af;
    font-size:14px;
}

.copyright{

    margin-top:25px;

    text-align:center;

    color:#777;
}

/* ===========================
   ANIMATION
=========================== */

.reveal{

    opacity:0;

    transform:
    translateY(50px);

    transition:
    all .8s ease;
}

.reveal.active{

    opacity:1;

    transform:none;
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:991px){

    .section{
        padding:80px 0;
    }

    .section-title{
        font-size:36px;
    }

    .header-right{
        margin-left:0;
        margin-top:20px;
    }

    .navbar-nav{
        gap:15px;
        padding-top:20px;
    }

    .navbar-collapse{
        padding:20px 0;
    }

}

@media(max-width:576px){

    .section-title{
        font-size:30px;
    }

    .gold-btn,
    .outline-btn{
        width:100%;
    }

}







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

.hero-section{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    padding-top:120px;
}

.hero-globe-bg{

    position:absolute;

    top:50%;

    right:-150px;

    width:900px;

    height:900px;

    transform:translateY(-50%);

    background:url('../images/world-map-gold.png')
    center center no-repeat;

    background-size:contain;

    opacity:.15;

    pointer-events:none;
}

.hero-badge{

    display:inline-block;

    padding:10px 20px;

    border-radius:40px;

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

    color:var(--gold);

    font-size:12px;

    letter-spacing:2px;

    margin-bottom:25px;
}

.hero-title{

    font-size:52px !important;

    line-height:1.1;

    font-weight:700;

    margin-bottom:25px;
}

.hero-description{

    color:#b5b5b5;

    font-size:18px;

    max-width:600px;

    margin-bottom:35px;
}

.hero-buttons{

    display:flex;

    gap:15px;

    margin-bottom:50px;
}

.hero-stats{

    display:flex;

    gap:50px;
}

.hero-stat h4{

    color:var(--gold);

    font-size:24px;

    margin-bottom:5px;
}

.hero-stat span{

    color:#9ca3af;

    font-size:14px;
}

/* ===========================
   CARD VISUAL
=========================== */

.hero-visual{

    position:relative;

    height:650px;
}

.floating-card{

    width:430px;

    height:260px;

    border-radius:30px;

    position:absolute;

    top:120px;

    right:40px;

    padding:35px;

    background:
    linear-gradient(
    135deg,
    #111111,
    #1d1d1d
    );

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

    box-shadow:
    0 40px 80px rgba(0,0,0,.5);

    animation:
    floatingCard 7s ease-in-out infinite;

    z-index:2;
}

.card-chip{

    width:70px;

    height:50px;

    border-radius:10px;

    background:
    linear-gradient(
    135deg,
    #D4AF37,
    #f8e18c
    );
}

.card-brand{

    margin-top:60px;

    color:var(--gold);

    font-size:28px;

    letter-spacing:4px;

    font-weight:700;
}

.card-type{

    margin-top:10px;

    color:#b5b5b5;

    letter-spacing:3px;
}

.marble-base{

    width:340px;

    height:120px;

    position:absolute;

    bottom:120px;

    right:90px;

    border-radius:100px;

    background:
    linear-gradient(
    135deg,
    #1f1f1f,
    #0e0e0e
    );

    box-shadow:
    0 20px 40px rgba(0,0,0,.5);
}

.gold-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(80px);
}

.glow-1{

    width:220px;

    height:220px;

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

    top:100px;

    right:0;
}

.glow-2{

    width:160px;

    height:160px;

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

    bottom:180px;

    right:180px;
}

@keyframes floatingCard{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0);
    }
}
@media(max-width:991px){

    .hero-section{

        padding-top:140px;

        text-align:center;
    }

    .hero-title{

        font-size:46px;
    }

    .hero-buttons{

        justify-content:center;
    }

    .hero-stats{

        justify-content:center;

        flex-wrap:wrap;
    }

    .hero-visual{

        height:450px;

        margin-top:50px;
    }

    .floating-card{

        width:320px;

        height:200px;

        left:50%;

        right:auto;

        transform:translateX(-50%);
    }

    .marble-base{

        width:240px;

        left:50%;

        right:auto;

        transform:translateX(-50%);
    }

}


/* ===========================
   POSITIONING
=========================== */

.position-card{

    height:100%;

    padding:35px;

    border-radius:24px;

    background:
    rgba(7,18,31,.65);

    backdrop-filter:blur(20px);

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

    transition:.35s;
}

.position-card:hover{

    transform:translateY(-8px);

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

.position-icon{

    width:65px;
    height:65px;

    border-radius:18px;

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

    color:var(--gold);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;

    margin-bottom:25px;
}

.position-card h4{

    margin-bottom:15px;
}

.position-card p{

    color:#9ca3af;
}


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

.service-box{

    height:100%;

    padding:40px;

    border-radius:28px;

    background:
    linear-gradient(
    180deg,
    rgba(7,18,31,.9),
    rgba(7,18,31,.65)
    );

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

    transition:.35s;
}

.service-box:hover{

    transform:translateY(-10px);

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

.service-number{

    color:var(--gold);

    font-size:42px;

    font-weight:700;

    margin-bottom:20px;

    opacity:.7;
}

.service-box h4{

    margin-bottom:18px;
}

.service-box p{

    color:#9ca3af;
}


/* ===========================
   GLOBAL NETWORK
=========================== */

.network-card{

    padding:50px;

    border-radius:30px;

    background:
    rgba(7,18,31,.75);

    backdrop-filter:blur(20px);

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

.network-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:20px;
}

.network-grid span{

    padding:20px;

    text-align:center;

    border-radius:18px;

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

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

    color:var(--gold);
}


/* ===========================
   PRICING
=========================== */

.pricing-card{

    height:100%;

    padding:35px;

    border-radius:30px;

    position:relative;

    background:
    rgba(7,18,31,.75);

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

    transition:.35s;
}

.pricing-card:hover{

    transform:translateY(-8px);

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

.pricing-card h4{

    margin-bottom:20px;
}

.price{

    font-size:34px;

    font-weight:700;

    color:var(--gold);

    margin-bottom:20px;
}

.pricing-card p{

    color:#9ca3af;
}

.featured{

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

.popular-badge{

    position:absolute;

    top:15px;

    right:15px;

    background:var(--gold);

    color:#000;

    padding:6px 12px;

    border-radius:30px;

    font-size:11px;

    font-weight:700;
}


/* ===========================
   CUSTOM SOLUTION
=========================== */

.custom-solution-section{

    padding-bottom:120px;
}

.custom-solution-card{

    padding:50px;

    border-radius:30px;

    background:
    linear-gradient(
    135deg,
    rgba(212,175,55,.08),
    rgba(7,18,31,.9)
    );

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

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;
}

.custom-solution-card h3{

    margin-bottom:10px;
}

.custom-solution-card p{

    color:#9ca3af;
}


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

.contact-cta-card{

    padding:80px;

    text-align:center;

    border-radius:35px;

    background:
    linear-gradient(
    135deg,
    rgba(7,18,31,.95),
    rgba(7,18,31,.7)
    );

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

.contact-cta-card h2{

    font-size:54px;

    margin-bottom:25px;
}

.contact-cta-card p{

    max-width:750px;

    margin:auto auto 35px;

    color:#9ca3af;
}


/* ===========================
   COMPLIANCE
=========================== */

.compliance-section{

    padding-bottom:120px;
}

.compliance-card{

    padding:50px;

    border-radius:30px;

    background:
    rgba(7,18,31,.75);

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

    display:flex;

    gap:35px;
}

.compliance-icon{

    width:90px;
    height:90px;

    min-width:90px;

    border-radius:20px;

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

    color:var(--gold);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;
}

.compliance-card h3{

    margin-bottom:20px;
}

.compliance-card p{

    color:#9ca3af;

    margin-bottom:20px;
}

.compliance-card ul{

    padding-left:20px;
}

.compliance-card li{

    margin-bottom:12px;

    color:#d1d5db;
}


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

.final-cta-section{

    padding-bottom:120px;
}

.final-cta-box{

    text-align:center;

    padding:80px;

    border-radius:35px;

    background:
    linear-gradient(
    135deg,
    rgba(212,175,55,.08),
    rgba(7,18,31,.95)
    );

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

.final-cta-box h2{

    font-size:60px;

    margin-bottom:20px;
}

.final-cta-box p{

    color:#9ca3af;

    max-width:700px;

    margin:auto auto 35px;
}

@media(max-width:991px){

    .contact-cta-card{

        padding:40px 25px;
    }

    .contact-cta-card h2{

        font-size:34px;
    }

    .compliance-card{

        flex-direction:column;
    }

    .final-cta-box{

        padding:40px 25px;
    }

    .final-cta-box h2{

        font-size:34px;
    }

}

@media(max-width:576px){

    .hero-title{
        font-size:38px;
    }

    .section-title{
        font-size:30px;
    }

    .contact-cta-card h2,
    .final-cta-box h2{
        font-size:28px;
    }

}




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

.inner-hero{

    padding:
    180px 0 100px;

    text-align:center;
}

.inner-hero h1{

    font-size:72px;

    margin-bottom:25px;
}

.inner-hero p{

    max-width:750px;

    margin:auto;

    color:#9ca3af;
}


/* ===========================
   SERVICE DETAIL
=========================== */

.alt-section{

    background:
    rgba(255,255,255,.01);
}

.service-image-card{

    height:380px;

    border-radius:35px;

    background:
    rgba(7,18,31,.75);

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

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:90px;

    color:var(--gold);
}

.service-list{

    margin-top:30px;

    padding-left:20px;
}

.service-list li{

    margin-bottom:15px;

    color:#d1d5db;
}

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

.services-cta{

    padding-bottom:120px;
}





    /* ===========================
   PRICING PAGE
=========================== */

.pricing-main-section{

    padding-top:0;
}

.pricing-page-card{

    height:100%;

    padding:40px;

    border-radius:30px;

    background:
    rgba(7,18,31,.75);

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

    transition:.35s;

    position:relative;
}

.pricing-page-card:hover{

    transform:translateY(-10px);

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

.pricing-page-card h4{

    margin-bottom:20px;
}

.pricing-page-card .price{

    font-size:38px;

    font-weight:700;

    color:var(--gold);

    margin-bottom:20px;
}

.pricing-page-card p{

    color:#9ca3af;

    margin-bottom:25px;
}

.pricing-page-card ul{

    list-style:none;

    padding:0;

    margin-bottom:30px;
}

.pricing-page-card li{

    padding:12px 0;

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

.pricing-page-card li:last-child{

    border:none;
}

.pricing-page-card .gold-btn,
.pricing-page-card .outline-btn{

    width:100%;
}

.pricing-page-card.featured{

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

    transform:scale(1.03);
}

.pricing-page-card.featured:hover{

    transform:
    scale(1.03)
    translateY(-10px);
}

.pricing-note-section{

    padding-bottom:120px;
}



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

.contact-section{

    padding-top:0;
}

.contact-info-card,
.contact-form-card{

    height:100%;

    padding:45px;

    border-radius:30px;

    background:
    rgba(7,18,31,.75);

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

.contact-info-card h2{

    margin:15px 0 20px;
}

.contact-info-card p{

    color:#9ca3af;

    margin-bottom:40px;
}

.contact-item{

    display:flex;

    gap:18px;

    align-items:center;

    margin-bottom:25px;
}

.contact-icon{

    width:60px;
    height:60px;

    border-radius:18px;

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

    color:var(--gold);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
}

.contact-item small{

    color:#9ca3af;
}

.contact-item h5{

    margin-top:5px;
}

.contact-form-card label{

    margin-bottom:10px;

    display:block;

    color:#d1d5db;
}

.contact-form-card .form-control{

    height:58px;

    border-radius:16px;

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

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

    color:#fff;
}

.contact-form-card textarea.form-control{

    height:auto;
}

.contact-form-card .form-control:focus{

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

    color:#fff;

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

    box-shadow:none;
}

.contact-note-section{

    padding-bottom:120px;
}




/* ===========================
   LEGAL PAGES
=========================== */

.legal-page{

    padding-top:0;
    padding-bottom:120px;
}

.legal-card{

    padding:45px;

    margin-bottom:30px;

    border-radius:30px;

    background:
    rgba(7,18,31,.75);

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

.legal-card h2{

    margin-bottom:20px;

    color:var(--gold);
}

.legal-card p{

    color:#d1d5db;

    margin-bottom:20px;

    line-height:1.9;
}

.legal-list{

    padding-left:20px;
}

.legal-list li{

    margin-bottom:15px;

    color:#d1d5db;
}


.language-switcher{

    display:flex;
    align-items:center;
    gap:10px;

    margin-right:20px;
}

.language-switcher a{

    color:#b5b5b5;
    font-size:13px;
    letter-spacing:2px;
    font-weight:600;

    transition:.3s;
}

.language-switcher a:hover,
.language-switcher a.active{

    color:#D4AF37;
}

.language-switcher span{

    color:rgba(255,255,255,.2);
}


.scroll-top{

    position:fixed;

    right:25px;
    bottom:25px;

    width:50px;
    height:50px;

    border-radius:50%;

    background:#D4AF37;

    color:#000;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    z-index:9999;

    opacity:0;
    visibility:hidden;

    transition:.3s;
}

.scroll-top.show{

    opacity:1;
    visibility:visible;
}

.scroll-top:hover{

    transform:translateY(-3px);
}



.navbar-toggler{
    border:1px solid rgba(212,175,55,.2)!important;
    padding:8px 12px;
}

.navbar-toggler i{
    color:#D4AF37;
    font-size:22px;
}


@media(max-width:991px){

    .navbar-collapse{

        margin-top:15px;

        padding:20px;

        background:#07121F;

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

        border-radius:20px;
    }

    .navbar-nav{

        gap:0;
    }

    .navbar-nav li{

        padding:10px 0;
    }

    .header-right{

        margin-top:20px;

        padding-top:20px;

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

        justify-content:flex-start;
    }

}
.aurum-header{
    z-index:99999;
}

@media(max-width:991px){

    .navbar-brand img{
        height:40px;
    }

}


@media(max-width:991px){

    .navbar{
        min-height:75px;
    }

    .navbar-collapse{

        background:#07121F;
        margin-top:15px;
        padding:20px;
        border-radius:20px;
        border:1px solid rgba(212,175,55,.15);
    }

    .navbar-nav{
        width:100%;
    }

    .navbar-nav a{
        display:block;
        padding:12px 0;
    }

    .header-right{
        margin-top:20px;
        justify-content:flex-start;
    }

}


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

@media (max-width: 991px){

    .section{
        padding:70px 0;
    }

    .section-title{
        font-size:34px;
        line-height:1.25;
    }

    .inner-hero{
        padding:130px 0 70px;
    }

    .inner-hero h1{
        font-size:42px;
        line-height:1.2;
    }

    .hero-title{
        font-size:42px !important;
        line-height:1.15;
        margin-bottom:20px;
    }

    .hero-description{
        font-size:16px;
        line-height:1.8;
    }

    .contact-cta-card h2,
    .final-cta-box h2{
        font-size:32px;
        line-height:1.25;
    }

    .price{
        font-size:28px !important;
    }

    .service-number{
        font-size:32px;
    }
}

@media (max-width: 576px){

    .section{
        padding:60px 0;
    }

    .section-subtitle{
        font-size:11px;
        letter-spacing:2px;
    }

    .section-title{
        font-size:28px;
        line-height:1.3;
    }

    .inner-hero h1{
        font-size:32px;
        line-height:1.25;
    }

    .hero-title{
        font-size:34px !important;
        line-height:1.2;
    }

    .hero-description{
        font-size:15px;
    }

    .contact-cta-card h2,
    .final-cta-box h2{
        font-size:26px;
    }

    .position-card,
    .service-box,
    .pricing-card,
    .pricing-page-card,
    .legal-card{
        padding:25px;
    }

    .contact-info-card,
    .contact-form-card{
        padding:25px;
    }
}
@media(max-width:991px){

    .navbar-collapse{

        background:#07121F;
        border:1px solid rgba(212,175,55,.15);
        border-radius:20px;

        padding:20px;
        margin-top:15px;
    }

    .navbar-nav a{

        display:block;
        padding:12px 0;

        font-size:15px;
    }

    .consult-btn{

        width:100%;
        margin-top:15px;
    }

    .language-switcher{

        margin-top:15px;
        margin-bottom:10px;
    }
}



.hero-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(
    circle at 80% 20%,
    rgba(212,175,55,.08),
    transparent 30%);

    z-index:-1;
}

@media(max-width:991px){

    .hero-section{

        min-height:auto;

        padding:
        140px 0 80px;
    }

    .hero-content{

        text-align:center;
    }

    .hero-buttons{

        flex-direction:column;
    }

    .hero-buttons a{

        width:100%;
    }

    .hero-stats{

        justify-content:center;

        gap:20px;
    }

    .hero-visual{

        margin-top:50px;

        height:auto;
    }

}


.hero-title{

    font-size:78px;

    line-height:1.05;

    max-width:700px;

    letter-spacing:-2px;
}
@media(max-width:576px){

    .hero-title{

        font-size:38px;

        letter-spacing:-1px;
    }

}
.service-box{

    position:relative;

    overflow:hidden;
}

.service-box::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:3px;

    background:#D4AF37;

    opacity:0;

    transition:.4s;
}

.service-box:hover::before{

    opacity:1;
}
.pricing-page-card.featured{

    transform:scale(1.06);

    background:
    linear-gradient(
    180deg,
    rgba(212,175,55,.08),
    rgba(7,18,31,.95));
}






/*new updated css */
body{
    font-family:'Montserrat',sans-serif;
    font-weight:400;
}

h1,h2,h3,h4,h5,h6{
    font-weight:600;
}


.language-switcher{

    display:flex;
    align-items:center;
    gap:10px;

    margin-right:20px;
}

.language-switcher a{

    color:#b5b5b5;

    font-size:13px;

    letter-spacing:2px;

    font-weight:600;

    transition:.3s;
}

.language-switcher a.active,
.language-switcher a:hover{

    color:#D4AF37;
}


.hero-section{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    background:
    radial-gradient(
    circle at top right,
    rgba(212,175,55,.08),
    transparent 25%),

    #0B0B0B;
}

.hero-title{

    font-size:78px;

    line-height:1.05;

    letter-spacing:-2px;
}

.hero-description{

    font-size:18px;

    color:#b5b5b5;

    line-height:1.9;
}

.hero-badge{

    color:#D4AF37;

    letter-spacing:3px;

    font-size:12px;
}

.world-network{

    text-align:center;
}

.world-network img{

    width:100%;

    opacity:.25;

    animation:
    floatMap 8s ease-in-out infinite;
}

@keyframes floatMap{

    50%{
        transform:translateY(-10px);
    }

}


.position-card,
.service-box,
.pricing-card,
.pricing-page-card,
.legal-card,
.contact-info-card,
.contact-form-card{

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.03),
    rgba(255,255,255,.01)
    );

    backdrop-filter:blur(18px);

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

    box-shadow:
    0 10px 40px rgba(0,0,0,.25);
}


.position-card::before,
.service-box::before,
.pricing-page-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:2px;

    background:#D4AF37;

    opacity:.4;
}


.position-card,
.service-box,
.pricing-page-card{

    transition:.35s;
}

.position-card:hover,
.service-box:hover,
.pricing-page-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 60px rgba(0,0,0,.35);
}


@media(max-width:991px){

    .hero-title{

        font-size:42px;
        text-align:center;
    }

    .hero-description{

        text-align:center;
    }

    .hero-buttons{

        justify-content:center;
    }

    .world-network{

        margin-top:40px;
    }

    .world-network img{

        opacity:.15;
    }

}





.position-card,
.service-box,
.pricing-card,
.pricing-page-card,
.legal-card,
.contact-info-card,
.contact-form-card{

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.06),
    rgba(255,255,255,.015)
    );

    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);

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

    box-shadow:
    0 8px 40px rgba(0,0,0,.30);

    border-radius:28px;
}

.position-card::after,
.service-box::after,
.pricing-card::after,
.pricing-page-card::after{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

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

    transition:.8s;
}
.position-card:hover::after,
.service-box:hover::after,
.pricing-card:hover::after,
.pricing-page-card:hover::after{

    left:100%;
}

.position-card:hover,
.service-box:hover,
.pricing-page-card:hover{

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

    box-shadow:

    0 0 0 1px rgba(212,175,55,.15),

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

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


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

.hero-section{

    position:relative;

    overflow:hidden;

    min-height:100vh;

    background:
    radial-gradient(
    circle at top right,
    rgba(212,175,55,.08),
    transparent 30%),

    radial-gradient(
    circle at bottom left,
    rgba(212,175,55,.05),
    transparent 20%),

    #0B0B0B;
}

.hero-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    pointer-events:none;
}

.hero-glow-1{

    width:350px;
    height:350px;

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

    top:-100px;
    right:-100px;
}

.hero-glow-2{

    width:250px;
    height:250px;

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

    bottom:-50px;
    left:-50px;
}

.hero-badge{

    color:#D4AF37;

    font-size:12px;

    letter-spacing:3px;

    display:block;

    margin-bottom:25px;
}

.hero-title{

    font-size:78px;

    line-height:1.05;

    letter-spacing:-2px;

    margin-bottom:30px;
}

.hero-description{

    color:#b5b5b5;

    font-size:18px;

    line-height:1.9;

    max-width:620px;

    margin-bottom:35px;
}

.hero-buttons{

    display:flex;

    gap:15px;

    margin-bottom:50px;
}

.hero-trust{

    display:flex;

    gap:35px;
}

.trust-item h4{

    color:#D4AF37;

    margin:0;
}

.trust-item span{

    color:#9ca3af;

    font-size:13px;
}
.hero-visual{

    position:relative;
}

.network-panel{

    position:relative;

    padding:35px;

    border-radius:32px;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.01)
    );

    backdrop-filter:blur(20px);

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

    box-shadow:
    0 20px 60px rgba(0,0,0,.35);
}

.network-header{

    color:#D4AF37;

    font-size:12px;

    letter-spacing:3px;

    margin-bottom:20px;
}

.world-map{

    width:100%;

    opacity:.8;
}

.floating-node{

    position:absolute;

    padding:10px 16px;

    border-radius:50px;

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

    backdrop-filter:blur(10px);

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

    color:#D4AF37;

    font-size:12px;
}

.node-1{
    top:90px;
    left:30px;
}

.node-2{
    top:140px;
    right:20px;
}

.node-3{
    bottom:120px;
    left:50px;
}

.node-4{
    bottom:90px;
    right:40px;
}

.network-footer{

    margin-top:25px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;
}

.mini-card{

    padding:18px;

    border-radius:18px;

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

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

.mini-card strong{

    display:block;

    color:#D4AF37;
}

.mini-card span{

    color:#b5b5b5;

    font-size:13px;
}


/* ===========================
   POSITIONING
=========================== */

.position-card{

    position:relative;

    height:100%;

    padding:35px;

    border-radius:28px;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.01)
    );

    backdrop-filter:blur(18px);

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

    transition:.4s;
}

.position-card:hover{

    transform:translateY(-8px);

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

.position-icon{

    width:70px;
    height:70px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

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

    color:#D4AF37;

    font-size:26px;

    margin-bottom:25px;
}

.position-card h4{

    margin-bottom:15px;
}

.position-card p{

    color:#9ca3af;

    line-height:1.8;
}


/* ===========================
   VALUE SECTION
=========================== */

.value-image{

    position:relative;
}

.value-glow{

    position:absolute;

    width:250px;
    height:250px;

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

    border-radius:50%;

    filter:blur(100px);

    top:50%;
    left:50%;

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

.value-card{

    position:relative;

    padding:50px;

    border-radius:32px;

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.01)
    );

    backdrop-filter:blur(18px);

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

.value-stat{

    margin-bottom:35px;
}

.value-stat:last-child{

    margin-bottom:0;
}

.value-stat h2{

    color:#D4AF37;

    font-size:48px;
}

.value-stat span{

    color:#b5b5b5;
}

.value-list{

    margin-top:30px;

    padding-left:20px;
}

.value-list li{

    margin-bottom:15px;

    color:#d1d5db;
}


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

.service-box{

    position:relative;

    height:100%;

    padding:35px;

    border-radius:30px;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.01)
    );

    backdrop-filter:blur(18px);

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

    transition:.4s;
}

.service-box:hover{

    transform:translateY(-10px);

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

    box-shadow:
    0 20px 60px rgba(0,0,0,.35);
}

.service-number{

    color:#D4AF37;

    font-size:42px;

    font-weight:700;

    opacity:.7;

    margin-bottom:15px;
}

.service-icon{

    width:70px;
    height:70px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

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

    color:#D4AF37;

    font-size:26px;

    margin-bottom:25px;
}

.service-box h4{

    margin-bottom:15px;
}

.service-box p{

    color:#9ca3af;

    margin-bottom:20px;
}

.service-box ul{

    padding-left:18px;
}

.service-box li{

    margin-bottom:10px;

    color:#d1d5db;
}


/* FEATURED SERVICE */

.featured-service{

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

.popular-service{

    position:absolute;

    top:15px;
    right:15px;

    padding:6px 12px;

    border-radius:50px;

    background:#D4AF37;

    color:#000;

    font-size:11px;

    font-weight:700;
}


/* ===========================
   HIGHLIGHT SECTION
=========================== */

.highlight-card{

    padding:50px;

    border-radius:35px;

    background:
    linear-gradient(
    135deg,
    rgba(212,175,55,.08),
    rgba(255,255,255,.02)
    );

    backdrop-filter:blur(20px);

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

.highlight-card h2{

    margin:15px 0 20px;
}

.highlight-card p{

    color:#b5b5b5;
}

.highlight-stats{

    display:grid;

    gap:20px;
}

.highlight-box{

    padding:25px;

    border-radius:20px;

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

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

    text-align:center;
}

.highlight-box h3{

    color:#D4AF37;

    font-size:42px;

    margin:0;
}

.highlight-box span{

    color:#b5b5b5;
}


/* ===========================
   GLOBAL NETWORK
=========================== */

.world-card{

    padding:40px;

    border-radius:35px;

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.01)
    );

    backdrop-filter:blur(20px);

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

    text-align:center;
}

.world-map-large{

    width:100%;

    opacity:.8;
}

.network-list{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:35px;
}

.network-item{

    padding:12px 18px;

    border-radius:50px;

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

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

    color:#D4AF37;

    font-size:13px;
}


/* ===========================
   PRICING
=========================== */

.pricing-card{

    position:relative;

    height:100%;

    padding:35px;

    border-radius:28px;

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.01)
    );

    backdrop-filter:blur(18px);

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

    transition:.4s;
}

.pricing-card:hover{

    transform:translateY(-8px);

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

.price{

    color:#D4AF37;

    font-size:34px;

    font-weight:700;

    margin:15px 0;
}

.featured-card{

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

    box-shadow:
    0 0 40px rgba(212,175,55,.08);
}

.popular-badge{

    position:absolute;

    top:15px;
    right:15px;

    background:#D4AF37;

    color:#000;

    padding:6px 12px;

    border-radius:50px;

    font-size:11px;

    font-weight:700;
}


/* ===========================
   CUSTOM SOLUTION
=========================== */

.custom-solution-card{

    padding:55px;

    border-radius:35px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    background:
    linear-gradient(
    135deg,
    rgba(212,175,55,.08),
    rgba(255,255,255,.02)
    );

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

    backdrop-filter:blur(20px);
}

.custom-solution-card h3{

    margin:15px 0;
}



/* ===========================
   CONSULTATION SECTION
=========================== */

.consultation-card{

    padding:80px;

    text-align:center;

    border-radius:35px;

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.01)
    );

    backdrop-filter:blur(20px);

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

.consultation-card h2{

    margin:20px 0;

    font-size:54px;
}

.consultation-card p{

    max-width:750px;

    margin:0 auto 35px;

    color:#b5b5b5;
}


/* ===========================
   COMPLIANCE
=========================== */

.compliance-card{

    display:flex;

    gap:35px;

    padding:50px;

    border-radius:35px;

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.04),
    rgba(255,255,255,.01)
    );

    backdrop-filter:blur(20px);

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

.compliance-icon{

    width:90px;
    height:90px;

    min-width:90px;

    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

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

    color:#D4AF37;

    font-size:34px;
}

.compliance-content h3{

    margin-bottom:20px;
}

.compliance-content p{

    color:#b5b5b5;

    margin-bottom:20px;
}

.compliance-content ul{

    padding-left:20px;
}

.compliance-content li{

    margin-bottom:12px;

    color:#d1d5db;
}


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

.final-cta-section{

    padding-bottom:120px;
}

.final-cta-card{

    position:relative;

    overflow:hidden;

    padding:90px;

    text-align:center;

    border-radius:40px;

    background:
    linear-gradient(
    135deg,
    rgba(212,175,55,.08),
    rgba(255,255,255,.01)
    );

    backdrop-filter:blur(22px);

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

.final-glow{

    position:absolute;

    width:350px;
    height:350px;

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

    border-radius:50%;

    filter:blur(120px);

    top:-100px;
    right:-100px;
}

.final-cta-card h2{

    font-size:62px;

    margin:20px 0;
}

.final-cta-card p{

    max-width:750px;

    margin:0 auto 35px;

    color:#b5b5b5;
}


/* ===========================
   LUXURY BACKGROUND GLOW
=========================== */

body{

    background:#0B0B0B;

    position:relative;

    overflow-x:hidden;
}

.bg-glow{

    position:fixed;

    border-radius:50%;

    pointer-events:none;

    z-index:1;

    filter:blur(140px);

    opacity:.8;
}

.glow-1{

    width:450px;
    height:450px;

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

    top:-120px;
    left:-120px;
}

.glow-2{

    width:380px;
    height:380px;

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

    top:40%;
    right:-120px;
}

.glow-3{

    width:500px;
    height:500px;

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

    bottom:-150px;
    left:30%;
}

.position-card,
.service-box,
.pricing-card,
.pricing-page-card,
.legal-card,
.contact-info-card,
.contact-form-card,
.network-panel,
.custom-solution-card,
.consultation-card,
.final-cta-card,
.highlight-card,
.world-card{

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.015)
    );

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

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

    box-shadow:
    0 10px 40px rgba(0,0,0,.25);

    position:relative;

    overflow:hidden;
}

.position-card::after,
.service-box::after,
.pricing-card::after,
.pricing-page-card::after,
.network-panel::after{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:60%;
    height:100%;

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

    transform:skewX(-20deg);

    transition:1s;
}

.position-card:hover::after,
.service-box:hover::after,
.pricing-card:hover::after,
.pricing-page-card:hover::after,
.network-panel:hover::after{

    left:140%;
}


body::before{

    content:"";

    position:fixed;

    inset:0;

    background:
    radial-gradient(
        circle at center,
        transparent,
        rgba(0,0,0,.2)
    );

    pointer-events:none;

    z-index:-2;
}

.position-card,
.service-box,
.service-image-card,
.pricing-card,
.pricing-page-card,
.legal-card,
.contact-info-card,
.contact-form-card,
.network-panel,
.custom-solution-card,
.consultation-card,
.final-cta-card,
.highlight-card,
.world-card{

    position:relative;

    overflow:hidden;

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

    backdrop-filter:blur(30px);
    -webkit-backdrop-filter:blur(30px);

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

    box-shadow:
    0 8px 32px rgba(0,0,0,.20);

    z-index:2;
}

.consult-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:52px;

    padding:0 28px;

    border-radius:50px;

    background:
    linear-gradient(
    135deg,
    #D4AF37,
    #e8c85d
    );

    color:#000 !important;

    font-size:14px;

    font-weight:500;

    letter-spacing:.5px;

    white-space:nowrap;

    text-decoration:none;

    transition:.35s;
}

.consult-btn:hover{

    color:#000 !important;

    transform:translateY(-2px);

    box-shadow:

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

@media(max-width:991px){

    .consult-btn{

        width:100%;

        margin-top:15px;
    }

}

.header-right{

    display:flex;

    align-items:center;

    gap:15px;
}


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

.premium-card{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.01)
    );

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

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

    transition:
    transform .4s ease,
    border-color .4s ease,
    box-shadow .4s ease;

    box-shadow:
    0 10px 40px rgba(0,0,0,.25);
}

.premium-card::after{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

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

    transform:skewX(-20deg);

    transition:1s;
}

.premium-card:hover{

    transform:translateY(-10px);

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

    box-shadow:

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

    0 0 35px rgba(212,175,55,.08);
}

.premium-card:hover::after{

    left:140%;
}
.premium-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:2px;

    background:#D4AF37;

    opacity:.4;
}