Dillip Kumar Sahoo | Official Portfolio
Hello, I'm
Dillip Kumar Sahoo
Helping businesses with Customer Support,
Digital Marketing, Data Entry and Modern Web Solutions.
About Me
Hi,
I am Dillip Kumar Sahoo
from Odisha, India.
I am a graduate and passionate about Customer Support,
Digital Marketing, Website Development,
SEO and Data Entry.
I always enjoy learning new technologies and improving
my professional skills.
My goal is to provide high-quality work and create value
through dedication, honesty and continuous learning.
Education
🎓 Bachelor of Science (B.Sc)
PGDCA
Digital Marketing
Tally ERP
Experience
1+ Years Experience
RBM Group Of Security
Data Entry Operator
Supervisor
Skills
HTML
CSS
JavaScript
Digital Marketing
WordPress
SEO
Data Entry
MS Office
/*=============================
GOOGLE FONT
==============================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
/*=============================
RESET
==============================*/
*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
font-family:'Poppins',sans-serif;
}
/*=============================
BODY
==============================*/
body{
background:#090909;
color:#ffffff;
line-height:1.7;
overflow-x:hidden;
}
/*=============================
SCROLL BAR
==============================*/
::-webkit-scrollbar{
width:8px;
}
::-webkit-scrollbar-thumb{
background:#FFD700;
border-radius:20px;
}
/*=============================
HEADER
==============================*/
header{
position:fixed;
top:0;
left:0;
width:100%;
padding:18px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,.65);
backdrop-filter:blur(15px);
z-index:999;
border-bottom:1px solid rgba(255,255,255,.08);
}
/*=============================
LOGO
==============================*/
.logo{
font-size:32px;
font-weight:700;
color:#FFD700;
cursor:pointer;
}
/*=============================
NAVIGATION
==============================*/
nav ul{
display:flex;
gap:30px;
list-style:none;
}
nav a{
text-decoration:none;
color:#ffffff;
font-weight:500;
transition:.3s;
}
nav a:hover{
color:#FFD700;
}
/*=============================
HERO
==============================*/
.hero{
min-height:100vh;
padding:130px 8% 80px;
display:flex;
justify-content:space-between;
align-items:center;
gap:60px;
}
/*=============================
HERO TEXT
==============================*/
.hero-content{
flex:1;
}
.hero-content h3{
font-size:25px;
color:#FFD700;
margin-bottom:10px;
}
.hero-content h1{
font-size:65px;
font-weight:700;
line-height:1.1;
margin-bottom:15px;
}
.hero-content h2{
font-size:32px;
color:#3aa6ff;
margin-bottom:20px;
}
.hero-content p{
font-size:18px;
color:#cfcfcf;
max-width:650px;
margin-bottom:35px;
}
/*=============================
BUTTONS
==============================*/
.buttons{
display:flex;
gap:20px;
}
.btn{
padding:15px 35px;
background:#FFD700;
color:#000;
text-decoration:none;
border-radius:50px;
font-weight:700;
transition:.4s;
}
.btn:hover{
transform:translateY(-5px);
box-shadow:0 0 25px #FFD700;
}
.btn2{
padding:15px 35px;
border:2px solid #FFD700;
border-radius:50px;
text-decoration:none;
color:#FFD700;
transition:.4s;
}
.btn2:hover{
background:#FFD700;
color:#000;
}
/*=============================
PROFILE IMAGE
==============================*/
.hero-image{
flex:1;
display:flex;
justify-content:center;
}
.hero-image img{
width:370px;
height:370px;
border-radius:50%;
object-fit:cover;
border:8px solid #FFD700;
box-shadow:
0 0 20px #FFD700,
0 0 60px rgba(255,215,0,.4);
transition:.5s;
}
.hero-image img:hover{
transform:scale(1.05);
}
/*=============================
SECTION
==============================*/
section{
padding:90px 8%;
}
/*=============================
SECTION TITLE
==============================*/
section h2{
font-size:42px;
text-align:center;
margin-bottom:50px;
color:#FFD700;
}
/*=============================
ABOUT
==============================*/
.container{
max-width:1100px;
margin:auto;
}
.container p{
font-size:18px;
color:#ddd;
text-align:center;
margin-bottom:40px;
}
/*=============================
ABOUT BOX
==============================*/
.about-box{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}
.about-box div{
background:#111;
padding:35px;
border-radius:18px;
transition:.4s;
border:1px solid rgba(255,255,255,.08);
}
.about-box div:hover{
transform:translateY(-8px);
box-shadow:0 0 25px rgba(255,215,0,.25);
}
.about-box h3{
color:#FFD700;
margin-bottom:15px;
}
/*=============================
SKILLS
==============================*/
.skill-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}
.card{
background:#111;
padding:35px;
border-radius:18px;
text-align:center;
font-size:22px;
font-weight:600;
transition:.4s;
border:1px solid rgba(255,255,255,.08);
}
.card:hover{
background:#FFD700;
color:#000;
transform:translateY(-10px);
box-shadow:0 0 25px #FFD700;
}
/*=============================
FOOTER
==============================*/
footer{
padding:30px;
background:#050505;
text-align:center;
color:#888;
border-top:1px solid rgba(255,255,255,.05);
}
/*=============================
RESPONSIVE
==============================*/
@media(max-width:991px){
.hero{
flex-direction:column-reverse;
text-align:center;
}
.hero-content h1{
font-size:48px;
}
.hero-content h2{
font-size:26px;
}
.hero-image img{
width:280px;
height:280px;
}
.about-box{
grid-template-columns:1fr;
}
nav ul{
gap:15px;
font-size:14px;
}
}
@media(max-width:600px){
header{
padding:15px 5%;
}
.hero{
padding:120px 5% 70px;
}
.hero-content h1{
font-size:36px;
}
.hero-content p{
font-size:16px;
}
.buttons{
flex-direction:column;
}
.btn,.btn2{
width:100%;
text-align:center;
}
}
Comments
Post a Comment