/* ===================================
   DHRUV FOUNDRY - PREMIUM STYLES
   Modern Industrial Aesthetic
   =================================== */

/* Import premium fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Poppins:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;600&family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

/* ===================================
   ROOT THEME VARIABLES - LIGHT MODE
   =================================== */
:root {
  --primary-dark: #0A0E27;
  --primary-light: #1A1F3A;
  --accent-gold: #D4A574;
  --accent-red: #C41E3A;
  --accent-green: #2E8B57;
  --bg-light: #F9F8F6;
  --bg-lighter: #FEFDFB;
  --text-dark: #1A1F3A;
  --text-light: #4A4A4A;
  --text-muted: #777777;
  --border-light: #E8E5E0;
  --shadow-sm: 0 2px 8px rgba(10, 14, 39, 0.08);
  --shadow-md: 0 4px 16px rgba(10, 14, 39, 0.12);
  --shadow-lg: 0 12px 32px rgba(10, 14, 39, 0.16);
  --transition-speed: 0.3s;
  --border-radius: 14px;

  /* Navigation */
  --nav-bg: #FFFFFF;
  --nav-text: #1A1F3A;
  --nav-border: #E8E5E0;

  /* Buttons */
  --btn-primary-bg: #0A0E27;
  --btn-primary-text: #FFFFFF;
  --btn-accent-bg: #D4A574;
  --btn-accent-text: #0A0E27;

  /* Cards */
  --card-bg: #FFFFFF;
  --card-border: #E8E5E0;
  --card-text: #1A1F3A;

  /* Footer */
  --footer-bg: #0A0E27;
  --footer-text: #FFFFFF;
  --footer-accent: #D4A574;
}

/* ===================================
   ROOT THEME VARIABLES - DARK MODE
   =================================== */
[data-theme="dark"] {
  --primary-dark: #F9F8F6;
  --primary-light: #E8E5E0;
  --accent-gold: #D4A574;
  --accent-red: #FF6B5B;
  --accent-green: #5ECB7B;
  --bg-light: #1A1F3A;
  --bg-lighter: #0F1220;
  --text-dark: #FEFDFB;
  --text-light: #D0D0D0;
  --text-muted: #999999;
  --border-light: #2A2F4A;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);

  /* Navigation */
  --nav-bg: #0A0E27;
  --nav-text: #FEFDFB;
  --nav-border: #2A2F4A;

  /* Buttons */
  --btn-primary-bg: #FEFDFB;
  --btn-primary-text: #0A0E27;
  --btn-accent-bg: #D4A574;
  --btn-accent-text: #0A0E27;

  /* Cards */
  --card-bg: #151B32;
  --card-border: #2A2F4A;
  --card-text: #FEFDFB;

  /* Footer */
  --footer-bg: #0A0E27;
  --footer-text: #FEFDFB;
  --footer-accent: #D4A574;
}

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--accent-red);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
  background-color: var(--nav-bg) !important;
  color: var(--nav-text);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed) ease;
  padding: 1rem 0 !important;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark) !important;
  letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  position: relative;
  transition: color var(--transition-speed) ease;
}

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

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-speed) ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-toggler {
  border-color: var(--accent-gold) !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='%23D4A574' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Language & Theme Toggles */
.nav-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: auto;
}

.lang-toggle, #theme-toggle {
  background: none;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 0.5rem 0.8rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition-speed) ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-toggle:hover, #theme-toggle:hover {
  background-color: var(--accent-gold);
  color: var(--btn-primary-text);
  transform: scale(1.1);
}

.lang-toggle.active {
  background-color: var(--accent-gold);
  color: var(--btn-primary-text);
}

#theme-toggle {
  transition: transform var(--transition-speed) ease;
}

#theme-toggle:active {
  transform: scale(1.1) rotate(360deg);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-speed) ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border-color: var(--btn-primary-bg);
}

.btn-primary:hover {
  background-color: var(--accent-red);
  border-color: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background-color: var(--accent-gold);
  color: var(--btn-accent-text);
  border-color: var(--accent-gold);
}

.btn-accent:hover {
  background-color: var(--accent-red);
  border-color: var(--accent-red);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

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

.btn-lg {
  padding: 1.2rem 2.5rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
}

/* ===================================
   HERO SECTIONS
   =================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(26, 31, 58, 0.85) 100%),
              url('images/home-hero-molten-metal.jpeg') center/cover;
  color: #FFFFFF;
  padding: 6rem 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section h1 {
  color: #FFFFFF;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
  color: #E8E5E0;
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

/* ===================================
   BENTO GRID LAYOUTS
   =================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.bento-item {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: all var(--transition-speed) ease;
  box-shadow: var(--shadow-sm);
}

.bento-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.bento-item-2x1 { grid-column: span 2; }
.bento-item-1x2 { grid-row: span 2; }
.bento-item-2x2 { grid-column: span 2; grid-row: span 2; }

/* Responsive Bento Grid */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .bento-item-2x1 { grid-column: span 2; }
  .bento-item-1x2 { grid-row: span 1; }
  .bento-item-2x2 { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .bento-item-2x1, .bento-item-1x2, .bento-item-2x2 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ===================================
   CARDS & COMPONENTS
   =================================== */
.card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  transition: all var(--transition-speed) ease;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.card-body {
  color: var(--card-text);
}

.card-title {
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* Glassmorphism Effect */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .glass-card {
  background: rgba(30, 40, 70, 0.3);
  border: 1px solid rgba(212, 165, 116, 0.1);
}

/* Counter Circles */
.counter-circle {
  background: linear-gradient(135deg, var(--accent-gold), rgba(212, 165, 116, 0.8));
  color: var(--primary-dark);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
  font-family: 'Playfair Display', serif;
  transition: transform var(--transition-speed) ease;
}

.counter-circle:hover {
  transform: scale(1.05);
}

.counter-value {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.counter-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ===================================
   SECTIONS & LAYOUT
   =================================== */
section {
  padding: 4rem 0;
}

section.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.section-spacing {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Background Colors */
.bg-light {
  background-color: var(--bg-lighter) !important;
  transition: background-color var(--transition-speed) ease;
}

.bg-white, .bg-background_light {
  background-color: var(--card-bg) !important;
  transition: background-color var(--transition-speed) ease;
}

.bg-dark, .bg-background_dark {
  background-color: var(--footer-bg) !important;
  color: var(--footer-text) !important;
}

.bg-secondary {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light)) !important;
  color: white;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
.display-4, .display-5 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  letter-spacing: -1px;
}

.lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-light);
}

.text-primary-brand {
  color: var(--primary-dark) !important;
  transition: color var(--transition-speed) ease;
}

[data-theme="dark"] .text-primary-brand {
  color: var(--accent-gold) !important;
}

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

.text-white {
  color: #FFFFFF;
}

/* ===================================
   TABLES
   =================================== */
.table {
  background-color: var(--card-bg);
  color: var(--text-dark);
  border-color: var(--border-light);
}

.table thead {
  background-color: var(--primary-dark);
  color: #FFFFFF;
}

.table tbody tr:hover {
  background-color: rgba(212, 165, 116, 0.1);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(10, 14, 39, 0.02);
}

[data-theme="dark"] .table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(212, 165, 116, 0.05);
}

/* ===================================
   FORMS
   =================================== */
.form-control, .form-select, textarea {
  background-color: var(--card-bg);
  border: 2px solid var(--border-light);
  color: var(--text-dark);
  border-radius: var(--border-radius);
  padding: 0.8rem 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all var(--transition-speed) ease;
}

.form-control:focus, .form-select:focus, textarea:focus {
  background-color: var(--card-bg);
  border-color: var(--accent-gold);
  color: var(--text-dark);
  box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

.form-label {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* ===================================
   FOOTER
   =================================== */
footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  border-top: 2px solid var(--accent-gold);
  transition: all var(--transition-speed) ease;
}

footer h5 {
  color: var(--footer-accent);
  font-size: 1rem;
  letter-spacing: 0.5px;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
}

footer a {
  color: var(--footer-accent);
  transition: color var(--transition-speed) ease;
}

footer a:hover {
  color: #FFFFFF;
}

footer hr {
  border-color: rgba(212, 165, 116, 0.2);
}

/* ===================================
   COOKIE CONSENT
   =================================== */
#cookieConsentBanner {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-light)) !important;
  border-top: 2px solid var(--accent-gold);
  box-shadow: var(--shadow-lg);
}

/* ===================================
   ACCORDIONS
   =================================== */
.accordion-button {
  background-color: var(--primary-dark);
  color: #FFFFFF;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 1.2rem;
  transition: all var(--transition-speed) ease;
}

.accordion-button:not(.collapsed) {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  box-shadow: none;
}

.accordion-button:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 0.25rem rgba(212, 165, 116, 0.25);
}

.accordion-body {
  background-color: var(--card-bg);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
}

/* ===================================
   TABS
   =================================== */
.nav-tabs {
  border-bottom: 2px solid var(--border-light);
}

.nav-tabs .nav-link {
  color: var(--text-light);
  border: none;
  position: relative;
  transition: all var(--transition-speed) ease;
  border-bottom: 3px solid transparent;
}

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

.nav-tabs .nav-link.active {
  background-color: transparent;
  color: var(--accent-gold);
  border-bottom: 3px solid var(--accent-gold);
}

.tab-content {
  background-color: var(--card-bg);
  border: 1px solid var(--border-light);
  border-top: none;
  padding: 2rem;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/* ===================================
   IMAGES
   =================================== */
img {
  transition: transform var(--transition-speed) ease, filter var(--transition-speed) ease;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.rounded {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.rounded-3 {
  border-radius: 1.5rem;
}

/* ===================================
   SHADOWS
   =================================== */
.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

.shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-section {
    padding: 4rem 0;
    min-height: 400px;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  section {
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .navbar-brand {
    font-size: 1.4rem;
  }

  .navbar-nav .nav-link {
    margin: 0.3rem 0;
  }

  .nav-controls {
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-left: 0;
  }

  .lang-toggle, #theme-toggle {
    width: 36px;
    height: 36px;
    padding: 0.4rem 0.6rem;
  }

  .hero-section {
    padding: 3rem 0;
    min-height: 300px;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section .lead {
    font-size: 1rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .btn-lg {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  .counter-circle {
    width: 120px;
    height: 120px;
  }

  .counter-value {
    font-size: 2rem;
  }

  .counter-label {
    font-size: 0.7rem;
  }

  section {
    padding: 2rem 0;
  }

  .section-spacing {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .bento-grid {
    gap: 1rem;
  }

  .bento-item {
    padding: 1.5rem;
  }

  .accordion-button {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .tab-content {
    padding: 1.5rem;
  }

  .lead {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  h4 {
    font-size: 1rem;
  }

  .navbar {
    padding: 0.8rem 0 !important;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .hero-section {
    padding: 2rem 0;
    min-height: 250px;
  }

  .hero-section h1 {
    font-size: 1.5rem;
  }

  .hero-section .lead {
    font-size: 0.95rem;
  }

  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
  }

  .btn-lg {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
  }

  .card {
    margin-bottom: 1rem;
  }

  .bento-grid {
    gap: 0.8rem;
  }

  .bento-item {
    padding: 1rem;
  }

  section {
    padding: 1.5rem 0;
  }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mt-5 { margin-top: 3rem !important; }

.p-2 { padding: 1rem !important; }
.p-3 { padding: 1.5rem !important; }
.p-4 { padding: 2rem !important; }
.p-5 { padding: 3rem !important; }

.text-accent { color: var(--accent-gold); }
.text-red { color: var(--accent-red); }
.text-green { color: var(--accent-green); }

/* Align utilities */
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }

/* Row and columns */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

[class*="col-"] {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.col-md-1 { @media (min-width: 768px) { flex: 0 0 8.333%; max-width: 8.333%; } }
.col-md-2 { @media (min-width: 768px) { flex: 0 0 16.666%; max-width: 16.666%; } }
.col-md-3 { @media (min-width: 768px) { flex: 0 0 25%; max-width: 25%; } }
.col-md-4 { @media (min-width: 768px) { flex: 0 0 33.333%; max-width: 33.333%; } }
.col-md-5 { @media (min-width: 768px) { flex: 0 0 41.666%; max-width: 41.666%; } }
.col-md-6 { @media (min-width: 768px) { flex: 0 0 50%; max-width: 50%; } }
.col-md-7 { @media (min-width: 768px) { flex: 0 0 58.333%; max-width: 58.333%; } }
.col-md-8 { @media (min-width: 768px) { flex: 0 0 66.666%; max-width: 66.666%; } }
.col-md-9 { @media (min-width: 768px) { flex: 0 0 75%; max-width: 75%; } }
.col-md-10 { @media (min-width: 768px) { flex: 0 0 83.333%; max-width: 83.333%; } }
.col-md-11 { @media (min-width: 768px) { flex: 0 0 91.666%; max-width: 91.666%; } }
.col-md-12 { @media (min-width: 768px) { flex: 0 0 100%; max-width: 100%; } }

.col-lg-1 { @media (min-width: 1024px) { flex: 0 0 8.333%; max-width: 8.333%; } }
.col-lg-2 { @media (min-width: 1024px) { flex: 0 0 16.666%; max-width: 16.666%; } }
.col-lg-3 { @media (min-width: 1024px) { flex: 0 0 25%; max-width: 25%; } }
.col-lg-4 { @media (min-width: 1024px) { flex: 0 0 33.333%; max-width: 33.333%; } }
.col-lg-5 { @media (min-width: 1024px) { flex: 0 0 41.666%; max-width: 41.666%; } }
.col-lg-6 { @media (min-width: 1024px) { flex: 0 0 50%; max-width: 50%; } }
.col-lg-7 { @media (min-width: 1024px) { flex: 0 0 58.333%; max-width: 58.333%; } }
.col-lg-8 { @media (min-width: 1024px) { flex: 0 0 66.666%; max-width: 66.666%; } }
.col-lg-9 { @media (min-width: 1024px) { flex: 0 0 75%; max-width: 75%; } }
.col-lg-10 { @media (min-width: 1024px) { flex: 0 0 83.333%; max-width: 83.333%; } }
.col-lg-11 { @media (min-width: 1024px) { flex: 0 0 91.666%; max-width: 91.666%; } }
.col-lg-12 { @media (min-width: 1024px) { flex: 0 0 100%; max-width: 100%; } }

/* Print Styles */
@media print {
  body {
    background: white;
    color: black;
  }
  .navbar, footer, #cookieConsentBanner {
    display: none;
  }
}
