@import url("https://fonts.googleapis.com/css2?family=Michroma&family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --theme-primary: #ffa602;
  --theme-primary-dark: #de9000;
  --theme-white: #ffffff;
  --theme-text: #1f1f1f;
  --theme-muted: #616161;
  --theme-soft: #fff8ec;
  --theme-border: #ffd08a;
  --navy: #0a1c3a;
  --navy-deep: #010e43;
  --ink: #021a62;
  --muted: #5f6780;
  --panel: #f6f8ff;
  --shadow: 0 18px 50px rgba(2, 20, 70, 0.08);
  --footer-bg: #010e43;
  --footer-muted: rgba(255, 255, 255, 0.82);
  --footer-border: rgba(255, 166, 2, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: var(--theme-text);
  background: #fff;
}

main {
  display: block;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

p {
  color: var(--theme-muted);
  line-height: 1.8;
}

.section-padding-100 {
  padding: 100px 0;
}

.section-padding-100-70 {
  padding: 100px 0 70px;
}

.section-header {
  margin-bottom: 40px;
}

.section-title {
  font-family: "Michroma", sans-serif;
  font-size: 34px;
  margin-bottom: 12px;
  color: var(--theme-text);
}

.section {
  padding: 90px 0;
  background: #fff;
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-primary-dark);
  margin-bottom: 10px;
}

.kicker-light {
  color: #ffcc4d;
}

.section-head h2 {
  color: var(--ink);
  font-size: 42px;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.section-head p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  filter: blur(6px);
  transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  gap: 10px;
}

.btn-pill-primary {
  background: var(--theme-primary);
  color: var(--navy) !important;
  box-shadow: 0 10px 30px rgba(255, 166, 2, 0.28);
}

.btn-pill-primary:hover {
  background: #ffb11f;
}

.btn-pill-outline {
  background: #fff;
  border-color: #e7eaf4;
  color: var(--ink) !important;
}

.btn-pill-outline:hover {
  border-color: #d7dcf1;
}

.btn-pill-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff !important;
}

.btn-pill-dark:hover {
  background: rgba(255, 255, 255, 0.14);
}

@keyframes floaty {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes shine {
  0% {
    transform: translateX(-120%) skewX(-20deg);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  60% {
    transform: translateX(220%) skewX(-20deg);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.dream-btn,
.login-btn {
  position: relative;
  overflow: hidden;
}

.dream-btn:before,
.login-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(-120%) skewX(-20deg);
  opacity: 0;
}

.dream-btn:hover:before,
.login-btn:hover:before {
  animation: shine 900ms ease;
}

.section-services .service-card,
.work-card,
.process-card,
.testimonial-card {
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.section-services .service-card:hover,
.work-card:hover,
.process-card:hover,
.testimonial-card:hover {
  transform: translate3d(0, -6px, 0);
  box-shadow: var(--shadow);
}

.section-services {
  background: #fff;
}

.service-card {
  background: #fff;
  border: 1px solid #eef1f7;
  border-radius: 18px;
  padding: 22px;
  height: 100%;
  box-shadow: 0 10px 28px rgba(2, 20, 70, 0.05);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 28, 58, 0.06);
  color: var(--ink);
  margin-bottom: 14px;
}

.service-card h4 {
  color: var(--ink);
  font-size: 18px;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.service-link {
  color: var(--ink) !important;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link i {
  color: var(--theme-primary-dark);
}

.section-why {
  background: #fff;
}

.why-panel {
  background: var(--navy-deep);
  border-radius: 26px;
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.why-panel:before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 166, 2, 0.16);
}

.why-panel h2 {
  color: #fff;
  font-size: 36px;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.why-panel p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.why-card i {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 166, 2, 0.16);
  color: #ffcc4d;
}

.why-card span {
  font-weight: 600;
  font-size: 13px;
}

.section-stats {
  background: #fff;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.stat-card {
  background: #fff;
  border: 1px solid #eef1f7;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(2, 20, 70, 0.06);
}

.stat-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
}

.stat-card p {
  margin: 8px 0 0;
  font-weight: 600;
  color: #66708a;
}

.section-work {
  background: #fff;
}

.work-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.work-head h2 {
  color: var(--ink);
  font-size: 42px;
  margin: 0 0 8px;
}

.work-head p {
  margin: 0;
  color: var(--muted);
}

.work-all {
  color: var(--ink) !important;
  font-weight: 700;
}

.work-tabs {
  display: inline-flex;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid #eef1f7;
  background: #fff;
  box-shadow: 0 10px 24px rgba(2, 20, 70, 0.05);
  margin-bottom: 18px;
}

.tab-btn {
  border: 0;
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4c556f;
}

.tab-btn.is-active {
  background: rgba(255, 166, 2, 0.22);
  color: var(--ink);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.work-card {
  background: #fff;
  border: 1px solid #eef1f7;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(2, 20, 70, 0.06);
  position: relative;
}

.work-card img {
  width: 100%;
  display: block;
  background: #fff;
}

.work-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 28, 58, 0.86);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
}

.work-meta {
  padding: 14px 14px 16px;
}

.work-meta h4 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--ink);
}

.work-meta p {
  margin: 0;
  font-size: 13px;
  color: #6a738c;
}

.work-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255, 166, 2, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 250ms ease;
}

.work-card:hover:after {
  opacity: 1;
}

.section-about {
  background: #fff;
}

.about-visual {
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid #eef1f7;
}

.about-points {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.about-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3d4661;
  font-weight: 600;
}

.about-points i {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: rgba(255, 166, 2, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.section-process {
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.process-card {
  background: #fff;
  border: 1px solid #eef1f7;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(2, 20, 70, 0.06);
}

.process-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255, 166, 2, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  margin-bottom: 12px;
}

.process-card h4 {
  color: var(--ink);
  margin-bottom: 8px;
}

.process-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.section-testimonials {
  background: #fff;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #eef1f7;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(2, 20, 70, 0.06);
  height: 100%;
}

.stars {
  display: flex;
  gap: 4px;
  color: #ffcc4d;
  margin-bottom: 12px;
}

.quote {
  font-size: 14px;
  color: #5f6780;
  margin-bottom: 16px;
}

.t-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-person img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid #eef1f7;
}

.t-person strong {
  display: block;
  color: var(--ink);
}

.t-person span {
  display: block;
  font-size: 12px;
  color: #7a839e;
}

.section-faq {
  background: #fff;
}

.faq-side {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 8px 8px 8px 0;
  box-shadow: none;
  position: sticky;
  top: 110px;
}

.faq-side h2 {
  color: var(--ink);
  font-size: 54px;
  line-height: 1.03;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.faq-side h2 span {
  color: var(--theme-primary);
}

.faq-side p {
  color: #5c6784;
  font-weight: 600;
  margin-bottom: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e9edf6;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(2, 20, 70, 0.04);
}

.faq-q {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.faq-plus {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: transparent;
  position: relative;
  flex: 0 0 24px;
}

.faq-plus:before,
.faq-plus:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 200ms ease;
}

.faq-plus:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-q[aria-expanded="true"] .faq-plus:after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-a {
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  display: none;
}

.section.section-cta,
.section.section-cta:nth-of-type(even) {
  background: #fff;
  padding: 32px 0 0;
  position: relative;
  border-top: 1px solid #f0f2f8;
}

.section-cta:before {
  display: none;
}

.cta-band {
  position: relative;
  z-index: 1;
  background: linear-gradient(125deg, #081f71 0%, #02144b 55%, #031861 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 18px;
  align-items: center;
  box-shadow: 0 18px 36px rgba(0, 13, 52, 0.22);
}

.cta-rocket {
  width: 132px;
  height: 132px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floaty 6s ease-in-out infinite;
}

.cta-rocket img {
  width: 110px;
  height: 110px;
}

.cta-text h2 {
  color: #fff;
  margin: 0 0 6px;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.8px;
}

.cta-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cta-band .btn-pill-primary {
  min-width: 148px;
  height: 44px;
  background: var(--theme-primary);
  color: #08215e !important;
}

.cta-band .btn-pill-dark {
  min-width: 164px;
  height: 44px;
  background: #fff;
  border-color: #fff;
  color: #0a245f !important;
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  padding: 24px 0 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.1fr;
  gap: 20px;
  padding: 0 0 26px;
  border-bottom: 1px solid #edf1f8;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0b2a74 !important;
  font-size: 22px;
  font-weight: 800;
  text-transform: lowercase;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: contain;
}

.footer h5 {
  color: #102e74;
  font-size: 16px;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}

.footer-col {
  min-width: 0;
}

.footer-desc {
  color: #5d6885;
  margin-top: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.75;
}

.footer .footer-links a {
  color: #5d6885 !important;
  font-size: 14px;
}

.footer .footer-links a:hover {
  color: #0a2e7f !important;
}

.footer-links li {
  margin-bottom: 10px;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 12px;
}

.newsletter input {
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  padding: 0 14px;
  color: #fff;
  outline: none;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.newsletter button {
  height: 44px;
  border-radius: 12px;
  border: 0;
  padding: 0 16px;
  font-weight: 800;
  background: var(--theme-primary);
  color: var(--navy);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  color: #7a859f;
  font-size: 13px;
}

.footer-bottom-links {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.footer-bottom-links a {
  color: #7a859f !important;
}

.footer-bottom-links a:hover {
  color: #0a2e7f !important;
}

.footer-contact i {
  width: 18px;
  color: #0a2e7f;
  margin-right: 6px;
}

.section-cta,
.section-cta .container,
.footer,
.footer-bottom {
  margin-bottom: 0 !important;
}

@media (max-width: 1199px) {
  .hero-service-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .section {
    padding: 70px 0;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-side {
    position: static;
  }

  .faq-side h2 {
    font-size: 42px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-text h2 {
    font-size: 38px;
  }

  .cta-actions {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .contact-modal-dialog {
    max-height: calc(100vh - 24px);
  }

  .contact-modal-grid {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 24px);
  }

  .contact-modal-right {
    border-left: 0;
    border-top: 1px solid #edf1f8;
  }

  .contact-modal-left h3 {
    font-size: 42px;
  }

  .contact-side-card h4 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .contact-modal {
    padding: 8px;
  }

  .contact-modal-dialog {
    max-height: calc(100vh - 16px);
    border-radius: 16px;
  }

  .contact-modal-grid {
    max-height: calc(100vh - 16px);
  }

  .contact-modal-close {
    right: 8px;
    top: 8px;
    width: 34px;
    height: 34px;
  }

  .work-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .work-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer {
    padding-top: 24px;
  }

  .footer-brand {
    font-size: 20px;
  }

  .cta-text h2 {
    font-size: 30px;
  }

  .contact-modal-left {
    padding: 20px 16px;
  }

  .contact-modal-right {
    padding: 18px 16px;
  }

  .contact-modal-left h3 {
    font-size: 34px;
    line-height: 1.06;
  }

  .contact-side-card h4 {
    font-size: 28px;
    line-height: 1.08;
  }

  .contact-modal-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .contact-modal {
    padding: 4px;
  }

  .contact-modal-dialog {
    border-radius: 14px;
    max-height: calc(100vh - 8px);
  }

  .contact-modal-grid {
    max-height: calc(100vh - 8px);
  }

  .contact-modal-left {
    padding: 18px 12px 14px;
  }

  .contact-modal-subtitle {
    font-size: 15px;
  }

  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    font-size: 13px;
  }

  .contact-modal-right {
    display: none;
  }
}

/* Final Responsive Hardening */
.navbar-dark .navbar-toggler {
  border-color: #dfe5f3;
  background: #fff;
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%230a245f' stroke-width='2.2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}

.work-tabs {
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
}

.work-tabs .tab-btn {
  flex: 0 0 auto;
}

.cta-band {
  grid-template-columns: minmax(110px, 132px) 1fr auto;
}

.footer-bottom-links {
  flex-wrap: wrap;
}

.contact-modal-left {
  overscroll-behavior: contain;
}

.contact-field input,
.contact-field select,
.contact-field textarea,
.btn-pill,
.contact-submit,
.login-btn,
.dream-btn,
.more-btn {
  touch-action: manipulation;
}

@media (max-width: 991px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section {
    padding: 56px 0;
  }

  .section-head p,
  .hero-v2-content p {
    font-size: 15px;
  }

  .footer-bottom {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .navbar-brand {
    font-size: 21px;
  }

  .navbar-brand img {
    width: 38px;
    height: 38px;
    margin-right: 8px;
  }

  .login-btn,
  .dream-btn,
  .more-btn {
    min-width: 100%;
  }

  .hero-v2-content h1 {
    font-size: 34px;
  }

  .contact-modal {
    padding: 0;
  }

  .contact-modal-dialog {
    border-radius: 0;
    max-height: 100vh;
  }

  .contact-modal-grid {
    max-height: 100vh;
  }

  .contact-modal-left {
    padding: 16px 12px 14px;
  }

  .contact-modal-close {
    right: 10px;
    top: 10px;
  }
}

.bg-title {
  margin: 0 0 -20px;
  font-size: 54px;
  font-weight: 700;
  opacity: 0.12;
  color: var(--theme-primary);
  text-transform: uppercase;
}

.desc {
  color: var(--theme-muted);
}

.navbar {
  background: #fff;
  padding: 12px 0;
  box-shadow: 0 8px 30px rgba(18, 23, 40, 0.06);
}

.navbar.shrink {
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  color: #021a62 !important;
  font-weight: 700;
  font-size: 28px;
}

.navbar-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-right: 10px;
}

.navbar-nav .nav-link {
  color: #2f354f !important;
  font-weight: 500;
  margin-left: 8px;
}

.navbar.shrink .navbar-brand,
.navbar.shrink .navbar-nav .nav-link {
  color: var(--theme-text) !important;
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-link:hover {
  color: var(--theme-primary-dark) !important;
}

.login-btn,
.dream-btn,
.more-btn {
  display: inline-block;
  min-width: 160px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 10px;
  background: var(--theme-primary);
  color: #fff !important;
  border: 1px solid var(--theme-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.login-btn {
  height: 42px;
  line-height: 42px;
  min-width: 130px;
  border-radius: 10px;
  margin-left: 15px;
}

.login-btn:hover,
.dream-btn:hover,
.more-btn:hover {
  background: var(--theme-primary-dark);
  border-color: var(--theme-primary-dark);
}

.img-fluid.has-shadow {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--theme-border);
  box-shadow: 0 15px 40px rgba(255, 166, 2, 0.24);
}

/* Next-level Hero */
.hero-v2 {
  position: relative;
  padding: 130px 0 70px;
  overflow: hidden;
  background: #fff;
}

.hero-v2-shape {
  position: absolute;
  border-radius: 999px;
  z-index: 0;
}

.hero-v2-shape-left {
  width: 280px;
  height: 280px;
  background: #01135b;
  left: -120px;
  bottom: -130px;
}

.hero-v2-shape-right {
  width: 420px;
  height: 420px;
  background: rgba(255, 166, 2, 0.12);
  right: -160px;
  top: 110px;
}

.hero-v2 .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #eceff6;
  background: #fff;
  color: #3e4663;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 22px;
}

.hero-badge i {
  color: var(--theme-primary);
}

.hero-v2-content h1 {
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.07;
  margin-bottom: 18px;
  letter-spacing: -1px;
  color: #021a62;
}

.hero-v2-content h1 span {
  color: var(--theme-primary);
}

.hero-v2-content p {
  max-width: 640px;
  font-size: 24px;
  color: #5f6780;
  margin-bottom: 28px;
}

.hero-v2-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-v2-actions .dream-btn {
  background: #031b67;
  border-color: #031b67;
}

.hero-v2-actions .dream-btn:hover {
  background: #02134a;
  border-color: #02134a;
}

.hero-dashboard {
  background: #fff;
  border: 1px solid #eef1f7;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(2, 20, 70, 0.12);
  padding: 16px;
}

.hero-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 6px 14px;
  border-bottom: 1px solid #f0f2f8;
  margin-bottom: 14px;
  color: #021a62;
}

.hero-dots {
  display: inline-flex;
  gap: 5px;
}

.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8ddea;
}

.hero-dots span:first-child {
  background: #ffa602;
}

.hero-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.dashboard-card {
  background: #fbfcff;
  border: 1px solid #edf1f9;
  border-radius: 14px;
  padding: 12px;
}

.dashboard-card small {
  font-size: 11px;
  color: #68708a;
}

.dashboard-card h4 {
  margin: 8px 0 6px;
  color: #021a62;
}

.dashboard-card p {
  font-size: 11px;
  margin: 0;
  line-height: 1.4;
}

.dashboard-card-primary {
  background: #021a62;
}

.dashboard-card-primary h4,
.dashboard-card-primary p,
.dashboard-card-primary small {
  color: #fff;
}

.dashboard-chart {
  background: #fffdf8;
  border: 1px solid #ffe7bc;
  border-radius: 14px;
  padding: 12px;
}

.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.chart-head strong {
  color: #021a62;
}

.chart-head span {
  font-size: 12px;
  color: #6f758d;
}

.chart-line {
  height: 82px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 15% 70%, #ffa602 0 3px, transparent 4px),
    radial-gradient(circle at 36% 48%, #ffa602 0 3px, transparent 4px),
    radial-gradient(circle at 52% 65%, #ffa602 0 3px, transparent 4px),
    radial-gradient(circle at 70% 38%, #ffa602 0 3px, transparent 4px),
    radial-gradient(circle at 88% 56%, #ffa602 0 3px, transparent 4px),
    linear-gradient(120deg, transparent 13%, #ffc766 14% 15%, transparent 16% 33%, #ffc766 34% 35%, transparent 36% 50%, #ffc766 51% 52%, transparent 53% 67%, #ffc766 68% 69%, transparent 70% 85%, #ffc766 86% 87%, transparent 88%);
  background-color: #fff;
}

.hero-service-strip {
  margin-top: 22px;
  background: #fff;
  border: 1px solid #edf1f8;
  box-shadow: 0 15px 45px rgba(2, 20, 70, 0.08);
  border-radius: 18px;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.hero-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  padding: 14px 12px;
  background: #fff;
}

.hero-service-item i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f2f6ff;
  color: #2554ff;
  font-size: 18px;
}

.hero-service-item h6 {
  margin: 0;
  color: #1f2a4a;
  font-size: 16px;
}

.hero-service-item p {
  margin: 2px 0 0;
  font-size: 12px;
  color: #78809a;
}

.darker-blue,
.darker2,
.darkest,
.footer-content-area {
  background: #fff;
}

.footer-area {
  background: var(--footer-bg);
  padding: 68px 0 20px !important;
  margin: 0 !important;
}

.footer-content-area {
  border-top: 1px solid var(--footer-border);
  background: transparent;
  margin: 0;
  padding: 0;
}

.services-block-four {
  margin-bottom: 20px;
}

.services-block-four .inner-box {
  background: var(--theme-soft);
  border: 1px solid var(--theme-border);
  border-radius: 14px;
  padding: 20px 20px 20px 80px;
  min-height: 150px;
  position: relative;
}

.icon-font-box {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 16px;
  top: 18px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  background: var(--theme-primary);
}

.services-block-four h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.services-block-four h3 a {
  color: var(--theme-text);
}

.services-block-four .text {
  color: var(--theme-muted);
}

.who-we-contant h4 {
  font-size: 30px;
  margin-bottom: 12px;
}

.special-head {
  color: var(--theme-primary);
  font-size: 20px;
}

.left-bor {
  padding-left: 16px;
  border-left: 3px solid var(--theme-primary);
}

.service_single_content {
  display: block;
  background: var(--theme-soft);
  border: 1px solid var(--theme-border);
  border-radius: 14px;
  padding: 25px 20px;
  min-height: 220px;
}

.service_icon i {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 12px;
  background: var(--theme-primary);
  color: #fff;
  font-size: 22px;
  margin-bottom: 14px;
}

.service_content h6 {
  color: var(--theme-text);
  font-size: 18px;
  margin-bottom: 8px;
}

.single_cool_fact {
  background: var(--theme-soft);
  border: 1px solid var(--theme-border);
  border-radius: 14px;
  padding: 28px 20px;
  margin-bottom: 30px;
}

.cool_fact_icon i {
  font-size: 24px;
  color: var(--theme-primary);
}

.cool_fact_detail h3 {
  color: var(--theme-primary);
  font-size: 34px;
  margin-top: 12px;
}

.cool_fact_detail h2 {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--theme-text);
  letter-spacing: 0.7px;
}

.project_single {
  margin-bottom: 30px;
}

.project_img img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--theme-border);
}

.project_info {
  margin-top: 14px;
}

.project_info h4 {
  margin-bottom: 4px;
}

.services-block-four.how .inner-box {
  min-height: 170px;
}

.services-block-four .step {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--theme-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.dream-faq-area dt {
  background: var(--theme-primary);
  color: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 8px;
  cursor: pointer;
}

.dream-faq-area dd {
  margin: 0 0 10px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--theme-border);
  background: var(--theme-soft);
  color: var(--theme-muted);
  overflow: hidden;
}

.single-team-member {
  position: relative;
  background: var(--theme-soft);
  border: 1px solid var(--theme-border);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 30px;
}

.team-member-thumb {
  width: 170px;
  height: 170px;
  margin: 0 auto 24px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--theme-border);
}

.team-member-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info h5 {
  text-align: center;
  margin-bottom: 6px;
}

.team-info p {
  text-align: center;
  margin: 0;
}

.team-social-icon {
  text-align: center;
  margin-top: 12px;
}

.team-social-icon a {
  color: var(--theme-primary);
  font-size: 20px;
}

.footer-logo a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-top-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--footer-border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.footer-top-card h4 {
  margin: 0;
  font-size: 24px;
  color: #fff;
}

.footer-top-card p {
  color: var(--footer-muted);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--footer-muted);
}

.footer-links a:hover {
  color: var(--theme-primary-dark);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8ecf6;
  color: #102e74;
  background: #fff;
}

.footer-social a:hover {
  background: var(--theme-primary);
  border-color: var(--theme-primary);
  color: #102e74;
}

.footer-copywrite-info p {
  color: var(--footer-muted);
  text-align: center;
}

.footer-copywrite-info {
  padding-top: 8px;
  padding-bottom: 2px;
}

.footer-content-area h5 {
  color: #fff;
}

.footer-content-area .border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
}

#contact,
#contact.section-padding-100 {
  margin-bottom: 0 !important;
}

#scrollUp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99;
  background: var(--theme-primary);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
}

#scrollUp.is-visible {
  opacity: 1;
  pointer-events: auto;
}

body.no-scroll {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 250ms ease, visibility 250ms ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 17, 62, 0.68);
  backdrop-filter: blur(6px);
}

.contact-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 1030px;
  max-height: calc(100vh - 28px);
  margin: 0;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #fcfdff);
  box-shadow: 0 34px 90px rgba(1, 14, 67, 0.36);
  transform: translateY(14px) scale(0.98);
  transition: transform 280ms ease;
  overflow: hidden;
}

.contact-modal.is-open .contact-modal-dialog {
  transform: translateY(0) scale(1);
}

.contact-modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 38px;
  height: 38px;
  border: 1px solid #dde4f3;
  border-radius: 50%;
  background: #fff;
  color: #1f2f62;
  z-index: 2;
}

.contact-modal-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  max-height: calc(100vh - 28px);
}

.contact-modal-left {
  padding: 24px 24px 20px;
  overflow: auto;
}

.contact-modal-right {
  padding: 22px 20px;
  background: linear-gradient(165deg, #fff9eb, #fff);
  border-left: 1px solid #e9eef8;
  overflow: auto;
}

.contact-modal-kicker {
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0b2d74;
  background: #fff3d8;
}

.contact-modal-left h3 {
  margin: 0;
  color: #081f60;
  font-size: 58px;
  line-height: 0.98;
  letter-spacing: -0.6px;
}

.contact-modal-left h3 span {
  color: var(--theme-primary);
}

.contact-modal-subtitle {
  margin: 10px 0 16px;
  color: #5f6885;
  font-size: 17px;
  line-height: 1.45;
}

.contact-modal-form {
  display: grid;
  gap: 10px;
}

.contact-modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-field {
  display: grid;
  gap: 6px;
}

.contact-field label {
  font-size: 11px;
  font-weight: 600;
  color: #334368;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid #e3e9f5;
  border-radius: 10px;
  height: 46px;
  padding: 0 14px;
  font-size: 14px;
  color: #152957;
  outline: none;
  background: #fff;
}

.contact-field textarea {
  height: auto;
  padding: 12px 14px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #ffd68f;
  box-shadow: 0 0 0 3px rgba(255, 166, 2, 0.14);
}

.contact-submit {
  border: 0;
  border-radius: 10px;
  height: 48px;
  margin-top: 2px;
  background: linear-gradient(90deg, #ffb01f, #ffa602);
  color: #0b2c71;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form-note {
  margin: 2px 2px 0;
  min-height: 18px;
  color: #1f9c53;
  font-size: 12px;
  font-weight: 600;
}

.contact-side-card h4 {
  color: #0a245f;
  font-size: 52px;
  line-height: 0.98;
  letter-spacing: -0.4px;
  margin: 4px 0 14px;
}

.contact-side-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-side-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3f4e73;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 9px;
}

.contact-side-card li i {
  color: var(--theme-primary);
}

.contact-side-visual {
  margin-top: 14px;
  border-radius: 14px;
  border: 1px solid #f1e0ba;
  background: #fffdfa;
  padding: 16px 14px;
}

.visual-line {
  display: block;
  height: 9px;
  border-radius: 999px;
  margin-bottom: 8px;
  background: #ffe2a8;
}

.visual-line.w-70 {
  width: 70%;
  background: #ffb11f;
}

.visual-line.w-92 {
  width: 92%;
}

.visual-line.w-78 {
  width: 78%;
}

.visual-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 0.72fr;
  gap: 8px;
  margin-top: 12px;
}

.visual-cards span {
  display: block;
  border-radius: 8px;
  background: #fff4dd;
  min-height: 74px;
  border: 1px solid #ffe4b1;
}

.visual-cards span:last-child {
  background: #ffb11f;
  border-color: #ffb11f;
}

.contact-side-foot {
  margin-top: 12px;
  border-radius: 10px;
  border: 1px solid #ebeff8;
  background: #fff;
  padding: 10px 12px;
}

.contact-side-foot span {
  color: #4f5f86;
  font-size: 13px;
  font-weight: 600;
}

.contact-side-foot i {
  color: var(--theme-primary);
  margin-right: 6px;
}

@media (max-width: 1199px) {
  .contact-modal-left h3 {
    font-size: 50px;
  }

  .contact-side-card h4 {
    font-size: 44px;
  }
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  opacity: 1;
  transition: opacity 1000ms ease;
}

#preloader.preloader-hide {
  opacity: 0;
  pointer-events: none;
}

#dream-load {
  width: 62px;
  height: 62px;
  border: 4px solid #ffe0ad;
  border-top-color: var(--theme-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 14px;
    border-radius: 12px;
    margin-top: 10px;
  }

  .navbar-collapse .nav-link {
    color: var(--theme-text) !important;
    margin-left: 0;
  }

  .login-btn {
    margin: 12px 0 0;
  }

  .hero-v2 {
    padding-top: 105px;
  }

  .hero-v2-content p {
    max-width: 100%;
    font-size: 17px;
  }

  .hero-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .hero-service-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .section-padding-100,
  .section-padding-100-70 {
    padding: 70px 0;
  }

  .section-title {
    font-size: 27px;
  }

  .bg-title {
    font-size: 40px;
  }

  .hero-v2-content h1 {
    font-size: 42px;
  }

  .hero-v2-actions .dream-btn,
  .hero-v2-actions .more-btn {
    min-width: 100%;
  }

  .hero-service-strip {
    grid-template-columns: 1fr;
  }
}

/* Professional Responsive Polish */
html,
body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.section {
  padding: clamp(64px, 7.5vw, 96px) 0;
}

.section-head h2,
.work-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.section-head p {
  font-size: clamp(15px, 1.4vw, 18px);
}

.hero-v2-content h1 {
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.06;
}

.hero-v2-content p {
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.65;
}

.hero-badge {
  max-width: 100%;
  white-space: normal;
}

.faq-side h2 {
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.04;
}

.cta-text h2 {
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.1;
}

.footer-grid {
  grid-template-columns: 1.25fr 1fr 1fr 1fr 1.1fr;
}

.contact-modal {
  padding: clamp(4px, 1.8vw, 16px);
}

.contact-modal-dialog {
  width: min(1000px, 100%);
  max-height: min(92vh, 920px);
}

.contact-modal-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  max-height: min(92vh, 920px);
}

.contact-modal-left,
.contact-modal-right {
  min-height: 0;
}

.contact-modal-left h3 {
  font-size: clamp(32px, 4.8vw, 50px);
  line-height: 1.02;
}

.contact-side-card h4 {
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.04;
}

.contact-modal-subtitle {
  font-size: clamp(14px, 1.4vw, 17px);
}

@media (max-width: 1199px) {
  .navbar-nav .nav-link {
    margin-left: 4px;
    font-size: 14px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .section {
    padding: 64px 0;
  }

  .hero-v2 {
    padding-top: 104px;
    padding-bottom: 54px;
  }

  .work-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-modal-dialog,
  .contact-modal-grid {
    max-height: calc(100vh - 24px);
  }

  .contact-modal-grid {
    grid-template-columns: 1fr;
  }

  .contact-modal-right {
    border-left: 0;
    border-top: 1px solid #edf1f8;
  }
}

@media (max-width: 767px) {
  .navbar-brand {
    font-size: 24px;
  }

  .navbar-brand img {
    width: 44px;
    height: 44px;
  }

  .hero-v2 {
    padding-top: 96px;
  }

  .hero-v2-actions {
    width: 100%;
  }

  .hero-v2-actions .dream-btn,
  .hero-v2-actions .more-btn {
    min-width: 100%;
  }

  .hero-service-strip {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .stats-row,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-modal-dialog,
  .contact-modal-grid {
    max-height: calc(100vh - 12px);
  }

  .contact-modal-left {
    padding: 18px 14px 14px;
  }

  .contact-modal-right {
    display: none;
  }
}

