/*==================================
Root Variables
==================================*/

:root {

    --bg:#050505;
    --card:#111111;
    --gold:#D4AF37;
    --gold-light:#FFD56A;
    --white:#ffffff;
    --gray:#bdbdbd;
    --border:rgba(212,175,55,.25);

}

/*==================================
Global
==================================*/

body{

    background:var(--bg);
    color:var(--white);
    font-family:'Poppins',sans-serif;

}

h1,h2,h3,h4,h5{

    font-family:'Playfair Display',serif;

}

/*==================================
Navbar
==================================*/

.custom-navbar{

    background:rgba(5,5,5,.90);
    backdrop-filter:blur(12px);
    border-bottom:1px solid var(--border);
    transition:.4s;

}

.logo-box{

    width:42px;
    height:42px;

    border-radius:10px;

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    display:flex;
    align-items:center;
    justify-content:center;

    color:#000;

    font-size:20px;

}

.logo-title{

    color:white;

    font-weight:700;

    font-size:20px;

}

.logo-text{

    color:var(--gold);

    font-weight:600;

    margin-left:4px;

}

.navbar-nav .nav-link{

    color:#ddd;

    margin:0 12px;

    font-weight:500;

    transition:.3s;

}

.navbar-nav .nav-link:hover{

    color:var(--gold);

}

.navbar-nav .active{

    color:var(--gold)!important;

}

.btn-whatsapp{

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    color:#000;

    padding:12px 24px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-whatsapp:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(212,175,55,.35);

    color:#000;

}


=============================

/*====================================
Hero Section
====================================*/

.hero-section{

    min-height:100vh;

    padding-top:180px;

    position:relative;

}

.hero-badge{

    display:inline-block;

    background:rgba(212,175,55,.15);

    color:var(--gold);

    padding:10px 20px;

    border-radius:50px;

    border:1px solid var(--border);

}

.hero-title{

    font-size:60px;

    font-weight:700;

    margin-top:25px;

    line-height:1.2;

}

.hero-title span{

    color:var(--gold);

}

.hero-description{

    color:var(--gray);

    font-size:18px;

    margin:30px 0;

    line-height:1.8;

}

.btn-gold{

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    color:#000;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn-gold:hover{

    transform:translateY(-4px);

    color:#000;

    box-shadow:0 15px 40px rgba(212,175,55,.4);

}

.counter-box{

    background:var(--card);

    padding:25px;

    border-radius:18px;

    text-align:center;

    border:1px solid var(--border);

    transition:.35s;

}

.counter-box:hover{

    transform:translateY(-8px);

}

.counter-box h2{

    color:var(--gold);

    font-size:34px;

}

.counter-box p{

    color:var(--gray);

    margin-bottom:0;

}

.hero-image{

    position:relative;

}

.hero-image img{

    width:100%;

    max-width:550px;

    animation:floatImage 4s ease-in-out infinite;

}

.floating-card{

    position:absolute;

    bottom:40px;

    left:0;

    background:rgba(17,17,17,.95);

    border:1px solid var(--border);

    padding:20px;

    border-radius:18px;

    display:flex;

    gap:15px;

    align-items:center;

}

.floating-card i{

    font-size:35px;

    color:var(--gold);

}

.floating-card h5{

    margin:0;

}

@keyframes floatImage{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0);

}

}

============================

/*==================================
Section Heading
==================================*/

.section-badge{

    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(212,175,55,.15);
    border:1px solid var(--border);
    color:var(--gold);
    font-weight:600;
    letter-spacing:1px;

}

.section-title{

    font-size:48px;
    font-weight:700;
    color:var(--white);

}

.section-title span{

    color:var(--gold);

}

.section-description{

    color:var(--gray);
    max-width:720px;
    margin:auto;
    line-height:1.8;
    margin-top:20px;

}

/*==================================
Why Choose Us
==================================*/

.why-us{

    background:#080808;

}

.feature-card{

    background:rgba(17,17,17,.90);

    border:1px solid var(--border);

    border-radius:20px;

    padding:35px;

    transition:.35s;

    height:100%;

    backdrop-filter:blur(10px);

    position:relative;

    overflow:hidden;

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(212,175,55,.20);

}

.feature-card::before{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    background:rgba(212,175,55,.08);

    border-radius:50%;

    top:-40px;

    right:-40px;

}

.feature-icon{

    width:70px;

    height:70px;

    border-radius:16px;

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:#000;

    margin-bottom:25px;

}

.feature-card h4{

    color:white;

    margin-bottom:15px;

}

.feature-card p{

    color:var(--gray);

    line-height:1.8;

}

======================================

/*==================================
SEO Services
==================================*/

.services-section{

    background:#050505;

}

.service-card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:20px;

    padding:35px;

    height:100%;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(212,175,55,.18);

}

.service-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:#000;

    margin-bottom:25px;

}

.service-card h4{

    color:#fff;

    margin-bottom:15px;

}

.service-card p{

    color:var(--gray);

    line-height:1.8;

}

.service-card ul{

    list-style:none;

    padding:0;

    margin:25px 0;

}

.service-card ul li{

    color:#ddd;

    margin-bottom:12px;

}

.service-card ul li i{

    color:var(--gold);

    margin-right:10px;

}

.service-btn{

    color:var(--gold);

    text-decoration:none;

    font-weight:600;

}

.service-btn i{

    margin-left:6px;

    transition:.3s;

}

.service-btn:hover i{

    transform:translateX(6px);

}

/* =============================== */

/*==================================
Analytics Section
==================================*/

.analytics-section{

    background:#080808;

}

.analytics-progress{

    margin-top:40px;

}

.progress-item span{

    color:#fff;

    font-weight:600;

}

.progress{

    height:10px;

    background:#1b1b1b;

    border-radius:50px;

    margin-top:10px;

    overflow:hidden;

}

.progress-gold{

    background:linear-gradient(90deg,var(--gold),var(--gold-light));

    border-radius:50px;

}

.dashboard-card{

    background:rgba(17,17,17,.90);

    border:1px solid var(--border);

    border-radius:20px;

    padding:20px;

    backdrop-filter:blur(12px);

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.dashboard-card img{

    border-radius:20px;

}

.dashboard-stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:25px;

}

.stat-box{

    background:#111;

    border:1px solid var(--border);

    border-radius:18px;

    padding:25px;

    text-align:center;

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(212,175,55,.20);

}

.stat-box h3{

    color:var(--gold);

    font-size:38px;

    font-weight:700;

}

.stat-box p{

    color:var(--gray);

    margin-bottom:0;

}

/* ======================================= */

/*==================================
Our Process
==================================*/

.process-section{

    background:#050505;

}

.process-timeline{

    position:relative;

    max-width:900px;

    margin:60px auto 0;

}

.process-timeline::before{

    content:"";

    position:absolute;

    left:35px;

    top:0;

    width:3px;

    height:100%;

    background:linear-gradient(var(--gold),var(--gold-light));

}

.process-item{

    display:flex;

    align-items:flex-start;

    margin-bottom:35px;

    position:relative;

}

.process-number{

    width:70px;

    height:70px;

    min-width:70px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    color:#000;

    font-size:22px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:2;

}

.process-card{

    margin-left:30px;

    background:var(--card);

    border:1px solid var(--border);

    border-radius:18px;

    padding:25px;

    width:100%;

    transition:.35s;

}

.process-card:hover{

    transform:translateX(10px);

    box-shadow:0 20px 40px rgba(212,175,55,.20);

}

.process-card h4{

    color:#fff;

    margin-bottom:15px;

}

.process-card p{

    color:var(--gray);

    line-height:1.8;

    margin-bottom:0;

}

/* ===================================== */

/*==================================
Industries
==================================*/

.industries-section{

    background:#080808;

}

.industry-card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:20px;

    padding:35px 20px;

    text-align:center;

    transition:.35s;

    height:100%;

    cursor:pointer;

}

.industry-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

    box-shadow:0 20px 40px rgba(212,175,55,.18);

}

.industry-card i{

    font-size:50px;

    color:var(--gold);

    margin-bottom:20px;

    display:block;

}

.industry-card h5{

    color:#fff;

    margin:0;

    font-weight:600;

}

.industry-cta{

    margin-top:80px;

    background:linear-gradient(135deg,#111,#1a1a1a);

    border:1px solid var(--border);

    border-radius:25px;

    padding:45px;

}

.industry-cta h3{

    color:#fff;

}

.industry-cta p{

    color:var(--gray);

    margin-bottom:0;

}


/* ===================================== */

/*==================================
Testimonials
==================================*/

.testimonial-section{

    background:#050505;

}

.testimonial-card{

    max-width:750px;

    margin:auto;

    background:rgba(17,17,17,.95);

    border:1px solid var(--border);

    border-radius:25px;

    padding:50px;

    text-align:center;

    backdrop-filter:blur(15px);

}

.testimonial-card img{

    width:110px;

    height:110px;

    border-radius:50%;

    border:4px solid var(--gold);

    object-fit:cover;

    margin-bottom:20px;

}

.testimonial-card h4{

    color:#fff;

    margin-bottom:5px;

}

.testimonial-card small{

    color:var(--gray);

}

.stars i{

    color:var(--gold);

    font-size:20px;

    margin:0 2px;

}

.testimonial-card p{

    color:var(--gray);

    line-height:1.9;

    font-size:17px;

}

.carousel-control-prev,
.carousel-control-next{

    width:60px;

}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    background-color:rgba(212,175,55,.7);

    border-radius:50%;

    padding:20px;

}


/* ==================================== */

/*==================================
FAQ Section
==================================*/

.faq-section{

    background:#080808;

}

.custom-accordion .accordion-item{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:15px;

    margin-bottom:20px;

    overflow:hidden;

}

.custom-accordion .accordion-button{

    background:#111;

    color:#fff;

    font-weight:600;

    padding:20px;

    box-shadow:none;

}

.custom-accordion .accordion-button:not(.collapsed){

    background:linear-gradient(90deg,var(--gold),var(--gold-light));

    color:#000;

}

.custom-accordion .accordion-button:focus{

    box-shadow:none;

}

.custom-accordion .accordion-body{

    background:#111;

    color:var(--gray);

    line-height:1.8;

}

.accordion-button::after{

    filter:brightness(0) invert(1);

}

.accordion-button:not(.collapsed)::after{

    filter:none;

}

/* ====================================== */

/*==================================
Contact Section
==================================*/

.contact-section{

    background:#050505;

}

.contact-info,
.contact-form{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:20px;

    padding:40px;

}

.contact-box{

    display:flex;

    align-items:flex-start;

    gap:20px;

    margin-bottom:30px;

}

.contact-icon{

    width:60px;

    height:60px;

    border-radius:15px;

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    display:flex;

    align-items:center;

    justify-content:center;

    color:#000;

    font-size:24px;

}

.contact-box h5{

    color:#fff;

    margin-bottom:8px;

}

.contact-box p{

    color:var(--gray);

    margin:0;

    line-height:1.8;

}

.map-box iframe{

    width:100%;

    height:250px;

    border:none;

    border-radius:15px;

}

.form-control,
.form-select{

    background:#111;

    border:1px solid var(--border);

    color:#fff;

    padding:15px;

}

.form-control::placeholder{

    color:#888;

}

.form-control:focus,
.form-select:focus{

    background:#111;

    color:#fff;

    border-color:var(--gold);

    box-shadow:none;

}

textarea{

    resize:none;

}

/* ========================== */

/*==================================
Footer
==================================*/

.footer-section{

    background:#030303;

    padding:80px 0 20px;

    border-top:1px solid var(--border);

}

.footer-logo{

    display:flex;

    align-items:center;

    text-decoration:none;

    color:#fff;

}

.footer-logo h3{

    margin:0;

    font-size:26px;

}

.footer-logo span{

    color:var(--gold);

    font-size:14px;

}

.footer-text{

    color:var(--gray);

    line-height:1.9;

}

.footer-section h4{

    color:#fff;

    margin-bottom:25px;

}

.footer-section ul{

    list-style:none;

    padding:0;

}

.footer-section ul li{

    margin-bottom:14px;

    color:var(--gray);

}

.footer-section ul li a{

    color:var(--gray);

    text-decoration:none;

    transition:.3s;

}

.footer-section ul li a:hover{

    color:var(--gold);

    padding-left:8px;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#111;

    border:1px solid var(--border);

    color:var(--gold);

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

    text-decoration:none;

}

.footer-social a:hover{

    background:var(--gold);

    color:#000;

    transform:translateY(-5px);

}

.newsletter-form{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.newsletter-form input{

    background:#111;

    border:1px solid var(--border);

    color:#fff;

    padding:15px;

    border-radius:10px;

}

.newsletter-form button{

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    border:none;

    padding:15px;

    border-radius:10px;

    font-weight:600;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:25px;

}

.footer-bottom p{

    color:#888;

    margin:0;

}

.back-top{

    width:50px;

    height:50px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    color:#000;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-size:22px;

    transition:.35s;

}

.back-top:hover{

    transform:translateY(-5px);

}
html, body { overflow-x: hidden; max-width: 100vw; }
