* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html,
body {
  height: 100%;
  width: 100%;
  background-color: #e8fdf5;
  color: #2d3436;
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", sans-serif;
}

*::selection {
  color: #63d471;
  background-color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Navigation */
#nav {
  height: 80px;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: fixed;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0 auto;
  padding: 0;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
}

#nav li.name {
  padding-right: 300px;
  font-weight: bold;
  font-size: 30px;
  color: #27ae60;
}

#nav a {
  font-size: 16px;
  transition: color 0.3s;
}

#nav a:hover {
  color: #2ecc71;
}

#main {
  padding-top: 100px;
}

/* Hero Section */
#page1 {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #e8fdf5;
  color: #2d3436;
}

#page1 h1 {
  font-size: 60px;
  font-weight: 900;
  color: #1e824c;
}

#page1 h2 {
  font-size: 28px;
  margin-top: 10px;
  color: #333;
}

#page1 p {
  font-size: 18px;
  margin-top: 10px;
  color: #555;
  max-width: 600px;
}

/* Scroller */
#scroller {
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 30px 0;
}

#scroller-in {
  display: inline-block;
  animation: scroll 30s linear infinite;
}

#scroller h4 {
  display: inline-block;
  font-size: 50px;
  font-weight: 800;
  margin-right: 20px;
  color: transparent;
  -webkit-text-stroke: 1px #27ae60;
}

#scroller h4:hover {
  color: #63d471;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* About Us */
#about-us {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 50px;
  background-color: #fff;
  gap: 20px;
}

#about-us img {
  height: 200px;
  width: 200px;
  border-radius: 20px;
  object-fit: cover;
}

#about-us-in {
  width: 50%;
  text-align: center;
}

#about-us-in h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #222;
}

.about-us-1 {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* Cards */
#cards-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
  flex-wrap: wrap;
  background-color: #f9f9f6;
}

.card {
  width: 250px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(39, 174, 95, 0.678);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  text-align: center;
  padding: 20px;
}

.card:hover .overlay {
  opacity: 1;
}

.overlay h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 14px;
}

/* Pricing Table */
.table-container {
  width: 90%;
  margin: 50px auto;
  border-collapse: collapse;
}

.table-container th,
.table-container td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: center;
}

.table-container th {
  background-color: #2ecc71;
  color: #fff;
}

/* Testimonials */
#page3 {
  padding: 80px 20px;
  text-align: center;
  background-color: #ffffff;
}

#page3 p {
  font-size: 24px;
  line-height: 1.6;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

#page3 img {
  height: 40px;
  position: absolute;
}

#colon1 {
  top: 10%;
  left: 10%;
}

#colon2 {
  bottom: 10%;
  right: 10%;
}

/* Footer Grid */
#page4 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  gap: 40px;
  background-color: #eafaf1;
}

.elem {
  text-align: center;
}

.elem h2 {
  margin-bottom: 15px;
  color: #333;
}

.elem img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
}