* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0e0e0e;
  color: #ffffff;

}

/* Navbar */
header {
  background-color: #1a1a1a;
  padding: 20px 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;

}

.logo {
  font-size: 28px;
  font-weight: 600;
  color: #00ffee;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #ccc;
  font-weight: 500;
}

.nav-links a:hover {
  color: #00ffee;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  background: linear-gradient(to right, #0f0f0f, #1f1f1f);
}

.left {
  animation: slideInLeft 1s ease forwards;
}

.left h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
}

.left h2 span {
  color: #00ffee;
}

.left p {
  font-size: 18px;
  margin-bottom: 30px;
}
  
.search-box {
  display: flex;
  gap: 10px;
}

.search-box input {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  width: 250px;
  outline: none;
  font-size: 16px;
}

.search-box button {
  background-color: #00ffee;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.search-box button:hover {
  background-color: #0ff;
}

.hero-right img {
  width: 350px;
  border-radius: 20px;
  animation: imageIn 2s ease;
}

/* Journey Section */
.journey {
  padding: 60px 50px;
  background-color: #161616;
}

.journey h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #00ffee;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-item {
  background-color: #222;
  padding: 25px;
  border-left: 4px solid #00ffee;
  border-radius: 8px;
}

.timeline-item h3 {
  color: #00ffee;
  margin-bottom: 10px;
}

.timeline-item p {
  color: #ddd;
}

/* Footer */
footer {
  background-color: #121212;
  padding: 30px 50px;
  text-align: center;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid #333;
}

footer .socials a {
  color: #00ffee;
  text-decoration: none;
  margin: 0 10px;
}

footer .socials a:hover {
  text-decoration: underline;
}

/* Skills Section */
.skills {
  padding: 80px 50px;
  background-color: #0b0c10; 
  color: #c5c6c7;
}

.skills h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 50px;
  color: #fafafa; 
}

.skills h2 span {
  color: #66fcf1;
}

.skills-category {
  margin-bottom: 70px;
}

.skills-category h3 {
  font-size: 30px;
  margin-bottom: 25px;
  color: #45a29e;
  text-align: center;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.skill-card {
  background: #1f2833;
  border: 1px solid #45a29e; 
  padding: 30px 20px;
  width: 240px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);  
  cursor: pointer;
}

.skill-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: #16222a; 
}

.skill-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

.skill-card h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #66fcf1; 
}

.skill-card p {
  font-size: 15px;
  color: #c5c6c7;
  line-height: 1.4;
}

/* projrct page */
.hero-projects {
  height: 40vh;
  background: linear-gradient(to right, #1a1a1a, #222831);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-projects h1 {
  font-size: 48px;
  color: #00ffee;
}

.hero-projects p {
  margin-top: 10px;
  font-size: 20px;
}

/* Projects Section */
.projects-section {
  padding: 50px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.project-item {
  background: #222831;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  text-align: center;
  transition: 0.3s;
}

.project-item:hover {
  transform: translateY(-10px);
  background: #393e46;
}

.project-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.project-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #00adb5;
}

.project-item p {
  font-size: 16px;
  margin-bottom: 10px;
}

.project-link {
  margin-top: 10px;
  color: #00adb5;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.project-link:hover {
  color: #eeeeee;
  text-decoration: underline;
}

/* Design Projects Section */
.design-projects {
  margin-top: 80px;
  background: #222831;
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  text-align: center;
}

.design-projects p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #eeeeee;
}

.design-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.design-gallery img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s;
  border: 2px solid #00adb5;
}

.design-gallery img:hover {
  transform: scale(1.05);
  border-color: #eeeeee;
}


/* Video Section */
.project-video {
  margin-top: 50px;
  text-align: center;
}

.project-video h3 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #00adb5;
}


/* ABOUT Page */
.section-title {
  font-size: 28px;
  text-align: center;
  color: #0ff;
  margin: 40px 0 20px;
}

.about-hero {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  background-color: #333;
}

.about-container {
  display: flex;
  justify-content: space-between;
  gap: 70px;
}

.about-image img {
  width: 250px;
  border-radius: 50%;
}

.about-text {
  max-width: 600px;
}

.about-text h1 {
  font-size: 48px;
  color: #00ffee;
}

.experience-section, .education-section, .certification-section, .awards-section {
  padding: 40px 60px;
}

.experience-section h2, .education-section h2, .certification-section h2, .awards-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0ff;
}

.experience-list, .education-section ul, .certification-section ul, .awards-section ul {
  list-style-type: none;
  padding: 0;
}

.experience-item, .education-section p, .certification-section ul li, .awards-section ul li {
  margin-bottom: 15px;
}

/* CONTACT page */
.hero-section {
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(135deg, #00ffee, #0ff);
  color: #000;
}

.hero-section h1 {
  font-size: 50px;
  margin-bottom: 10px;
}

.hero-section p {
  font-size: 18px;
  color: #333;
}

.contact-form-section {
  padding: 80px 20px;
  background-color: #000;
  color: #ccc;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  background: #222;
  border: none;
  border-radius: 8px;
  color: #ccc;
  font-size: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.contact-form .btn {
  background: #00ffee;
  color: #000;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.contact-form .btn:hover {
  background: #0ff;
}

.contact-info {
  flex: 1;
  background: #111;
  padding: 30px;
  border-radius: 10px;
}

.contact-info h3 {
  margin-bottom: 20px;
  font-size: 26px;
  color: #00ffee;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.6;
}

/* Animations */
@keyframes slideInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes imageIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    gap: 30px;
  }

  .hero-left, .hero-right {
    max-width: 100%;
    text-align: center;
  }

  .hero-right img {
    width: 250px;
  }

  .search-box {
    flex-direction: column;
  }

  .search-box input {
    width: 100%;
  }

  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {

    align-items: center;
  }

  .skills-container {
    flex-direction: column;
    align-items: center;
}
}

