/* ==========================================
   Trendzap Developer Portfolio
   Premium CSS - Part 1
==========================================*/

:root{

--primary:#ff6b00;
--secondary:#ff9d00;
--dark:#0f172a;
--dark2:#111827;
--light:#ffffff;
--text:#d1d5db;
--glass:rgba(255,255,255,.08);
--border:rgba(255,255,255,.15);
--shadow:0 15px 45px rgba(0,0,0,.35);
--radius:20px;
--transition:.35s ease;

}

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;

background:linear-gradient(135deg,#08111f,#111827,#1e293b);

color:#fff;

overflow-x:hidden;

line-height:1.6;

}

/* Animated Background */

body::before{

content:"";

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:
radial-gradient(circle at 10% 20%,rgba(255,107,0,.15),transparent 40%),
radial-gradient(circle at 80% 10%,rgba(255,255,255,.08),transparent 35%),
radial-gradient(circle at 90% 90%,rgba(255,153,0,.18),transparent 40%);

z-index:-2;

animation:bgMove 18s infinite alternate;

}

@keyframes bgMove{

0%{
transform:scale(1);
}

100%{
transform:scale(1.2) rotate(5deg);
}

}

#particles-js{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

z-index:-1;

}

/* Container */

.container{

width:90%;

max-width:1280px;

margin:auto;

}

/* Navbar */

header{

position:fixed;

width:100%;

top:0;

left:0;

z-index:999;

backdrop-filter:blur(15px);

background:rgba(10,15,25,.55);

border-bottom:1px solid rgba(255,255,255,.08);

}

.navbar{

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 5%;

}

.logo{

font-size:28px;

font-weight:800;

color:#fff;

}

.logo .primary{

color:var(--primary);

}

.menu{

display:flex;

gap:28px;

list-style:none;

}

.menu a{

color:#fff;

text-decoration:none;

font-weight:500;

transition:var(--transition);

position:relative;

}

.menu a::after{

content:"";

position:absolute;

bottom:-6px;

left:0;

height:2px;

width:0;

background:var(--primary);

transition:.4s;

}

.menu a:hover{

color:var(--primary);

}

.menu a:hover::after{

width:100%;

}

.right-nav{

display:flex;

gap:15px;

align-items:center;

}

#themeToggle{

height:45px;

width:45px;

border:none;

border-radius:50%;

cursor:pointer;

background:rgba(255,255,255,.08);

color:#fff;

font-size:18px;

transition:.4s;

}

#themeToggle:hover{

background:var(--primary);

transform:rotate(180deg);

}

/* Hero */

.hero{

min-height:100vh;

display:flex;

align-items:center;

justify-content:space-between;

padding:120px 5%;

gap:60px;

}

.hero-left{

flex:1;

}

.hero-right{

flex:1;

display:flex;

justify-content:center;

}

.badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:10px 20px;

background:rgba(255,107,0,.12);

border:1px solid rgba(255,107,0,.25);

border-radius:50px;

color:#ffb067;

margin-bottom:25px;

font-weight:600;

}

.hero h3{

font-size:26px;

font-weight:500;

color:#ddd;

}

.hero h1{

font-size:70px;

font-weight:800;

margin-top:10px;

background:linear-gradient(90deg,#fff,#ffb067);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.hero h2{

font-size:34px;

color:var(--primary);

margin:20px 0;

font-weight:700;

}

.hero p{

font-size:18px;

color:#d1d5db;

max-width:650px;

margin-bottom:35px;

}

/* Buttons */

.buttons{

display:flex;

gap:20px;

margin-top:25px;

flex-wrap:wrap;

}

.btn{

padding:15px 34px;

border-radius:50px;

text-decoration:none;

font-weight:700;

transition:.4s;

display:inline-flex;

align-items:center;

justify-content:center;

}

.primary-btn{

background:linear-gradient(135deg,#ff6b00,#ff9800);

color:#fff;

box-shadow:0 12px 30px rgba(255,107,0,.35);

}

.primary-btn:hover{

transform:translateY(-6px);

box-shadow:0 18px 40px rgba(255,107,0,.45);

}

.secondary-btn{

border:2px solid var(--primary);

color:#fff;

background:transparent;

}

.secondary-btn:hover{

background:var(--primary);

}

/* Social */

.social-icons{

display:flex;

gap:18px;

margin-top:35px;

}

.social-icons a{

height:52px;

width:52px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:rgba(255,255,255,.08);

color:#fff;

font-size:20px;

transition:.4s;

}

.social-icons a:hover{

background:var(--primary);

transform:translateY(-8px) scale(1.08);

}

/* Profile */

.profile-card{

position:relative;

width:420px;

height:420px;

border-radius:50%;

overflow:hidden;

border:8px solid rgba(255,255,255,.08);

box-shadow:var(--shadow);

animation:float 5s ease-in-out infinite;

}

.profile-card img{

width:100%;

height:100%;

object-fit:cover;

}

.glow{

position:absolute;

inset:0;

background:linear-gradient(135deg,
transparent,
rgba(255,107,0,.15),
transparent);

animation:glowMove 5s linear infinite;

}

@keyframes glowMove{

0%{transform:translateX(-100%);}

100%{transform:translateX(100%);}

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

}

/* About */

.about{

padding:120px 0;

}

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title h2{

font-size:46px;

font-weight:800;

}

.section-title p{

color:#ccc;

margin-top:15px;

}

.about-grid{

display:grid;

grid-template-columns:1fr 1.3fr;

gap:60px;

align-items:center;

}

.about-image img{

width:100%;

border-radius:25px;

box-shadow:var(--shadow);

}

.about-content h3{

font-size:34px;

margin-bottom:20px;

}

.about-content p{

color:#d4d4d4;

margin-bottom:35px;

font-size:17px;

}

.info-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.info-card{

background:rgba(255,255,255,.05);

backdrop-filter:blur(12px);

padding:25px;

border-radius:18px;

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.info-card:hover{

transform:translateY(-10px);

background:rgba(255,107,0,.12);

}

.info-card h4{

margin-bottom:8px;

color:var(--primary);

}

/* Responsive */

@media(max-width:992px){

.hero{

flex-direction:column;

text-align:center;

padding-top:150px;

}

.hero p{

margin:auto;

}

.about-grid{

grid-template-columns:1fr;

}

.menu{

display:none;

}

.profile-card{

width:320px;

height:320px;

}

.hero h1{

font-size:50px;

}

.hero h2{

font-size:28px;

}

}