/* ============================================
   SHIVOHAM GLOBAL SERVICES - BOOTSTRAP THEME
   Dark / Light Mode with CSS Variables
   ============================================ */

:root {
  /* Dark Theme (Default) */
  --bg-primary: #0f172a;
  --bg-secondary: #1e2937;
  --bg-card: #1e2937;
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --accent-gold: #d4af37;
  --accent-gold-light: #f4d35e;
  --border-color: #334155;
}

[data-theme="light"] {
  /* Light Theme */
  --bg-primary: #ffffff;
  --bg-secondary: #f9f9f9;
  --bg-card: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --accent-gold: #b8860b;
  --accent-gold-light: #daa520;
  --border-color: #e2e8f0;
}

/* Base Styles */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 16px;
  line-height: 1.6;
}

/* Typography - Consistent across all pages */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

h5 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

h6 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

p {
  font-size: 1rem;
  line-height: 1.7;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
}

.small, small {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Hero Section - Theme Aware */
.hero-section {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* ============================================
   HERO BANNER - White & Gold Theme (Dark mode aware)
   ============================================ */
.hero-banner {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-bottom: 3px solid #d4af37;
}

[data-theme="dark"] .hero-banner {
  background: #0f172a;
}

[data-theme="dark"] .hero-title {
  color: #ffffff;
}

[data-theme="dark"] .hero-desc {
  color: #c8d6e5;
}

.hero-banner::before {
  display: none;
}

.hero-banner::after {
  display: none;
}

.hero-subtitle {
  color: #b8860b;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-title {
  color: #1a1a2e;
  font-size: 3.5rem;
  letter-spacing: 3px;
}

.hero-title-sub {
  color: #b8860b;
  font-size: 1.8rem;
  letter-spacing: 1px;
}

.hero-tagline {
  color: #d4af37;
  font-size: 1.2rem;
}

.hero-desc {
  color: #4a4a5a;
  font-size: 1rem;
  max-width: 500px;
  line-height: 1.7;
}

.btn-hero-outline {
  border: 2px solid #b8860b;
  color: #b8860b;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.35);
}

/* Hero Visual - Globe, Passport, Plane, Graduation */
.hero-visual {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.hero-globe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  color: #d4af37;
  text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  animation: globePulse 3s ease-in-out infinite;
}

.hero-passport {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 3rem;
  color: #b8860b;
  animation: floatItem 4s ease-in-out infinite;
}

.hero-plane {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 2.5rem;
  color: #d4af37;
  transform: rotate(-20deg);
  animation: floatItem 3s ease-in-out infinite 0.5s;
}

.hero-graduation {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 2.5rem;
  color: #b8860b;
  animation: floatItem 3.5s ease-in-out infinite 1s;
}

/* Orbit ring around globe */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(60deg);
  width: 220px;
  height: 220px;
  border: 2px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  animation: orbitSpin 8s linear infinite;
}

.hero-visual::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(60deg) rotateZ(60deg);
  width: 250px;
  height: 250px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  animation: orbitSpin 12s linear infinite reverse;
}

@keyframes globePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes floatItem {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(0deg); }
  to { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(360deg); }
}

/* Hero Stats Bar */
.hero-stats-bar {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.hero-stat-item {
  padding: 0.5rem;
}

.hero-stat-icon {
  color: #d4af37;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.hero-stat-number {
  color: #1a1a2e;
  font-size: 1.3rem;
  font-weight: 700;
}

.hero-stat-label {
  color: #6b7280;
  font-size: 0.8rem;
}

/* Responsive Hero */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-title-sub {
    font-size: 1.3rem;
  }
  .hero-visual {
    width: 220px;
    height: 220px;
  }
  .hero-globe {
    font-size: 5rem;
  }
  .hero-passport, .hero-plane, .hero-graduation {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-title-sub {
    font-size: 1.1rem;
  }
  .hero-visual {
    width: 180px;
    height: 180px;
  }
  .hero-globe {
    font-size: 4rem;
  }
  .hero-stat-number {
    font-size: 1rem;
  }
}

/* Navbar */
.navbar {
  background-color: var(--bg-primary) !important;
  border-bottom: 1px solid var(--border-color);
}

/* Dropdown Menu - Theme Aware */
.dropdown-menu {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  min-width: 220px;
}

.dropdown-item {
  color: var(--text-primary);
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--bg-secondary);
  color: var(--accent-gold);
}

.dropdown-divider {
  border-color: var(--border-color);
  margin: 0.3rem 0;
}

/* Top Contact Bar Social Icons */
.top-contact-bar a i.fab {
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

.top-contact-bar a:hover i.fab {
  color: var(--accent-gold) !important;
}

/* Mobile Nav Toggler - Fixed visibility in both themes */
.navbar-toggler {
  border: 2px solid var(--accent-gold) !important;
  padding: 8px 12px;
  background-color: transparent !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4af37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 24px;
  height: 24px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.3) !important;
}

.nav-link {
  color: var(--text-secondary) !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-gold) !important;
}

.navbar-brand {
  color: var(--accent-gold) !important;
  font-weight: 700;
}

.navbar-brand span.fw-bold {
  color: var(--text-primary) !important;
  line-height: 1.1;
  display: block;
}

.navbar-brand .brand-name {
  font-size: 1.25rem;
  letter-spacing: 1.5px;
}

.navbar-brand .text-gold {
  color: var(--accent-gold) !important;
}

.navbar-brand div {
  line-height: 1.2;
}

.navbar-brand small {
  font-size: 0.7rem;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Cards */
.card {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-primary) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.card *,
.card p,
.card h5,
.card ul li,
.card small,
.card .text-secondary {
  color: var(--text-primary) !important;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Service Cards - Clickable */
.service-card {
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--accent-gold) !important;
}

/* Leader Cards - Clickable */
.leader-card {
  cursor: pointer;
}

.leader-card:hover {
  border-color: var(--accent-gold) !important;
}

/* Leader Images - Grid style, not rounded */
.leader-img {
  height: 320px;
  object-fit: cover;
  object-position: top;
}

.leader-img-detail {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: cover;
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  color: #0f172a;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(212, 175, 55, 0.4);
  color: #0f172a;
}

/* Outline Gold Button */
.btn-outline-gold {
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
}

/* Theme Toggle Button */
.theme-toggle {
  background: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

/* Section Headers */
.section-header {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--accent-gold), var(--accent-gold-light));
  border-radius: 3px;
}

/* Text Gold Utility */
.text-gold {
  color: var(--accent-gold) !important;
}

/* Background Gold Utility */
.bg-gold {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light)) !important;
}

/* CTA Section */
[data-theme="light"] .bg-primary {
  background: linear-gradient(135deg, #b8860b, #d4af37) !important;
}

[data-theme="light"] .bg-primary h2,
[data-theme="light"] .bg-primary p {
  color: #ffffff !important;
}

/* Carousel */
.carousel-item img {
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Stats */
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.bg-secondary {
  background-color: var(--bg-secondary) !important;
}

.text-secondary {
  color: var(--text-secondary) !important;
}

/* Footer */
footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  color: var(--text-primary);
}

footer a {
  color: var(--text-secondary) !important;
  text-decoration: none;
}

footer a:hover {
  color: var(--accent-gold) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-item img {
    height: 300px;
  }
}

/* =============================================
   GALLERY PAGE STYLES
   ============================================= */

/* Gallery Filter Buttons */
.gallery-filter {
  border-radius: 20px;
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.gallery-filter.active {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light)) !important;
  color: #0f172a !important;
  border-color: var(--accent-gold) !important;
}

/* Gallery Card */
.gallery-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Placeholder for images (replace with actual images later) */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
  border: 2px dashed var(--border-color);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.gallery-placeholder i {
  font-size: 2.5rem;
  color: var(--accent-gold);
  opacity: 0.7;
}

.gallery-placeholder span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.gallery-card:hover .gallery-placeholder {
  border-color: var(--accent-gold);
  background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
}

.gallery-card:hover .gallery-placeholder i {
  opacity: 1;
  transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0 0 12px 12px;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  color: #ffffff;
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Gallery Item Animation */
.gallery-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.8);
  position: absolute;
  pointer-events: none;
}

@media (max-width: 576px) {
  .gallery-placeholder i {
    font-size: 1.8rem;
  }
  .gallery-placeholder span {
    font-size: 0.7rem;
  }
}

/* =============================================
   CAREERS PAGE STYLES
   ============================================= */

/* Careers Hero Visual */
.careers-visual {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
}

.careers-icon-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  color: var(--accent-gold);
  opacity: 0.9;
  animation: globePulse 3s ease-in-out infinite;
}

.careers-icon-float {
  position: absolute;
  font-size: 1.8rem;
  color: var(--accent-gold);
  opacity: 0.7;
  animation: floatItem 3s ease-in-out infinite;
}

.careers-icon-1 {
  top: 10px;
  right: 30px;
  animation-delay: 0s;
}

.careers-icon-2 {
  bottom: 20px;
  left: 20px;
  animation-delay: 0.5s;
}

.careers-icon-3 {
  bottom: 30px;
  right: 20px;
  animation-delay: 1s;
}

.careers-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 2px dashed rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  animation: orbitSpin 10s linear infinite;
}

/* Careers Benefit Icons */
.careers-benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 2px solid var(--accent-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-gold);
  transition: all 0.3s ease;
}

.card:hover .careers-benefit-icon {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  color: #0f172a;
  transform: scale(1.1);
}

/* Careers Accordion */
.career-accordion-item {
  border: 1px solid var(--border-color) !important;
  border-radius: 12px !important;
  overflow: hidden;
  background: var(--bg-card);
}

.career-accordion-btn {
  background: var(--bg-card) !important;
  color: var(--text-primary) !important;
  border: none !important;
  box-shadow: none !important;
  padding: 1rem 1.25rem;
}

.career-accordion-btn:not(.collapsed) {
  background: var(--bg-secondary) !important;
}

.career-accordion-btn::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.career-job-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.accordion-body {
  background: var(--bg-card);
  color: var(--text-primary);
}

/* Careers Contact Icons in Apply Section */
.careers-contact-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Careers Apply Card - Override card text colors */
.careers-apply-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
}

.careers-apply-card *,
.careers-apply-card p,
.careers-apply-card h5,
.careers-apply-card small {
  color: #ffffff !important;
}

.careers-apply-card .text-gold {
  color: var(--accent-gold) !important;
}
/* assets/css/gallery.css */

.gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}


[data-theme="dark"] .gallery-placeholder {
    background: #2b2b2b;
    color: #adb5bd;
}

.gallery-placeholder i {
    font-size: 3.8rem;
    margin-bottom: 10px;
}

.gallery-placeholder span {
    font-weight: 600;
    text-align: center;
    padding: 0 10px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
    padding: 18px 12px 14px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-size: 0.95rem;
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    margin: 0;
    font-weight: 500;
}

/* Modal - Theme Friendly */
#galleryModal .modal-content {
    border-radius: 16px;
    background: var(--bg-modal, #fff);
    color: var(--text-color, #212529);
}

[data-theme="dark"] #galleryModal .modal-content {
    background: #212529;
    color: #f8f9fa;
}

#galleryModal .carousel-item img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
}

#modalDescription {
    font-size: 1.05rem;
}

@media (max-width: 768px) {
  .careers-visual {
    width: 180px;
    height: 180px;
  }
  .careers-icon-main {
    font-size: 3.5rem;
  }
  .careers-icon-float {
    font-size: 1.3rem;
  }
}

/* =============================================
   MOBILE VIEW - TOP CONTACT BAR
   Only shows Phone & Email on Mobile
   ============================================= */

@media (max-width: 991px) {
    /* Navbar collapse menu background */
    .navbar-collapse {
        background-color: var(--bg-primary);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 0.5rem;
        border: 1px solid var(--border-color);
    }

    .navbar-nav .nav-item {
        margin: 0.25rem 0;
    }

    .navbar-nav .btn-gold {
        margin-top: 0.5rem;
        display: inline-block;
    }

    .top-contact-bar .row {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .top-contact-bar .col-md-8 {
        width: 100%;
    }
    
    .top-contact-bar .col-md-4 {
        display: none; /* Hide address and Get In Touch button on mobile */
    }
    
    /* Only show Phone and Email */
    .top-contact-bar .d-flex {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 20px;
        font-size: 0.9rem;
    }
    
    .top-contact-bar a {
        font-size: 0.92rem;
    }

    /* Hero banner mobile fix */
    .hero-banner {
        min-height: auto;
        padding-bottom: 2rem;
    }

    .hero-banner .row {
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-banner .d-flex.flex-wrap {
        justify-content: center;
    }
}

/* Extra small mobile adjustment */
@media (max-width: 576px) {
    .top-contact-bar {
        padding: 10px 0;
    }
    
    .top-contact-bar .d-flex {
        gap: 10px 15px;
        font-size: 0.85rem;
    }

    .hero-visual {
        width: 160px;
        height: 160px;
        margin-top: 1rem;
    }

    .hero-globe {
        font-size: 3.5rem;
    }

    .hero-passport, .hero-plane, .hero-graduation {
        font-size: 1.5rem;
    }

    .hero-visual::before {
        width: 140px;
        height: 140px;
    }

    .hero-visual::after {
        width: 160px;
        height: 160px;
    }
}