/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header & Navigation */
.header {
  background: #002b5c;
  color: #fff;
  padding: 1rem 0;
}
.logo {
  float: left;
  font-size: 1.5rem;
}
.nav {
  float: right;
}
.nav a {
  color: #fff;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 500;
}
.nav a:hover {
  text-decoration: underline;
}
.header::after {
  content: '';
  display: table;
  clear: both;
}

/* Hero Section */
.hero {
  background: url('hero-bg.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero .btn {
  background: #ffbf00;
  color: #002b5c;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 2px;
}
.hero .btn:hover {
  background: #e0a800;
}

/* About Section */
.about {
  background: #f4f4f4;
  padding: 2rem 0;
}
.about h3 {
  text-align: center;
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  padding: 2rem 0;
}
.services h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}
.service-list {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.service-item {
  background: #fff;
  padding: 1rem;
  border: 1px solid #ddd;
  flex: 1 1 250px;
  text-align: center;
}

/* Contact Section */
.contact {
  background: #f4f4f4;
  padding: 2rem 0;
}
.contact form {
  max-width: 600px;
  margin: auto;
  display: grid;
  gap: 1rem;
}
.contact input,
.contact textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
}
.contact button {
  background: #002b5c;
  color: #fff;
  border: none;
  padding: 0.75rem;
  cursor: pointer;
}
.contact button:hover {
  background: #00417a;
}

/* Footer */
.footer {
  background: #002b5c;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}


/* Reset some defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Banner */
.hero-banner {
  background-image: url('https://source.unsplash.com/1600x900/?technology,nature');
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

/* Optional overlay for better text contrast */
.hero-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  padding: 20px;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: center;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  text-align: center;
}

.cta-button {
  background-color: #ff6600;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e65c00;
}

.hero-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.background-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  color:aliceblue;
  padding: 20px;
}

.cta-button {
  background: #ff6600;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #e65c00;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}


.login-container {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
}

.login-container h2 {
  margin-bottom: 1.5rem;
  text-align: center;
  color: #333;
}

.input-group {
  margin-bottom: 1rem;
}

.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #555;
}

.input-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.login-btn {
  width: 100%;
  padding: 0.75rem;
  background-color: #4CAF50;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-btn:hover {
  background-color: #45a049;
}

#error-message {
  margin-top: 1rem;
  color: red;
  text-align: center;
  font-size: 0.9rem;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.6));
  z-index: -1;
}



.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Dark overlay to enhance text visibility */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.6));
  z-index: -1;
}







