/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: #fff;
}

/* Header */
header {
  background-color: #1a1a1a;
  padding: 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

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

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #f0a500;
}

.logo {
  font-family: 'Lobster', cursive; /* Applying the custom logo font */
  font-size: 26px; /* Adjusted font size for logo */
  font-weight: normal; /* No need for bold as the font is naturally stylized */
  color: #f0a500; /* Distinct color */
  letter-spacing: 1px; /* Slight letter spacing */
  text-transform: uppercase; /* Uppercase for a professional look */
  border: 1px solid #f0a500; /* Fine border for definition */
  padding: 5px 15px; /* Balanced padding */
  border-radius: 5px; /* Rounded corners for a soft finish */
  display: inline-block;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  color: #fff;
  background-color: #f0a500;
}




/* Home Section */
.home {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.home-content {
  margin-top: 20px;
}

.greeting {
  margin-bottom: 20px;
}

.greeting span {
  font-size: 24px;
  color: #f0a500;
}

.highlight {
  color: #f0a500;
}

h1 {
  font-size: 48px;
  margin: 10px 0;
}

p {
  font-size: 24px;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 20px 0;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
}

.social-icons .icon {
  display: inline-block;
  margin: 0 10px;
  font-size: 20px;
  color: #f0a500;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons .icon i {
  margin-right: 8px;
}

.social-icons .icon:hover {
  color: #fff;
}

/* Particles Container */
#particles-js {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}


html, body {
  height: 100%; /* Ensures the body takes the full height of the page */
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

header {
  padding: 20px;
  background-color: #333;
  color: #fff;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nav-links li a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
}

.projects-section {
  flex: 1; /* Allows the content section to take up available space */
  padding: 50px;
  text-align: center;
}

footer {
  background-color: #333; /* Example background color for the footer */
  color: white; /* Text color */
  text-align: center; /* Center the footer text */
  padding: 10px 0; /* Padding for spacing */
  position: relative; /* Ensure it can be positioned */
}


footer p {
  color: #f0a500;
}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1; /* This allows the content to take available space */
}

footer {
  background-color: #333; /* Example background color for the footer */
  color: white; /* Text color */
  text-align: center; /* Center the footer text */
  padding: 10px 0; /* Padding for spacing */
  position: relative; /* Ensure it can be positioned */
}

/* Additional existing styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%; /* Ensure the body takes up the full height */
}

body {
  display: flex;          /* Use Flexbox */
  flex-direction: column; /* Stack children vertically */
}

header {
  background: #333;      /* Adjust as needed */
  color: #fff;           /* Adjust as needed */
  padding: 10px 0;       /* Add some padding */
}

.kaggle-section {
  flex: 1; /* Allows the content section to take up available space */
  padding: 50px;
  text-align: center;
}

footer {
  background: #333;      /* Adjust as needed */
  color: #fff;           /* Adjust as needed */
  text-align: center;    /* Center the footer text */
  padding: 10px 0;       /* Add some padding */
}