/*
Theme Name: Care Point
Theme URI: https://carepoint.com.bd
Author: Mohammad Masudur Rahman
Author URI: https://carepoint.com.bd
Description: A professional WordPress theme for Care Point — IT, Security, and Branding solutions company based in Chattogram, Bangladesh.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: carepoint
Tags: business, corporate, technology, one-page, responsive
*/

/* =============================================
   CARE POINT THEME — MAIN STYLESHEET
   ============================================= */

:root {
  --navy: #0B1628;
  --navy-mid: #132035;
  --navy-light: #1E2F4A;
  --accent: #0EA5E9;
  --accent-dim: #0284C7;
  --accent-glow: rgba(14,165,233,0.12);
  --gold: #F59E0B;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --border: rgba(15,23,42,0.08);
  --section-alt: #F1F5F9;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Syne', sans-serif; line-height: 1.15; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── NAVIGATION ── */
.cp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  transition: box-shadow 0.3s;
}
.cp-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.cp-nav-logo { display: flex; align-items: center; gap: 10px; }
.cp-nav-logo-mark {
  width: 36px; height: 36px; background: var(--navy);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.cp-nav-logo-mark svg { width: 20px; height: 20px; }
.cp-nav-logo-text { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 17px; color: var(--navy); letter-spacing: -0.3px; }
.cp-nav-logo-text span { color: var(--accent); }
.cp-nav-links { display: flex; gap: 32px; align-items: center; }
.cp-nav-links a { font-size: 14px; font-weight: 500; color: var(--text-secondary); transition: color 0.2s; }
.cp-nav-links a:hover { color: var(--navy); }
.cp-nav-cta {
  background: var(--navy); color: var(--white) !important;
  padding: 10px 22px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}
.cp-nav-cta:hover { background: var(--navy-mid) !important; transform: translateY(-1px); color: var(--white) !important; }
.cp-mobile-toggle {
  display: none; cursor: pointer; background: none;
  border: none; padding: 6px;
}
.cp-mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 999;
  background: white; border-bottom: 1px solid var(--border);
  padding: 20px 5%; flex-direction: column; gap: 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.cp-mobile-menu.open { display: flex; }
.cp-mobile-menu a {
  font-size: 15px; font-weight: 500; color: var(--text-primary);
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.cp-mobile-menu a:last-child { border-bottom: none; }

/* ── HERO ── */
.cp-hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 5% 80px;
}
.cp-hero-grid-bg {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(var(--white) 1px, transparent 1px),
                    linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cp-hero-glow {
  position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cp-hero-glow-2 {
  position: absolute; bottom: -150px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cp-hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.cp-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,165,233,0.12); border: 1px solid rgba(14,165,233,0.25);
  color: #7DD3FC; font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.cp-hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); animation: cp-pulse 2s infinite;
}
@keyframes cp-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
.cp-hero h1 {
  font-size: clamp(36px, 5vw, 58px); font-weight: 800;
  color: var(--white); letter-spacing: -1.5px;
  line-height: 1.08; margin-bottom: 22px;
}
.cp-hero h1 .accent { color: var(--accent); }
.cp-hero h1 .gold { color: var(--gold); }
.cp-hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.6);
  max-width: 480px; line-height: 1.7; margin-bottom: 36px; font-weight: 300;
}
.cp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cp-btn-primary {
  background: var(--accent); color: var(--white);
  padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 500;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.cp-btn-primary:hover { background: var(--accent-dim); transform: translateY(-2px); color: var(--white); }
.cp-btn-outline {
  background: transparent; color: rgba(255,255,255,0.85);
  padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.cp-btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); transform: translateY(-2px); color: rgba(255,255,255,0.85); }
.cp-hero-stats {
  display: flex; gap: 32px; margin-top: 44px; padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cp-hero-stat-num { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 700; color: var(--white); }
.cp-hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.05em; }
.cp-hero-visual { position: relative; height: 420px; }
.cp-hero-card {
  position: absolute;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 20px 22px;
  backdrop-filter: blur(12px);
  animation: cp-float 5s ease-in-out infinite; color: white;
}
@keyframes cp-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.cp-hero-card:nth-child(1) { top:0; left:0; width:220px; animation-delay:0s; }
.cp-hero-card:nth-child(2) { top:80px; right:0; width:200px; animation-delay:-1.5s; }
.cp-hero-card:nth-child(3) { bottom:60px; left:30px; width:230px; animation-delay:-3s; }
.cp-hero-card:nth-child(4) { bottom:0; right:20px; width:190px; animation-delay:-4.5s; }
.cp-hero-card-icon { width:36px; height:36px; border-radius:8px; display:flex; align-items:center; justify-content:center; margin-bottom:12px; font-size:18px; }
.cp-hero-card-title { font-family:'Syne',sans-serif; font-size:14px; font-weight:600; margin-bottom:4px; }
.cp-hero-card-sub { font-size:12px; color:rgba(255,255,255,0.5); }

/* ── TRUST BAR ── */
.cp-trust-bar {
  background: var(--navy-light);
  padding: 18px 5%;
  display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.cp-trust-item { display:flex; align-items:center; gap:10px; color:rgba(255,255,255,0.45); font-size:13px; font-weight:500; letter-spacing:0.03em; }

/* ── SECTIONS ── */
.cp-section { padding: 96px 5%; }
.cp-section-alt { background: var(--section-alt); }
.cp-section-inner { max-width: 1100px; margin: 0 auto; }
.cp-section-eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.cp-section-eyebrow::before { content:''; display:block; width:24px; height:2px; background:var(--accent); border-radius:2px; }
.cp-section-title { font-size: clamp(28px,4vw,42px); font-weight:700; color:var(--navy); letter-spacing:-1px; line-height:1.15; margin-bottom:16px; }
.cp-section-subtitle { font-size:17px; color:var(--text-secondary); max-width:560px; line-height:1.7; font-weight:300; }
.cp-section-header { margin-bottom: 56px; }
.cp-section-header.centered { text-align:center; }
.cp-section-header.centered .cp-section-eyebrow { justify-content:center; }
.cp-section-header.centered .cp-section-eyebrow::before { display:none; }
.cp-section-header.centered .cp-section-subtitle { margin:0 auto; }

/* ── SERVICES ── */
.cp-services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.cp-service-card {
  background:var(--white); border:1px solid var(--border); border-radius:14px;
  padding:28px; transition:border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position:relative; overflow:hidden;
}
.cp-service-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--accent); opacity:0; transition:opacity 0.25s; }
.cp-service-card:hover { border-color:rgba(14,165,233,0.25); box-shadow:0 8px 40px rgba(14,165,233,0.08); transform:translateY(-3px); }
.cp-service-card:hover::before { opacity:1; }
.cp-service-icon { width:48px; height:48px; border-radius:10px; background:var(--accent-glow); display:flex; align-items:center; justify-content:center; margin-bottom:18px; font-size:22px; }
.cp-service-card h3 { font-size:17px; font-weight:600; color:var(--navy); margin-bottom:10px; }
.cp-service-card p { font-size:14px; color:var(--text-secondary); line-height:1.6; }
.cp-service-tags { display:flex; flex-wrap:wrap; gap:6px; margin-top:16px; }
.cp-service-tag { font-size:11px; font-weight:500; color:var(--text-muted); background:var(--section-alt); padding:3px 10px; border-radius:100px; }

/* ── WHY US ── */
.cp-why-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.cp-why-list { display:flex; flex-direction:column; gap:24px; }
.cp-why-item { display:flex; gap:18px; align-items:flex-start; }
.cp-why-num { width:36px; height:36px; border-radius:8px; background:var(--navy); color:var(--white); font-family:'Syne',sans-serif; font-size:14px; font-weight:700; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cp-why-item h4 { font-size:16px; font-weight:600; color:var(--navy); margin-bottom:4px; }
.cp-why-item p { font-size:14px; color:var(--text-secondary); line-height:1.6; }
.cp-why-visual { background:var(--navy); border-radius:20px; padding:36px; position:relative; overflow:hidden; }
.cp-why-visual-glow { position:absolute; top:-80px; right:-80px; width:300px; height:300px; border-radius:50%; background:radial-gradient(circle, rgba(14,165,233,0.2) 0%, transparent 65%); }
.cp-why-visual-content { position:relative; z-index:1; }
.cp-why-visual-title { font-family:'Syne',sans-serif; font-size:13px; font-weight:500; color:rgba(255,255,255,0.4); letter-spacing:0.08em; text-transform:uppercase; margin-bottom:24px; }
.cp-why-metric { display:flex; justify-content:space-between; align-items:center; padding:14px 0; border-bottom:1px solid rgba(255,255,255,0.06); }
.cp-why-metric:last-child { border-bottom:none; }
.cp-why-metric-label { font-size:14px; color:rgba(255,255,255,0.6); }
.cp-why-metric-value { font-family:'Syne',sans-serif; font-size:16px; font-weight:700; color:var(--white); }
.cp-why-metric-bar { width:80px; height:4px; background:rgba(255,255,255,0.08); border-radius:2px; overflow:hidden; margin-top:6px; }
.cp-why-metric-fill { height:100%; background:var(--accent); border-radius:2px; }

/* ── PACKAGES ── */
.cp-packages-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.cp-pkg-card { border-radius:16px; padding:32px 28px; border:1px solid var(--border); background:var(--white); position:relative; transition:transform 0.25s, box-shadow 0.25s; }
.cp-pkg-card:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(0,0,0,0.08); }
.cp-pkg-card.featured { background:var(--navy); border-color:var(--accent); }
.cp-pkg-badge { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:var(--accent); color:white; font-size:11px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; padding:4px 16px; border-radius:100px; white-space:nowrap; }
.cp-pkg-name { font-family:'Syne',sans-serif; font-size:13px; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color:var(--text-muted); margin-bottom:8px; }
.cp-pkg-card.featured .cp-pkg-name { color:rgba(255,255,255,0.4); }
.cp-pkg-headline { font-size:22px; font-weight:700; color:var(--navy); margin-bottom:6px; }
.cp-pkg-card.featured .cp-pkg-headline { color:var(--white); }
.cp-pkg-desc { font-size:14px; color:var(--text-secondary); margin-bottom:24px; line-height:1.6; }
.cp-pkg-card.featured .cp-pkg-desc { color:rgba(255,255,255,0.55); }
.cp-pkg-list { list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:28px; }
.cp-pkg-list li { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--text-secondary); }
.cp-pkg-card.featured .cp-pkg-list li { color:rgba(255,255,255,0.7); }
.cp-pkg-list li::before { content:'✓'; color:var(--accent); font-weight:700; flex-shrink:0; margin-top:1px; }
.cp-pkg-cta { display:block; text-align:center; padding:13px; border-radius:8px; font-size:14px; font-weight:500; background:var(--section-alt); color:var(--navy); transition:background 0.2s, transform 0.15s; }
.cp-pkg-cta:hover { background:#E2E8F0; transform:translateY(-1px); color:var(--navy); }
.cp-pkg-card.featured .cp-pkg-cta { background:var(--accent); color:white; }
.cp-pkg-card.featured .cp-pkg-cta:hover { background:var(--accent-dim); color:white; }

/* ── PROCESS ── */
.cp-process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
.cp-process-steps::before { content:''; position:absolute; top:28px; left:14%; right:14%; height:2px; background:linear-gradient(90deg, var(--accent) 0%, var(--border) 100%); z-index:0; }
.cp-process-step { text-align:center; padding:0 16px; position:relative; z-index:1; }
.cp-process-num { width:56px; height:56px; border-radius:50%; background:var(--white); border:2px solid var(--accent); display:flex; align-items:center; justify-content:center; font-family:'Syne',sans-serif; font-size:18px; font-weight:700; color:var(--accent); margin:0 auto 20px; }
.cp-process-step h4 { font-size:16px; font-weight:600; color:var(--navy); margin-bottom:8px; }
.cp-process-step p { font-size:13px; color:var(--text-secondary); line-height:1.6; }

/* ── ABOUT ── */
.cp-about-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.cp-about-image-block { position:relative; }
.cp-about-avatar { width:100%; aspect-ratio:4/5; background:linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius:20px; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.cp-about-avatar img { width:100%; height:100%; object-fit:cover; border-radius:20px; }
.cp-about-avatar-initials { font-family:'Syne',sans-serif; font-size:72px; font-weight:800; color:rgba(255,255,255,0.15); letter-spacing:-4px; position:absolute; bottom:-10px; right:10px; line-height:1; }
.cp-about-avatar-icon { font-size:64px; position:relative; z-index:1; }
.cp-about-card-float { position:absolute; bottom:-20px; left:-20px; background:var(--white); border:1px solid var(--border); border-radius:12px; padding:14px 18px; box-shadow:0 8px 32px rgba(0,0,0,0.08); }
.cp-about-card-float-title { font-family:'Syne',sans-serif; font-size:13px; font-weight:700; color:var(--navy); }
.cp-about-card-float-sub { font-size:12px; color:var(--text-muted); margin-top:2px; }
.cp-about-content h2 { margin-bottom:18px; }
.cp-about-content p { font-size:16px; color:var(--text-secondary); line-height:1.75; margin-bottom:16px; font-weight:300; }
.cp-about-skills { display:flex; flex-wrap:wrap; gap:8px; margin-top:24px; }
.cp-about-skill { font-size:12px; font-weight:500; color:var(--navy); background:var(--section-alt); border:1px solid var(--border); padding:6px 14px; border-radius:100px; }

/* ── CONTACT ── */
.cp-contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; }
.cp-contact-info { display:flex; flex-direction:column; gap:24px; }
.cp-contact-detail { display:flex; align-items:flex-start; gap:16px; }
.cp-contact-detail-icon { width:44px; height:44px; border-radius:10px; background:var(--accent-glow); border:1px solid rgba(14,165,233,0.15); display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.cp-contact-detail h4 { font-size:13px; font-weight:500; color:var(--text-muted); margin-bottom:4px; text-transform:uppercase; letter-spacing:0.05em; }
.cp-contact-detail p { font-size:15px; color:var(--navy); font-weight:500; }
.cp-contact-free-visit { margin-top:8px; padding:20px; background:var(--accent-glow); border:1px solid rgba(14,165,233,0.15); border-radius:12px; }
.cp-contact-free-visit h4 { font-size:14px; font-weight:600; color:var(--navy); margin-bottom:6px; }
.cp-contact-free-visit p { font-size:13px; color:var(--text-secondary); line-height:1.6; }

/* ── CONTACT FORM ── */
.cp-contact-form { display:flex; flex-direction:column; gap:16px; }
.cp-form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.cp-form-group { display:flex; flex-direction:column; gap:6px; }
.cp-form-group label { font-size:13px; font-weight:500; color:var(--text-secondary); }
.cp-form-group input,
.cp-form-group select,
.cp-form-group textarea {
  padding:12px 16px; border:1px solid var(--border); border-radius:8px;
  font-family:'DM Sans',sans-serif; font-size:15px; color:var(--text-primary);
  background:var(--white); transition:border-color 0.2s, box-shadow 0.2s; outline:none; width:100%;
}
.cp-form-group input:focus,
.cp-form-group select:focus,
.cp-form-group textarea:focus { border-color:var(--accent); box-shadow:0 0 0 3px rgba(14,165,233,0.1); }
.cp-form-group textarea { resize:vertical; min-height:120px; }
.cp-form-submit { background:var(--navy); color:white; border:none; cursor:pointer; padding:14px 28px; border-radius:8px; font-family:'DM Sans',sans-serif; font-size:15px; font-weight:500; display:flex; align-items:center; justify-content:center; gap:8px; transition:background 0.2s, transform 0.15s; width:100%; }
.cp-form-submit:hover { background:var(--navy-mid); transform:translateY(-1px); }

/* ── FOOTER ── */
.cp-footer { background:var(--navy); padding:64px 5% 32px; color:rgba(255,255,255,0.6); }
.cp-footer-grid { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.cp-footer-brand-desc { font-size:14px; line-height:1.7; margin-top:14px; }
.cp-footer-col h4 { font-family:'Syne',sans-serif; font-size:13px; font-weight:600; color:white; letter-spacing:0.06em; text-transform:uppercase; margin-bottom:16px; }
.cp-footer-col ul { display:flex; flex-direction:column; gap:10px; }
.cp-footer-col ul li a { font-size:14px; transition:color 0.2s; }
.cp-footer-col ul li a:hover { color:white; }
.cp-footer-bottom { max-width:1100px; margin:0 auto; border-top:1px solid rgba(255,255,255,0.08); padding-top:28px; display:flex; justify-content:space-between; align-items:center; font-size:13px; }
.cp-footer-bottom-right { display:flex; gap:24px; }
.cp-footer-bottom a { transition:color 0.2s; }
.cp-footer-bottom a:hover { color:white; }

/* ── REVEAL ANIMATION ── */
.cp-reveal { opacity:0; transform:translateY(20px); transition:opacity 0.6s ease, transform 0.6s ease; }
.cp-reveal.visible { opacity:1; transform:translateY(0); }

/* ── WORDPRESS EXTRAS ── */
.wp-block-image img, .wp-block-cover img { max-width:100%; }
.aligncenter { display:block; margin:0 auto; }
.alignleft { float:left; margin-right:1.5rem; }
.alignright { float:right; margin-left:1.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cp-hero-inner { grid-template-columns:1fr; }
  .cp-hero-visual { display:none; }
  .cp-services-grid { grid-template-columns:repeat(2,1fr); }
  .cp-why-grid { grid-template-columns:1fr; }
  .cp-packages-grid { grid-template-columns:1fr; }
  .cp-process-steps { grid-template-columns:repeat(2,1fr); gap:32px; }
  .cp-process-steps::before { display:none; }
  .cp-about-grid { grid-template-columns:1fr; }
  .cp-contact-grid { grid-template-columns:1fr; }
  .cp-footer-grid { grid-template-columns:1fr 1fr; }
  .cp-nav-links { display:none; }
  .cp-nav-cta { display:none; }
  .cp-mobile-toggle { display:block; }
}
@media (max-width: 560px) {
  .cp-services-grid { grid-template-columns:1fr; }
  .cp-form-row { grid-template-columns:1fr; }
  .cp-footer-grid { grid-template-columns:1fr; }
  .cp-trust-bar { gap:20px; }
  .cp-hero-stats { flex-direction:column; gap:16px; }
}

/* ── Custom Logo Fix ── */
.cp-nav-logo .custom-logo-link {
  display: flex;
  align-items: center;
}
.cp-nav-logo .custom-logo-link img.custom-logo {
  height: 42px !important;
  width: auto !important;
  max-width: 140px !important;
  object-fit: contain;
  display: block;
}
