
:root {
  --primary: #256e99;
  --primary-dark: #1a5075;
  --primary-light: #3a8dbf;
  --secondary: #25D366;
  --secondary-light: #12ad02;
  --accent: #8dfd42;
  --white: #fff;
  --off-white: #f7f9fb;
  --light-gray: #eef2f6;
  --text: #0d1f2d;
  --text-muted: #5a7a8e;
  --radius: 12px;
  --shadow: 0 8px 40px rgba(37,110,153,0.12);
  --shadow-hover: 0 20px 60px rgba(37,110,153,0.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  width: 12px; height: 12px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed; z-index: 9999;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: fixed; z-index: 9998;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform 0.08s ease, width 0.3s, height 0.3s, border-color 0.2s;
  opacity: 0.5;
}
body:hover .cursor { opacity: 1; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(37,110,153,0.1);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 68px;
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.15rem;
  color: var(--primary); letter-spacing: -0.02em;
}
.nav-logo span { color: var(--secondary); }
.nav-right { display: flex; align-items: center; gap: 2rem; }
.nav-right a {
  font-size: 1.2rem; font-weight: 500; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s;
}
.nav-right a:hover { color: var(--primary); }
.nav-badge {
  background: var(--primary-dark); color: var(--white) !important;
  padding: 0.8rem 1rem; border-radius: 4px;
  font-weight: 700; font-size: 1.48rem;
  letter-spacing: 0.03em;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 4px; background: var(--primary); border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; width: 100%;
  background: white; z-index: 999; border-bottom: 1px solid rgba(37,110,153,0.1);
  flex-direction: column; padding: 1.5rem 5vw 2rem; gap: 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; color: var(--text); text-decoration: none; font-weight: 500; }
.mobile-menu a:hover { color: var(--primary); }

/* ─── HERO BANNER ─── */
.hero {
  min-height: 90vh; display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 80px 5vw 3vw; position: relative; overflow: hidden;
  background: var(--white);
}
.hero-bg-shape {
  position: absolute; top: -10%; right: -5%; width: 55vw; height: 110vh;
   background: linear-gradient(180deg,rgba(255, 255, 255, 0) ,rgba(22, 93, 134, 0)), url('img/background\ \(2\).jpg');
  background-repeat: no-repeat;background-size: cover;background-position: center;

   clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-bg-dot {
  position: absolute; bottom: 10%; left: 3%;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 243, 255, 0.25), transparent 70%);
  z-index: 0;
}
.hero-accent-line {
  position: absolute; top: 0; right: 50%; width: 3px; height: 100%;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.3; z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 580px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary); border: 1px solid var(--primary-dark);
  color: var(--off-white); padding: 0.35rem 1rem; border-radius: 2rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-tag::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--accent); }
.hero h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: clamp(3rem, 5vw, 5.0rem); line-height: 1.0;
  letter-spacing: -0.03em; color: var(--text);
}
.hero h1 .line2 { color: var(--primary); }
.hero h1 .line3 { color: var(--secondary); }
.hero-sub {
  margin-top: 0.5rem; font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.7; max-width: 440px;
}
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 1rem; flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2.2rem;
  color: var(--primary); line-height: 1;
}
.stat-num span { color: var(--secondary); }
.stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.2rem; }
.hero-cta { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }
.btn-prim {
  background: var(--primary); color: white; padding: 0.85rem 1rem;
  border-radius: 50px; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.88rem; text-decoration: none; transition: 0.25s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.get-quote {
  background: var(--primary); color: white; padding: 0.6rem 0.7rem;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.88rem; text-decoration: none; transition: 0.25s;
}
.btn-prim:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,110,153,0.3); }
.btn-sec {
  border: 2px solid var(--secondary); color: var(--secondary); padding: 0.85rem 2rem;
  border-radius: 50px; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.88rem; text-decoration: none; transition: 0.25s;
}
.btn-sec:hover { background: var(--secondary); color: white; transform: translateY(-2px); }

/* ─── FILTER TABS ─── */
.filter-section {
  padding: 4rem 5vw 1rem; background: var(--white);
   top: 68px; z-index: 100;
  border-bottom: 1px solid var(--light-gray);
}
.filter-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.filter-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-tab {
  padding: 0.5rem 1.3rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  border: 2px solid var(--light-gray); background: transparent; color: var(--text-muted);
  cursor: pointer; transition: 0.2s; font-family: 'Montserrat', sans-serif;
}
.filter-tab:hover { border-color: var(--primary); color: var(--primary); }
.filter-tab.active {
  background: var(--primary); border-color: var(--primary); color: white;
}
.filter-tab.active.design { background: var(--primary); border-color: var(--primary); }
.filter-tab.active.print { background: var(--secondary); border-color: var(--secondary); }
.filter-tab.active.brand { background: var(--secondary); border-color: var(--secondary); }
.filter-tab.active.web { background: #7c3aed; border-color: #7c3aed; }
.filter-count { font-size: 0.8rem; color: var(--text-muted); }

/* ─── FEATURED SLIDER ─── */
.slider-section {
  padding: 3rem 5vw 4rem; background: var(--off-white);
  overflow: hidden;
}
.slider-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.section-label {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--primary); font-weight: 700; margin-bottom: 0.4rem;
}
.section-title {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.02em; color: var(--text);
}
.section-title span { color: var(--primary); }
.section-title span.g { color: var(--secondary); }
.slider-controls { display: flex; gap: 0.5rem; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--primary); background: transparent; color: var(--primary);
  font-size: 1rem; cursor: pointer; transition: 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--primary); color: white; }
.slider-track-wrap { overflow: hidden; position: relative; }
.slider-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.slide-card {
  flex: 0 0 calc(33.333% - 1rem); min-width: 280px;
  border-radius: var(--radius); overflow: hidden;
  background: white; box-shadow: var(--shadow);
  transition: transform 0.35s, box-shadow 0.35s;
  position: relative;
}
.slide-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.slide-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  background: var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.slide-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; position: relative; overflow: hidden;
}
.img-overlay {
  position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(37,110,153,0.85) 100%);
  transition: opacity 0.35s; display: flex; align-items: flex-end; padding: 1.2rem;
}
.slide-card:hover .img-overlay { opacity: 1; }
.overlay-text { color: white; font-size: 0.82rem; font-weight: 500; }
.slide-body { padding: 1.2rem 1.4rem 1.4rem; }
.slide-cat {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.cat-design { color: var(--primary); }
.cat-print { color: var(--secondary); }
.cat-brand { color: var(--secondary); }
.cat-web { color: #7c3aed; }
.slide-body h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; }
.slide-body p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.slide-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; }
.slide-tag {
  font-size: 0.72rem; padding: 0.25rem 0.7rem; border-radius: 2rem;
  background: var(--light-gray); color: var(--text-muted); font-weight: 500;
}
.slide-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; cursor: pointer; transition: 0.2s;
}
.slide-arrow:hover { background: var(--primary-dark); transform: scale(1.1); }

/* placeholder bgs */
.bg-design { background: linear-gradient(135deg, #e8f4fd 0%, #c8e6f7 100%); }
.bg-print  { background:white; }
.bg-brand  { background: linear-gradient(135deg, #e8fde8 0%, #c8f0c8 100%); }
.bg-web    { background: linear-gradient(135deg, #ede8fd 0%, #343335 100%); }

/* ─── MASONRY GRID ─── */
.gallery-section { padding: 4rem 5vw 6rem; background: white; }
.gallery-grid {
  columns: 4; column-gap: 1.2rem;
  margin-top: 2.5rem;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 1.2rem;
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.35s, box-shadow 0.35s;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-hover); }
.gallery-item img {
  width: 100%; display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-img-placeholder {
  width: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; position: relative;
}
.gallery-overlay {
  position: absolute; inset: 0; opacity: 50;
  background: linear-gradient(180deg, transparent 30%, rgba(2, 89, 139, 0.88) 100%);
  transition: opacity 0.35s;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 0; }
.gallery-overlay h4 { color: white; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; }
.gallery-overlay p { color: rgba(255,255,255,0.8); font-size: 0.78rem; margin-top: 0.2rem; }
.gallery-overlay .g-cat {
  display: inline-block; margin-bottom: 0.5rem;width: fit-content;
  background: var(--light-gray); color: var(--primary-dark);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 2rem;
}
/* tall variants for masonry interest */
.tall .gallery-img-placeholder { aspect-ratio: 3/4; }
.wide .gallery-img-placeholder { aspect-ratio: 16/9; }
.sq .gallery-img-placeholder { aspect-ratio: 1/1; }
.short .gallery-img-placeholder { aspect-ratio: 5/3; }

/* ─── CATEGORY SHOWCASE STRIPS ─── */
.showcase { padding: 5rem 5vw; }
.showcase.alt { background: var(--off-white); }
.showcase-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.showcase-layout.rev { direction: rtl; }
.showcase-layout.rev > * { direction: ltr; }
.showcase-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.showcase-img-box {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: 0.35s;
}
.showcase-img-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.showcase-img-box.tall { grid-row: span 2; }
.s-placeholder {
  width: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; background: var(--light-gray);
}
.s-placeholder.h1 { aspect-ratio: 1/1.5; }
.s-placeholder.h2 { aspect-ratio: 1/1; }
.badge-strip { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.badge {
  padding: 0.35rem 0.85rem; border-radius: 2rem; font-size: 0.75rem; font-weight: 600;
  background: var(--light-gray); color: var(--text-muted);
}
.badge.p { background: rgba(37,110,153,0.1); color: var(--primary); }
.badge.s { background: rgba(14,139,2,0.1); color: var(--secondary); }
.badge.a { background: rgba(141,253,66,0.3); color: #3a6e00; }

/* ─── AUTO-SCROLL TICKER ─── */
.ticker-section { padding: 2rem 0; background: var(--primary); overflow: hidden; }
.ticker-track {
  display: flex; gap: 3rem; width: max-content;
  animation: ticker 22s linear infinite;
}
.ticker-item {
  white-space: nowrap; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1rem; color: white; display: flex; align-items: center; gap: 1rem;
}
.ticker-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(13, 31, 45, 0.479); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; }
.lb-inner {
  max-width: 500px; width: 100%; height: auto; background: var(--off-white);
  border-radius: 16px; overflow: hidden; position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  animation: lbIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes lbIn { from { opacity:0; transform:scale(0.88); } to { opacity:1; transform:scale(1); } }
.lb-img {
  width: 100%; max-height: 500px; object-fit: contain;
  background: var(--light-gray); display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.lb-img-placeholder {
  width: auto; max-height: 500px;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 900px) {
  .lb-inner{height: max-content;}
  .lb-nav {top: 0px;}
}
.lb-body { padding: 0.5rem 1.5rem; }
.lb-cat { font-size: 0.42rem; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.3rem; }
.lb-body h2 { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 1.0rem; margin-bottom: 0.3rem; }
.lb-body p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }
.lb-tags { display: flex; gap: 0.5rem; margin-top: 1.2rem; flex-wrap: wrap; }
.lb-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.5); color: white;
  border: none; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lb-close:hover { background: var(--primary); }
.lb-nav {position: relative; display: flex; justify-content: space-between; margin-top: 1.5rem;bottom: 300px; }
.lb-nav-btn {
  padding: 4px ; border-radius: 50px;
  border: 2px solid var(--primary); color: var(--primary); background: transparent;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.82rem; cursor: pointer;
  transition: 0.2s;
}
.lb-nav-btn:hover { background: var(--primary); color: white; }

/* ─── CTA STRIP ─── */
.cta-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #0d2f45 100%);
  padding: 5rem 5vw; text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: 'WORK'; position: absolute;
  font-family: 'Syne', sans-serif; font-size: 14rem; font-weight: 800;
  color: rgba(255,255,255,0.03); top: 50%; left: 50%;
  transform: translate(-50%,-50%); pointer-events: none; white-space: nowrap;
}
.cta-strip h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(2rem,5vw,3.5rem);
  color: white; position: relative; z-index: 1;
}
.cta-strip h2 span { color: var(--secondary); }
.cta-strip p { color: rgba(255,255,255,0.7); margin-top: 1rem; font-size: 1rem; position: relative; z-index: 1; }
.cta-strip .cta-btns { display: flex; gap: 1rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-accent {
  background: var(--secondary); color: var(--text); padding: 0.9rem 2.5rem;
  border-radius: 50px; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.9rem;
  text-decoration: none; transition: 0.25s;
}
.btn-accent:hover { background: #2fd165; transform: translateY(-2px); }
.btn-white-out {
  border: 2px solid rgba(255,255,255,0.5); color: white; padding: 0.9rem 2.5rem;
  border-radius: 50px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; transition: 0.25s;
}
.btn-white-out:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ─── FOOTER ─── */
footer {
  background: var(--text); color: rgba(255,255,255,0.65);
  padding: 2.5rem 5vw; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
footer .nav-logo { color: white; font-size: 1rem;font-family: 'Montserrat', sans-serif; }
footer .nav-logo span { color: white; }
footer p { font-size: 0.82rem; }
footer a { color: var(--secondary); text-decoration: none; font-weight: 500; }

/* ─── SCROLL TOP ─── */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: white;
  border: none; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,110,153,0.4); transition: 0.25s;
  opacity: 0; pointer-events: none; transform: translateY(10px);
}
.scroll-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .gallery-grid { columns: 3; }
}
@media (max-width: 900px) {
  .nav-right { display: none; }
  .hamburger { display: flex; }
  .hero-bg-shape { width: 100vw; clip-path: polygon(0 65%, 100% 50%, 100% 100%, 0% 100%); top: auto; bottom: 0; height: 40vh; }
  .hero h1 { font-size: clamp(2.5rem, 8vw, 4rem); }
  .showcase-layout, .showcase-layout.rev { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
  .slide-card { flex: 0 0 calc(50% - 0.75rem); }
  .gallery-grid { columns: 2; }
}
@media (max-width: 600px) {
  .filter-section { padding: 1.2rem 5vw 0.8rem; top: 68px; }
  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.7rem; }
  .slide-card { flex: 0 0 calc(85vw); }
  .gallery-grid { columns: 1; }
  .showcase-images { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn-prim, .btn-sec { text-align: center; justify-content: center; }
  .btn-sec{border: 2px solid var(--primary);color: #256e99;}
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

/* ─── ENTRANCE ANIMATIONS ─── */
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.4s; }
.d5 { animation-delay: 0.5s; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (min-width: 768px) {
    .get-quote {
        display: none;
    }
    .hero-bg-shape{
       background: linear-gradient(180deg,rgba(255, 255, 255, 0) ,rgba(22, 93, 134, 0)), url('assets/musa.jpg');
  background-repeat: no-repeat;background-size: cover;background-position: center;

    }
}