* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #eee;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Header */
header {
  background-color: #1a1a1a;
  padding: 20px 0;
  border-bottom: 1px solid #333;
}

header .container {
  display: flex;
  justify-content: space-between;
}
header h1 {
  font-size: 28px;
  color: #00ffcc;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #ccc;
  margin-right: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #00ffcc;
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(to right, #0f0f0f, #1e1e1e);


   background: url(./images/banner\ 4.jpg) no-repeat;
  background-size: 100% 100%;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #00ffcc;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  background-color: #00ffcc;
  color: #111;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
  display: inline-block;
  margin-top: 10px;
}

.btn:hover {
  background-color: #00ddb3;
}

/* Features */
.features {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.features h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  color: #00ffcc;
}

.feature-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.box {
  background-color: #222;
  padding: 20px;
  flex: 1 1 30%;
  margin: 10px;
  border-radius: 8px;
}

.box:hover {
  background-color: #2b2b2b;
}

.box h3 {
  color: #00ffcc;
  margin-bottom: 10px;
}




/* about */
.section {
  padding: 4rem 1rem;
  
}
.bg-light {
  background: #f1f5f9;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.text-center{
  text-align: center;
}







/* Footer */
footer {
  background-color: #111;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #333;
}

footer .container{
  display: flex;
  justify-content: space-between;
}

footer p {
  color: #666;
  margin-bottom: 10px;
}
