 /*body styling*/
/* General */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #ddd;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background:#000;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  font-size: 24px;
  font-weight: bold;
  color: #6c63ff;
}
.navbar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #ddd;
  transition: color 0.3s;
}
.navbar nav a:hover {
  color: #6c63ff;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  background: url('assests/img1.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 700px;
}
.hero-content h2 {
  font-size: 48px;
  margin-bottom: 15px;
  color: #fff;
}
.hero-content p {
  font-size: 18px;
  color: #ddd;
}

/* Features */
.features {
  padding: 60px 20px;
  text-align: center;
  background: #111;
}
.features h3 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #6c63ff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.feature-block {
  background: #222;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  
}
.feature-block p{
  color:#ccc;
}
.feature-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 15px rgba(108, 99, 255, 0.6);
}
.feature-block h4 {
  margin-bottom: 10px;
  color: #6c63ff;
}

/* About */
.about {
  padding: 60px 20px;
  text-align: center;
  background: #1a1a1a;
}
.about h3 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #6c63ff;
}
.about p {
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
  color: #ccc;
}

/* Contact */
.contact {
  padding: 60px 20px;
  text-align: center;
  background: #111;
}
.contact h3 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #6c63ff;
}
form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
form input, form textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #222;
  color: #ddd;
}
form button {
  padding: 12px;
  background: #6c63ff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
form button:hover {
  background: #5848d6;
}
#formMsg {
  margin-top: 10px;
  font-size: 14px;
}

/* Footer */
.footer {
  background: #000;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
.footer p{
  color:#ccc;
}
.footer a {
  color: #6c63ff;
  text-decoration: none;
} 
.footer a:hover {
  text-decoration: underline;
}