Spaces:
Running
Running
Upload 14 files
Browse files- .hintrc +15 -0
- Abhi.png +0 -0
- Abhijith.jpg +0 -0
- about.jpg +0 -0
- another.jpeg +0 -0
- github.png +0 -0
- gmail.png +0 -0
- index.html +141 -19
- linkedin.png +0 -0
- mybackground.jpeg +0 -0
- profile.pdf +0 -0
- project2.png +0 -0
- project3.png +0 -0
- style.css +540 -28
.hintrc
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"extends": [
|
3 |
+
"development"
|
4 |
+
],
|
5 |
+
"hints": {
|
6 |
+
"compat-api/css": [
|
7 |
+
"default",
|
8 |
+
{
|
9 |
+
"ignore": [
|
10 |
+
"backdrop-filter"
|
11 |
+
]
|
12 |
+
}
|
13 |
+
]
|
14 |
+
}
|
15 |
+
}
|
Abhi.png
ADDED
![]() |
Abhijith.jpg
ADDED
![]() |
about.jpg
ADDED
![]() |
another.jpeg
ADDED
![]() |
github.png
ADDED
![]() |
gmail.png
ADDED
![]() |
index.html
CHANGED
@@ -1,19 +1,141 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Portfolio Website</title>
|
7 |
+
<link rel="stylesheet" href="style.css">
|
8 |
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
|
9 |
+
</head>
|
10 |
+
<body>
|
11 |
+
|
12 |
+
<header class="parallax" id="home">
|
13 |
+
<nav>
|
14 |
+
<ul>
|
15 |
+
<li><a href="#home">Home</a></li>
|
16 |
+
<li><a href="#about">About</a></li>
|
17 |
+
<li><a href="#projects">Projects</a></li>
|
18 |
+
<li><a href="#contact">Contact</a></li>
|
19 |
+
</ul>
|
20 |
+
</nav>
|
21 |
+
</header>
|
22 |
+
|
23 |
+
<hr>
|
24 |
+
|
25 |
+
<div class="background-container">
|
26 |
+
<p>
|
27 |
+
<strong>Welcome to my portfolio!</strong><br><br>
|
28 |
+
I'm <strong>Abhijith Parimalla</strong>, a passionate Computer Science student specializing in Artificial Intelligence and Machine Learning at Vardhaman College of Engineering.
|
29 |
+
With a strong foundation in programming languages like <strong>Python, Java, and C++</strong>, I enjoy applying theoretical concepts to real-world challenges through collaborative projects.
|
30 |
+
My journey is driven by a constant desire to learn and stay ahead of technology trends, always seeking new opportunities to innovate and make an impact.
|
31 |
+
Explore my work to see how I'm pushing the boundaries of AI and ML!
|
32 |
+
</p>
|
33 |
+
|
34 |
+
<h2>Want to know more about me? Scroll down!</h2>
|
35 |
+
|
36 |
+
<span class="material-symbols-outlined">arrow_downward</span>
|
37 |
+
</div>
|
38 |
+
|
39 |
+
<div class="mywork">
|
40 |
+
<section id="about">
|
41 |
+
<div class="about-content">
|
42 |
+
<div class="about-text">
|
43 |
+
<h2>About Me</h2>
|
44 |
+
|
45 |
+
</div>
|
46 |
+
<div class="container">
|
47 |
+
<div class="slide">
|
48 |
+
<div class="box">
|
49 |
+
<h2>Bio Data</h2>
|
50 |
+
<p><b>Name:</b>AbhijithParimalla<br>
|
51 |
+
<b>DOB:</b>20-05-2005<br>
|
52 |
+
<b>Nationality:</b> Indian<br>
|
53 |
+
</p>
|
54 |
+
</div>
|
55 |
+
<div class="box">
|
56 |
+
<h2>Skills</h2>
|
57 |
+
<p>C<br>
|
58 |
+
C++<br>
|
59 |
+
Java<br>
|
60 |
+
Python<br>
|
61 |
+
Problem solving<br>
|
62 |
+
Web development</p>
|
63 |
+
</div>
|
64 |
+
<div class="box">
|
65 |
+
<h2>Interests and Hobbies</h2>
|
66 |
+
<p>Watching Movies<br>
|
67 |
+
Reading Books<br>
|
68 |
+
Watching Cricket<br>
|
69 |
+
</p>
|
70 |
+
</div>
|
71 |
+
|
72 |
+
</div>
|
73 |
+
</div>
|
74 |
+
<div class="about-image">
|
75 |
+
<img src="Abhijith.jpg" alt="Your Image">
|
76 |
+
</div>
|
77 |
+
</div>
|
78 |
+
</section>
|
79 |
+
<section id="projects">
|
80 |
+
<h2><b>My Projects</b></h2>
|
81 |
+
<div class="projects-container">
|
82 |
+
|
83 |
+
<div class="project-names">
|
84 |
+
<ul>
|
85 |
+
<li><a href="https://huggingface.co/spaces/abhi2400/Language_Translator" target="_blank" rel="noopener">Language Translator</a></li>
|
86 |
+
<li><a href="https://huggingface.co/spaces/abhi2400/youtube_video_downloader" target="_blank"rel="noopener">Video downloader</a></li>
|
87 |
+
<li><b>Apartment management system</b></li>
|
88 |
+
<li><b>Hospital management system</b></li>
|
89 |
+
<li><b>Cancer prediction Using Machine learning</b></li>
|
90 |
+
</ul>
|
91 |
+
</div>
|
92 |
+
|
93 |
+
|
94 |
+
<div class="project-images">
|
95 |
+
<div class="image-box">
|
96 |
+
<img src="project2.png" alt="Project 1">
|
97 |
+
</div>
|
98 |
+
<div class="image-box">
|
99 |
+
<img src="project3.png" alt="Project 2">
|
100 |
+
</div>
|
101 |
+
|
102 |
+
</div>
|
103 |
+
</div>
|
104 |
+
</section>
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
</div>
|
110 |
+
|
111 |
+
|
112 |
+
<section id="contact">
|
113 |
+
<footer>
|
114 |
+
<div class="contact-icons">
|
115 |
+
<div class="icon-container">
|
116 |
+
<a href="mailto:abhijeethparimalla@gmail.com" target="_blank" rel="noopener" aria-label="Email">
|
117 |
+
<img src="gmail.png" alt="Gmail Icon" class="icon">
|
118 |
+
</a>
|
119 |
+
<p>Email</p>
|
120 |
+
</div>
|
121 |
+
<div class="icon-container">
|
122 |
+
<a href="https://www.linkedin.com/in/abhijithparimalla/" target="_blank" rel="noopener" aria-label="LinkedIn">
|
123 |
+
<img src="linkedin.png" alt="LinkedIn Icon" class="icon">
|
124 |
+
</a>
|
125 |
+
<p>LinkedIn</p>
|
126 |
+
</div>
|
127 |
+
<div class="icon-container">
|
128 |
+
<a href="https://github.com/abhijeeth-pa" target="_blank" rel="noopener" aria-label="GitHub">
|
129 |
+
<img src="github.png" alt="GitHub Icon" class="icon">
|
130 |
+
</a>
|
131 |
+
<p>GitHub</p>
|
132 |
+
</div>
|
133 |
+
</div>
|
134 |
+
<div class="resume-container">
|
135 |
+
<a href="profile.pdf" class="resume-button" download>Download My Resume</a>
|
136 |
+
</div>
|
137 |
+
</footer>
|
138 |
+
</section>
|
139 |
+
|
140 |
+
</body>
|
141 |
+
</html>
|
linkedin.png
ADDED
![]() |
mybackground.jpeg
ADDED
![]() |
profile.pdf
ADDED
Binary file (43.7 kB). View file
|
|
project2.png
ADDED
![]() |
project3.png
ADDED
![]() |
style.css
CHANGED
@@ -1,28 +1,540 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
* {
|
2 |
+
margin: 0;
|
3 |
+
padding: 0;
|
4 |
+
box-sizing: border-box;
|
5 |
+
}
|
6 |
+
|
7 |
+
body, html {
|
8 |
+
font-family: Arial, sans-serif;
|
9 |
+
scroll-behavior: smooth;
|
10 |
+
height: 100%;
|
11 |
+
}
|
12 |
+
|
13 |
+
header {
|
14 |
+
position: fixed;
|
15 |
+
top: 0;
|
16 |
+
left: 0;
|
17 |
+
width: 100%;
|
18 |
+
height: 70px;
|
19 |
+
background-color: rgba(255, 255, 255, 0);
|
20 |
+
backdrop-filter: blur(10px);
|
21 |
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
22 |
+
display: flex;
|
23 |
+
justify-content: center;
|
24 |
+
align-items: center;
|
25 |
+
z-index: 10;
|
26 |
+
}
|
27 |
+
|
28 |
+
.header a {
|
29 |
+
color: rgb(214, 130, 27);
|
30 |
+
text-decoration: none;
|
31 |
+
font-weight: bold;
|
32 |
+
margin: 0 15px;
|
33 |
+
}
|
34 |
+
|
35 |
+
.header a:hover {
|
36 |
+
color: #f1c40f;
|
37 |
+
}
|
38 |
+
.background-container {
|
39 |
+
position: relative;
|
40 |
+
height: 100vh;
|
41 |
+
background-image: url('mybackground.jpeg');
|
42 |
+
background-size: cover;
|
43 |
+
background-position: center;
|
44 |
+
background-repeat: no-repeat;
|
45 |
+
display: flex;
|
46 |
+
flex-direction: column;
|
47 |
+
justify-content: center;
|
48 |
+
align-items: center;
|
49 |
+
text-align: center;
|
50 |
+
color: white;
|
51 |
+
font-family: 'Georgia', serif;
|
52 |
+
font-size: 20px;
|
53 |
+
line-height: 1.6;
|
54 |
+
padding: 20px;
|
55 |
+
}
|
56 |
+
|
57 |
+
|
58 |
+
.background-container::before {
|
59 |
+
content: "";
|
60 |
+
position: absolute;
|
61 |
+
top: 0;
|
62 |
+
left: 0;
|
63 |
+
height: 100%;
|
64 |
+
width: 100%;
|
65 |
+
background-color: rgba(0, 0, 0, 0.5);
|
66 |
+
z-index: 1;
|
67 |
+
}
|
68 |
+
|
69 |
+
|
70 |
+
.background-container p, .background-container h2 {
|
71 |
+
font-family:cursive;
|
72 |
+
position:relative;
|
73 |
+
z-index: 2;
|
74 |
+
color: white;
|
75 |
+
max-width: 800px;
|
76 |
+
}
|
77 |
+
.background-container p:hover, .background-container h2 :hover{
|
78 |
+
color: #80d3d3;
|
79 |
+
|
80 |
+
}
|
81 |
+
strong {
|
82 |
+
font-weight: bold;
|
83 |
+
color: #1a73e8;
|
84 |
+
}
|
85 |
+
|
86 |
+
p {
|
87 |
+
text-align: justify;
|
88 |
+
margin-bottom: 20px;
|
89 |
+
}
|
90 |
+
|
91 |
+
h2 {
|
92 |
+
text-align: center;
|
93 |
+
margin-top: 40px;
|
94 |
+
}
|
95 |
+
|
96 |
+
|
97 |
+
nav ul {
|
98 |
+
list-style: none;
|
99 |
+
display: flex;
|
100 |
+
gap: 20px;
|
101 |
+
margin-top: 20px;
|
102 |
+
}
|
103 |
+
|
104 |
+
nav ul li a {
|
105 |
+
color: goldenrod;
|
106 |
+
text-decoration:solid;
|
107 |
+
font-weight: bold;
|
108 |
+
font-size: 18px;
|
109 |
+
padding: 10px;
|
110 |
+
}
|
111 |
+
|
112 |
+
nav ul li a:hover {
|
113 |
+
background-color: rgba(214, 211, 18, 0.2);
|
114 |
+
border-radius: 5px;
|
115 |
+
}
|
116 |
+
|
117 |
+
section {
|
118 |
+
padding: 100px;
|
119 |
+
text-align: center;
|
120 |
+
color:#ccc;
|
121 |
+
}
|
122 |
+
|
123 |
+
|
124 |
+
#about, #projects {
|
125 |
+
height: 100vh;
|
126 |
+
display: flex;
|
127 |
+
align-items: center;
|
128 |
+
justify-content: center;
|
129 |
+
padding: 0 20px;
|
130 |
+
|
131 |
+
}
|
132 |
+
|
133 |
+
.about-content, .projects-content {
|
134 |
+
display: flex;
|
135 |
+
align-items: center;
|
136 |
+
justify-content: space-between;
|
137 |
+
width: 80%;
|
138 |
+
max-width: 1200px;
|
139 |
+
}
|
140 |
+
|
141 |
+
|
142 |
+
.about-text h2 {
|
143 |
+
font-size: 36px;
|
144 |
+
font-weight: bold;
|
145 |
+
text-align: center;
|
146 |
+
color: whitesmoke;
|
147 |
+
margin-bottom: 30px;
|
148 |
+
text-transform: uppercase;
|
149 |
+
letter-spacing: 2px;
|
150 |
+
border-bottom: 3px solid #4CAF50;
|
151 |
+
display: inline-block;
|
152 |
+
padding-bottom: 10px;
|
153 |
+
margin-right:40px;
|
154 |
+
}
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
.about-image img, .projects-image img {
|
161 |
+
width: 200px;
|
162 |
+
height: 200px;
|
163 |
+
object-fit: cover;
|
164 |
+
border-radius: 10%;
|
165 |
+
border: 2px solid #e7d213;
|
166 |
+
transition: transform 0.3s ease;
|
167 |
+
margin-left: 40px;
|
168 |
+
}
|
169 |
+
|
170 |
+
.about-image img:hover, .projects-image img:hover {
|
171 |
+
transform: translateY(-10%);
|
172 |
+
}
|
173 |
+
#projects h2 {
|
174 |
+
font-size: 36px;
|
175 |
+
font-weight: bold;
|
176 |
+
text-align: center;
|
177 |
+
color: whitesmoke;
|
178 |
+
margin-bottom: 30px;
|
179 |
+
text-transform: uppercase;
|
180 |
+
letter-spacing: 2px;
|
181 |
+
border-bottom: 3px solid #4CAF50;
|
182 |
+
display: inline-block;
|
183 |
+
padding-bottom: 10px;
|
184 |
+
margin-right:20px;
|
185 |
+
}
|
186 |
+
|
187 |
+
|
188 |
+
.mywork {
|
189 |
+
background-color:rgb(54, 69, 79);
|
190 |
+
background-size: cover;
|
191 |
+
background-position: center;
|
192 |
+
background-repeat: no-repeat;
|
193 |
+
display: flex;
|
194 |
+
flex-direction: column;
|
195 |
+
}
|
196 |
+
|
197 |
+
@media screen and (max-width: 768px) {
|
198 |
+
.about-content, .projects-content {
|
199 |
+
flex-direction: column;
|
200 |
+
text-align: center;
|
201 |
+
}
|
202 |
+
|
203 |
+
.about-text, .projects-text {
|
204 |
+
margin: 0;
|
205 |
+
padding: 0;
|
206 |
+
}
|
207 |
+
|
208 |
+
.about-image img, .projects-image img {
|
209 |
+
margin-top: 20px;
|
210 |
+
}
|
211 |
+
}
|
212 |
+
|
213 |
+
|
214 |
+
#contact {
|
215 |
+
height: 30vh;
|
216 |
+
background-image: url('Abhi.png');
|
217 |
+
background-size: cover;
|
218 |
+
background-position: center;
|
219 |
+
display: flex;
|
220 |
+
align-items: flex-end;
|
221 |
+
padding-left: 20px;
|
222 |
+
}
|
223 |
+
|
224 |
+
footer {
|
225 |
+
width: 100%;
|
226 |
+
display: flex;
|
227 |
+
justify-content: right;
|
228 |
+
padding-left: 20px;
|
229 |
+
}
|
230 |
+
|
231 |
+
.contact-icons {
|
232 |
+
display: flex;
|
233 |
+
align-items: center;
|
234 |
+
gap: 30px;
|
235 |
+
position: relative;
|
236 |
+
margin-top: 200px;
|
237 |
+
}
|
238 |
+
|
239 |
+
.icon-container {
|
240 |
+
display: flex;
|
241 |
+
flex-direction: column;
|
242 |
+
align-items: center;
|
243 |
+
text-align: center;
|
244 |
+
}
|
245 |
+
|
246 |
+
.icon-container p {
|
247 |
+
margin-top: 5px;
|
248 |
+
font-size: 14px;
|
249 |
+
color: white;
|
250 |
+
}
|
251 |
+
|
252 |
+
.contact-icons a {
|
253 |
+
display: inline-block;
|
254 |
+
width: 40px;
|
255 |
+
height: 40px;
|
256 |
+
}
|
257 |
+
|
258 |
+
|
259 |
+
.contact-icons .icon {
|
260 |
+
width: 100%;
|
261 |
+
height: 100%;
|
262 |
+
object-fit: contain;
|
263 |
+
transition: transform 0.3s ease;
|
264 |
+
}
|
265 |
+
|
266 |
+
.contact-icons .icon:hover {
|
267 |
+
transform: scale(1.1);
|
268 |
+
}
|
269 |
+
|
270 |
+
@media (max-width: 768px) {
|
271 |
+
#contact {
|
272 |
+
height: 20vh;
|
273 |
+
padding-left: 10px;
|
274 |
+
}
|
275 |
+
|
276 |
+
.contact-icons {
|
277 |
+
gap: 20px;
|
278 |
+
margin-top: 10px;
|
279 |
+
}
|
280 |
+
|
281 |
+
.icon-container p {
|
282 |
+
font-size: 12px;
|
283 |
+
}
|
284 |
+
|
285 |
+
.contact-icons a {
|
286 |
+
width: 30px;
|
287 |
+
height: 30px;
|
288 |
+
}
|
289 |
+
}
|
290 |
+
.resume-container {
|
291 |
+
text-align: center;
|
292 |
+
margin-top: 210px;
|
293 |
+
margin-left:30px;
|
294 |
+
}
|
295 |
+
|
296 |
+
.resume-button {
|
297 |
+
display: inline-block;
|
298 |
+
padding: 10px 20px;
|
299 |
+
font-size: 16px;
|
300 |
+
font-weight: bold;
|
301 |
+
color: #fff;
|
302 |
+
background-color: #007bff;
|
303 |
+
text-decoration: none;
|
304 |
+
border-radius: 5px;
|
305 |
+
transition: background-color 0.3s ease;
|
306 |
+
}
|
307 |
+
|
308 |
+
.resume-button:hover {
|
309 |
+
background-color: #0056b3;
|
310 |
+
}
|
311 |
+
|
312 |
+
.container {
|
313 |
+
display: flex;
|
314 |
+
justify-content: center;
|
315 |
+
width: 90%;
|
316 |
+
max-width: 1200px;
|
317 |
+
background-color: rgba(255, 255, 255, 0);
|
318 |
+
}
|
319 |
+
|
320 |
+
.slide {
|
321 |
+
display: flex;
|
322 |
+
gap: 20px;
|
323 |
+
flex-wrap: wrap;
|
324 |
+
justify-content: space-between;
|
325 |
+
}
|
326 |
+
|
327 |
+
.box {
|
328 |
+
background: linear-gradient(135deg, #00c6ff, #0072ff);
|
329 |
+
color:#fff;
|
330 |
+
width: 30%;
|
331 |
+
padding: 20px;
|
332 |
+
border-radius: 15px;
|
333 |
+
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
|
334 |
+
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
335 |
+
display: flex;
|
336 |
+
flex-direction: column;
|
337 |
+
justify-content: center;
|
338 |
+
text-align: center;
|
339 |
+
}
|
340 |
+
|
341 |
+
.box h2 {
|
342 |
+
font-size: 24px;
|
343 |
+
align-items:start;
|
344 |
+
margin-bottom:40px;
|
345 |
+
}
|
346 |
+
|
347 |
+
.box p {
|
348 |
+
font-size: 16px;
|
349 |
+
line-height: 1.5;
|
350 |
+
align-items: center;
|
351 |
+
}
|
352 |
+
|
353 |
+
.box:hover {
|
354 |
+
transform: translateY(-10px);
|
355 |
+
box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
|
356 |
+
}
|
357 |
+
|
358 |
+
@media (max-width: 900px) {
|
359 |
+
.box {
|
360 |
+
width: 45%;
|
361 |
+
}
|
362 |
+
}
|
363 |
+
|
364 |
+
@media (max-width: 600px) {
|
365 |
+
.box {
|
366 |
+
width: 100%;
|
367 |
+
}
|
368 |
+
}
|
369 |
+
|
370 |
+
|
371 |
+
.projects-content {
|
372 |
+
display: flex;
|
373 |
+
justify-content: center;
|
374 |
+
align-items: center;
|
375 |
+
gap: 20px;
|
376 |
+
padding: 50px;
|
377 |
+
text-align: center;
|
378 |
+
}
|
379 |
+
|
380 |
+
.project-names, .project-images {
|
381 |
+
display: flex;
|
382 |
+
flex-direction: column;
|
383 |
+
justify-content: center;
|
384 |
+
align-items: center;
|
385 |
+
}
|
386 |
+
|
387 |
+
.names-slider {
|
388 |
+
display: flex;
|
389 |
+
flex-direction: column;
|
390 |
+
gap: 10px;
|
391 |
+
}
|
392 |
+
|
393 |
+
.name-box {
|
394 |
+
background: linear-gradient(135deg, #00c6ff, #0072ff);
|
395 |
+
padding: 20px;
|
396 |
+
border-radius: 15px;
|
397 |
+
color: white;
|
398 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
399 |
+
transition: transform 0.3s ease;
|
400 |
+
}
|
401 |
+
|
402 |
+
.name-box:hover {
|
403 |
+
transform: translateY(-5px);
|
404 |
+
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
|
405 |
+
}
|
406 |
+
|
407 |
+
.name-box h3 {
|
408 |
+
font-size: 18px;
|
409 |
+
}
|
410 |
+
|
411 |
+
/* Big Slide for Project Images */
|
412 |
+
.project-images {
|
413 |
+
max-width: 60%;
|
414 |
+
}
|
415 |
+
|
416 |
+
.image-slider {
|
417 |
+
display: flex;
|
418 |
+
flex-direction: column;
|
419 |
+
gap: 10px;
|
420 |
+
}
|
421 |
+
|
422 |
+
.image-slider a {
|
423 |
+
display: block;
|
424 |
+
max-width: 100%;
|
425 |
+
transition: transform 0.3s ease;
|
426 |
+
}
|
427 |
+
|
428 |
+
.image-slider img {
|
429 |
+
width: 100%;
|
430 |
+
border-radius: 10px;
|
431 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
432 |
+
}
|
433 |
+
|
434 |
+
.image-slider a:hover img {
|
435 |
+
transform: scale(1.05);
|
436 |
+
}
|
437 |
+
|
438 |
+
/* Responsive Design */
|
439 |
+
@media (max-width: 768px) {
|
440 |
+
.projects-content {
|
441 |
+
flex-direction: column;
|
442 |
+
}
|
443 |
+
|
444 |
+
.project-images {
|
445 |
+
max-width: 90%;
|
446 |
+
}
|
447 |
+
}
|
448 |
+
.projects-container {
|
449 |
+
display: flex;
|
450 |
+
width: 80%;
|
451 |
+
max-width: 1200px;
|
452 |
+
height: 500px;
|
453 |
+
background-color: #fff;
|
454 |
+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
|
455 |
+
border-radius: 10px;
|
456 |
+
overflow: hidden;
|
457 |
+
}
|
458 |
+
|
459 |
+
|
460 |
+
.project-names {
|
461 |
+
width: 25%;
|
462 |
+
background: #1a73e8;
|
463 |
+
display: flex;
|
464 |
+
align-items: center;
|
465 |
+
justify-content: center;
|
466 |
+
}
|
467 |
+
|
468 |
+
.project-names ul {
|
469 |
+
list-style: none;
|
470 |
+
padding: 20px;
|
471 |
+
text-align: left;
|
472 |
+
}
|
473 |
+
|
474 |
+
.project-names li {
|
475 |
+
margin-bottom: 20px;
|
476 |
+
}
|
477 |
+
|
478 |
+
.project-names a {
|
479 |
+
color: #ffffff;
|
480 |
+
font-size: 18px;
|
481 |
+
text-decoration: none;
|
482 |
+
font-weight: bold;
|
483 |
+
display: block;
|
484 |
+
padding: 10px 15px;
|
485 |
+
transition: background-color 0.3s ease;
|
486 |
+
}
|
487 |
+
|
488 |
+
.project-names a:hover {
|
489 |
+
background-color: #004ba0;
|
490 |
+
border-radius: 5px;
|
491 |
+
}
|
492 |
+
|
493 |
+
.project-images {
|
494 |
+
width: 75%;
|
495 |
+
display: flex;
|
496 |
+
align-items: center;
|
497 |
+
justify-content: center;
|
498 |
+
overflow-x: scroll;
|
499 |
+
scroll-behavior: smooth;
|
500 |
+
background: #fafafa;
|
501 |
+
}
|
502 |
+
|
503 |
+
.project-images .image-box {
|
504 |
+
min-width: 100%;
|
505 |
+
display: flex;
|
506 |
+
justify-content: center;
|
507 |
+
align-items: center;
|
508 |
+
transition: transform 0.3s ease;
|
509 |
+
}
|
510 |
+
|
511 |
+
.project-images img {
|
512 |
+
max-width: 100%;
|
513 |
+
max-height: 60%;
|
514 |
+
border-radius: 10px;
|
515 |
+
transition: transform 0.3s ease;
|
516 |
+
}
|
517 |
+
|
518 |
+
.project-images .image-box:hover img {
|
519 |
+
transform: scale(1.05);
|
520 |
+
}
|
521 |
+
|
522 |
+
@media (max-width: 768px) {
|
523 |
+
.projects-container {
|
524 |
+
flex-direction: column;
|
525 |
+
height: auto;
|
526 |
+
}
|
527 |
+
|
528 |
+
.project-names {
|
529 |
+
width: 100%;
|
530 |
+
}
|
531 |
+
|
532 |
+
.project-images {
|
533 |
+
width: 100%;
|
534 |
+
height: 50px;
|
535 |
+
}
|
536 |
+
|
537 |
+
.project-images .image-box {
|
538 |
+
min-width: 100%;
|
539 |
+
}
|
540 |
+
}
|