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

body {
  font-family: sans-serif;
}

:root {
  --primary-color: #6366f1;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
}
.gradient-bg {
  background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
}

.gradient-text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link {
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.hero-section {
  background: url("amn.jpg") no-repeat center center / cover;
  position: relative;
  padding: 6rem 1rem;
  min-height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* start */
.text-big {
  font-size: 41px;
  color: #8b5cf6;
  font-style: italic;
}

.text-small {
  color: #086470;
}

.btn {
  padding: 8px 20px;
  margin: 7px;
  border: 2px solid white;
  border-radius: 8px;
  background: local;
  color: white;
  cursor: pointer;
}

.section {
  height: 500px;
  display: flex;
  align-items: centre;
  justify-content: center;
  max-width: 80%;
  margin: auto;
}
.left {
  flex-direction: row-reverse;
}

.paras {
  padding: 0px 60px;
}

.footer {
  background-color: #222;
  color: #f1f1f1;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
}

.footer-left {
  flex: 1 1 250px;
  margin-bottom: 20px;
}

.footer-left h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-left p {
  font-size: 14px;
  color: #ccc;
}

.footer-links,
.footer-social {
  flex: 1 1 150px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-links a,
.footer-social a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #00bcd4;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 13px;
  color: #888;
}
