/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

title img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

/* Header Section */
.main-header {
position: fixed;
top: 0;
width: 100%;
height: 70px;
background: rgba(255, 255, 255, 0.95);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 3rem;
z-index: 1000;
backdrop-filter: blur(10px);
}

.logo {
display: flex;
align-items: center;
gap: 10px;
font-size: 2rem;
font-weight: bold;
color: #667eea;
}

.logo img {
width: 40px;
height: 40px;
margin-right: 10px;
}

.nav-links a {
text-decoration: none;
margin-left: 1.5rem;
font-size: 1.2rem;
cursor: pointer;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #333;
font-weight: 500;
transition: color 0.3s ease;
}

.nav-links a:hover {
color: #764ba2;
}

/* Background Image */

.homepageImg img {
position: left;
top: 40%;
left: 0;
width: 120vh;
height: 70vh;
background-size: cover;
background-color: #667eea;
border-radius: 150px;
object-fit: cover;
overflow: hidden;
z-index: -1;
mix-blend-mode:multiply;
}  

@media screen and (max-width: 768px) and (min-width: 480px) {
.homepageImg img {
  width: 100vh;
  height: 50vh;
}  
}


/* Fullscreen Gradient Background with Animation */
.home-page {
  height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, #95a8f7, #bc7dfb);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-family: "Segoe UI", sans-serif;
  overflow: hidden;
}



/* Card Container */
.home-container {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: white;
  max-width: 500px;
  margin: auto;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Icon */
.icon {
  width: 80px;
  margin-bottom: 1rem;
}

/* Typography */
.card h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card h1 span {
  color: #ffdd57;
}

.home-tagline {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #f0f0f0;
}

/* Buttons Section */
.home-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.3s;
  font-weight: bold;
  display: inline-block;
}

.primary {
  background: #ffdd57;
  color: #333;
  box-shadow: 0 0 10px #ffdd57;
}

.primary:hover {
  background: #fff176;
  box-shadow: 0 0 15px #ffe066;
}

.secondary {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.secondary:hover {
  background: white;
  color: #764ba2;
}

/* Footer Section */

footer {
  text-align: center;
  padding: 10px;
  background-color: transparent;
  color: white;
  margin-top: 30px;
  position: fixed;
  bottom: 0;
  width: 100%;
}



/* Responsive */
@media (max-width: 600px) {
  .card h1 {
    font-size: 2rem;
  }

  .home-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
