:root {
  --primary-color: #0b1c3d; /* Deep Navy Blue */
  --secondary-color: #1a365d;
  --accent-color: #c5a059; /* Premium Gold */
  --accent-hover: #d4af37;
  --text-dark: #2d3748;
  --text-light: #718096;
  --bg-light: #f8f9fa; /* Soft Gray */
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --gradient-gold: linear-gradient(135deg, #c5a059 0%, #e5c158 100%);
  --gradient-dark: linear-gradient(135deg, #0b1c3d 0%, #1a365d 100%);
}

body,
html {
  font-family: "Outfit", sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden !important;
  width: 100%;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

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

/* Utilities */
.text-primary-theme {
  color: var(--primary-color) !important;
}
.text-accent {
  color: var(--accent-color) !important;
}
.bg-primary-theme {
  background-color: var(--primary-color) !important;
}
.bg-accent {
  background-color: var(--accent-color) !important;
}
.bg-light-gray {
  background-color: var(--bg-light) !important;
}
.section-padding {
  padding: 100px 0;
}

/* Buttons */
.btn-premium {
  background: var(--gradient-gold);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #e5c158 0%, #c5a059 100%);
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.btn-premium:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(197, 160, 89, 0.4);
}

.btn-premium:hover::before {
  opacity: 1;
}

.btn-outline-premium {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--accent-color);
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-premium:hover {
  background: var(--accent-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* Navbar */
.navbar {
  transition: var(--transition);
  padding: 20px 0;
  background: transparent;
  z-index: 1030;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  padding: 5px 0;
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: 1px;
}

.navbar.scrolled .navbar-brand {
  color: var(--primary-color) !important;
}

.navbar-brand span {
  color: var(--accent-color);
}

.navbar-logo.logo-white {
  transform: scale(1.6);
}

/* Mobile Navbar - Remove scaling */
@media (max-width: 991px) {
  .navbar-logo.logo-white {
    transform: scale(1);
  }

  .navbar {
    padding: 1px 0;
  }

  .offcanvas-body {
    overflow-y: auto;
    min-height: 100svh;
  }
}

.nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

.navbar.scrolled .nav-link {
  color: var(--primary-color) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

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

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1920")
    center/cover no-repeat;
  opacity: 0.15;
  mix-blend-mode: luminosity;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--white);
}

.hero-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 500px;
}

/* Hero Right Side - Glassmorphism cards */
.hero-visual {
  position: relative;
  z-index: 2;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: red; */
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  position: absolute;
  transition: transform 0.5s ease;
}

.glass-card:hover {
  transform: translateY(-10px);
}

.gc-1 {
  top: 10%;
  left: 0;
  width: 280px;
  animation: float 6s ease-in-out infinite;
}

.gc-2 {
  bottom: 0%;
  right: 60%;
  width: 250px;
  animation: float 8s ease-in-out infinite alternate;
}

.gc-3 {
  top: 40%;
  left: 40%;
  width: 320px;
  z-index: 3;
  animation: float 7s ease-in-out infinite reverse;
}

.glass-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-10px);
}

/* Section Titles */
.section-title {
  position: relative;
  margin-bottom: 50px;
}

.section-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
  font-size: 0.9rem;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-color);
}

/* Companies Slider */
.trusted-by {
  background: var(--white);
  padding: 60px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: var(--transition);
}

.logo-slider:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.logo-slider img {
  max-height: 40px;
  width: auto;
  margin: 0 20px;
  transition: all 0.3s ease;
}

.logo-slider img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
  opacity: 1;
}

/* About Section */
.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--gradient-gold);
  color: var(--white);
  padding: 40px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4);
  z-index: 2;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.experience-badge h3 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  line-height: 1;
}

.experience-badge p {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services */
.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--primary-color);
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary-color);
  color: var(--white);
}

.service-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 25px;
}

.service-link {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.service-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* Industries Section */
.industry-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-md);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.industry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(11, 28, 61, 0.9) 0%,
    rgba(11, 28, 61, 0.2) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: var(--white);
  transition: var(--transition);
}

.industry-card:hover img {
  transform: scale(1.1);
}

.industry-card:hover .industry-overlay {
  background: linear-gradient(
    to top,
    rgba(11, 28, 61, 0.95) 0%,
    rgba(197, 160, 89, 0.6) 100%
  );
}

.industry-overlay h4 {
  color: var(--white);
  margin-bottom: 5px;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.industry-overlay i {
  font-size: 30px;
  color: var(--accent-color);
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

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

.industry-card:hover .industry-overlay i {
  opacity: 1;
  transform: translateY(0);
}

/* Countries Section */
.country-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 30px;
}

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

.country-flag {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--bg-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.country-card:hover .country-flag {
  transform: scale(1.1);
  border-color: var(--accent-color);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--bg-light);
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  width: 16%;
  text-align: center;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--primary-color);
  margin: 0 auto 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.timeline-step:hover .timeline-icon {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--accent-color);
  transform: scale(1.1);
}

.timeline-content h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Featured Jobs */
.job-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid transparent;
}

.job-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--accent-color);
}

.job-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.job-meta span {
  display: flex;
  align-items: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.job-meta i {
  color: var(--accent-color);
  margin-right: 8px;
}

/* Why Choose Us */
.feature-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(197, 160, 89, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  color: var(--accent-color);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--accent-color);
  color: var(--white);
  transform: rotateY(180deg);
}

/* CTA Section */
.cta-section {
  background: var(--gradient-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1920")
    center/cover no-repeat;
  opacity: 0.1;
  mix-blend-mode: overlay;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
  position: relative;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white) !important;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-logo span {
  color: var(--accent-color);
}

.footer-widget h4 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
}

/* Floating Elements */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
  color: var(--white);
}

.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
}

/* Page Headers */
.page-header {
  padding: 180px 0 100px;
  background: var(--gradient-dark);
  text-align: center;
  color: var(--white);
  position: relative;
}

.page-header h1 {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.breadcrumb {
  justify-content: center;
  background: transparent;
  padding: 0;
}

.breadcrumb-item a {
  color: var(--accent-color);
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* Forms */
.form-floating > label {
  color: var(--text-light);
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(197, 160, 89, 0.25);
}

/* Responsive Overrides */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 3rem;
  }
  .timeline {
    flex-direction: column;
  }
  .timeline::before {
    left: 40px;
    top: 0;
    width: 4px;
    height: 100%;
  }
  .timeline-step {
    width: 100%;
    display: flex;
    text-align: left;
    margin-bottom: 30px;
  }
  .timeline-icon {
    margin: 0 20px 0 0;
    flex-shrink: 0;
  }
  .experience-badge {
    bottom: -20px;
    right: -10px;
    width: 120px;
    height: 120px;
    padding: 20px;
  }
  .experience-badge h3 {
    font-size: 2rem;
  }
  .experience-badge p {
    font-size: 0.8rem;
  }

  /* Navbar Mobile */
  .navbar {
    max-width: 100%;
    overflow-x: hidden;
  }
  .navbar-brand {
    max-width: 70%;
  }
  .navbar-collapse {
    background: var(--primary-color);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    box-sizing: border-box;
  }
  .navbar.scrolled .navbar-collapse {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  .navbar.scrolled .nav-link {
    color: var(--primary-color) !important;
  }
  .navbar.scrolled .nav-link:hover,
  .navbar.scrolled .nav-link.active {
    color: var(--accent-color) !important;
  }
  .navbar-toggler {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
  }
  .navbar.scrolled .navbar-toggler {
    background: var(--bg-light);
    border-color: rgba(0, 0, 0, 0.1);
  }
  /* Fix toggler icon colors */
  .navbar-dark .navbar-toggler-icon {
    filter: invert(1) brightness(100);
  }
  .navbar-light .navbar-toggler-icon {
    filter: none;
  }
  .nav-link::after {
    display: none; /* Hide hover underline on mobile */
  }
  .navbar-nav {
    margin-bottom: 15px;
  }

  /* Offcanvas specific overrides */
  .navbar .offcanvas .nav-link,
  .navbar.scrolled .offcanvas .nav-link {
    color: var(--white) !important;
  }
  .navbar .offcanvas .nav-link:hover,
  .navbar.scrolled .offcanvas .nav-link:hover,
  .navbar .offcanvas .nav-link.active,
  .navbar.scrolled .offcanvas .nav-link.active {
    color: var(--accent-color) !important;
  }

  .page-header {
    padding: 150px 0 80px;
  }
  .page-header h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }
  .hero {
    text-align: center;
    min-height: 100vh;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-text {
    margin: 0 auto 30px;
    font-size: 1.1rem;
  }
  .hero-visual {
    display: none;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .section-title {
    margin-bottom: 30px;
  }

  .hero .d-flex.gap-3 {
    flex-direction: column;
    align-items: center;
  }
  .hero .d-flex.gap-3 .btn {
    width: 100%;
    max-width: 300px;
  }

  .page-header {
    padding: 120px 0 60px;
  }
  .page-header h1 {
    font-size: 2.2rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
  .cta-section .btn {
    width: 100%;
    margin-bottom: 15px;
  }

  .footer {
    padding: 60px 0 30px;
    text-align: center;
  }
  .footer-widget h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .social-icons {
    justify-content: center;
  }
  .footer-links li.d-flex {
    flex-direction: column;
    align-items: center !important;
  }
  .footer-links li.d-flex i {
    margin-right: 0 !important;
    margin-bottom: 10px;
  }
  .footer-bottom .row > div {
    text-align: center !important;
    margin-bottom: 10px;
  }

  /* Blog Post Padding Override */
  .bg-white.p-5 {
    padding: 2rem !important;
  }
}
