/* =========================================
GOOGLE FONT
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* =========================================
RESET
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* =========================================
BODY
========================================= */

body{

    font-family:'Inter', sans-serif;

    background:#020617;

    color:#ffffff;

    overflow-x:hidden;

    scroll-behavior:smooth;

    cursor:none;
}

/* =========================================
CONTAINER
========================================= */

.container{

    width:90%;

    max-width:1400px;

    margin:auto;
}

/* =========================================
CUSTOM CURSOR
========================================= */

.cursor{

    width:20px;
    height:20px;

    border:2px solid #3B82F6;

    border-radius:50%;

    position:fixed;

    pointer-events:none;

    transform:translate(-50%, -50%);

    z-index:9999;

    transition:0.2s ease;
}

.cursor-dot{

    width:6px;
    height:6px;

    background:#60A5FA;

    border-radius:50%;

    position:fixed;

    pointer-events:none;

    transform:translate(-50%, -50%);

    z-index:9999;
}

/* =========================================
SCROLLBAR
========================================= */

::-webkit-scrollbar{

    width:8px;
}

::-webkit-scrollbar-track{

    background:#020617;
}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
        #3B82F6,
        #7C3AED
    );

    border-radius:20px;
}

/* =========================================
GLASS EFFECT
========================================= */

.glass{

    background:rgba(255,255,255,0.05);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 8px 32px rgba(0,0,0,0.3);
}

/* =========================================
GRADIENT TEXT
========================================= */

.gradient-text{

    background:linear-gradient(
        to right,
        #3B82F6,
        #7C3AED
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

/* =========================================
HEADER
========================================= */

header{

    width:100%;

    position:fixed;

    top:0;
    left:0;

    z-index:1000;

    padding:25px 0;

    transition:0.4s ease;
}

header.scrolled{

    background:rgba(2,6,23,0.9);

    backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(255,255,255,0.05);
}

/* =========================================
NAVBAR
========================================= */

nav{

    display:flex;

    align-items:center;

    gap:30px;
}

nav a{

    color:#cbd5e1;

    text-decoration:none;

    transition:0.3s ease;

    font-size:15px;
}

nav a:hover{

    color:#60A5FA;
}

/* =========================================
BUTTONS
========================================= */

.btn{

    display:inline-block;

    padding:18px 38px;

    border-radius:999px;

    text-decoration:none;

    transition:0.4s ease;

    font-weight:600;
}

.btn-primary{

    background:#3B82F6;

    color:white;

    box-shadow:
        0 10px 30px rgba(59,130,246,0.3);
}

.btn-primary:hover{

    background:#2563EB;

    transform:
        translateY(-5px)
        scale(1.03);
}

.btn-secondary{

    border:1px solid rgba(255,255,255,0.1);

    color:white;
}

.btn-secondary:hover{

    background:white;

    color:black;
}

/* =========================================
HERO SECTION
========================================= */

.hero-section{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;
}

.hero-title{

    font-size:clamp(4rem, 8vw, 9rem);

    line-height:1.05;

    font-weight:900;
}

.hero-description{

    margin-top:40px;

    color:#94A3B8;

    line-height:1.9;

    font-size:1.2rem;

    max-width:700px;
}

/* =========================================
HERO GLOW
========================================= */

.hero-glow{

    position:absolute;

    width:500px;
    height:500px;

    border-radius:999px;

    filter:blur(120px);

    z-index:0;
}

/* =========================================
ORBIT
========================================= */

.orbit{

    position:absolute;

    border:1px solid rgba(255,255,255,0.08);

    border-radius:999px;

    animation:orbitRotate 20s linear infinite;
}

.orbit::before{

    content:"";

    position:absolute;

    width:14px;
    height:14px;

    background:#3B82F6;

    border-radius:50%;

    top:-7px;
    left:50%;

    transform:translateX(-50%);

    box-shadow:
        0 0 20px #3B82F6;
}

@keyframes orbitRotate{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

/* =========================================
FLOATING
========================================= */

.floating{

    animation:floating 4s ease-in-out infinite;
}

@keyframes floating{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================================
SECTION
========================================= */

section{

    position:relative;
}

/* =========================================
SECTION TITLE
========================================= */

.section-subtitle{

    color:#60A5FA;

    text-transform:uppercase;

    letter-spacing:5px;

    margin-bottom:20px;

    font-size:14px;
}

.section-title{

    font-size:clamp(3rem, 6vw, 6rem);

    font-weight:900;

    line-height:1.1;
}

/* =========================================
SERVICE CARDS
========================================= */

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;
}

.service-card{

    padding:50px;

    border-radius:35px;

    position:relative;

    overflow:hidden;

    opacity:0;

    transform:
        translateY(100px)
        scale(0.9);

    transition:
        opacity 1s ease,
        transform 1s ease,
        box-shadow 0.5s ease;
}

.service-card.show{

    opacity:1;

    transform:
        translateY(0)
        scale(1);
}

.service-card:hover{

    transform:
        translateY(-15px)
        scale(1.03);

    box-shadow:
        0 20px 60px rgba(59,130,246,0.25);

    border:1px solid rgba(59,130,246,0.4);
}

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(59,130,246,0.1),
        rgba(124,58,237,0.1)
    );

    opacity:0;

    transition:0.5s ease;
}

.service-card:hover::before{

    opacity:1;
}

.service-card h3{

    font-size:2.5rem;

    margin-bottom:30px;

    position:relative;

    z-index:2;
}

.service-card ul{

    position:relative;

    z-index:2;
}

.service-card li{

    list-style:none;

    margin-bottom:18px;

    color:#CBD5E1;

    transition:0.3s ease;
}

.service-card li:hover{

    transform:translateX(10px);

    color:#60A5FA;
}

/* =========================================
GALLERY
========================================= */

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.gallery-item{

    overflow:hidden;

    border-radius:30px;

    position:relative;
}

.gallery-item img{

    width:100%;

    height:500px;

    object-fit:cover;

    transition:1s ease;
}

.gallery-item:hover img{

    transform:scale(1.1);
}

.gallery-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.9),
        transparent
    );

    opacity:0;

    transition:0.5s ease;
}

.gallery-item:hover .gallery-overlay{

    opacity:1;
}

/* =========================================
BLOG
========================================= */

.blog-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;
}

.blog-card{

    overflow:hidden;

    border-radius:30px;

    transition:0.5s ease;
}

.blog-card:hover{

    transform:
        translateY(-15px)
        scale(1.02);
}

.blog-card img{

    width:100%;

    height:280px;

    object-fit:cover;
}

.blog-content{

    padding:35px;
}

.blog-card h2{

    margin:20px 0;

    font-size:2rem;

    transition:0.4s ease;
}

.blog-card:hover h2{

    color:#60A5FA;
}

/* =========================================
CONTACT
========================================= */

.contact-form input,
.contact-form textarea,
.contact-form select{

    width:100%;

    padding:18px 24px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,0.08);

    background:rgba(255,255,255,0.05);

    color:white;

    outline:none;

    margin-bottom:20px;

    transition:0.4s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{

    border-color:#3B82F6;

    box-shadow:
        0 0 20px rgba(59,130,246,0.2);
}

/* =========================================
FOOTER
========================================= */

footer{

    border-top:1px solid rgba(255,255,255,0.05);

    padding:100px 0;
}

footer a{

    color:#94A3B8;

    text-decoration:none;

    transition:0.3s ease;
}

footer a:hover{

    color:#60A5FA;
}

/* =========================================
SCROLL REVEAL
========================================= */

.reveal{

    opacity:0;

    transform:translateY(100px);

    transition:
        opacity 1s ease,
        transform 1s ease;
}

.reveal.active{

    opacity:1;

    transform:translateY(0);
}

/* =========================================
IMAGE EFFECT
========================================= */

img{

    transition:1s ease;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:992px){

    .services-grid,
    .gallery-grid,
    .blog-grid{

        grid-template-columns:1fr;
    }

    nav{

        display:none;
    }

    body{

        cursor:auto;
    }

    .cursor,
    .cursor-dot{

        display:none;
    }

    .hero-title{

        font-size:4rem;
    }

}