:root {
    --primary-purple: #644bff;
    --purple-light: #8B5CF6;
    --dark: #0F172A;
    --light: #F8FAFC;
    --accent: #C4B5FD;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: #333;
    background: var(--light);
    overflow-x: hidden;
}

/*==================================================
                    NAVBAR
==================================================*/

.navbar{
    position:fixed;
    top:12px;
    left:12px;
    right:12px;

    z-index:9999;

    background:rgba(255,255,255,.92);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border-radius:22px;

    border:1px solid rgba(255,255,255,.5);

    box-shadow:
    0 10px 35px rgba(0,0,0,.08);

    transition:.35s;
}

.navbar.scrolled{

    top:8px;

    background:#fff;

    box-shadow:
    0 15px 40px rgba(0,0,0,.12);

}

.nav-container{

    max-width:1400px;

    margin:auto;

    height:82px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 26px;

}

/*====================
        LOGO
=====================*/

.logo{

    display:flex;

    align-items:center;

    text-decoration:none;

}

.logo img{

    display:block;

    width:auto;

    height:72px;

}

/*====================
        MENU
=====================*/

.nav-menu{

    display:flex;

    align-items:center;

    gap:42px;

    list-style:none;

}

.nav-menu li{

    list-style:none;

}

.nav-menu a{

    text-decoration:none;

    color:#222;

    font-weight:600;

    font-size:15px;

    position:relative;

    transition:.3s;

}

.nav-menu a:hover{

    color:#644bff;

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-7px;

    width:0;

    height:3px;

    background:#644bff;

    border-radius:30px;

    transition:.3s;

}

.nav-menu a:hover::after{

    width:100%;

}

/*====================
      RIGHT SIDE
=====================*/

.nav-actions{

    display:flex;

    align-items:center;

    gap:18px;

}

.quote-btn{

    text-decoration:none;

    color:#fff;

    background:linear-gradient(135deg,#644bff,#8B5CF6);

    padding:13px 26px;

    border-radius:999px;

    font-weight:600;

    transition:.3s;

}

.quote-btn:hover{

    transform:translateY(-2px);

}

/*====================
     HAMBURGER
=====================*/

.hamburger{

    display:none;

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:#fff;

    cursor:pointer;

    align-items:center;

    justify-content:center;

    flex-direction:column;

    gap:5px;

    box-shadow:
    0 5px 15px rgba(0,0,0,.08);

}

.hamburger span{

    width:22px;

    height:2px;

    background:#333;

    border-radius:20px;

    transition:.3s;

}

.hamburger.active span:nth-child(1){

    transform:
    translateY(7px)
    rotate(45deg);

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:
    translateY(-7px)
    rotate(-45deg);

}

/*==================================================
                    MOBILE
==================================================*/

@media (max-width:992px){

.nav-container{

    height:78px;

    padding:0 18px;

}

.logo img{

    height:60px;

}

.quote-btn{

    display:none;

}

.hamburger{

    display:flex;

}

.nav-menu{

    position:absolute;

    top:92px;

    left:16px;

    right:16px;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:24px;

    padding:28px;

    background:#fff;

    border-radius:20px;

    box-shadow:
    0 15px 45px rgba(0,0,0,.12);

    opacity:0;

    visibility:hidden;

    transform:translateY(-15px);

    transition:.35s;

}

.nav-menu.active{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

}

@media(max-width:480px){

.logo img{

    height:56px;

}

.nav-container{

    height:74px;

}

.nav-menu{

    top:86px;

}

}

/*==================================================
                    HERO
==================================================*/

.hero{
    position:relative;
    height:100vh;
    min-height:780px;
    overflow:hidden;
    background:#0f172a;
}

/*====================================
            SLIDER
====================================*/

.hero-slider{
    position:relative;
    width:100%;
    height:100%;
}

.hero-slide{
    position:absolute;
    inset:0;

    opacity:0;
    visibility:hidden;

    transition:opacity .8s ease;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
    z-index:2;
}

.hero-slide img{

    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    animation:heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.10);

    }

}

/*====================================
            OVERLAY
====================================*/

.hero-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(7,12,25,.88) 0%,
        rgba(15,23,42,.82) 30%,
        rgba(30,41,59,.45) 60%,
        rgba(15,23,42,.15) 100%
    );

}

.hero-overlay::before{

    content:"";

    position:absolute;

    width:650px;
    height:650px;

    border-radius:50%;

    background:
    radial-gradient(circle,#644BFF55,transparent 70%);

    top:-250px;
    left:-150px;

    animation:glow1 8s ease-in-out infinite alternate;

}

.hero-overlay::after{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:
    radial-gradient(circle,#8B5CF644,transparent 70%);

    right:-120px;
    bottom:-150px;

    animation:glow2 10s ease-in-out infinite alternate;

}

@keyframes glow1{

    from{

        transform:translateY(0);

    }

    to{

        transform:translateY(60px);

    }

}

@keyframes glow2{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-70px);

    }

}

/*====================================
            CONTAINER
====================================*/

.hero-container{

    position:relative;

    z-index:5;

    width:min(1400px,92%);

    height:100%;

    margin:auto;

    display:flex;

    align-items:center;

}

/*====================================
            CONTENT
====================================*/

.hero-content{

    max-width:620px;

    color:#fff;

}

.hero-label{

    display:inline-block;

    margin-bottom:22px;

    color:#CFC2FF;

    font-size:.9rem;

    font-weight:600;

    letter-spacing:4px;

    text-transform:uppercase;

}

.hero-content h1{

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(4.5rem,7vw,6.8rem);

    line-height:.95;

    font-weight:400;

    margin-bottom:30px;

}

.hero-description{

    font-size:1.2rem;

    line-height:1.9;

    color:rgba(255,255,255,.82);

    max-width:560px;

    margin-bottom:45px;

}

/*====================================
            BUTTONS
====================================*/

.hero-buttons{

    display:flex;

    align-items:center;

    gap:26px;

    flex-wrap:wrap;

}

.cta-button{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:18px 34px;

    border-radius:100px;

    text-decoration:none;

    color:#fff;

    font-weight:600;

    background:
    linear-gradient(
    135deg,
    #644BFF,
    #8B5CF6);

    box-shadow:
    0 18px 40px rgba(100,75,255,.35);

    transition:.35s;
}

.cta-button:hover{

    transform:translateY(-4px);

    box-shadow:
    0 24px 60px rgba(100,75,255,.45);

}

.hero-link{

    display:inline-flex;

    align-items:center;

    gap:12px;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.hero-link i{

    transition:.3s;

}

.hero-link:hover{

    color:#BFAEFF;

}

.hero-link:hover i{

    transform:translateX(6px);

}

/*====================================
        CONTROLS
====================================*/

.hero-controls{

    position:absolute;

    right:5%;

    bottom:120px;

    z-index:30;

    display:flex;

    align-items:center;

    gap:40px;

}

.hero-progress{

    display:flex;

    align-items:center;

    gap:18px;

    color:#fff;

    font-weight:600;

}

.progress-track{

    width:140px;

    height:2px;

    background:rgba(255,255,255,.25);

    overflow:hidden;

}

.progress-fill{

    width:50%;

    height:100%;

    background:#8B5CF6;

    transition:.8s;

}

.hero-navigation{

    display:flex;

    gap:14px;

}

.slider-btn{

    width:56px;

    height:56px;

    border:none;

    border-radius:16px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    color:#fff;

    cursor:pointer;

    transition:.35s;

}

.slider-btn:hover{

    background:#644BFF;

    transform:translateY(-4px);

}

/*====================================
        TABLET
====================================*/

@media(max-width:992px){

.hero{

    min-height:700px;

}

.hero-content{

    max-width:540px;

}

.hero-content h1{

    font-size:4.5rem;

}

.hero-controls{

    bottom:40px;

}

.hero-overlay{

    background:
    linear-gradient(
        90deg,
        rgba(8,12,28,.58),
        rgba(20,20,45,.42),
        rgba(100,75,255,.16)
    );

}

}

/*====================================
        MOBILE
====================================*/

@media(max-width:768px){

.hero{

    min-height:100svh;

}

.hero-container{

    width:90%;

    align-items:flex-start;

    padding-top:125px;
    padding-bottom:150px;

}

.hero-content{

    max-width:100%;

}

.hero-content h1{

    font-size:3rem;
    line-height:1.05;
    letter-spacing:-1px;
    margin-bottom:22px;

}

.hero-description{
    max-width:330px;
    font-size:1rem;
    line-height:1.8;

}

.hero-buttons{

    flex-direction:column;

    align-items:flex-start;

    gap:18px;
    margin-top:34px;
    margin-bottom:36px;

}

.hero-label{

    font-size:.72rem;
    letter-spacing:5px;

    margin-bottom:18px;

}

.cta-button{

    width:260px;

    justify-content:center;

}

.hero-controls{

    left:5%;

    right:5%;

    bottom:45px;

    justify-content:space-between;

}

.progress-track{

    width:90px;

}

.slider-btn{

    width:48px;
    height:48px;

}



.hero-overlay{

    background:
    linear-gradient(
        180deg,
        rgba(12,15,30,.30) 0%,
        rgba(12,15,30,.45) 45%,
        rgba(12,15,30,.58) 100%
    );

}

.hero-overlay::before{

    width:220px;
    height:220px;

    opacity:.35;

    filter:blur(60px);

}

.hero-overlay::after{

    width:180px;
    height:180px;

    opacity:.15;

    filter:blur(70px);

}

}



/*====================================
        SMALL MOBILE
====================================*/

@media(max-width:360px){

.hero-container{

    padding-top:125px;
    padding-bottom:150px;

}

.hero-content h1{

    font-size:2.55rem;

}

.hero-description{

    max-width:330px;
    font-size:1rem;
    line-height:1.8;

}

.hero-label{

    font-size:.75rem;

    letter-spacing:3px;

}

.hero-controls{

    bottom:35px;

}

.progress-track{

    width:70px;

}

.cta-button{

    width:260px;
    justify-content:center;

}

.hero-buttons{

    margin-top:34px;
    margin-bottom:36px;

}

.hero-label{

    font-size:.72rem;
    letter-spacing:5px;

    margin-bottom:18px;

}

.hero-overlay{

    background:
    linear-gradient(
        180deg,
        rgba(12,15,30,.30) 0%,
        rgba(12,15,30,.45) 45%,
        rgba(12,15,30,.58) 100%
    );

}

.hero-overlay::before{

    width:220px;
    height:220px;

    opacity:.35;

    filter:blur(60px);

}

.hero-overlay::after{

    width:180px;
    height:180px;

    opacity:.15;

    filter:blur(70px);

}

}

/*==================================================
                FLOATING STATS
==================================================*/

.stats-section{

    position:relative;

    margin-top:-20px;

    z-index:50;

    padding:0 5% 100px;

}

.stats-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.35);

    border-radius:28px;

    padding:40px;

    box-shadow:
        0 25px 60px rgba(15,23,42,.18);

}

/*====================================
            CARD
====================================*/

.stat-card{

    position:relative;

    text-align:center;

    padding:20px;

    border-radius:20px;

    transition:.35s ease;

    overflow:hidden;

}

.stat-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(100,75,255,.05),
        transparent
    );

    opacity:0;

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

}

.stat-card:hover::before{

    opacity:1;

}

.stat-card:not(:last-child)::after{

    content:"";

    position:absolute;

    right:-14px;

    top:50%;

    transform:translateY(-50%);

    width:1px;

    height:70%;

    background:
    linear-gradient(
        transparent,
        rgba(100,75,255,.25),
        transparent
    );

}

/*====================================
            NUMBER
====================================*/

.stat-number{

    font-size:3.3rem;

    font-weight:700;

    font-family:"Cormorant Garamond",serif;

    color:#644BFF;

    margin-bottom:8px;

    line-height:1;

}



/*====================================
            TITLE
====================================*/

.stat-title{

    font-size:1.1rem;

    font-weight:700;

    color:#0F172A;

    margin-bottom:14px;

}

/*====================================
            DESCRIPTION
====================================*/

.stat-card p{

    font-size:.95rem;

    line-height:1.7;

    color:#64748B;

    margin:0;

}

/*====================================
        HOVER EFFECT
====================================*/

.stat-card:hover .stat-number{

    color:#8B5CF6;

}

.stat-card:hover .stat-title{

    color:#644BFF;

}

/*==================================================
                TABLET
==================================================*/

@media(max-width:992px){

.stats-section{

    margin-top:-20px;

}

.stats-container{

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    padding:30px;

}

.stat-card:nth-child(2)::after{

    display:none;

}

.stat-card::after{

    display:none;

}

.stat-number{

    font-size:3rem;

}

}

/*==================================================
                MOBILE
==================================================*/

@media(max-width:768px){

.stats-section{

    margin-top:-20px;

    padding:0 20px 80px;

}

.stats-container{

    grid-template-columns:1fr;

    padding:25px;

    border-radius:22px;

    gap:10px;

}

.stat-card{

    padding:25px 15px;

}

.stat-card::after{

    display:none;

}

.stat-number{

    font-size:2.8rem;

}

.stat-title{

    font-size:1rem;

}

.stat-card p{

    font-size:.9rem;

}

}

/*==================================================
            SMALL MOBILE
==================================================*/

@media(max-width:360px){

.stats-section{

    margin-top:-25px;

    padding:0 15px 70px;

}

.stats-container{

    padding:20px;

}

.stat-number{

    font-size:2.5rem;

}

}


/* Sections */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.3rem;
    color: #64748B;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stats-grid div {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}

.stats-grid strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-purple);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(107, 70, 193, 0.15);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
    padding: 2rem;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

/* Contact */
.contact-section {
    background: var(--dark);
    color: white;
    padding: 120px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-form-container form {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 1rem;
    border: none;
    border-radius: 12px;
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.contact-form-container textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: #0F0F1A;
    color: #94A3B8;
    text-align: center;
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 80px;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width:768px){

    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
        gap:2rem;
    }

    .services-grid{
        grid-template-columns:1fr;
        padding:0 1rem;
    }

    .portfolio-grid{
        grid-template-columns:1fr;
        padding:0 1rem;
    }

    .portfolio-item{
        height:320px;
    }

    .section{
        padding:80px 0;
    }

    .section-header{
        padding:0 20px;
    }

    .section-header h2{
        font-size:2.2rem;
    }

    .section-header p{
        font-size:1.1rem;
    }

html,
body{
    width:100%;
    min-width:320px;
    overflow-x:hidden;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

.hero,
.hero-slider,
.hero-slide{
    width:100%;
    max-width:100%;
    overflow:hidden;
}

}