@font-face {
  font-family: 'Google Sans Flex';
  src: url('../fonts/GoogleSansFlex-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

  
  html, body {
    overflow-x: hidden;
  }
  :root {
    --font-primary: 'Google Sans Flex', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }
  
  /* Base */
  body {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #111827; /* dark neutral */
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  

  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.5em;
    letter-spacing: -0.02em;
  }
  
  /* Scale */
  h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* 40px–56px */
    font-weight: 800;
  }
  
  h2 {
    font-size: clamp(2rem, 4vw, 2.75rem); /* 32px–44px */
    font-weight: 700;
  }
  
  h3 {
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
  }

  img{
    max-width: 100%;
    height: auto;
  }
  
  p {
    font-family: var(--font-primary);
    font-size: 1rem; /* 16px */
    line-height: 1.7;
    color: #374151; /* softer than heading */
    margin: 0 0 1em;
  }

  
  button,
input,
textarea,
select,
.nav,
.nav a {
  font-family: var(--font-primary);
}


@media (min-width:1366px){
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
  }
}


@media (min-width:1200px) and (max-width:1365px){
  .container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
  }
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}



.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo img {
  width: 220px;
}

.logo-text strong {
  font-size: 18px;
  font-weight: 700;
  display: block;
}

.logo-text span {
  font-size: 12px;
  color: #6b7280;
}



.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #0f172a;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

.main-nav a:hover {
  /* color: #2563eb; */
}


/* Hover line */
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: #BCD153;
  transition: width 0.35s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

  .header-cta a {
    background: #BCD153;
    color: #0E1A1F;
    padding: 12px 24px;
    border-radius: 10px;

    font-size: 14px;
    line-height: 23px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
}


.header-cta a:hover {
  background: #b7cf3e;
}



.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.burger span {
  width: 24px;
  height: 3px;
  background: #0E1A1F;
  border-radius: 3px;
  transition: all 0.3s ease;
}


.mobile-nav {

  display: none;
}


.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-nav li {
  margin-bottom: 28px;
}

.mobile-nav a {
  font-size: 20px;
  font-weight: 700;
  color: #0E1A1F;
  text-decoration: none;
}


.mobile-cta {
  margin-top: 40px;
}


.site-header.menu-open .mobile-nav {
  transform: translateY(0);
}

/* Burger animation */
.site-header.menu-open .burger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.site-header.menu-open .burger span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .burger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
body.menu-open {
  overflow: hidden;
}

.header-cta{
  margin-left: 30px;
}
.header-cta a:hover::after{
  display: none;
}



/* <= 1199px */
@media (max-width: 1199px) {
  .main-nav ul {
    gap: 20px;
  }
  .header-cta a  {
    font-size: 13px;
    }
    .main-nav a {
    font-size: 13px;
    }
}

/* <= 991px (tablet & mobile) */
@media (max-width: 991px) {
  .main-nav {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 80px);
    background: #ffffff;
    box-shadow: -10px 0 30px rgba(0,0,0,0.08);
    transition: right 0.3s ease;
    padding: 32px 24px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .main-nav.active {
    right: 0;
  }

  .burger {
    display: flex;
  }
  .main-nav {
    display: none;
  }

  .burger {
    display: flex;
  }
  .mobile-nav {
    display: flex;
    position: fixed;
    top: 80px; /* header height */
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: #ffffff;

    align-items: center;
    justify-content: center;

    /* SAFE hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);

    transition: 
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s ease;

    z-index: 998;
  }

  .site-header.menu-open .mobile-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .mobile-nav li.header-cta{
    margin-left: 0;
  }
}


/* <= 767px */


/* <= 575px */
@media (max-width: 575px) {
  .logo-text span {
    display: none;
  }
}



.site-footer {
  background: #0E1A1F;
  color: #9FB3C4;
  padding: 64px 0;
  font-size: 14px;
      overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 2fr;
  gap: 60px;
  max-width: 1216px;
}

/* Logo */
.footer-logo {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo img {
width:232px;
}

.footer-logo strong {
  font-size: 18px;
  color: #fff;
}

.footer-logo span {
  display: block;
  font-size: 12px;
  color: #94a3b8;
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 12px;
  line-height: 1;
}

/* Columns */
.footer-col h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 15px;
}

.footer-col h4.highlight {
  color: #BCD153;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul.footer-contact li{
  margin-bottom: 12px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-col ul li a {
  color: #9FB3C4;
  text-decoration: none;
}
.footer-col.links ul{
  margin-top: 10px;
}
.footer-col.links ul li{
  margin-bottom: 12px;
}
.footer-col.links ul li a{
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  position: relative;
}

/* .footer-col ul li a:hover {
  color: #fff;
} */


.footer-col ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: #BCD153;
  transition: width 0.35s ease;
}

.footer-col ul li a:hover::after {
  width: 100%;
}
.footer-col.global-offices ul li{
  margin-bottom: 8px;
  line-height: 21px;

}

/* Office grid */
.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Bottom */
.footer-bottom {
  margin-top: 100px;
  padding-top: 16px;
  border-top: 1px solid #BCD153;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
  color: #9FB3C4;
  max-width: 1216px;
  padding: 16px 0 0;
      overflow: hidden;
}

.footer-links a {
  margin-right: 20px;
  color: #94a3b8;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}



/* <= 1199px */
@media (max-width: 1199px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 40px;
  }
}

/* <= 991px */
@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .office-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* <= 767px */
@media (max-width: 767px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .office-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* <= 575px */
@media (max-width: 575px) {
  .office-grid {
    grid-template-columns: 1fr;
  }
}








.hero-section {
  min-height: calc(100vh - 81px);
  background: url('../images/hero-bg.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  
}

.hero-inner {
  position: relative;
  z-index: 2;

}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* IMPORTANT */
  z-index: 1;
  opacity: 0.8;
 
}
.hero-section h1 {
  color: #ffffff;
  font-family: 'Google Sans Flex', sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1; /* 79.2px */
  margin-bottom: 30px;
}
.hero-section h1 span{
  color:#BCD153 ;
}


.hero-subtitle {
  color: #BCD153;
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 48px;
}


.btn-hero {
  display: inline-block;
  padding: 20px 45px;

  border-radius: 999px;
  border: 2px solid #BCD153;
  color: #BCD153;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(53, 57, 36, 0.19);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #BCD153;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-hero:hover {
  color: #0b1a1f;
}

.btn-hero:hover::before {
  transform: scaleX(1);
}


/* <= 1199px */
@media (max-width: 1199px) {
  .hero-section h1 {
    font-size: 60px;
  }
}

/* <= 991px */
@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 18px;
  }
}

/* <= 767px */
@media (max-width: 767px) {
  .hero-section {
    padding: 100px 0;
  }

  .hero-section h1 {
    font-size: 40px;
  }
}

/* <= 575px */
@media (max-width: 575px) {
  .hero-section h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .btn-hero {
    padding: 14px 28px;
    font-size: 14px;
  }
}



.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 80%, rgba(195,217,74,0.25), transparent 50%);
  pointer-events: none;
}




/* Section */
.engine-section {
  padding: 80px 0;
  background: #fff;
}

/* Section Head */
.section-head {
  margin-bottom: 64px;
}

.section-title {
  color: #0E1A1F;
  font-family: 'Google Sans Flex', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-subtitle {
  color: #4A555A;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  /* max-width: 720px; */
  margin-bottom: 0;
}

/* Cards */
.engine-card {
  background: #ffffff;
  border-radius: 14px;

  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  border: 1px solid #E8EEF3;
}

.engine-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.engine-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 24px 24px 12px;
  color: #142E4A;
}

.engine-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 24px 24px;
  color: #4A555A;
}

.engine-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ========== Responsive Typography & Spacing ========== */

/* <= 1199px */
@media (max-width: 1199px) {


  .section-title {
    font-size: 44px;
  }
}

/* <= 991px */
@media (max-width: 991px) {
  .engine-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 40px;
  }

  .section-subtitle {
    font-size: 17px;
  }

  .section-head {
    margin-bottom: 40px;
  }
}

/* <= 767px */
@media (max-width: 767px) {
  .engine-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .engine-card h3 {
    font-size: 17px;
    margin: 14px 14px 6px;
  }

  .engine-card p {
    font-size: 13.5px;
    margin: 0 14px 16px;
  }
}

/* <= 575px */
@media (max-width: 575px) {
  .engine-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }
}



.stockholm-section {
  padding: 80px 0;
}

.stockholm-tile {
  height: 220px;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease;
}

.stockholm-tile h3 {
  font-size: 22px;
  line-height: 1.4;
  max-width: 70%;
  position: relative;
  z-index: 2;
}


.tile-1 {
  background-image: url('../images/tile-1.png');
}

.tile-2 {
  background-image: url('../images/tile-2.png');
  color: #0E1A1F;
}

.tile-3 {
  background-image: url('../images/tile-4.png');
}

.tile-4 {
  background-image: url('../images/tile-3.png');
}


.stockholm-tile:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}



/* <= 1199px */
@media (max-width: 1199px) {
  .stockholm-section {
    padding: 80px 0;
  }
}

/* <= 991px */
@media (max-width: 991px) {
  .stockholm-section {
    padding: 70px 0;
  }

  .stockholm-tile {
    height: 200px;
  }

  .stockholm-tile h3 {
    font-size: 20px;
  }
}

/* <= 767px */
@media (max-width: 767px) {
  .stockholm-section {
    padding: 60px 0;
  }

  .stockholm-tile {
    height: auto;
    min-height: 180px;
    padding: 24px;
  }

  .stockholm-tile h3 {
    font-size: 18px;
    max-width: 100%;
  }
}

/* <= 575px */
@media (max-width: 575px) {
  .stockholm-section {
    padding: 50px 0;
  }

  .stockholm-tile h3 {
    font-size: 16px;
  }
}


.soc-arch-section {
  padding: 80px  0;
}

.soc-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.soc-head .section-title {
  max-width: 60%;
}

.soc-head .section-subtitle {
  max-width: 40%;
  margin-top: 18px;
}


.soc-links {
  margin-top: 20px;
}

.soc-link {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.soc-link-text h4 {
  font-size: 28px;
  font-weight: 700;
  color: #142E4A;
  margin-bottom: 16px;
  line-height: 1.3;
}

.soc-link-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #4A555A;
}


.soc-arrow {
  font-size: 22px;
  color: #84cc16;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s ease;
}


/* .soc-line {
  position: absolute;
  bottom: 0;
  left: 28px;
  width: 0;
  height: 3px;
  background: #84cc16;
  transition: width 0.4s ease;
} */



.soc-link:hover,
.soc-link.active {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 4.62%, rgba(188, 209, 83, 0.25) 100%);

}
/* .soc-link:hover::after{

  position: absolute;
  content: '';
  background: #BCD153;
  height: 4px;
  left: 0;
  bottom: 0px;
  transition: 0.3s;
  width: 0;
}

.soc-link:hover::after,
.soc-link.active::after{
  width: 220px;
} */


.soc-link:hover .soc-arrow,
.soc-link.active .soc-arrow {
  opacity: 1;
  transform: translateX(0);
}



.soc-different-section {
  padding: 80px  0;
  background: #F6F8FB;
}


.soc-visual-card {
  height: 480px;
  border-radius: 20px;
  background: url('../images/soc/different-main.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

/* Floating badge */
.soc-visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.soc-visual-badge .dot {
  width: 10px;
  height: 10px;
  background: #84cc16;
  border-radius: 50%;
  margin-top: 6px;
}

.soc-visual-badge strong {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #0E1A1F;
}

.soc-visual-badge p {
  font-size: 12px;
  margin: 2px 0 0;
  color: #4b5563;
}

.soc-feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  min-height: 196px;

}

.soc-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.soc-feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 12px 0 12px;
  color: #142E4A;
  line-height: 1.3;
}

.soc-feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #4A555A;
  margin: 0;
}

/* Icon box */
.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #BCD153;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}


@media (max-width: 991px) {
  .soc-visual-card {
    height: 360px;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .soc-different-section {
    padding: 70px 0;
  }

  .soc-visual-card {
    height: 280px;
  }
}

@media (max-width: 575px) {
  .soc-different-section {
    padding: 50px 0;
  }

  .soc-feature-card {
    padding: 18px;
  }

  .soc-feature-card h4 {
    font-size: 15px;
  }

  .soc-feature-card p {
    font-size: 13px;
  }
}


.trust-section {
  padding: 80px  0;
  background: #ffffff;
}
.trust-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  min-height: 96px;
}

.trust-card img {
  max-width: 140px;
  max-height: 48px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 0.9;
  transition: all 0.3s ease;
}


.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  background: #ffffff;
}

.trust-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.trust-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

/* 5 per row */
.trust-item {
  width: 17.9%;
  min-width: 160px;
}

@media (max-width: 991px) {
  .trust-section {
    padding: 70px 0;
  }

  .trust-card img {
    max-width: 120px;
  }
}

@media (max-width: 575px) {
  .trust-section {
    padding: 50px 0;
  }

  .trust-card {
    padding: 20px;
  }

  .trust-card img {
    max-width: 100px;
  }
}


@media (max-width: 1199px) {
  .trust-item { width: 25%; } /* 4 per row */
}

@media (max-width: 991px) {
  .trust-item { width: 33.33%; } /* 3 per row */
}

@media (max-width: 767px) {
  .trust-item { width: 50%; } /* 2 per row */
}

@media (max-width: 575px) {
  .trust-item { width: 100%; } /* 1 per row */
}



/* Wrapper Card */
.form-wrapper {
  /* background: #ffffff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15); */
}

/* Rows */
.form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.form-row.custom-submit{
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
justify-content: flex-end;
align-items: end;
}
/* Groups */
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  flex: 100%;
}

/* Labels */
.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 24px;
  color: #4A555A;

}

/* Inputs */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 5px;
  border: 1px solid #E4E4E4;
  font-size: 14px;
  font-family: 'Google Sans Flex', sans-serif;
  transition: all 0.2s ease;
  background: #FFF;

}

.form-group textarea {
  min-height: 85px;
  resize: vertical;
}

/* Focus */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #84cc16;
  box-shadow: 0 0 0 2px rgba(132,204,22,0.15);
}

/* Checkbox */
.checkbox-group {
  font-size: 14px;
  color: #4A555A;
  line-height: 24px;

  display: flex;
  gap: 10px;
  align-items: flex-start;
  flex-direction: row;
}

.checkbox-group a {
  color: #BCD153;
  text-decoration: none;
  font-weight: 700;
}
.checkbox-group label{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
}
.checkbox-group input{
  width: 13px;
}

/* Submit button */
.wpcf7-submit {
  background: #BCD153;
  color: #142E4A;
  border: none;
  padding: 16px 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
}

.wpcf7-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(185,216,76,0.5);
}


@media (max-width: 991px) {
  .form-wrapper {
    padding: 40px;
  }

  .form-row {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .form-wrapper {
    padding: 28px;
  }
}



/* Section */
.contact-section {
  padding: 71px 0 80px;
  /* background: #f8fafc; */
}

/* Center card */
.contact-card {
  /* max-width: 1000px; */
  margin: 0 auto;
  padding: 32px 32px 8px;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Title */
.contact-title {
  font-family: 'Google Sans Flex', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #142E4A;
  margin-bottom: 64px;
}

@media (max-width:1366px){
  .footer-top, 
   .footer-bottom{
    max-width: 1160px;
}
}
@media (max-width: 1199px) {
  .section-title {
font-size: 38px;
  }
  .footer-top, .footer-bottom {
    max-width: 960px;
}
.engine-section ,
.stockholm-section,
.soc-arch-section,
.soc-different-section{
  padding: 60px 0;
}
}
@media (max-width: 991px) {
  .contact-section {
    padding: 90px 0;
  }

  .contact-card {
    padding: 40px;
  }

  .contact-title {
    font-size: 36px;
  }
  .engine-section {
    padding: 50px 0;
}
.stockholm-section {
  padding: 50px 0;
}
.soc-arch-section {
  padding: 60px 0;
}
.soc-different-section {
  padding: 60px 0;
}
.trust-section {
  padding: 60px 0;
}
.form-wrapper {
  padding: 0;
}
.contact-title {
  margin-bottom: 40px;
}
.footer-top, .footer-bottom {
  max-width: 720px;
}
.footer-top > :nth-child(3){
  grid-column: 1 / -1; /* span full width */

}
.office-grid {
  grid-template-columns: 1fr 1fr 1fr;
}
.engine-section,.stockholm-section,.soc-arch-section,.soc-different-section,.trust-section,.contact-section {
  padding: 60px 20px;
}
.soc-link {

  margin-bottom: 10px;
  padding: 15px;


}
.soc-link-text h4 {
  font-size: 23px;
  margin-bottom: 10px;
}
.soc-link-text p{
  margin-bottom: 0;
}
.contact-wrapper{
  grid-template-columns: 1fr;
}
}
@media (max-width: 767px) {
  .section-header h2 {
      font-size: 30px;
  }
  .engine-section,.stockholm-section,.soc-arch-section,.soc-different-section,.trust-section,.contact-section {
    padding: 40px 12px;
  }
  .soc-head{
    flex-wrap: wrap;
    gap: 0;
  }
  .soc-head .section-title,
  .soc-head .section-subtitle{
    max-width: 100%;
  }
  .section-title {
    font-size: 34px;
}
.checkbox-group {
  font-size: 12px;
}
.checkbox-group label {
  font-size: 12px;

}
.site-footer {
  padding: 40px 20px;
}
.footer-bottom {
  margin-top: 70px;
}
.soc-visual {
  display: none;
}

.soc-line {
  display: none;
}
.soc-link:hover, .soc-link.active{
  background: none;
}
.soc-link.active{
  background: none !important;
}
}
@media (max-width: 575px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-card {
    padding: 28px;
  }

  .contact-title {
    font-size: 28px;
  }
  .section-title {
    font-size: 25px;
}
.wpcf7-submit {
  padding: 10px 20px;
  font-size: 15px;
}
.office-grid{
  grid-template-columns: 1fr;
  gap: 0;
}
.footer-bottom {
  margin-top: 35px;
}

}



@media (max-width: 575px) {
  .section-header h2 {
      font-size: 20px;
  }
}



.soc-link {
  position: relative;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: #fff;
  transition: 0.3s;
}

.soc-link.active {
  background: #f4f8df;
}




.soc-line {
  position: absolute;
  left: 24px;
  bottom: 0;
  height: 3px;
  width: calc(100% - 48px);              /* fixed width */
  background: #84cc16;
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.soc-link.active .soc-line {
  animation: timeline 5s linear forwards;
}

@keyframes timeline {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}


.hero-section.contact-page{
  background: url(../images/contact-banner.png)  no-repeat;
  background-size: cover;
  background-position: center;
}
.contact-box{
  padding: 32px 32px 20px;
  /* align-items: center; */
  border-radius: 8px;
background: #F8F8F8;
box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;

}
.contact-section1{
  padding: 80px 0;
}
.contact-section1 h2{
color:  #0E1A1F;
text-align: center;
font-size: 32px;
font-weight: 500;
line-height: normal;
margin-bottom: 40px;
}
.contact-form .form-row {
  margin-bottom: 20px;
}

.contact-wrapper .form-group label {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  /* margin-bottom: 6px; */
  color: #4A555A;
}

.contact-wrapper .form-group input,
.contact-wrapper .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.contact-wrapper .form-group a{
  color: #14171C;
  font-weight: 500;
  text-decoration: none;


}
.contact-wrapper .checkbox-row label {
  font-size: 14px;
}

.contact-wrapper .office-info{
  margin-top: 42px;
}
.contact-wrapper .office-info h4{
  color: #000;
/* text-align: center; */

font-size: 18px;
font-weight: 700;
line-height: 24px; 
margin-bottom: 14px;
}
.contact-wrapper .office-info p{
  margin-bottom: 8px;
  color: #4A555A;

font-size: 18px;
font-weight: 400;
line-height: 24px; 
}
.contact-wrapper .office-info a{
color:#4A555A;

}
.contact-wrapper .btn-submit {
  background: #c3db5c;
  color: #000;
  padding: 14px;
  border: none;
  width: 100%;
  border-radius: 30px;
  font-weight: 600;
}
.contact-wrapper .form-row .form-group {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 0;
}

.contact-wrapper .form-label {
  font-weight: 500;
  color: #444;
}

.contact-wrapper .form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.contact-wrapper .form-row.checkbox-row .form-group{
  display: initial;

}
.contact-wrapper .form-row.checkbox-row .form-group label{
  display: flex;
  gap:10px;
  align-items: center;
}
.contact-wrapper .form-row.checkbox-row .form-group label input{
  width: 13px;
  height: 13px;
}
.contact-wrapper .checkbox-row {
  align-items: flex-start;
}

.contact-wrapper .form-group .btn-submit {
  width: 100%;
  background: #BCD153;
  color: #0E1A1F;
  padding: 17px;
  border: none;
  width: 100%;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
  text-align: center;
  line-height: 24px;
}
.contact-wrapper .form-row.submit-btn .form-group{
  display: block;
}
@media (max-width: 991px) {
  .contact-wrapper {
      grid-template-columns: 1fr;
  }
  .header-cta a{
    font-size: 18px;
  }
}









@media (max-width: 767px) {
  .contact-wrapper {
      grid-template-columns: 1fr;
  }
  .contact-wrapper .form-row .form-group {
    grid-template-columns: 1fr;
  }
  .header-cta a{
    font-size: 16px;
  }
}


@media (max-width: 575px) {
   .hero-section{
    min-height: auto;
    height: 400px;
   }
   .contact-section1 {
    padding: 30px 0;
}
}
/* .image-wrapper {
  width: 100%;
  height: 100vh;
  background: #01091e;
  position: relative;
  overflow: hidden;
} */

/* GRID */
.blocks {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(40, 1fr);
  grid-template-rows: repeat(20, 1fr);
  filter: blur(1.2px);
}

/* BLOCK */
.block {
opacity: 0;
animation-name: boxFade;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
transition: opacity 1.5s linear;
/* filter: blur(0.6px); */

}

@keyframes boxFade {
  0%   { opacity: 0; }
  25%  { opacity: 1; }
  75%  { opacity: 1; }
  100% { opacity: 0; }
}

.site-header {
  position: relative;
  width: 100%;
  transition: all 0.3s ease;
  z-index: 999;
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.page-template-contact-us .contact-section{
display: none;}