:root {
  --head-primary: #2297f0;
  --head-dark: #1b47a0;
  --head-text: #222;
  --head-bg: #ffffff;
  --head-shadow: rgba(0,0,0,0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.head-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--head-bg);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.head-scrolled {
  box-shadow: 0 4px 12px var(--head-shadow);
}

.head-container {
  margin: auto;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.head-logo img {
  height: 50px;
}

.head-nav {
  display: flex;
  gap: 30px;
}

.head-nav-link {
  text-decoration: none;
  color: #120b03cc;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.head-nav-link:hover,
.head-active {
  color: var(--head-primary);
}

.head-btn {
  padding: 8px 26px;
  border-radius: 50px;
  background: linear-gradient(to right, var(--head-primary), var(--head-dark));
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.head-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.head-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.head-hamburger span {
  width: 25px;
  height: 3px;
  background: var(--head-text);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .head-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
    box-shadow: 0 10px 20px var(--head-shadow);
  }

  .head-nav-open {
    display: flex;
  }

  .head-cta {
    display: none;
  }

  .head-hamburger {
    display: flex;
  }
}

/* section 1  */

.sec1-wrapper {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  background: radial-gradient(
      circle at top left,
      rgba(56, 189, 248, 0.25),
      transparent 45%
    ),
    linear-gradient(135deg, #1e3a8a, #0f172a);
}

.sec1-container {
  max-width: 900px;
  text-align: center;
}

/* Badge */
.sec1-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #e0f2fe;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 32px;
  backdrop-filter: blur(6px);
}

.sec1-badge-icon {
  color: #38bdf8;
  font-size: 16px;
}

/* Heading */
.sec1-heading {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.1;
}

/* Subtext */
.sec1-subtext {
  max-width: 700px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.6;
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {
  .sec1-wrapper {
    min-height: auto;
    padding: 80px 16px;
  }

  .sec1-subtext {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .sec1-badge {
    font-size: 14px;
    padding: 10px 18px;
  }

  .sec1-subtext {
    font-size: 16px;
  }
}

/* form section  */

.form-section {
  padding: 80px 20px;
  background: #f7f9fc;
}

.form-wrapper {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
}

/* ===================================
   LEFT SIDE
=================================== */
.form-left h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.form-left p {
  margin-bottom: 25px;
}

.form-info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.form-info-icon {
  width: 48px;
  height: 48px;
  background: #e8f2ff;
  color: var(--head-primary);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;  
  font-size: 20px;
}

.form-info-box h4 {
  margin-bottom: 3px;
  font-size: 16px;
}

/* STRATEGY CALL CARD */
.form-call-card {
  background: linear-gradient(135deg, var(--head-primary), #0c1c2b);
  padding: 30px;
  margin-top: 40px;
  border-radius: 20px;
  color: #fff;
}

.form-call-title {
  display: flex;
  align-items: center;
  font-size: 18px;
  gap: 10px;
  margin-bottom: 10px;
}

.form-call-card p {
  opacity: .9;
  margin-bottom: 25px;
}

.form-call-btn {
  background: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  color: var(--head-dark);
  font-weight: 600;
  width: 100%;
}

a{
    text-decoration: none;
}

/* ===================================
   RIGHT FORM
=================================== */
.form-right {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--head-shadow);
}

.form-right h2 {
  margin-bottom: 5px;
}

.form-right p {
  color: #555;
  margin-bottom: 30px;
}

.form-fields label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--head-primary);
  box-shadow: 0 0 0 3px rgba(34, 151, 240, 0.15);
  outline: none;
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--head-primary), var(--head-dark));
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.form-submit-btn:hover {
  opacity: 0.9;
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 1000px) {
  .form-wrapper {
    grid-template-columns: 1fr;
  }

  .form-right {
    order: 1;
  }
}

@media (max-width: 600px) {

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-right {
    padding: 25px;
  }

  .form-call-card {
    padding: 25px;
  }
}

/* footer section  */

.sec-footer-wrapper {
  background: #0f172a;
  color: #cbd5e1;
  padding: 80px 20px 30px;
}

/* Main grid */
.sec-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
}

/* Brand */
.sec-footer-logo {
  margin-bottom: 24px;
  width: 15%;
  border-radius: 12px;
}

.sec-footer-desc {
  max-width: 420px;
  font-size: 18px;
  line-height: 1.6;
  color: #94a3b8;
}

/* Titles */
.sec-footer-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 22px;
}

/* Links */
.sec-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sec-footer-list li {
  margin-bottom: 14px;
}

.sec-footer-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.sec-footer-list a:hover {
  color: #38bdf8;
}

/* Contact */
.sec-footer-contact p {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 14px;
}

/* Divider */
.sec-footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sec-footer-bottom p {
  font-size: 15px;
  color: #94a3b8;
}

/* Legal links */
.sec-footer-legal {
  display: flex;
  gap: 30px;
}

.sec-footer-legal a {
  color: #94a3b8;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sec-footer-legal a:hover {
  color: #38bdf8;
}

/* Responsive */
@media (max-width: 900px) {
  .sec-footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sec-footer-desc {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .sec-footer-wrapper {
    padding: 60px 16px 24px;
  }

  .sec-footer-desc,
  .sec-footer-list a,
  .sec-footer-contact p {
    font-size: 16px;
  }

  .sec-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
