/* ==========================================
   GrowATS Premium Portfolio
   style.css Part 1
========================================== */

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

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#050816;

    color:#ffffff;

    overflow-x:hidden;

    line-height:1.6;
}

/* ==============================
   VARIABLES
============================== */

:root{

    --primary:#1E5BFF;

    --secondary:#00D4FF;

    --dark:#050816;

    --dark2:#071329;

    --white:#ffffff;

    --gray:#94A3B8;

    --glass:
    rgba(255,255,255,.06);

    --glass-border:
    rgba(255,255,255,.08);

}

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

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

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

::-webkit-scrollbar-thumb{

    background:linear-gradient(
        180deg,
        var(--primary),
        var(--secondary)
    );

    border-radius:20px;
}

/* ==============================
   CONTAINER
============================== */

.container{

    width:90%;

    max-width:1280px;

    margin:auto;
}

/* ==============================
   LOADER
============================== */

#loader{

    position:fixed;

    inset:0;

    background:#050816;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:9999;

    transition:.6s;
}

.loader-content{

    text-align:center;
}

.loader-content h1{

    font-size:48px;

    font-weight:900;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );

    -webkit-background-clip:text;

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

.loader-content span{

    color:var(--gray);
}

/* ==============================
   CURSOR GLOW
============================== */

.cursor-glow{

    position:fixed;

    width:600px;

    height:600px;

    border-radius:50%;

    pointer-events:none;

    background:
    radial-gradient(
    circle,
    rgba(30,91,255,.18),
    transparent 70%
    );

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

    z-index:-1;
}

/* ==============================
   AURORA BACKGROUND
============================== */

.aurora-bg{

    position:fixed;

    inset:0;

    z-index:-2;

    background:
    linear-gradient(
    -45deg,
    #050816,
    #071329,
    #0a2a66,
    #1E5BFF
    );

    background-size:
    400% 400%;

    animation:
    aurora 18s ease infinite;
}

@keyframes aurora{

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

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

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

/* ==============================
   GLASS CARD
============================== */

.glass-card{

    background:
    rgba(255,255,255,.05);

    backdrop-filter:
    blur(20px);

    border:
    1px solid var(--glass-border);

    border-radius:24px;

    box-shadow:
    0 8px 32px rgba(0,0,0,.25);
}

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

section{

    padding:
    120px 0;
}

.section-header{

    text-align:center;

    margin-bottom:80px;
}

.section-header span{

    color:var(--secondary);

    font-weight:700;

    letter-spacing:2px;
}

.section-header h2{

    font-size:48px;

    margin-top:10px;

    font-weight:800;
}

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

.navbar{

    position:fixed;

    top:0;

    width:100%;

    z-index:1000;

    transition:.4s;
}

.navbar.scrolled{

    background:
    rgba(5,8,22,.9);

    backdrop-filter:
    blur(20px);

    border-bottom:
    1px solid rgba(255,255,255,.05);
}

.navbar .container{

    display:flex;

    justify-content:
    space-between;

    align-items:center;

    height:90px;
}

.logo{

    color:white;

    text-decoration:none;

    font-size:28px;

    font-weight:900;
}

.nav-menu{

    display:flex;

    gap:30px;
}

.nav-menu a{

    text-decoration:none;

    color:white;

    transition:.3s;
}

.nav-menu a:hover{

    color:var(--secondary);
}

.nav-actions{

    display:flex;

    gap:12px;
}

.nav-actions button{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

    color:white;

    cursor:pointer;
}

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

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;
}

.hero-grid{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:80px;

    align-items:center;
}

.hero-badge{

    display:inline-flex;

    padding:12px 20px;

    border-radius:40px;

    background:
    rgba(255,255,255,.08);

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

    margin-bottom:30px;
}

.hero h1{

    font-size:82px;

    line-height:1.1;

    font-weight:900;
}

.hero h1 span{

    background:
    linear-gradient(
    90deg,
    var(--primary),
    var(--secondary)
    );

    -webkit-background-clip:text;

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

.typing-wrapper{

    margin-top:20px;

    font-size:24px;

    color:var(--secondary);

    min-height:40px;
}

.hero p{

    margin-top:25px;

    color:var(--gray);

    font-size:18px;

    max-width:650px;
}

/* ==============================
   BUTTONS
============================== */

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;
}

.btn-primary{

    padding:16px 32px;

    background:
    linear-gradient(
    90deg,
    var(--primary),
    var(--secondary)
    );

    color:white;

    text-decoration:none;

    border-radius:12px;

    font-weight:700;
}

.btn-secondary{

    padding:16px 32px;

    border:
    1px solid rgba(255,255,255,.15);

    text-decoration:none;

    color:white;

    border-radius:12px;
}

/* ==========================================
   GrowATS Premium Portfolio
   style.css Part 2
========================================== */

/* ==============================
   HERO PROFILE CARD
============================== */

.hero-image{

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;
}

.profile-card{

    width:420px;

    height:520px;

    border-radius:30px;

    overflow:hidden;

    background:
    rgba(255,255,255,.05);

    backdrop-filter:
    blur(20px);

    border:
    1px solid rgba(255,255,255,.08);

    box-shadow:
    0 20px 60px rgba(0,0,0,.4);

    animation:
    floatCard 6s ease-in-out infinite;
}

.profile-card img{

    width:100%;

    height:100%;

    object-fit:cover;
}

@keyframes floatCard{

    0%{
        transform:
        translateY(0px);
    }

    50%{
        transform:
        translateY(-20px);
    }

    100%{
        transform:
        translateY(0px);
    }
}

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

.hero-stats{

    display:flex;

    gap:20px;

    margin-top:50px;

    flex-wrap:wrap;
}

.stat-card{

    min-width:140px;

    padding:24px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:20px;

    backdrop-filter:
    blur(15px);

    transition:.4s;
}

.stat-card:hover{

    transform:
    translateY(-8px);

    border-color:
    var(--secondary);
}

.stat-card h3{

    font-size:40px;

    font-weight:800;

    color:var(--secondary);
}

.stat-card span{

    color:var(--gray);
}

/* ==============================
   TECH MARQUEE
============================== */

.tech-stack{

    overflow:hidden;

    padding:40px 0;

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

    border-bottom:
    1px solid rgba(255,255,255,.05);
}

.tech-track{

    display:flex;

    gap:30px;

    width:max-content;

    animation:
    marquee 25s linear infinite;
}

.tech-track span{

    padding:14px 22px;

    border-radius:50px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    color:white;

    white-space:nowrap;
}

@keyframes marquee{

    from{
        transform:
        translateX(0);
    }

    to{
        transform:
        translateX(-50%);
    }
}

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

.about-section{

    position:relative;
}

.about-grid{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:80px;

    align-items:center;
}

.about-image img{

    width:100%;

    border-radius:24px;
}

.about-content h3{

    font-size:42px;

    margin-bottom:20px;

    font-weight:800;
}

.about-content p{

    color:var(--gray);

    margin-bottom:20px;
}

.about-highlights{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:16px;

    margin-top:30px;
}

.about-highlights div{

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px;

    border-radius:14px;

    background:
    rgba(255,255,255,.04);
}

.about-highlights i{

    color:var(--secondary);
}

/* ==============================
   TIMELINE
============================== */

.timeline{

    max-width:900px;

    margin:auto;

    position:relative;
}

.timeline::before{

    content:"";

    position:absolute;

    left:24px;

    top:0;

    width:3px;

    height:100%;

    background:
    linear-gradient(
    var(--primary),
    var(--secondary)
    );
}

.timeline-item{

    position:relative;

    padding-left:80px;

    margin-bottom:60px;
}

.timeline-dot{

    position:absolute;

    left:12px;

    top:10px;

    width:28px;

    height:28px;

    border-radius:50%;

    background:
    linear-gradient(
    var(--primary),
    var(--secondary)
    );

    box-shadow:
    0 0 25px rgba(0,212,255,.6);
}

.timeline-content{

    padding:30px;

    border-radius:24px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:
    blur(20px);
}

.timeline-content h3{

    font-size:28px;

    margin-bottom:8px;
}

.timeline-content h4{

    color:var(--secondary);

    margin-bottom:10px;
}

.timeline-content span{

    color:var(--gray);

    font-size:14px;
}

/* ==============================
   SKILLS GRID
============================== */

.skills-grid{

    display:grid;

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

    gap:20px;
}

.skill-card{

    padding:28px;

    text-align:center;

    border-radius:20px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    font-weight:700;

    transition:.4s;
}

.skill-card:hover{

    transform:
    translateY(-10px)
    scale(1.03);

    border-color:
    var(--secondary);

    box-shadow:
    0 15px 40px rgba(0,212,255,.15);
}

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

.services-grid{

    display:grid;

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

    gap:25px;
}

.service-card{

    padding:40px;

    border-radius:24px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    transition:.4s;
}

.service-card:hover{

    transform:
    translateY(-10px);

    border-color:
    var(--secondary);
}

.service-card i{

    font-size:42px;

    color:var(--secondary);

    margin-bottom:20px;
}

.service-card h3{

    margin-bottom:15px;

    font-size:24px;
}

.service-card p{

    color:var(--gray);
}

/* ==============================
   PROJECTS BENTO GRID
============================== */

.bento-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:20px;
}

.project-card{

    min-height:240px;

    padding:30px;

    border-radius:24px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    transition:.4s;

    cursor:pointer;
}

.project-card:hover{

    transform:
    translateY(-10px);

    border-color:
    var(--secondary);
}

.project-card.large{

    grid-column:
    span 2;

    grid-row:
    span 2;

    min-height:500px;
}

.project-card h3{

    font-size:26px;

    margin-bottom:15px;
}

.project-card p{

    color:var(--gray);
}
/* ==========================================
   GrowATS Premium Portfolio
   style.css Part 3
========================================== */

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

.pricing-grid{

    display:grid;

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

    gap:30px;
}

.pricing-card{

    position:relative;

    padding:45px;

    border-radius:30px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:
    blur(20px);

    transition:.4s;

    overflow:hidden;
}

.pricing-card:hover{

    transform:
    translateY(-12px);
}

.pricing-card.featured{

    border:
    2px solid var(--secondary);

    box-shadow:
    0 0 40px rgba(0,212,255,.25);

    animation:
    glowCard 4s infinite;
}

@keyframes glowCard{

    0%,100%{
        box-shadow:
        0 0 30px rgba(0,212,255,.15);
    }

    50%{
        box-shadow:
        0 0 60px rgba(0,212,255,.45);
    }
}

.popular-badge{

    position:absolute;

    top:15px;

    right:15px;

    background:
    linear-gradient(
    90deg,
    var(--primary),
    var(--secondary)
    );

    color:white;

    padding:8px 15px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;
}

.pricing-top h3{

    font-size:26px;

    margin-bottom:10px;
}

.pricing-top h2{

    font-size:54px;

    color:var(--secondary);

    margin-bottom:25px;
}

.pricing-card ul{

    list-style:none;
}

.pricing-card li{

    margin-bottom:15px;

    color:var(--gray);
}

.pricing-card li i{

    color:var(--secondary);

    margin-right:10px;
}

.pricing-btn{

    display:inline-block;

    margin-top:30px;

    padding:15px 28px;

    background:
    linear-gradient(
    90deg,
    var(--primary),
    var(--secondary)
    );

    color:white;

    text-decoration:none;

    border-radius:12px;

    font-weight:700;
}

/* ==============================
   TESTIMONIALS
============================== */

.testimonial-slider{

    display:grid;

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

    gap:25px;
}

.testimonial-card{

    padding:35px;

    border-radius:24px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    transition:.4s;
}

.testimonial-card:hover{

    transform:
    translateY(-8px);
}

.testimonial-card p{

    color:var(--gray);

    margin-bottom:20px;

    font-style:italic;
}

.testimonial-card h4{

    color:var(--secondary);
}

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

.contact-grid{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:50px;
}

.contact-info{

    padding:40px;

    border-radius:24px;

    background:
    rgba(255,255,255,.05);

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

.contact-info h3{

    margin-bottom:25px;

    font-size:28px;
}

.contact-info p{

    margin-bottom:20px;

    color:var(--gray);
}

.contact-info i{

    color:var(--secondary);

    margin-right:12px;
}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px;

    border:none;

    outline:none;

    border-radius:16px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    color:white;
}

.contact-form button{

    padding:18px;

    border:none;

    border-radius:16px;

    cursor:pointer;

    background:
    linear-gradient(
    90deg,
    var(--primary),
    var(--secondary)
    );

    color:white;

    font-size:16px;

    font-weight:700;
}

/* ==============================
   WHATSAPP BUTTON
============================== */

.whatsapp-btn{

    position:fixed;

    bottom:30px;

    right:30px;

    width:65px;

    height:65px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    background:#25D366;

    color:white;

    font-size:32px;

    z-index:999;

    box-shadow:
    0 0 30px rgba(37,211,102,.5);

    animation:
    whatsappPulse 3s infinite;
}

@keyframes whatsappPulse{

    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.1);
    }
}

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

.footer{

    padding:80px 0;

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

.footer-content{

    text-align:center;
}

.footer-content h3{

    font-size:34px;

    margin-bottom:15px;
}

.footer-content p{

    color:var(--gray);
}

.social-links{

    display:flex;

    justify-content:center;

    gap:20px;

    margin:30px 0;
}

.social-links a{

    width:50px;

    height:50px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    background:
    rgba(255,255,255,.06);

    color:white;

    transition:.4s;
}

.social-links a:hover{

    background:
    var(--secondary);

    color:black;
}

.copyright{

    margin-top:20px;
}

/* ==============================
   LIGHT THEME
============================== */

body.light-mode{

    background:#ffffff;

    color:#111827;
}

body.light-mode .navbar{

    background:
    rgba(255,255,255,.9);
}

body.light-mode .nav-menu a{

    color:#111827;
}

body.light-mode .glass-card,
body.light-mode .timeline-content,
body.light-mode .service-card,
body.light-mode .skill-card,
body.light-mode .project-card,
body.light-mode .pricing-card,
body.light-mode .testimonial-card,
body.light-mode .contact-info{

    background:#ffffff;

    color:#111827;

    border:
    1px solid rgba(0,0,0,.08);
}

/* ==============================
   REVEAL ANIMATION
============================== */

.reveal{

    opacity:0;

    transform:
    translateY(60px);

    transition:
    all .8s ease;
}

.reveal.show{

    opacity:1;

    transform:
    translateY(0);
}

/* ==============================
   MOBILE
============================== */

@media(max-width:1024px){

    .hero-grid,
    .about-grid,
    .contact-grid{

        grid-template-columns:
        1fr;
    }

    .hero{

        text-align:center;
    }

    .hero h1{

        font-size:60px;
    }

    .bento-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:768px){

    .nav-menu{

        display:none;
    }

    .hero h1{

        font-size:46px;
    }

    .section-header h2{

        font-size:34px;
    }

    .hero-stats{

        justify-content:center;
    }

    .bento-grid{

        grid-template-columns:
        1fr;
    }

    .project-card.large{

        grid-column:auto;

        grid-row:auto;

        min-height:250px;
    }

    .pricing-grid,
    .services-grid,
    .skills-grid{

        grid-template-columns:
        1fr;
    }

    .whatsapp-btn{

        width:55px;
        height:55px;
        font-size:26px;
    }
}

@media(max-width:480px){

    .hero h1{

        font-size:38px;
    }

    .hero-buttons{

        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{

        width:100%;

        text-align:center;
    }
}

.nav-menu.active{
    display:flex !important;
    flex-direction:column;
    position:absolute;
    top:90px;
    left:0;
    width:100%;
    background:#071329;
    padding:20px;
}

.nav-menu a.active{
    color:#00D4FF;
}

#typingText{
    font-weight:700;
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}