/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* General page background */
body {
  background-color: #0f172a;
  color: #f1f5f9; 
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}


/* Body styling */
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
}

/* Navbar styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #1e293b; 
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
}

/* Logo text */
.logo-img {
  height: 40px; 
  width: 40px;
  border-radius: 50%; 
  object-fit: cover;
}


/* Navigation links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #38bdf8;
}



/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

/* Nav links container */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

/* Individual link */
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Hover effect */
.nav-links a:hover {
  color: #007bff;
}
/* Hero Section */
.hero {
  background-image: url('images/image.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 1;
}
.hero-left, .hero-right {
  position: relative;
  z-index: 2;
}
.hero-left {
  background: rgba(255, 255, 255, 0.07);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  max-width: 600px;
  color: #f1f5f9;
}
.hero-left h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-left p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* About Me Section */
.about-section {
  padding: 60px 20px;
  background-color: #0f172a; 
  text-align: center;
  color: #f1f5f9; 
}
.about-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #e2e8f0;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin: auto;
}

.about-image,
.about-tech,
.about-extra {
  flex: 1;
  min-width: 280px;
  padding: 20px;
  background-color:  #1e293b;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.about-image img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 50%;
  border: 4px solid #6c63ff;
  display: block;
  margin: 0 auto;
}

.about-content h3 {
  color: #a78bfa;
  margin-bottom: 15px;
}

.about-content p {
  color:  #cbd5e1;;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .about-image img {
    max-width: 180px;
  }
}


.skills-section {
  padding: 40px 20px;
  text-align: center;
  background-color:  #0f172a;
  
}

.skills-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #f1f5f9
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.skill-card {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.skill-card i {
  font-size: 40px;
  margin-bottom: 10px;
}

.skill-card p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}
.projects-section {
  background-color: #0f172a;
  color: #f1f5f9;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 20px;
  margin: 2rem auto;
  max-width: 900px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.projects-section h2 {
  font-size: 2rem;
  color: #f1f5f9;
  margin-bottom: 20px;
}

.projects-description {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 10px;
}

.projects-coming-soon {
  font-style: italic;
  color: #888;
}
.contact-section {
  background-color: #0f172a;
  text-align: center;
  padding: 4rem 1rem;
  color: white;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-section p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.social-icons a {
  color: #94a3b8;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #38bdf8;
  transform: scale(1.2);
}


.social-links {
  margin-top: 20px;
}

.social-links a {
  margin: 0 10px;
  display: inline-block;
}

.social-links img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.social-links img:hover {
  transform: scale(1.2);
}
.site-footer {
  background-color: #0f172a;
  color: #f0f0f0;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0.3rem 0;
}

