/* General Body Styles */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background-color: #eaf4ff;
  color: #333;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and Navigation */
.header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #007bff;
}

.cta-button {
  background-color: #007bff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.cta-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background-color: #eaf4ff;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.gradient-text {
  background: linear-gradient(135deg, #00419a 0%, #0084f7 50%, #00419a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 4.5rem;
  line-height: 1.2;
  padding-right: 4px;
  display: inline-block;
  position: relative;
  background-size: 200% auto;
  animation: shine 5s ease-in-out infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 58px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #00419a 0%, #0084f7 50%, #00419a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  padding-right: 4px;
  display: inline-block;
  position: relative;
  background-size: 200% auto;
  animation: shine 5s ease-in-out infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Features Grid Section */
.features-grid {
  padding: 80px 0;
  text-align: center;
}

.features-grid h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.feature-card img {
  max-width: 100%;
  border-radius: 5px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.5;
}

/* Alternating Features Section */
.alternating-features {
  padding: 80px 0;
  background-color: #fff;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.feature-item.reverse {
  flex-direction: row-reverse;
}

.feature-item-text {
  flex: 1;
}

.feature-item-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.feature-item-text p {
  font-size: 18px;
  line-height: 1.6;
}

.feature-item-image {
  flex: 1;
}

.feature-item-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  text-align: center;
}

.contact-form-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  padding: 60px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1;
}

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
}

.footer-column h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #007bff;
}

.social-links a {
  margin-right: 15px;
}

.social-links img {
  height: 24px;
}
