/* =========================
   RESET
========================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    background: #050505;
    color: white;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
}

/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{
    width: 8px;
}

::-webkit-scrollbar-track{
    background: #050505;
}

::-webkit-scrollbar-thumb{
    background: linear-gradient(to bottom,#0066ff,#7b2cff);
    border-radius: 20px;
}

/* =========================
   PARTICLES
========================= */

#particles-js{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -3;
    top: 0;
    left: 0;
}

/* =========================
   MOUSE GLOW
========================= */

.mouse-glow{
    position: fixed;

    width: 500px;
    height: 500px;

    background:
    radial-gradient(
        circle,
        rgba(0,102,255,0.15) 0%,
        transparent 70%
    );

    border-radius: 50%;

    pointer-events: none;

    z-index: -1;

    transform: translate(-50%, -50%);

    transition: 0.08s linear;
}

/* =========================
   SECTION
========================= */

.section{
    width: 100%;
    padding: 130px 8%;
    position: relative;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    width: 100%;

    padding: 22px 8%;

    position: fixed;

    top: 0;
    left: 0;

    z-index: 999;

    display: flex;
    align-items: center;
    justify-content: space-between;

    backdrop-filter: blur(14px);

    background: rgba(5,5,5,0.45);

    border-bottom: 1px solid rgba(255,255,255,0.05);

    transition: 0.3s;
}

.logo{
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-gradient{
    background:
    linear-gradient(
        90deg,
        #0066ff,
        #7b2cff,
        #00c3ff
    );

    background-size: 300% 300%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: gradientMove 6s ease infinite;
}

.nav-links{
    display: flex;
    gap: 30px;
}

.nav-links a{
    text-decoration: none;

    color: rgba(255,255,255,0.75);

    font-size: 0.95rem;

    transition: 0.3s;

    position: relative;
}

.nav-links a::after{
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0%;
    height: 2px;

    background:
    linear-gradient(
        90deg,
        #0066ff,
        #7b2cff
    );

    transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after{
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active{
    color: white;
}

.nav-btn{
    padding: 13px 24px;

    border: none;
    border-radius: 12px;

    background:
    linear-gradient(
        90deg,
        #0066ff,
        #7b2cff
    );

    color: white;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}

.nav-btn:hover{
    transform: translateY(-3px);

    box-shadow:
    0 0 25px rgba(0,102,255,0.4);
}

/* =========================
   HERO
========================= */

.hero{
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.hero-background{
    position: absolute;

    width: 700px;
    height: 700px;

    background:
    radial-gradient(
        circle,
        rgba(0,102,255,0.18),
        transparent 70%
    );

    filter: blur(40px);

    animation: pulseGlow 6s infinite alternate;
}

.hero-content{
    text-align: center;
    max-width: 950px;
    z-index: 2;
}

.hero-badge{
    display: inline-block;

    padding: 10px 18px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 999px;

    background: rgba(255,255,255,0.03);

    font-size: 0.85rem;

    color: rgba(255,255,255,0.75);

    margin-bottom: 28px;
}

.hero-title{
    font-size: 5rem;
    font-weight: 900;

    line-height: 1.05;

    margin-bottom: 25px;
}

.gradient-text{
    background:
    linear-gradient(
        90deg,
        #0066ff,
        #7b2cff,
        #00c3ff
    );

    background-size: 300% 300%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: gradientMove 5s ease infinite;
}

.hero-description{
    color: rgba(255,255,255,0.70);

    font-size: 1.1rem;

    line-height: 1.8;

    max-width: 750px;

    margin: auto;
}

.hero-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;

    margin-top: 45px;
}

.primary-btn{
    padding: 15px 30px;

    border: none;
    border-radius: 14px;

    background:
    linear-gradient(
        90deg,
        #0066ff,
        #7b2cff
    );

    color: white;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;
}

.primary-btn:hover{
    transform: translateY(-5px);

    box-shadow:
    0 0 30px rgba(0,102,255,0.4);
}

.secondary-btn{
    padding: 15px 30px;

    border-radius: 14px;

    border: 1px solid rgba(255,255,255,0.10);

    background: rgba(255,255,255,0.03);

    color: white;

    cursor: pointer;

    transition: 0.3s;
}

.secondary-btn:hover{
    background: rgba(255,255,255,0.08);

    transform: translateY(-5px);
}

/* =========================
   TITLES
========================= */

.section-top{
    margin-bottom: 70px;
}

.section-mini-title{
    display: inline-block;

    color: #5aa2ff;

    letter-spacing: 2px;

    font-size: 0.9rem;
    font-weight: 700;

    margin-bottom: 18px;
}

.section-title{
    font-size: 3rem;
    font-weight: 800;

    max-width: 700px;
}

/* =========================
   SERVICES
========================= */

.services-grid{
    display: grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap: 30px;
}

.service-card{
    padding: 40px;

    border-radius: 24px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(14px);

    transition: 0.4s;

    position: relative;

    overflow: hidden;
}

.service-card::before{
    content: "";

    position: absolute;

    inset: 0;

    background:
    linear-gradient(
        130deg,
        transparent,
        rgba(255,255,255,0.03),
        transparent
    );

    transform: translateX(-100%);

    transition: 0.6s;
}

.service-card:hover::before{
    transform: translateX(100%);
}

.service-card:hover{
    transform: translateY(-10px);

    border-color: rgba(0,102,255,0.35);

    box-shadow:
    0 0 40px rgba(0,102,255,0.12);
}

.service-icon{
    width: 70px;
    height: 70px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
    linear-gradient(
        135deg,
        #0066ff,
        #7b2cff
    );

    font-size: 1.4rem;

    margin-bottom: 30px;
}

.service-card h3{
    font-size: 1.4rem;

    margin-bottom: 18px;
}

.service-card p{
    color: rgba(255,255,255,0.70);

    line-height: 1.8;
}

/* =========================
   HOSTING
========================= */

.hosting-grid{
    display: grid;

    grid-template-columns:
    repeat(auto-fit,minmax(180px,1fr));

    gap: 25px;
}

.hosting-card{
    height: 180px;

    border-radius: 24px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.05);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 18px;

    transition: 0.3s;
}

.hosting-card:hover{
    transform: translateY(-8px);

    border-color: rgba(0,102,255,0.30);

    box-shadow:
    0 0 30px rgba(0,102,255,0.10);
}

.hosting-card i{
    font-size: 2rem;

    background:
    linear-gradient(
        90deg,
        #0066ff,
        #7b2cff
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partner-box{
    margin-top: 50px;

    padding: 35px;

    border-radius: 24px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.06);

    text-align: center;
}

.partner-box span{
    color: rgba(255,255,255,0.70);
}

.partner-box h3{
    margin-top: 10px;

    font-size: 2rem;
}

/* =========================
   WEBMAIL
========================= */

.webmail-container{
    display: flex;
    justify-content: space-between;

    gap: 50px;

    flex-wrap: wrap;

    padding: 60px;

    border-radius: 30px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.05);
}

.webmail-right{
    max-width: 600px;
}

.webmail-right p{
    line-height: 1.9;

    color: rgba(255,255,255,0.70);
}

.partner-box-small{
    margin-top: 25px;

    display: inline-block;

    padding: 12px 20px;

    border-radius: 999px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.05);
}

/* =========================
   ABOUT
========================= */

.about-container{
    max-width: 850px;
}

.about-text{
    margin-top: 30px;

    color: rgba(255,255,255,0.70);

    line-height: 2;

    font-size: 1.05rem;
}

/* =========================
   STATS
========================= */

.stats-grid{
    display: grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap: 25px;
}

.stat-card{
    padding: 45px;

    border-radius: 24px;

    text-align: center;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.05);

    transition: 0.3s;
}

.stat-card:hover{
    transform: translateY(-8px);

    border-color: rgba(0,102,255,0.30);

    box-shadow:
    0 0 30px rgba(0,102,255,0.12);
}

.stat-card h2{
    font-size: 3rem;

    margin-bottom: 15px;

    background:
    linear-gradient(
        90deg,
        #0066ff,
        #7b2cff
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card p{
    color: rgba(255,255,255,0.70);
}

/* =========================
   CONTACT
========================= */

.contact-container{
    max-width: 850px;
}

.contact-description{
    margin-top: 25px;

    color: rgba(255,255,255,0.70);

    line-height: 1.9;
}

.contact-info{
    margin-top: 35px;
    margin-bottom: 35px;

    display: flex;
    flex-direction: column;

    gap: 20px;
}

.contact-item{
    display: flex;
    align-items: center;

    gap: 15px;

    color: rgba(255,255,255,0.80);
}

.contact-item i{
    color: #5aa2ff;
}

/* =========================
   FOOTER
========================= */

.footer{
    padding: 60px 8%;

    border-top: 1px solid rgba(255,255,255,0.05);

    text-align: center;
}

.footer-logo{
    font-size: 1.7rem;
    font-weight: 800;
}

.footer-links{
    display: flex;
    justify-content: center;

    gap: 30px;

    margin-top: 30px;
    margin-bottom: 30px;

    flex-wrap: wrap;
}

.footer-links a{
    color: rgba(255,255,255,0.65);

    text-decoration: none;

    transition: 0.3s;
}

.footer-links a:hover{
    color: white;
}

.footer-copy{
    color: rgba(255,255,255,0.45);
}

/* =========================
   REVEAL FIX
========================= */

.reveal{
    opacity: 1;
    transform: translateY(0);
    will-change: transform, opacity;
}

/* =========================
   BELLY CHAT
========================= */

.belly-button{
    position: fixed;

    right: 30px;
    bottom: 30px;

    width: 70px;
    height: 70px;

    border-radius: 50%;

    background:
    linear-gradient(
        135deg,
        #0066ff,
        #7b2cff
    );

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 9999;

    box-shadow:
    0 0 25px rgba(0,102,255,0.45),
    0 0 60px rgba(123,44,255,0.25);

    transition: 0.3s;

    overflow: hidden;
}

.belly-button:hover{
    transform: scale(1.08);
}

.belly-button i{
    font-size: 1.4rem;
    color: white;
    z-index: 2;
}

.belly-ping{
    position: absolute;

    width: 100%;
    height: 100%;

    border-radius: 50%;

    background: rgba(0,102,255,0.35);

    animation: bellyPing 2s infinite;
}

/* CHAT */

.belly-chat{
    position: fixed;

    right: 30px;
    bottom: 120px;

    width: 390px;
    height: 650px;

    background: rgba(8,8,8,0.82);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 28px;

    overflow: hidden;

    z-index: 9999;

    display: flex;
    flex-direction: column;

    opacity: 0;
    visibility: hidden;

    transform:
    translateY(40px)
    scale(0.96);

    transition: 0.35s ease;
}

.belly-chat.active{
    opacity: 1;
    visibility: visible;

    transform:
    translateY(0)
    scale(1);
}

/* HEADER */

.belly-header{
    width: 100%;

    padding: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255,255,255,0.05);

    background:
    linear-gradient(
        90deg,
        rgba(0,102,255,0.10),
        rgba(123,44,255,0.10)
    );
}

.belly-header-left{
    display: flex;
    align-items: center;
    gap: 14px;
}

.belly-status{
    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #00ff88;

    box-shadow: 0 0 15px #00ff88;
}

.belly-header h3{
    font-size: 1.1rem;
    font-weight: 700;
}

.belly-header span{
    color: rgba(255,255,255,0.60);
    font-size: 0.85rem;
}

.close-chat{
    width: 42px;
    height: 42px;

    border-radius: 12px;

    border: none;

    background: rgba(255,255,255,0.04);

    color: white;

    cursor: pointer;

    transition: 0.3s;
}

.close-chat:hover{
    background: rgba(255,255,255,0.10);
}

/* MESSAGES */

.belly-messages{
    flex: 1;

    padding: 25px;

    overflow-y: auto;

    display: flex;
    flex-direction: column;

    gap: 18px;
}

.belly-messages::-webkit-scrollbar{
    width: 5px;
}

.belly-messages::-webkit-scrollbar-thumb{
    background: rgba(255,255,255,0.12);
    border-radius: 20px;
}

.belly-message{
    width: 100%;
    display: flex;
}

.belly-message-user{
    justify-content: flex-end;
}

.belly-message-ai{
    justify-content: flex-start;
}

.message-content{
    max-width: 85%;

    padding: 16px 18px;

    border-radius: 18px;

    line-height: 1.7;

    font-size: 0.95rem;

    animation: messageAppear 0.35s ease;
}

.belly-message-user .message-content{
    background:
    linear-gradient(
        135deg,
        #0066ff,
        #7b2cff
    );

    color: white;

    border-bottom-right-radius: 6px;
}

.belly-message-ai .message-content{
    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.05);

    color: rgba(255,255,255,0.90);

    border-bottom-left-radius: 6px;
}

/* INPUT */

.belly-input-area{
    width: 100%;

    padding: 18px;

    display: flex;
    align-items: center;

    gap: 14px;

    border-top: 1px solid rgba(255,255,255,0.05);
}

.belly-input-area input{
    flex: 1;

    height: 56px;

    border: none;
    outline: none;

    padding: 0 18px;

    border-radius: 16px;

    background: rgba(255,255,255,0.05);

    color: white;

    font-size: 0.95rem;
}

.belly-input-area input::placeholder{
    color: rgba(255,255,255,0.40);
}

.belly-input-area button{
    min-width: 56px;
    height: 56px;

    border: none;

    border-radius: 16px;

    background:
    linear-gradient(
        135deg,
        #0066ff,
        #7b2cff
    );

    color: white;

    cursor: pointer;

    transition: 0.3s;
}

.belly-input-area button:hover{
    transform: scale(1.06);
}

/* TYPING */

.typing-area{
    display: none;

    align-items: center;

    gap: 12px;

    padding: 0 25px 15px;
}

.typing-area.active{
    display: flex;
}

.typing-area p{
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
}

.typing-dots{
    display: flex;
    gap: 5px;
}

.typing-dots span{
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #5aa2ff;

    animation: typingDots 1.2s infinite;
}

.typing-dots span:nth-child(2){
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3){
    animation-delay: 0.4s;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes gradientMove{

    0%{
        background-position: 0% 50%;
    }

    50%{
        background-position: 100% 50%;
    }

    100%{
        background-position: 0% 50%;
    }

}

@keyframes pulseGlow{

    from{
        transform: scale(1);
        opacity: 0.6;
    }

    to{
        transform: scale(1.2);
        opacity: 1;
    }

}

@keyframes bellyPing{

    0%{
        transform: scale(1);
        opacity: 1;
    }

    100%{
        transform: scale(1.7);
        opacity: 0;
    }

}

@keyframes typingDots{

    0%{
        transform: translateY(0);
        opacity: 0.5;
    }

    50%{
        transform: translateY(-5px);
        opacity: 1;
    }

    100%{
        transform: translateY(0);
        opacity: 0.5;
    }

}

@keyframes messageAppear{

    from{
        opacity: 0;
        transform: translateY(15px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 1100px){

    .nav-links{
        display: none;
    }

    .hero-title{
        font-size: 4rem;
    }

}

@media(max-width: 768px){

    .section{
        padding: 110px 6%;
    }

    .hero-title{
        font-size: 2.8rem;
    }

    .section-title{
        font-size: 2.2rem;
    }

    .hero-buttons{
        flex-direction: column;
    }

    .navbar{
        padding: 18px 6%;
    }

    .nav-btn{
        display: none;
    }

    .webmail-container{
        padding: 35px;
    }

    .mouse-glow{
        display: none;
    }

    .belly-chat{
        right: 15px;
        left: 15px;

        width: auto;
        height: 75vh;

        bottom: 100px;
    }

    .belly-button{
        right: 20px;
        bottom: 20px;
    }

}

@media(max-width: 500px){

    .hero-title{
        font-size: 2.3rem;
    }

    .hero-description{
        font-size: 1rem;
    }

    .section-title{
        font-size: 1.8rem;
    }

}