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

body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

/* Navigation Bar with Company Name */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #007bff;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.navbar-company-name h1 {
  font-size: 1.6rem;
  color: #fff;
  margin: 0;
  font-weight: 300; /* Slim font */
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin-left: 20px;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #f0f0f0;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f0f4f8;
  color: #000;
  overflow: hidden;
  margin-top: 60px; /* To account for fixed navbar */
}

.hero-section p {
  font-size: 1.5rem;
  color: #333;
}

.cta-btn {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
  margin-top: 20px;
  display: inline-block;
}

.cta-btn:hover {
  background-color: #0056b3;
}

/* Server logos cluster */
.server-logos-cluster {
  position: absolute;
  bottom: 10%;
  left: 10%;
  display: flex;
  gap: 20px;
}

.server-logo {
  width: 50px;
  opacity: 0.8;
}

/* Chains Section */
.chains-section {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

.chains-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.chain-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  text-align: center;
}

.chain-logo {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.chain-logo img {
  width: 100px;
  transition: transform 0.3s ease;
}

.chain-logo p {
  font-size: 1rem;
  margin-top: 10px;
}

.chain-logo:hover {
  background-color: #eef3f8;
}

.chain-logo:hover img {
  transform: scale(1.1);
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.why-choose-us p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.feature h3 {
  font-size: 1.8rem;
  color: #007bff;
  margin-bottom: 15px;
}

.feature p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Contact Section */
.contact-section {
  padding: 50px 20px;
  text-align: center;
  background-color: #007bff;
  color: #fff;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-btn {
  background-color: #0056b3;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
}

.contact-btn:hover {
  background-color: #003d80;
}

/* Footer */
footer {
  background-color: #007bff;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
