/* ========================================
   GOOGLE FONT
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600&display=swap');

/* ========================================
   RESET
======================================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

/* body{
    font-family:'Inter', sans-serif;
    background:#05010f;
    color:#fff;
    overflow-x:hidden;
} */

section{
    position:relative;
    z-index:2;
}

/* body{
    background:
        radial-gradient(circle at top, rgba(88,28,135,0.10), transparent 35%),
        linear-gradient(180deg, #181024 0%, #090312 100%);
} */

body{
    font-family:'Inter', sans-serif;
    background:
        radial-gradient(
            circle at top right,
            rgba(139,92,246,0.22),
            transparent 36%
        ),

        radial-gradient(
            circle at left center,
            rgba(255,255,255,0.10),
            transparent 34%
        ),

        linear-gradient(
            180deg,
            #4b3966 0%,
            #2a1d42 100%
        );

    color:#fff;
    overflow-x:hidden;
}

/* ========================================
   GLOBAL
======================================== */
a{
    text-decoration:none;
}

img{
    max-width:100%;
}

.container{
    max-width:1400px;
}

.hero-section .container,
.services-section .container,
.process-section .container{
    max-width:1160px;
}

/* ========================================
   NAVBAR
======================================== */
.main-header{
    padding:20px 0;
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(5,1,15,0.72);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(168,85,247,0.08);
}

.navbar{
    padding:0;
}

.logo{
    height:52px;
}

.logo-text{
    font-size:34px;
    font-weight:300;
    letter-spacing:6px;
    color:#fff;
}

.navbar-nav{
    gap:38px;
}

.nav-link{
    font-family:'Poppins', sans-serif;
    color:#d7d7d7 !important;
    font-size:16px;
    font-weight:400;
    letter-spacing:0.3px;
    position:relative;
    transition:0.3s;
}

.nav-link:hover{
    color:#b14dff !important;
}

.nav-link.active{
    color:#fff !important;
}

.nav-link.active::after{
    content:'';
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-10px;
    width:28px;
    height:2px;
    border-radius:10px;
    background:#a855f7;
}

.contact-btn{
    font-family:'Poppins', sans-serif;
    border:1px solid rgba(168,85,247,0.9);
    color:#fff;
    padding:13px 26px;
    border-radius:12px;
    font-size:15px;
    font-weight:400;
    letter-spacing:0.2px;
    transition:0.3s;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.contact-btn:hover{
    background:#a855f7;
    color:#fff;
}

.contact-btn i{
    font-size:20px;
    margin-left:8px;
}

/* ========================================
   DROPDOWN
======================================== */
.custom-dropdown{
    background:rgba(14,10,24,0.58);
    border:1px solid rgba(168,85,247,0.15);
    border-radius:16px;
    padding:12px;
    min-width:260px;
    backdrop-filter:blur(18px);
}

.custom-dropdown .dropdown-item{
    font-family:'Poppins', sans-serif;
    color:#d7d7d7;
    font-size:14px;
    font-weight:300;
    border-radius:10px;
    padding:12px 14px;
    transition:0.3s;
}

.custom-dropdown .dropdown-item:hover{
    background:rgba(168,85,247,0.12);
    color:#fff;
}

@media(min-width:992px){

    .dropdown-toggle::after{
        display:none !important;
    }

    .dropdown:hover > .dropdown-menu{
        display:block;
        margin-top:0;
    }

}


/* ========================================
   HERO
======================================== */

/* ========================================
   HERO FEATURES
======================================== */
.hero-features{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin:35px 0 42px;
}

.hero-feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    color:#d5d5d5;
    font-size:16px;
    font-weight:400;
    font-family:'Poppins', sans-serif;
}

.hero-feature-item i{
    color:#8b5cf6;
    font-size:20px;
}

.hero-section{
    position:relative;
    padding:0 0 40px;
    overflow:hidden;
}

.hero-section::before{
    content:'';
    position:absolute;
    width:900px;
    height:900px;
    right:-250px;
    top:-200px;
    background:radial-gradient(circle, rgba(138,43,226,0.35) 0%, rgba(5,1,15,0) 70%);
    z-index:0;
}

.hero-section .container{
    position:relative;
    z-index:2;
}

.hero-subtitle{
    color:rgba(255,255,255,0.90);
    font-size:14px;
    font-weight:300;
    letter-spacing:0.4px;
    line-height:1.9;
    display:inline-block;
    margin-bottom:30px;

    font-family:'Poppins', sans-serif;
}

.hero-title{
    font-family:'Poppins', sans-serif;
    font-size:28px;
    font-weight:300;
    line-height:1.12;
    letter-spacing:-2px;
    color:#fff;
    margin-bottom:18px;
}

.hero-title span{
    color:#8b5cf6;
    font-weight:500;
}

.hero-text{
    font-size:14px;
    line-height:1.8;
    color:#b9b9b9;
    max-width:700px;
    margin-bottom:45px;
}

.hero-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.btn-primary-custom{
    background:linear-gradient(90deg,#7c3aed,#a855f7);
    color:#fff;
    padding:18px 34px;
    border-radius:14px;
    font-size:18px;
    font-weight:600;
    transition:0.3s;
}

.btn-primary-custom:hover{
    transform:translateY(-3px);
    color:#fff;
}

.btn-primary-custom{
    padding:14px 26px;
    font-size:15px;
}

.btn-outline-custom{
    border:1px solid #8b5cf6;
    color:#fff;
    padding:14px 26px;
    border-radius:14px;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
}

.btn-outline-custom:hover{
    background:#8b5cf6;
    color:#fff;
}

.hero-image{
    position:relative;
    text-align:right;
    transform:translateX(35px);
}

.hero-image img{
    width:100%;
    max-width:620px;
    filter:drop-shadow(0 35px 80px rgba(168,85,247,0.28));
}

.hero-section .row{
    min-height:620px;
}

/* ========================================
   SERVICES
======================================== */
.services-section{
    padding-bottom:40px;
}

.services-wrapper{
    background:rgba(13,8,28,0.95);
    border:1px solid rgba(168,85,247,0.12);
    border-radius:28px;
    padding:45px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
}

.service-card{
    position:relative;
}

.service-image{
    margin-bottom:28px;
}

.service-image{
    margin-bottom:28px;
    overflow:hidden;
    border-radius:18px;
    position:relative;
}

.service-image img{
    width:100%;
    max-width:320px;
    height:auto;
    display:block;
    border-radius:18px;
    transition:0.4s ease;
}

/* Hover Overlay */
.service-image::after{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(255,255,255,0.08);
    opacity:0;
    transition:0.35s ease;
    border-radius:18px;
}

/* Hover */
.service-card:hover .service-image::after{
    opacity:1;
}

.service-card:hover .service-image img{
    transform:scale(1.03);
}

.service-card h3{
    font-size:18px;
    line-height:1.4;
    margin-bottom:18px;
}

.service-card p{
    color:#b9b9b9;
    font-size:12px;
    line-height:1.7;
}

/* ========================================
   PROCESS
======================================== */
.process-section{
    padding-bottom:40px;
}

.process-wrapper{
    background:rgba(13,8,28,0.95);
    border:1px solid rgba(168,85,247,0.12);
    border-radius:28px;
    padding:65px 50px;
    display:flex;
    justify-content:center;
}

.process-left h2{
    font-size:32px;
    line-height:1.2;
    margin-bottom:30px;
}

.process-left p{
    color:#b9b9b9;
    font-size:14px;
    line-height:1.8;
}

.process-right{
    width:100%;
    max-width:1100px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
    align-items:start;
}

.process-item{
    position:relative;
    padding-right:30px;
    text-align:center;
}

.process-item::after{
    content:'';
    position:absolute;
    top:41px;
    right:-18px;
    width:36px;
    height:2px;
    background:linear-gradient(
        90deg,
        rgba(168,85,247,0.9),
        rgba(168,85,247,0.05)
    );
}

.process-item:last-child::after{
    display:none;
}

.process-icon{
    width:82px;
    height:82px;
    border-radius:50%;
    border:1px solid rgba(168,85,247,0.3);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    box-shadow:0 0 25px rgba(168,85,247,0.15);
    background:rgba(168,85,247,0.05);
}

.process-icon i{
    font-size:34px;
    color:#b14dff;
}

.process-item h4{
    font-size:18px;
    margin-bottom:18px;
}

.process-item p{
    color:#b9b9b9;
    line-height:1.8;
    font-size:14px;
}

/* ========================================
   RESPONSIVE
======================================== */
@media(max-width:1200px){

    .hero-title{
        font-size:60px;
    }

    .services-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    .process-wrapper{
        grid-template-columns:1fr;
    }

    .process-right{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .hero-section{
        text-align:center;
    }

    .hero-title{
        font-size:44px;
    }

    .hero-text{
        font-size:18px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .services-wrapper{
        grid-template-columns:1fr;
    }

    .process-right{
        grid-template-columns:1fr;
    }

    .process-left h2{
        font-size:40px;
    }

    .service-card h3{
        font-size:24px;
    }
}

/* ========================================
   FOOTER
======================================== */
.footer-section{
    padding:30px 0;
    border-top:1px solid rgba(255,255,255,0.05);

    background:rgba(5,1,15,0.72);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.footer-minimal{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.footer-links{
    display:flex;
    align-items:center;
    gap:22px;
}

.footer-links a{
    font-family:'Poppins', sans-serif;
    color:#9a9a9a;
    font-size:12px;
    font-weight:300;
    letter-spacing:0.3px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#fff;
}

.footer-copy{
    margin-top:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    font-family:'Poppins', sans-serif;
    color:#7d7d7d;
    font-size:11px;
    font-weight:300;
    letter-spacing:0.3px;
}

.footer-logo span{
    font-family:'Poppins', sans-serif;
    color:#fff;
    font-size:24px;
    font-weight:300;
    letter-spacing:4px;
}

.footer-copy-brand{
    color:#fff;
}

.footer-right{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:10px;
}

.footer-social{
    display:flex;
    align-items:center;
    gap:18px;
}

.footer-social{
    display:flex;
    align-items:center;
    gap:14px;
}

.social-item{
    width:34px;
    height:34px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    transition:0.3s;
}

.social-item i{
    color:#fff;
    font-size:18px;
    transition:0.3s;
}

.social-item:hover{
    background:rgba(255,255,255,0.08);
}

.social-item::after{
    content:attr(data-title);
    position:absolute;
    bottom:42px;
    left:50%;
    transform:translateX(-50%);
    background:rgba(20,20,20,0.95);
    color:#fff;
    padding:6px 10px;
    border-radius:8px;
    font-size:11px;
    font-family:'Poppins', sans-serif;
    font-weight:300;
    white-space:nowrap;
    opacity:0;
    visibility:hidden;
    transition:0.3s;
}

.social-item:hover::after{
    opacity:1;
    visibility:visible;
}

.footer-social a:hover{
    color:#fff;
}

.footer-copy{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-family:'Poppins', sans-serif;
    color:#7d7d7d;
    font-size:11px;
    font-weight:300;
    letter-spacing:0.3px;
    margin-top:0;
}

.footer-copy-logo{
    height:16px;
    display:block;
    position:relative;
    top:-2px;
    opacity:0.9;
}

/* ========================================
   FOOTER RESPONSIVE
======================================== */
@media(max-width:992px){

    .logo{
        height:48px;
    }

    .navbar-collapse{
        text-align:center;
    }

    .navbar-nav{
        width:100%;
        align-items:center;
        gap:28px;
    }

    .nav-item{
        width:100%;
        display:flex;
        justify-content:center;
    }

    .nav-link{
        width:auto;
        display:inline-block;
        position:relative;
    }

    .nav-link.active::after{
        left:50%;
        transform:translateX(-50%);
        bottom:-8px;
    }

    .hero-image{
        margin-top:50px;
    }

    .footer-wrapper{
        flex-direction:column;
    }

    .footer-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:22px;
    }

    .nav-item.dropdown{
    flex-direction:column;
    align-items:center;
    }

    .nav-item.dropdown .dropdown-menu{
        position:static !important;
        transform:none !important;
        float:none;
        margin-top:12px;
        width:100%;
        max-width:320px;
        text-align:center;
    }
}

@media(max-width:768px){

    .footer-logo span{
        font-size:26px;
    }

    .logo{
        height:42px;
    }

    .footer-right{
    align-items:center;
    }

    .footer-social{
        justify-content:center;
        flex-wrap:wrap;
    }

     .footer-minimal{
        flex-direction:column;
        gap:18px;
    }

    .footer-links{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-subtitle{
        margin-top:30px;
    }
    
}

@media(min-width:992px){

        .dropdown:hover > .dropdown-menu{
            display:block;
            margin-top:0;
        }

}