:root {
  --primary: #0077cc;
  --primary-dark: #005fa3;
  --secondary: #1e2a38;
  --bg-light: #f2f5f9;
  --white: #ffffff;
  --gray: #666;
  --footer-bg: #2c2c2c;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  background: linear-gradient(135deg, #eaf2fb, #ffffff);
  color: #333;
  line-height: 1.6;
}
header {
  background-color: #1036f4;
  color: #fff;
  opacity: 0.9;
}
.logo a {
  text-decoration: none;
  color: white;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 8px;
  max-width: 1200px;
  margin: 0 auto;
}

nav ul {
  display: flex;
  gap: 15px;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
}

nav ul li {
  list-style: none;
}

ul li a button {
  padding: 8px 15px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-weight: 550;
}
main {
  padding: 10px 8px;
  max-width: 1200px;
  margin: 0 auto;
}

.first-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.first-section-top {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 60%;
  margin-top: 20px;
}

.first-section-top h1 {
  font-size: 35px;
  opacity: 0.8;
}

.first-section-top p {
  font-size: 18px;
  color: gray;
}

.bottom-line {
  width: 100px;
  height: 2px;
  background-color: green;
}
a {
  text-decoration: none;
}

/* Top CTA Section */
.cta-section {
  background: linear-gradient(135deg, #eaf2fb, #ffffff);
  padding: 60px 20px;
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-text {
  flex: 1 1 400px;
  min-width: 280px;
}

.cta-text h1 {
  font-size: 40px;
  font-weight: bold;
  color: #222;
  margin-bottom: 12px;
}

.cta-text p {
  color: #555;
  font-size: 12px;
  max-width: 500px;
}
.cta-text p a {
  text-decoration: underline;
}
.cta-button {
  display: inline-block;
  margin-top: 10px;
  padding: 15px 30px;
  /* background-color: var(--primary); */
  color: #111;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
  border: 1px solid #1036f4;
    cursor: pointer;
}
.cta-button a {
  color: #111;
}
.cta-image {
  flex: 1 1 300px;
  text-align: center;
}

.cta-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Services Section */
.section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
  color: var(--secondary);
}

.subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  margin-bottom: 50px;
}

.overview {
  background: linear-gradient(135deg, #ffffff, #f0f7ff);
  border-left: 6px solid var(--primary);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.overview h2 {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
  color: var(--primary);
}

.overview p {
  font-size: 16px;
  color: #444;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--secondary);
}

.card p {
  font-size: 15px;
  color: #555;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 40px 30px;
  margin-top: 70px;
  border-radius: 15px;
  color: #fff;
  text-align: center;
}

.contact-section h2 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: bold;
}

.contact-info p {
  font-size: 17px;
  margin: 6px 0;
}

.contact-info span {
  font-weight: 600;
  color: #ffffff;
}
/* ===== Footer Section ===== */
footer {
  background-color: var(--footer-bg);
  color: white;
  font-family: "Segoe UI", sans-serif;
  padding: 30px 20px 10px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #444;
  padding-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 50px;
}

.footer-logo span {
  font-size: 22px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: white;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--highlight);
}

.footer-bottom {
  text-align: center;
  padding: 15px 10px 5px;
  font-size: 14px;
  color: #ccc;
}

/* Responsive */
@media (max-width: 600px) {
  .title {
    font-size: 28px;
  }

  .cta-text h2 {
    font-size: 26px;
  }

  .subtitle,
  .overview p,
  .contact-info p,
  .cta-text p {
    font-size: 15px;
  } .footer-links {
        justify-content: center;
      }

      .footer-logo {
        justify-content: center;
      }
}
@media screen and (max-width: 768px) {
  .first-section-top {
    width: 100%;
  }
}
