
/* Background Image */
body {
    margin:0;
    padding: 0;
    font-family:  'Poppins', sans-serif;
    background: url('9.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    overflow-x: hidden; /* Prevent horiontal scrolling */
}

/* Overlay Layer */
.overlay {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.navbar a {
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  padding: 8px 16px;
  background-color: rgba(0,0,0,0.6);
  color: white;
  border-radius: 4px;
  font-size: 16px;
  transition: background-color 0.3s;
}

.navbar a:hover {
  background-color: rgba(255,255,255,0.3);
}

/* Highlight Hire Me button */
.hire-btn {
  background-color: rgba(255, 0, 0, 0.7);
  font-weight: bold;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

/* Cards Collage */
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

/* Card Styles */
.card {
    background-color: transparent;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 10px;
    padding: 20px;
    transition: transform 0.2s;
}
.card:hover {
    transform: scale(1.05);
}

/* Hamburger */
.hamburger {
  font-size: 28px;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;

  transition: 0.3s ease;
}

/* Side Menu Card */
.side-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 260px;
  height: 100%;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border-right: 1px solid rgba(255, 255, 255, 0.3);

  padding: 80px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;

  transition: 0.4s ease;
  z-index: 999;
}


/* When open */
.side-menu.active {
  left: 0;
}

/* Links */
.side-menu a {
  text-decoration: none;
  font-weight: 600;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.25);
}

.side-menu a:hover {
  transform: translateX(5px);
  transition: 0.3s;
}

#footer {
  text-align: center;
  padding: 20px 10px;
  background: rgba(0, 0, 0, 0.6); /* semi-transparent black */
  color: #ddd; /* light gray text for readability */
  font-size: 14px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* subtle top border */
  backdrop-filter: blur(5px); /* slight blur behind footer */
}

#footer a {
  color: #fff; /* white links */
  text-decoration: underline;
}

#footer a:hover {
  color: #ff4d4d; /* subtle red on hover */
}
/* Top Right Social Icons */
.top-social {
  position: fixed;
  top: 25px;
  right: 30px;
  z-index: 1000;
  display: flex;
  gap: 15px;
}

.top-social a {
  color: white;
  font-size: 22px;
  text-decoration: none;
  transition: 0.3s ease;
}

.top-social a:hover {
  transform: scale(1.2);
  opacity: 0.7;
}


