/* ==========================
   ROOT
========================== */

:root{

    --bg:#f6f6f6;
    --white:#ffffff;
    --dark:#111111;
    --text:#676767;

    --blue:#356dff;

    --border:
    rgba(0,0,0,.06);

    --shadow:
    0 20px 60px
    rgba(0,0,0,.08);

    --hover-shadow:
    0 30px 80px
    rgba(0,0,0,.12);

    --transition:
    .4s cubic-bezier(.2,.8,.2,1);
}

/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:
    'Inter',
    sans-serif;

    background:
    linear-gradient(
    to bottom,
    #f8f8f8,
    #efefef
    );

    color:
    var(--dark);

    overflow-x:hidden;
}

a{
    text-decoration:none;
}

button{
    border:none;
    background:none;
    cursor:pointer;
}

.container{

    width:
    min(1240px,92%);

    margin:auto;
}

section{

    padding:
    120px 0;
}

/* ==========================
   NAVBAR
========================== */

.navbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    background:
    rgba(255,255,255,.72);

    backdrop-filter:
    blur(24px);

    border-bottom:
    1px solid
    var(--border);

    transition:
    var(--transition);
}

.nav-wrapper{

    height:86px;

    display:flex;

    justify-content:
    space-between;

    align-items:center;
}

/* LOGO */

.logo{

    font-size:
    42px;

    font-weight:
    900;

    letter-spacing:
    -2px;

    color:
    var(--blue);

    transition:
    var(--transition);
}

.logo span{

    color:
    #2454e7;
}

.logo:hover{

    transform:
    translateY(-2px);
}

/* NAV LINKS */

.nav-links{

    display:flex;

    align-items:center;

    gap:40px;
}

.nav-links a{

    position:relative;

    color:#202020;

    font-weight:500;

    transition:
    var(--transition);
}

.nav-links a:hover{

    color:
    var(--blue);
}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0%;

    height:2px;

    background:
    var(--blue);

    transition:
    var(--transition);
}

.nav-links a:hover::after{

    width:100%;
}

/* BUTTON */

.nav-btn{

    background:
    #111;

    color:white;

    padding:
    16px 30px;

    border-radius:
    999px;

    font-weight:
    600;

    transition:
    var(--transition);
}

.nav-btn:hover{

    transform:
    translateY(-4px);

    box-shadow:
    var(--shadow);
}

/* MOBILE MENU BUTTON */

.menu-btn{

    display:none;
}

/* MOBILE MENU */

.mobile-menu{

    position:fixed;

    top:95px;
    left:50%;

    transform:
    translateX(-50%)
    translateY(-20px);

    width:92%;

    background:
    rgba(255,255,255,.92);

    backdrop-filter:
    blur(24px);

    border-radius:
    30px;

    padding:
    30px;

    display:flex;

    flex-direction:
    column;

    gap:20px;

    z-index:998;

    opacity:0;

    pointer-events:none;

    transition:
    var(--transition);
}

.mobile-menu a{

    color:#111;

    font-weight:600;
}

/* ==========================
   HERO
========================== */

.hero{

    min-height:
    100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    padding-top:
    100px;
}

/* BACKGROUND BLUR */

.hero-blur{

    position:absolute;

    border-radius:
    50%;

    filter:
    blur(100px);

    z-index:0;
}

.blur-1{

    width:400px;
    height:400px;

    background:
    rgba(53,109,255,.12);

    top:-120px;
    right:-120px;
}

.blur-2{

    width:300px;
    height:300px;

    background:
    rgba(53,109,255,.08);

    bottom:-100px;
    left:-80px;
}

/* GRID */

.hero-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:
    1.1fr .9fr;

    gap:70px;

    align-items:center;
}

/* TAG */

.hero-tag{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:
    22px;

    color:
    var(--blue);

    font-weight:700;
}

.hero-tag span{

    width:10px;
    height:10px;

    border-radius:50%;

    background:
    var(--blue);
}

/* HERO TITLE */

.hero-heading{

    font-size:
    clamp(56px,7vw,84px);

    line-height:
    .98;

    letter-spacing:
    -4px;

    margin-bottom:
    24px;

    font-weight:
    800;

    max-width:
    760px;
}

/* FIXED CREATOR ALIGNMENT */

.changing-word{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:
    320px;

    color:
    #707070;

    white-space:
    nowrap;

    transition:
    opacity .35s ease,
    transform .35s ease,
    filter .35s ease;
}

.hero-description{

    font-size:
    20px;

    line-height:
    1.9;

    color:
    var(--text);

    max-width:
    580px;

    margin-bottom:
    42px;
}

/* BUTTONS */

.hero-buttons{

    display:flex;

    gap:16px;

    margin-bottom:
    50px;
}

.btn-primary,
.btn-secondary{

    padding:
    18px 34px;

    border-radius:
    999px;

    font-weight:600;

    transition:
    var(--transition);
}

.btn-primary{

    background:#111;

    color:white;
}

.btn-secondary{

    border:
    1px solid
    #d8d8d8;

    color:#111;
}

.btn-primary:hover,
.btn-secondary:hover{

    transform:
    translateY(-5px);
}

/* STATS */

.hero-stats{

    display:flex;

    gap:18px;

    flex-wrap:wrap;
}

.stat-card{

    background:
    rgba(255,255,255,.76);

    backdrop-filter:
    blur(20px);

    border-radius:
    28px;

    padding:
    28px;

    min-width:
    170px;

    box-shadow:
    var(--shadow);

    transition:
    var(--transition);
}

.stat-card:hover{

    transform:
    translateY(-8px);
}

/* ==========================
   HERO RIGHT
========================== */

.hero-visual{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;
}

.premium-orb{

    width:420px;
    height:420px;

    position:relative;
}

.center-orb{

    width:180px;
    height:180px;

    border-radius:
    50%;

    background:
    radial-gradient(
    circle,
    #ffffff,
    #d3d3d3
    );

    position:absolute;

    top:50%;
    left:50%;

    transform:
    translate(-50%,-50%);

    box-shadow:
    0 0 60px
    rgba(0,0,0,.08);
}
/* ==========================
   FLOATING CARDS
========================== */

.floating-card{

    position:absolute;

    background:
    rgba(255,255,255,.78);

    backdrop-filter:
    blur(20px);

    border:
    1px solid
    rgba(255,255,255,.5);

    border-radius:
    999px;

    padding:
    18px 24px;

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    box-shadow:
    var(--shadow);

    transition:
    var(--transition);

    z-index:5;
}

.floating-card:hover{

    transform:
    translateY(-8px);
}

.floating-card svg{

    width:18px;
    height:18px;

    color:
    var(--blue);
}

.card-1{

    top:20px;
    left:-20px;
}

.card-2{

    top:130px;
    right:-10px;
}

.card-3{

    bottom:40px;
    left:20px;
}

/* PREMIUM RINGS */

.ring{

    position:absolute;

    border-radius:
    50%;

    border:
    1px solid
    rgba(0,0,0,.08);
}

.ring-1{

    width:100%;
    height:100%;

    animation:
    rotate 18s linear infinite;
}

.ring-2{

    width:320px;
    height:320px;

    top:50px;
    left:50px;

    animation:
    rotateReverse 14s linear infinite;
}

.ring-3{

    width:220px;
    height:220px;

    top:100px;
    left:100px;
}

/* ==========================
   SECTION HEAD
========================== */

.section-head{

    text-align:center;

    max-width:
    760px;

    margin:
    auto auto 70px;
}

.section-head span{

    color:
    var(--blue);

    font-weight:700;

    font-size:
    14px;

    letter-spacing:
    1px;
}

.section-head h2{

    font-size:
    clamp(42px,5vw,64px);

    line-height:
    1;

    letter-spacing:
    -3px;

    margin:
    14px 0 18px;

    font-weight:
    800;
}

.section-head p{

    color:
    var(--text);

    line-height:
    1.9;

    font-size:
    18px;
}

/* ==========================
   SERVICES
========================== */

.services{

    background:
    rgba(255,255,255,.45);
}

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:28px;
}

.service-card{

    background:
    rgba(255,255,255,.82);

    backdrop-filter:
    blur(20px);

    border-radius:
    38px;

    padding:
    42px;

    min-height:
    320px;

    box-shadow:
    var(--shadow);

    transition:
    var(--transition);

    border:
    1px solid
    rgba(255,255,255,.55);
}

.service-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    var(--hover-shadow);
}

.service-icon{

    width:74px;
    height:74px;

    border-radius:
    24px;

    background:
    rgba(53,109,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:
    24px;

    transition:
    var(--transition);
}

.service-card:hover
.service-icon{

    transform:
    scale(1.08);
}

.service-icon svg{

    width:34px;
    height:34px;

    color:
    var(--blue);
}

.service-card h3{

    font-size:
    28px;

    margin-bottom:
    16px;

    font-weight:
    700;

    letter-spacing:
    -.5px;
}

.service-card p{

    color:
    var(--text);

    line-height:
    1.85;

    font-size:
    16px;
}

/* ==========================
   OUR WORK
========================== */

.works{

    position:relative;

    overflow:hidden;
}

/* PREMIUM BACKGROUND */

.works::before{

    content:"";

    position:absolute;

    top:50%;

    left:50%;

    transform:
    translate(-50%,-50%);

    width:900px;
    height:500px;

    background:
    radial-gradient(
    circle,
    rgba(53,109,255,.08),
    transparent 70%
    );

    filter:
    blur(40px);

    z-index:0;
}

.works-showcase{

    position:relative;

    z-index:2;

    display:flex;

    justify-content:center;

    align-items:flex-end;

    gap:30px;

    flex-wrap:wrap;
}

/* VIDEO CARD */

.work-card{

    width:300px;

    height:620px;

    border-radius:
    42px;

    overflow:hidden;

    position:relative;

    background:
    rgba(255,255,255,.6);

    padding:
    10px;

    box-shadow:
    var(--shadow);

    transition:
    var(--transition);
}

/* CENTER VIDEO */

.featured-card{

    transform:
    translateY(-30px)
    scale(1.05);
}

.work-card:hover{

    transform:
    translateY(-14px)
    scale(1.03);

    box-shadow:
    var(--hover-shadow);
}

.featured-card:hover{

    transform:
    translateY(-40px)
    scale(1.08);
}

/* VIDEO BORDER */

.work-card video{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:
    34px;

    display:block;
}

/* PLAY OVERLAY */

.work-card::after{

    content:"▶";

    position:absolute;

    top:50%;
    left:50%;

    transform:
    translate(-50%,-50%);

    width:90px;
    height:90px;

    border-radius:
    50%;

    background:
    rgba(255,255,255,.15);

    backdrop-filter:
    blur(20px);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:
    28px;

    color:white;

    opacity:0;

    transition:
    var(--transition);
}

.work-card:hover::after{

    opacity:1;
}

/* ==========================
   ANIMATION
========================== */

@keyframes rotate{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

@keyframes rotateReverse{

    from{
        transform:rotate(360deg);
    }

    to{
        transform:rotate(0deg);
    }
}

/* ==========================
   WHY US
========================== */

.why{

    background:
    rgba(255,255,255,.45);
}

.why-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:28px;
}

.why-card{

    background:
    rgba(255,255,255,.82);

    backdrop-filter:
    blur(20px);

    border-radius:
    38px;

    padding:
    42px;

    box-shadow:
    var(--shadow);

    transition:
    var(--transition);

    border:
    1px solid
    rgba(255,255,255,.55);

    min-height:
    280px;
}

.why-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    var(--hover-shadow);
}

.why-icon{

    width:72px;
    height:72px;

    border-radius:
    22px;

    background:
    rgba(53,109,255,.08);

    display:flex;

    justify-content:center;
    align-items:center;

    margin-bottom:
    24px;

    transition:
    var(--transition);
}

.why-card:hover
.why-icon{

    transform:
    scale(1.08);
}

.why-icon svg{

    width:34px;
    height:34px;

    color:
    var(--blue);
}

.why-card h3{

    font-size:
    28px;

    margin-bottom:
    14px;

    font-weight:
    700;
}

.why-card p{

    color:
    var(--text);

    line-height:
    1.9;
}

/* ==========================
   CONTACT
========================== */

.contact{

    position:relative;
}

.contact-form{

    max-width:
    760px;

    margin:auto;

    background:
    rgba(255,255,255,.82);

    backdrop-filter:
    blur(20px);

    border-radius:
    40px;

    padding:
    42px;

    box-shadow:
    var(--shadow);
}

.input-group{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:18px;

    margin-bottom:
    18px;
}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:
    22px;

    border:
    1px solid
    rgba(0,0,0,.08);

    border-radius:
    24px;

    background:
    rgba(255,255,255,.7);

    font-size:
    16px;

    outline:none;

    transition:
    var(--transition);

    font-family:
    'Inter',
    sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:
    rgba(53,109,255,.3);

    transform:
    translateY(-2px);
}

.contact-form textarea{

    resize:none;

    margin:
    18px 0;
}

.submit-btn{

    width:100%;

    background:
    #111;

    color:white;

    border:none;

    padding:
    22px;

    border-radius:
    999px;

    font-size:
    16px;

    font-weight:
    700;

    transition:
    var(--transition);
}

.submit-btn:hover{

    transform:
    translateY(-5px);

    box-shadow:
    var(--shadow);
}

/* ==========================
   FOOTER
========================== */

.footer{

    padding:
    80px 0 0;

    background:
    rgba(255,255,255,.55);

    backdrop-filter:
    blur(20px);

    margin-top:
    120px;
}

.footer-wrapper{

    display:flex;

    justify-content:
    space-between;

    gap:40px;

    flex-wrap:wrap;
}

.footer-logo{

    font-size:
    42px;

    font-weight:
    900;

    letter-spacing:
    -2px;

    color:
    var(--blue);

    display:inline-block;

    margin-bottom:
    18px;
}

.footer-logo span{

    color:#2454e7;
}

.footer-left p{

    max-width:
    340px;

    line-height:
    1.8;

    color:
    var(--text);
}

.footer-links{

    display:flex;

    gap:30px;

    flex-wrap:wrap;
}

.footer-links a{

    color:#111;

    font-weight:500;

    transition:
    var(--transition);
}

.footer-links a:hover{

    color:
    var(--blue);
}

.footer-bottom{

    text-align:center;

    padding:
    30px 20px;

    margin-top:
    60px;

    border-top:
    1px solid
    rgba(0,0,0,.08);

    color:
    var(--text);
}

/* ==========================
   MOBILE RESPONSIVE
========================== */

@media(max-width:1100px){

.hero-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-content{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.hero-buttons,
.hero-stats{
    justify-content:center;
}

.hero-heading{
    font-size:58px;
}

.floating-card{
    display:none;
}

.services-grid,
.why-grid{
    grid-template-columns:1fr;
}

.input-group{
    grid-template-columns:1fr;
}

.footer-wrapper{
    flex-direction:column;
    text-align:center;
}

.footer-left p{
    margin:auto;
}

}

/* MOBILE */

@media(max-width:768px){

section{
    padding:90px 0;
}

/* NAVBAR */

.nav-links,
.nav-btn{
    display:none;
}

.menu-btn{

    display:flex;

    align-items:center;
    justify-content:center;
}

.menu-btn svg{
    width:28px;
    height:28px;
}

.nav-wrapper{
    height:78px;
}

/* HERO */

.hero{
    padding-top:120px;
}

.hero-heading{

    font-size:
    46px;

    line-height:
    1.05;

    letter-spacing:
    -2px;
}

/* FIXED CREATOR ALIGNMENT */

.changing-word{

    min-width:
    100%;

    display:block;

    margin:
    8px 0;
}

.hero-description{
    font-size:18px;
}

.hero-buttons{

    flex-direction:
    column;

    width:100%;
}

.btn-primary,
.btn-secondary{
    width:100%;
}

/* STATS */

.hero-stats{

    justify-content:
    center;
}

.stat-card{

    width:100%;
}

/* HERO ORB */

.premium-orb{

    width:300px;
    height:300px;
}

.center-orb{

    width:140px;
    height:140px;
}

.ring-2{

    width:220px;
    height:220px;

    top:40px;
    left:40px;
}

.ring-3{

    width:160px;
    height:160px;

    top:70px;
    left:70px;
}

/* WORK SECTION */

.works-showcase{

    flex-direction:
    column;

    align-items:
    center;
}

.work-card{

    width:100%;

    max-width:
    320px;

    height:560px;
}

.featured-card{

    transform:none;
}

.featured-card:hover{

    transform:
    translateY(-12px);
}

/* CONTACT */

.contact-form{

    padding:
    28px;
}

.footer-links{

    justify-content:
    center;
}

}

