/* ===================================
BACKGROUND
=================================== */

.background{
    position:fixed;
    inset:0;
    z-index:-10;
    overflow:hidden;
}

/* Animated Blobs */

.blob{
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    animation:blobMove 12s infinite alternate ease-in-out;
}

.blob1{
    width:500px;
    height:500px;
    background:#00d9ff30;
    top:-150px;
    left:-150px;
}

.blob2{
    width:450px;
    height:450px;
    background:#8b5cf630;
    bottom:-120px;
    right:-120px;
}

.blob3{
    width:350px;
    height:350px;
    background:#ff4fd830;
    top:40%;
    left:40%;
}

@keyframes blobMove{
    0%{
        transform:translate(0,0) scale(1);
    }
    100%{
        transform:translate(60px,-50px) scale(1.15);
    }
}

/* Grid */

.grid{
    position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);

    background-size:60px 60px;

    animation:gridMove 15s linear infinite;
}

@keyframes gridMove{
    0%{
        transform:translateY(0px);
    }
    100%{
        transform:translateY(60px);
    }
}

/* Floating Circles */

.circle{
    position:absolute;
    border-radius:50%;
    border:2px solid rgba(0,217,255,0.2);
    animation:rotate 20s linear infinite;
}

.circle1{
    width:220px;
    height:220px;
    top:10%;
    right:8%;
}

.circle2{
    width:160px;
    height:160px;
    bottom:10%;
    left:10%;
}

@keyframes rotate{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* ===================================
LAYOUT
=================================== */

.container{
    width:92%;
    max-width:1500px;
    margin:auto;
    

    /*display:grid;*/
    grid-template-columns:2fr 0.9fr;
    gap:35px;
}

/* ===================================
MAIN BLOG CARD
=================================== */

.blog-card{
    position:relative;

    background:rgba(255,255,255,0.7);

    border-radius:40px;

    overflow:hidden;

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.9);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.08);

    animation:fadeUp 1s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(80px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}



/* ===================================
heros
======heros============================= */

.heros{
    position:relative;
    
    overflow:hidden;
}

.heros img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:1.5s;
}

/*.blog-card:hover .heros img{
    transform:scale(1.08) rotate(1deg);*/
}

/* Floating AI Box */

.ai-box{
    position: absolute;
    top: 40px;
    left: 40px;
    padding: 24px 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid #6bf3a1;
    box-shadow: 0 15px 35px rgb(85 239 182 / 46%);
    animation: float 4s infinite ease-in-out;
}

@keyframes float{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0px);
    }
}

.ai-box h4{
    color:#00a8cc;
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:8px;
}

.ai-box p{
    color:#4b5563;
    font-size:17px;
}

/* ===================================
CONTENT
=================================== */

.content{
    padding:60px;
}

/* Label */

.label{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 26px;

    border-radius:50px;

    background: #03a84e29;
    color: #03a84e;

    margin-bottom:30px;

    font-weight:700;

    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.05);
    }
    100%{
        transform:scale(1);
    }
}

/* TITLE */

.title{
    font-family:'Orbitron',sans-serif;

    font-size:45px;

    line-height:1.05;

    margin-bottom:35px;

    background:linear-gradient(
    to right,
    #111827,
    #00a8cc,
    #8b5cf6,
    #ff4fd8);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:textGlow 3s infinite alternate;
}

@keyframes textGlow{
    from{
        filter:drop-shadow(0 0 8px rgba(0,168,204,0.15));
    }
    to{
        filter:drop-shadow(0 0 25px rgba(139,92,246,0.25));
    }
}

/* META */

.meta{
    display:flex;
    flex-wrap:wrap;
    gap:18px;

    margin-bottom:35px;
}

.meta div{
    padding:14px 22px;

    border-radius:18px;

    background:white;

    color:#4b5563;

    box-shadow: 5px 5px rgb(5 147 115 / 29%);
    ransition: 1.5s;
    border: 1px solid #62e395;
}

.meta div:hover{
    transform:translateY(-8px);
}

/* Paragraph */

.content h3{
    font-size: 20px;
    color: green;
}


.content p{
    font-size:18px;
    line-height:2;
    color:#4b5563;
    margin-bottom:28px;
}
.content p a{
color: red;
}
/* ===================================
FEATURES
=================================== */

.features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;

    margin-top:50px;
}

.feature{
    position:relative;

    background:white;

    border-radius:30px;

    padding:40px 30px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,0.06);

    transition:0.6s;
}

.feature:hover{
    transform:translateY(-15px) scale(1.04);
}

/* Glow Circle */

.feature::before{
    content:'';

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:#00d9ff18;

    top:-70px;
    right:-70px;

    animation:rotate 12s linear infinite;
}

.feature h2{
    position:relative;

    font-size:52px;

    font-family:'Orbitron';

    color:#00a8cc;

    margin-bottom:15px;
}

.feature p{
    position:relative;
    color:#4b5563;
    line-height:1.8;
}

/* ===================================
SIDEBAR
=================================== */

.sidebar{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.side-box{
    background:rgba(255,255,255,0.7);

    border-radius:35px;

    padding:38px;

    backdrop-filter:blur(18px);

    box-shadow:0 15px 40px rgba(0,0,0,0.06);

    animation:fadeUp 1.4s ease;
}

/* Profile */

.profile{
    text-align:center;
}

.profile img{
    width:190px;
    height:190px;

    object-fit:cover;

    border-radius:45px;

    margin-bottom:25px;

    border:4px solid white;

    box-shadow:
    0 0 35px rgba(0,217,255,0.2);

    animation:profileFloat 4s infinite ease-in-out;
}

@keyframes profileFloat{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0px);
    }
}

.profile h2{
    font-size:34px;
    font-family:'Orbitron';
    margin-bottom:15px;
    color:#03a84e;
}

.profile p{
    color:#4b5563;
    line-height:1.9;
    margin-bottom:28px;
}

/* SOCIAL */

.social{
    display:flex;
    justify-content:center;
    gap:15px;
}

.social a{
    width:60px;
    height:60px;

    border-radius:20px;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;

    background:white;

    color:#00a8cc;

    box-shadow:0 10px 25px rgba(0,0,0,0.06);

    transition:0.5s;
}

.social a:hover{
    transform:translateY(-10px) rotate(8deg);

        background: linear-gradient(135deg, #13ef96, #08a750, #012617);


    color:white;
}

/* SEARCH */

.heading{
    font-size:30px;
    margin-bottom:25px;
    font-family:'Orbitron';
}

.search{
    display:flex;
    overflow:hidden;

    border-radius:20px;

    background:white;

    box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.search input{
    flex:1;

    border:none;
    outline:none;

    padding:18px;

    background:none;

    color:#111827;
}

.search button{
    width:90px;

    border:none;

    cursor:pointer;

    color:white;

    font-size:18px;

        background: linear-gradient(135deg, #13ef96, #08a750, #012617);

}

/* Categories */

.categories{
    list-style:none;
}

.categories li{
    padding:18px 0;

    border-bottom:1px solid rgba(0,0,0,0.06);

    color:#ffffff;

    transition:0.5s;

    cursor:pointer;
}

.categories li:hover{
    color:#00a8cc;
    padding-left:12px;
}
.categories a{
  color: #4b5563;
}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width:1100px){

    .container{
        grid-template-columns:1fr;
    }

    .title{
        font-size:46px;
    }
}

@media(max-width:768px){

    /*.heros{
        height:420px;
    }*/

    .content{
        padding:30px;
    }

    .title{
        font-size:34px;
    }

    .features{
        grid-template-columns:1fr;
    }

  
 
}
