:root {
  --primary: #22b5f3;
  --blue: #0071bc;
  --light: #f4f9ff;
  --dark: #1e1e1e;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 4px 16px rgba(0, 0, 0, .10);
  --transition: .3s ease,
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}
body {
  font-family: Poppins, sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.5
}
.hero {
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 40px;
  background: linear-gradient(135deg, #a5afff, var(--blue));
  display: flex;
  gap: 40px;
  justify-content: space-between;
  color: var(--white);
  lign-items: flex-start !important
}
.hero-left {
  flex: 1
}
.hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #fff
}
.hero-sub {
  opacity: .95;
  margin-bottom: 25px;
  font-size: 1rem
}
.quote-box {
  background: rgba(81, 153, 215, .9);
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 10px;
  font-style: italic
}
.quote-box small {
  display: block;
  margin-top: 6px;
  opacity: .9;
  font-weight: 600
}
.primary-btn {
  display: inline-block;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  min-width: 150px;
  text-align: center;
  border-radius: var(--radius);
  border: 2px solid var(--white);
  color: var(--white);
  transition: var(--transition)
}
.primary-btn:hover {
  background: var(--white);
  color: var(--blue)
}
.hero-right {
  background: var(--white);
  border-radius: 12px;
  padding: 25px;
  width: 380px;
  color: #333;
  box-shadow: var(--shadow);
  min-height: 350px !important;
  height:max-content;
}
.hero-right h3 {
  color: var(--blue);
  margin-bottom: 10px
}
.hero-right form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0 !important
}
.hero-right input, .hero-right button {
  padding: 12px;
  border-radius: var(--radius);
  font-size: 15px
}
.hero-right input {
  border: 1px solid #ccc
}
.hero-right button {
  background: linear-gradient(135deg, var(--primary), var(--blue));
  border: none;
  color: var(--white);
  font-weight: 600;
  cursor: pointer
}
@media(max-width:900px) {
  .hero {
    flex-direction: column;
    padding: 50px 25px
  }
  .hero-right {
    width: 100%
  }
}
.main-footer {
  background: #0a3d62;
  color: var(--white);
  padding: 60px 10%
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px
}
.footer-col h3 {
  color: var(--primary);
  margin-bottom: 15px
}
.footer-col ul {
  list-style: none
}
.footer-col ul li {
  margin-bottom: 8px
}
.footer-col ul li a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition)
}
.footer-col ul li a:hover {
  color: var(--primary)
}
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px
}
.social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  transition: var(--transition)
}
.social:hover {
  background: var(--primary);
  transform: translateY(-3px)
}
.footer-bottom {
  text-align: center;
  padding-top: 15px;
  margin-top: 1px;
  border-top: 1px solid rgba(255, 255, 255, .2)
}