/* ============================================================
   QIRO — style.css (Blue & Green theme)
   ============================================================ */

:root {
  --primary: #1e6fdf;
  /* vibrant blue */
  --primary-dark: #0a4b8a;
  /* dark blue */
  --green: #2ecc71;
  /* fresh green accent */
  --white: #fff;
  --black: #1a1a1a;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fff;
  color: #333;
  overflow-x: hidden;
  font-size: 16px;
}

/* ══ HEADER ══ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: transparent;
  transition: background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

/* White frosted glass after scrolling */
#site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

/* Slide up when scrolling down */
#site-header.hidden {
  transform: translateY(-100%);
}

#site-header.scrolled .logo-text {
  color: #1a1a1a
}

#site-header.scrolled .nav-link {
  color: #1a1a1a
}

#site-header.scrolled .burger span {
  background: #333
}

.header-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
  height: 80px;
  display: flex;
  align-items: center;
}

/* LOGO */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 28px
}

.logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0
}

.logo-text {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  color: #fff;
  line-height: 1;
  transition: color .3s
}

.logo-text em {
  color: var(--primary);
  font-style: italic
}

/* NAV */
.site-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center
}

.nav-item {
  position: relative
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  height: 80px;
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
  position: relative;
  transition: color .22s ease, transform .22s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 22px;
  width: calc(100% - 28px);
  height: 2px;
  background: rgba(255, 255, 255, 0.55);
  transform: scaleX(1);
  transition: background .25s ease, transform .25s ease;
}

/* Highlight underline blue on hover */
.nav-link:hover::after,
.dropdown:hover>.nav-link::after,
.nav-item:hover>.nav-link::after {
  background: var(--primary);
}

/* Scrolled state — dark underline, turns blue on hover */
#site-header.scrolled .nav-link::after {
  background: rgba(0, 0, 0, 0.15)
}

#site-header.scrolled .nav-link:hover::after,
#site-header.scrolled .dropdown:hover>.nav-link::after {
  background: var(--primary-dark)
}

#site-header.scrolled .nav-link:hover,
#site-header.scrolled .dropdown:hover>.nav-link {
  color: var(--primary)
}

.caret {
  width: 10px;
  height: 6px;
  flex-shrink: 0;
  stroke: currentColor;
  transition: transform .22s
}

.dropdown:hover .caret {
  transform: rotate(180deg)
}

.nav-item:hover .caret {
  transform: rotate(180deg)
}

/* DROPDOWN */
/* ── Dropdown Menu (your exact code, themed for Qiro) ── */
.dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 80px;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 320px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  pointer-events: none;
  border-radius: 0 0 0.5rem 0.5rem;
  overflow: hidden;
  z-index: 9999;
  border-top: 3px solid var(--primary-dark);
  padding-top: 0;
  margin-top: 0;
}

/* Invisible bridge between nav link and dropdown — fills the gap */
.dropdown-content::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
}

.dropdown-content a {
  color: #374151;
  padding: 1rem 1.4rem;
  text-decoration: none;
  display: block;
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s, color 0.2s, padding-left 0.2s, transform 0.2s;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background: #f3f4f6;
  color: var(--primary);
  padding-left: 1.8rem;
  transform: translateX(2px);
}

/* HEADER RIGHT */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-left: 20px
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  text-decoration: none;
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  border: 2px solid var(--primary-dark);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: transform .3s ease, box-shadow .3s ease;
}

.btn-contact::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  left: auto;
  right: 0;
  top: 0;
  background: var(--primary-dark);
  transition: width .3s ease;
  z-index: -1;
}

.btn-contact:hover::after {
  width: 0
}

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .2)
}

.btn-contact:hover {
  color: var(--primary-dark)
}

.btn-contact:active {
  transform: scale(.97)
}

.btn-contact svg {
  transition: transform .3s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 1
}

.btn-contact:hover svg {
  transform: translate(4px, -4px)
}

.burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: background .3s
}

#site-header.scrolled .burger span {
  background: #333
}

/* ══ CONTACT OVERLAY ══ */
.contact-overlay {
  position: fixed;
  inset: 0;
  background: #111;
  z-index: 9500;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s, visibility .35s;
  overflow-y: auto;
}

.contact-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto
}

.co-close {
  position: fixed;
  top: 28px;
  right: 36px;
  background: none;
  border: none;
  color: #999;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 9600;
  transition: color .2s;
}

.co-close:hover {
  color: #fff
}

.co-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 60px 60px;
  display: grid;
  grid-template-columns: 340px 1px 1fr;
  min-height: 100vh;
  align-items: flex-start;
}

.co-nav {
  padding-top: 20px;
  padding-right: 50px
}

.co-nav a {
  display: block;
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: color .2s, padding-left .2s;
}

.co-nav a:hover {
  color: var(--primary);
  padding-left: 12px
}

.co-nav a:first-child {
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.co-lang {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  color: #aaa
}

.co-lang-btn {
  color: #fff;
  font-weight: 600
}

.co-lang-toggle {
  background: none;
  border: 1px solid #555;
  color: #aaa;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px
}

.co-divider {
  background: rgba(255, 255, 255, .12);
  width: 1px;
  align-self: stretch
}

.co-contact {
  padding-top: 20px;
  padding-left: 60px
}

.co-title {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 34px
}

.co-contact-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start
}

.co-fields {
  min-width: 0
}

.co-field {
  margin-bottom: 26px
}

.co-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #555;
  display: block;
  margin-bottom: 10px
}

.co-field p {
  font-size: 15px;
  color: #bbb;
  line-height: 1.75
}

.co-field a {
  color: #bbb;
  text-decoration: none
}

.co-field a:hover {
  color: var(--primary)
}

.co-phone {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 6px
}

.co-hours {
  font-size: 13px;
  color: #555
}

.co-social {
  display: flex;
  gap: 10px;
  margin-top: 30px
}

.co-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  text-decoration: none;
  transition: border-color .2s, color .2s, transform .3s;
}

.co-social a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-4px) scale(1.1)
}

.co-img-wrap {
  grid-column: 2;
  grid-row: 1;
  align-self: start
}

.co-img {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  display: block;
  object-fit: cover
}

/* ══ HERO ══ */
.hero {
  position: relative;
  min-height: 680px;
  background: #111;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .58) 34%, rgba(0, 0, 0, .28) 62%, rgba(0, 0, 0, .18) 100%),
    linear-gradient(to top, rgba(0,0,0,.22), rgba(0,0,0,.12));
  z-index: 1
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 180px 36px 100px;
  width: 100%
}


.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.15s ease, transform 5.5s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-title-sub {
  display: block;
  margin-top: 12px;
  font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1.32;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.hero-desc {
  max-width: 660px;
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.hero-eyebrow {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--primary);
  margin-bottom: 18px
}

.hero-title {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(32px, 5.2vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  max-width: 720px;
  margin-bottom: 40px
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  padding: 14px 32px;
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 2px solid var(--primary-dark);
  transition: transform .3s ease, box-shadow .3s ease;
  z-index: 0;
}

.btn-red::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  left: auto;
  right: 0;
  top: 0;
  background: var(--primary-dark);
  transition: width .3s ease;
  z-index: -1;
}

.btn-red:hover::after {
  width: 0
}

.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .2)
}

.btn-red:hover {
  color: var(--primary-dark)
}

.btn-red:active {
  transform: scale(.97)
}

.btn-red svg {
  transition: transform .3s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 1
}

.btn-red:hover svg {
  transform: translate(4px, -4px)
}

/* ══ 4 CARDS with hover reveal ══ */
.cards-section {
  background: #fff;
  padding: 60px 0 18px
}

.cards-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}

.card {
  background: #fff;
  text-decoration: none;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  height: 420px;
  transition: transform .35s ease, box-shadow .35s ease;
}

.card:hover {
  transform: translateY(0);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .13)
}

.card .card-img-wrap {
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  height: 245px;
  background: #f2f2f2;
}

.card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .45s ease;
}

.card:hover .card-img-wrap img {
  transform: scale(1.06)
}

.card-body {
  padding: 14px 12px 14px;
  height: calc(420px - 245px);
  overflow: hidden
}

.card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  transition: opacity .25s ease;
}

.card:hover .card-title-row {
  opacity: 1
}

.card-title-row h3 {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a
}

.card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0
}

.card-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .45s ease, opacity .35s ease;
}

.card:hover .card-desc {
  max-height: 160px;
  opacity: 1
}

.card-divider {
  height: 1px;
  background: #e0e0e0;
  width: 100%
}

/* ══ ABOUT ══ */
.about-section{
  padding: 70px 0 90px;
}
.about-container{
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: stretch;
}

.about-media {
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  border-radius: 18px;
  box-shadow: none;
  overflow: hidden;
}
.about-image{
  display: flex;
}
.about-image-box{
  width: 100%;
  max-width: 760px;
  height: 540px;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
  background: #ddd;
}
.about-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content{
  padding-top: 6px;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s ease
}

.fade-in.animate {
  opacity: 0;
  transform: translateY(30px)
}

.fade-in.animate.visible {
  opacity: 1;
  transform: translateY(0)
}

.eyebrow {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0
}

.sec-title {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.23;
  margin-bottom: 20px
}

.about-lead {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  line-height: 1.8;
  margin-bottom: 14px
}

.about-p {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  line-height: 1.8;
  margin-bottom: 14px
}

/* TABS */
.tabs {
  margin-top: 28px
}

.tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid #e8e8e8;
  margin-bottom: 22px;
}

.tab-btn {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 11px 20px;
  background: #f0f0f0;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  color: #999;
  border-radius: 6px 6px 0 0;
  transition: color .2s, background .2s, border-color .2s;
}

.tab-btn:hover {
  color: var(--primary);
  background: #fff
}

.tab-btn.active {
  color: var(--primary);
  background: #fff;
  border-bottom-color: var(--primary);
}

.tab-pane {
  display: none;
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  padding: 2px 0
}

.tab-pane.active {
  display: block;
  animation: fadeTab .3s ease forwards
}

@keyframes fadeTab {
  from {
    opacity: 0;
    transform: translateY(5px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ══ SOLUTIONS ══ */
.sol-section {
  padding: 70px 0 40px;
  background: #f8f8f8
}

.sol-header {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px 40px
}

.sol-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ── Card: full-image, overflow hidden ── */
.sol-card {
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 340px;
  cursor: pointer;
}

/* ── Image wrapper: clips the image, image pans RIGHT on hover ── */
.sol-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 16px;
}

.sol-img-wrap img {
  width: 115%;
  /* wider than container so there's room to pan right */
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateX(0%) scale(1);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: left center;
}

/* On hover: image pans to the right */
.sol-card:hover .sol-img-wrap img {
  transform: translateX(12%) scale(1.04);
}

/* ── Dark gradient overlay — always on, deepens on hover ── */
.sol-overlay {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.80) 0%,
      rgba(0, 0, 0, 0.35) 40%,
      rgba(0, 0, 0, 0.05) 100%);
  transition: background 0.4s ease;
  z-index: 1;
}

.sol-card:hover .sol-overlay {
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.90) 0%,
      rgba(0, 0, 0, 0.55) 50%,
      rgba(0, 0, 0, 0.10) 100%);
}

/* ── Text content: sits above overlay at bottom-left ── */
.sol-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px 26px;
}

/* Title: always visible, moves UP on hover */
.sol-label {
  display: block;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.2;
}

.sol-card:hover .sol-label {
  transform: translateY(-28px);
}

/* Description: hidden below, slides UP into view on hover */
.sol-desc-line {
  margin: 0;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.35s ease 0.08s,
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.08s;
  line-height: 1.5;
}

.sol-card:hover .sol-desc-line {
  opacity: 1;
  transform: translateY(-26px);
}

/* ── Responsive ── */
@media(max-width:1100px) {
  .sol-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:900px) {
  .sol-grid {
    grid-template-columns: 1fr
  }

  .sol-card {
    height: 260px
  }
}

@media(max-width:520px) {
  .sol-card {
    height: 220px
  }

  .sol-label {
    font-size: 18px
  }
}

/* ══ BLOG ══ */
.blog-section {
  padding: 40px 0 90px;
  background: #fff
}

.blog-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px
}

.blog-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: #f4f4f4;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .25s ease;
  position: relative;
  /* reserve space for the top image (like the reference cards) */
  padding-top: 235px;
}

.blog-card:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, .14);
}

.blog-img-wrap {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 235px;
  border-radius: 14px 14px 0 0;
  transition: none;
}

.blog-img-wrap::before {
  content: none;
}

.blog-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: none
}

.date-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary-dark);
  color: #fff;
  padding: 8px 14px;
  text-align: center;
  min-width: 54px;
  border-radius: 8px;
  z-index: 3;
  transition: top .25s ease, bottom .25s ease;
}

.blog-card:hover .date-badge {
  top: auto;
  bottom: 14px;
}

.date-badge b {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1
}

.date-badge span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em
}

.blog-body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  transition: background .25s ease, color .25s ease
}

.blog-cat {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: #999;
  margin-bottom: 12px
}

.blog-cat span {
  color: var(--primary)
}

.blog-body h3 {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
  flex: 1;
  padding-bottom: 16px
}

.read-more-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: auto;
  gap: 8px
}

.read-more-txt {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .2s
}

.read-more-line {
  width: 100%;
  height: 1px;
  background: #ddd
}

.blog-card:hover .read-more-txt {
  color: var(--primary)
}

.blog-card:hover .blog-body {
  background: rgba(30, 111, 223, 0.10);
}

/* ══ FOOTER ══ */
.site-footer {
  background: #1a1a1a;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
}

/* ── TOP: 5-column grid ── */
.ft-top {
  max-width: 1440px;
  margin: 0 auto;
  padding: 70px 36px 60px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ft-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 22px 0;
  letter-spacing: 0.01em;
}

/* Contact col */
.ft-addr {
  font-size: 13px;
  color: #aaa;
  line-height: 1.85;
  margin: 0 0 14px 0;
}

.ft-contact-item {
  font-size: 13px;
  color: #aaa;
  margin: 0 0 14px 0;
}

.ft-phone {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px 0;
}

.ft-hours {
  font-size: 12px;
  color: #666;
  margin: 0;
}

/* Link lists */
.ft-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ft-list li {
  margin-bottom: 10px;
}

.ft-list li a {
  font-size: 13px;
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: block;
  line-height: 1.5;
}

.ft-list li a:hover {
  color: var(--primary);
  padding-left: 6px;
}

/* ── MIDDLE: logo bar ── */
.ft-mid {
  background: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 36px;
  max-width: 100%;
}

.ft-mid-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.ft-mid-logo-text {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}

.ft-mid-logo-text em {
  color: var(--primary);
  font-style: italic;
}

.ft-mid-tagline {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  flex: 1;
  text-align: center;
  letter-spacing: 0.01em;
}

.ft-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 34px;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.ft-call-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}

.ft-call-btn svg {
  transition: transform 0.3s ease
}

.ft-call-btn:hover svg {
  transform: translate(3px, -3px)
}

/* ── BOTTOM: copyright + social ── */
.ft-bottom {
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  max-width: 100%;
  gap: 20px;
}

.ft-copy {
  font-size: 12px;
  color: #555;
  margin: 0;
}

.ft-copy a {
  color: var(--primary);
  text-decoration: none;
}

.ft-copy a:hover {
  text-decoration: underline
}

.ft-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ft-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.3s;
}

.ft-social a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ── Responsive ── */
@media(max-width:1100px) {
  .ft-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px
  }
}

@media(max-width:768px) {
  .ft-top {
    grid-template-columns: 1fr 1fr;
    padding: 50px 20px 40px
  }

  .ft-mid {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
    gap: 18px
  }

  .ft-mid-tagline {
    font-size: 14px
  }

  .ft-bottom {
    flex-direction: column;
    padding: 16px 20px;
    text-align: center
  }
}

@media(max-width:480px) {
  .ft-top {
    grid-template-columns: 1fr
  }
}

/* BACK TO TOP */
#btt {
  position: fixed;
  bottom: 26px;
  right: 26px;
  background: var(--primary-dark);
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  z-index: 9999;
  border-radius: 50%
}

#btt.show {
  opacity: 1;
  visibility: visible
}

#btt:hover {
  background: #052e55
}

/* ══ WHATSAPP FLOAT BUTTON (Green accent) ══ */
#whatsapp-btn {
  position: fixed;
  bottom: 80px;
  right: 26px;
  background: var(--green);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 14px rgba(46, 204, 113, .45);
  transition: transform .3s, box-shadow .3s
}

#whatsapp-btn:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 22px rgba(46, 204, 113, .55)
}

/* ══ RESPONSIVE ══ */
@media(max-width:1100px) {
  .sol-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:900px) {
  .site-nav {
    display: none
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
  }

  .about-media {
    padding: 0;
    border-radius: 18px;
  }

  .about-img {
    min-height: 320px;
    max-height: 460px;
    border-radius: 14px;
  }

  .sol-grid {
    grid-template-columns: 1fr
  }

  .blog-grid {
    grid-template-columns: 1fr
  }

  .footer-top {
    grid-template-columns: 1fr
  }

  .header-wrap {
    padding: 0 20px
  }

  .hero-content {
    padding: 140px 20px 80px
  }

  .co-inner {
    grid-template-columns: 1fr;
    padding: 70px 24px 40px
  }

  .co-nav {
    padding-right: 0;
    padding-bottom: 30px
  }

  .co-divider {
    width: 100%;
    height: 1px
  }

  .co-nav a {
    font-size: 28px
  }

  .co-contact {
    padding-left: 0
  }

  .co-contact-body {
    grid-template-columns: 1fr
  }

  .co-img-wrap {
    grid-column: 1;
    grid-row: auto
  }

  .co-img {
    height: 220px
  }
}

@media(max-width:520px) {
  .cards-grid {
    grid-template-columns: 1fr
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start
  }

  .co-nav a {
    font-size: 22px;
    padding: 10px 0
  }
}

/* Burger button removed from markup */
.burger {
  display: none !important
}

/* ===== Final navbar override ===== */
#site-header,
#site-header.scrolled,
.force-white-header,
.force-white-header.scrolled{
  background:#ffffff !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  box-shadow:0 1px 10px rgba(0,0,0,0.08) !important;
  border-bottom:1px solid rgba(0,0,0,0.08) !important;
}

.logo-link{
  display:flex !important;
  align-items:center !important;
  gap:14px !important;
  text-decoration:none !important;
}

.nav-logo{
  height:46px !important;
  width:auto !important;
  display:block !important;
  flex-shrink:0 !important;
}

.logo-text{
  display:flex !important;
  align-items:baseline !important;
  gap:4px !important;
  font-size:0 !important;
  line-height:1 !important;
}

.logo-sudhanshu{
  color:#353166; !important;
  font-size:24px !important;
  font-weight:800 !important;
  line-height:1 !important;
}

.logo-associates{
  color:#527c36 !important;
  font-size:24px !important;
  font-weight:800 !important;
  line-height:1 !important;
}

.logo-text em{
  color:#527c36 !important;
  font-style:normal !important;
}

#site-header .nav-link,
#site-header .nav-link:visited,
#site-header.scrolled .nav-link{
  color:#111111 !important;
}

#site-header .nav-link:hover,
#site-header.scrolled .nav-link:hover{
  color:#111111 !important;
}

#site-header .nav-link::after,
#site-header.scrolled .nav-link::after{
  background:#111111 !important;
  opacity:.22 !important;
}

#site-header .dropdown-toggle,
#site-header .dropdown-toggle:visited{
  color:#111111 !important;
}

#site-header .btn-contact{
  background:#165496 !important;
  border-color:#165496 !important;
  color:#ffffff !important;
}

#site-header .btn-contact:hover{
  background:#0f3e70 !important;
  border-color:#0f3e70 !important;
  color:#ffffff !important;
}

/* Prevent initial different look before scroll */
body{
  padding-top:0;
}



/* ===== FORCE REMOVE ANY RED ICON OUTLINES ===== */
.card-icon svg, 
.card-icon svg *,
.card-title-row svg,
.card-title-row svg *{
  stroke:none !important;
  outline:none !important;
}

.card-icon svg,
.card-title-row svg{
  fill:#527c36 !important;
  color:#527c36 !important;
}


/* ===== Sudhanshu footer final update ===== */
.sa-footer{
  background:linear-gradient(180deg,#111826 0%,#0f172a 100%) !important;
  color:#dbe4f0;
}
.sa-footer-top{
  max-width:1440px;
  margin:0 auto;
  padding:44px 36px 28px;
  display:grid;
  grid-template-columns:1.45fr 1fr 1fr 1fr;
  gap:34px;
  align-items:start;
}
.sa-footer-logo{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  margin-bottom:16px;
}
.sa-footer-logo img{
  width:72px;
  height:auto;
  object-fit:contain;
  flex-shrink:0;
}
.sa-footer-brandtext{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.sa-brand-main{
  font-size:30px;
  line-height:1;
  font-weight:900;
  letter-spacing:-0.8px;
}
.sa-blue{color:#353166;}
.sa-green{color:#527c36;}
.sa-brand-sub{
  font-size:13px;
  color:#9fb1c8;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:700;
}
.sa-footer-desc{
  max-width:420px;
  font-size:14px;
  line-height:1.8;
  color:#b9c5d6;
  margin:0;
}
.sa-footer-col h4{
  margin:0 0 14px;
  color:#ffffff;
  font-size:17px;
  font-weight:800;
}
.sa-footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}
.sa-footer-col li{
  margin:0 0 10px;
}
.sa-footer-col a,
.sa-footer-bottom-nav a{
  color:#c6d1df;
  text-decoration:none;
  transition:color .25s ease;
}
.sa-footer-col a:hover,
.sa-footer-bottom-nav a:hover{
  color:#527c36;
}
.sa-footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  max-width:1440px;
  margin:0 auto;
  padding:20px 36px 28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.sa-footer-bottom-nav{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  font-size:14px;
  font-weight:700;
}
.sa-footer-copy{
  margin:0;
  color:#9fb1c8;
  font-size:13px;
}
@media (max-width: 980px){
  .sa-footer-top{grid-template-columns:1fr 1fr;gap:26px;}
}
@media (max-width: 640px){
  .sa-footer-top{grid-template-columns:1fr;padding:34px 20px 24px;}
  .sa-footer-bottom{padding:18px 20px 24px;}
  .sa-brand-main{font-size:24px;}
}


@media (max-width: 991px){
  .hero-slide{
    width: 100%;
    height: 100%;
    object-position: center center;
  }
}

  .hero-content {
    padding-top: 150px;
  }

  .hero-desc {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
  }
}



/* ===== Why Choose Section ===== */
.why-choose-section{
  padding: 88px 0 80px;
  background: linear-gradient(180deg,#fff 0%,#f7f9fc 100%);
}
.why-choose-inner{
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: start;
}
.why-choose-intro{
  position: sticky;
  top: 120px;
}
.why-intro-text{
  margin-top: 18px;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.95;
  color: #5c6675;
}
.why-flow{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.why-flow::before{
  content: "";
  position: absolute;
  left: 38px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(22,84,150,.12) 0%, rgba(82,124,54,.32) 100%);
}
.why-flow-item{
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0,1fr);
  gap: 22px;
  align-items: start;
  padding: 12px 0 12px;
}
.why-flow-count{
  width: 76px;
  height: 76px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #165496;
  background: linear-gradient(135deg, rgba(22,84,150,.09), rgba(82,124,54,.14));
  border: 1px solid rgba(22,84,150,.14);
  box-shadow: 0 14px 36px rgba(17,24,38,.06);
  position: relative;
  z-index: 1;
}
.why-flow-body{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(17,24,38,.08);
  border-radius: 24px;
  padding: 26px 28px;
  box-shadow: 0 20px 50px rgba(17,24,38,.06);
  backdrop-filter: blur(8px);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}
.why-flow-item:hover .why-flow-body{
  transform: translateX(8px);
  box-shadow: 0 28px 60px rgba(17,24,38,.1);
  border-color: rgba(22,84,150,.18);
}
.why-flow-body h3{
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.3;
  color: #111826;
  font-weight: 800;
}
.why-flow-body p{
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #5c6675;
}
@media (max-width: 1080px){
  .why-choose-inner{
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .why-choose-intro{
    position: static;
  }
}
@media (max-width: 640px){
  .why-choose-section{
    padding: 66px 0 60px;
  }
  .why-choose-inner{
    padding: 0 20px;
  }
  .why-flow::before{
    left: 28px;
  }
  .why-flow-item{
    grid-template-columns: 56px minmax(0,1fr);
    gap: 16px;
  }
  .why-flow-count{
    width: 56px;
    height: 56px;
    font-size: 14px;
  }
  .why-flow-body{
    padding: 20px 18px;
    border-radius: 18px;
  }
  .why-flow-body h3{
    font-size: 18px;
  }
  .why-intro-text{
    font-size: 14px;
    line-height: 1.85;
  }
}
