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

/* Body and Fonts */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
  scroll-behavior: smooth;
}

/* Header */
header {
  background: #ffffff;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  z-index: 999;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.logo span {
  color: #DA2349;
  font-size: 20px;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #DA2349;
  text-decoration: none;
  font-size: 18px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: #DA2349;
  cursor: pointer;
  position: absolute; 
  right: 20px;  
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Menu toggle visible on mobile */
  .menu-toggle {
    display: block;
  }

  /* Navigation Menu */
  nav ul {
    display: none;  /* Hide menu by default */
    flex-direction: column;
    text-align: left;
    padding-top: 20px;
    background-color: #DA2349;
    width: 250px;  /* Fixed width for side menu */
    height: 100vh;  /* Full height */
    position: absolute;
    top: 0;
    left: -250px;  /* Start off-screen to the left */
    border-radius: 8px;
    transition: 0.3s ease-in-out;
  }

  /* Show the menu when active */
  nav.active ul {
    display: flex;
    left: 0;  /* Move menu into view */
  }

  nav ul li {
    padding: 15px 20px;
    margin: 5px 0;
  }

  nav ul li a {
    color: #fff; /* White text for contrast */
  }

  nav ul li a:hover {
    background-color: #003366;
  }
  .logo span {
    color: #DA2349;
    font-size: 15px;
    font-weight: bold;
  }
}



.projects-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    padding: 20px;
  }
  
  .projects-gallery img {
    max-width: 290px;
    height: 290px; 
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .projects-gallery img:hover {
    transform: scale(1.05);
  }
  

  /* Footer */
footer {
  background-color: #801127b3;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 16px;
}
