/* 
 * Corpify Custom CSS
 * Enhanced styling for professional business coaching platform
 */

/* Typography Enhancements */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #004080;
}

.display-4 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
}

/* Enhanced Color Scheme */
:root {
  --primary: #004080;
  --primary-dark: #003366;
  --primary-light: #e6f0ff;
  --secondary: #ff6b35;
  --secondary-light: #ffe0d4;
  --accent: #2ec4b6;
  --accent-light: #d4f5f2;
  --neutral-light: #f8f9fa;
  --neutral-medium: #e9ecef;
  --neutral-dark: #495057;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;
}

/* Button Enhancements */
.btn {
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), #e85a2a);
  border: none;
  color: white;
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: white;
}

/* Card Enhancements */
.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.card-header {
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  padding: 1rem 1.5rem;
}

.card-body {
  padding: 1.5rem;
}

.card-footer {
  background-color: var(--neutral-light);
  border-top: 1px solid var(--neutral-medium);
  padding: 1rem 1.5rem;
}

/* Navbar Enhancements */
.navbar {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: white !important;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* Hero Section Enhancements */
.hero-section {
  background: linear-gradient(135deg, var(--primary-light), #ffffff);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('../img/pattern.svg');
  background-size: cover;
  opacity: 0.05;
  z-index: 0;
}

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

.hero-image {
  position: relative;
  z-index: 1;
}

/* Feature Cards */
.feature-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light), #ffffff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(0,64,128,0.1);
}

/* Testimonial Cards */
.testimonial-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

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

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: var(--primary-light);
  font-family: 'Georgia', serif;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 1rem;
}

/* Blog Cards */
.blog-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

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

.blog-card-img {
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-footer {
  padding: 1rem 1.5rem;
  background-color: var(--neutral-light);
  border-top: 1px solid var(--neutral-medium);
}

/* Footer Enhancements */
footer {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-links {
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--secondary-light);
  transform: translateY(-2px);
}

.footer-social {
  margin-bottom: 1.5rem;
}

.footer-social a {
  color: white;
  background-color: rgba(255,255,255,0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: white;
  color: var(--primary);
  transform: translateY(-3px);
}

/* Section Styling */
.section-title {
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.section-padding {
  padding: 5rem 0;
}

.bg-light-gradient {
  background: linear-gradient(135deg, var(--neutral-light), white);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('../img/pattern.svg');
  background-size: cover;
  opacity: 0.05;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Utility Classes */
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }

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

.shadow-sm { box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important; }
.shadow-md { box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important; }
.shadow-lg { box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important; }

.rounded-xl { border-radius: 12px !important; }
.rounded-xxl { border-radius: 20px !important; }

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--primary);
    padding: 1rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .hero-section {
    padding: 3rem 0;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
}

@media (max-width: 767.98px) {
  .display-4 {
    font-size: 2.5rem;
  }
  
  .lead {
    font-size: 1.1rem;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .feature-card, .testimonial-card, .blog-card {
    margin-bottom: 2rem;
  }
}

/* Print Styles */
@media print {
  .navbar, .footer, .cta-section {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: underline;
    color: #000;
  }
  
  .container {
    max-width: 100%;
    width: 100%;
  }
}
/* 
 * Corpify Enhanced Navbar Styles
 * Improved dropdown system with better hover accessibility
 */

/* Main Navbar Styling */
.navbar {
  background: linear-gradient(135deg, #004080, #003366);
  padding: 0.75rem 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1030;
}

/* Brand/Logo Styling */
.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: white !important;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  margin-right: 8px;
  height: 32px;
}

/* Navigation Links */
.nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding: 0.75rem 1rem !important;
  color: rgba(255,255,255,0.9) !important;
  position: relative;
}

.nav-link:hover, .nav-link:focus {
  color: #ffffff !important;
}

.nav-link.active {
  color: #ffffff !important;
  font-weight: 600;
}

/* Active indicator */
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
}

/* ======= IMPROVED DROPDOWN SYSTEM ======= */

/* Dropdown container - add padding to increase hover area */
.nav-item.dropdown {
  position: static;
  padding-bottom: 20px; /* Add padding to create a larger hover area */
  margin-bottom: -20px; /* Offset the padding to maintain layout */
}

/* Dropdown toggle styling */
.dropdown-toggle {
  display: flex;
  align-items: center;
}

/* Custom dropdown arrow */
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.5em;
  content: "▾";
  border: none;
  font-size: 0.8em;
  vertical-align: middle;
}

/* Dropdown panel - completely new approach */
.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-radius: 0 0 10px 10px;
  padding: 1.5rem;
  display: none;
  z-index: 1031;
  border-top: 3px solid #ff6b35;
  /* Add a buffer zone at the top to make it easier to reach */
  margin-top: -5px;
  padding-top: 20px;
}

/* Show dropdown panel on hover with a delay for closing */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-panel {
    display: block;
  }
  
  /* Create a buffer zone between navbar and dropdown */
  .dropdown-panel::before {
    content: '';
    position: absolute;
    top: -20px; /* Match the padding-top */
    left: 0;
    right: 0;
    height: 20px;
    background: transparent; /* Invisible buffer */
  }
  
  /* Keep dropdown visible when hovering over it */
  .dropdown-panel:hover {
    display: block;
  }
}

/* Standard dropdown panel */
.dropdown-panel.standard-panel {
  width: 250px;
  left: auto;
  right: auto;
}

/* Mega menu panel */
.dropdown-panel.mega-panel {
  width: 100%;
}

/* Panel header */
.panel-header {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e9ecef;
  color: #004080;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Panel items */
.panel-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Standard panel item */
.panel-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: #495057;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.panel-item:hover {
  background-color: #e6f0ff;
  color: #004080;
  transform: translateX(5px);
}

.panel-item i {
  margin-right: 10px;
  color: #004080;
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

/* Mega panel columns */
.mega-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.mega-column {
  display: flex;
  flex-direction: column;
}

.mega-column-header {
  font-weight: 600;
  color: #004080;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e6f0ff;
}

.mega-column-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mega-item {
  color: #495057;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: all 0.2s ease;
  display: block;
}

.mega-item:hover {
  color: #004080;
  transform: translateX(5px);
}

/* Mobile navigation */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #004080;
    padding: 1rem;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .nav-item.dropdown {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  
  .dropdown-panel {
    position: static;
    box-shadow: none;
    border-radius: 8px;
    margin: 0.5rem 0;
    padding: 1rem;
    background-color: rgba(255,255,255,0.95);
    border-top: none;
    border-left: 3px solid #ff6b35;
    margin-top: 0;
    padding-top: 1rem;
  }
  
  .dropdown-panel.standard-panel {
    width: 100%;
  }
  
  .mega-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .mega-column {
    margin-bottom: 1rem;
  }
  
  /* Mobile dropdown toggle */
  .mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: rgba(255,255,255,0.9);
    padding: 0.75rem 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
  }
  
  .mobile-dropdown-toggle:focus {
    outline: none;
  }
  
  .mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
  }
  
  .mobile-dropdown-toggle.active i {
    transform: rotate(180deg);
  }
}

/* Navbar Toggler (Mobile) */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  border-radius: 8px;
  background-color: rgba(255,255,255,0.1);
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

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

/* Search Form in Navbar */
.navbar-search {
  position: relative;
  margin-right: 0.75rem;
}

.navbar-search .form-control {
  background-color: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50px;
  color: white;
  padding-left: 2.5rem;
  padding-right: 1rem;
  height: calc(1.5em + 0.75rem + 2px);
  font-size: 0.9rem;
}

.navbar-search .form-control:focus {
  background-color: rgba(255,255,255,0.2);
  box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.1);
}

.navbar-search .form-control::placeholder {
  color: rgba(255,255,255,0.6);
}

.navbar-search .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* CTA Button in Navbar */
.navbar-cta {
  background-color: #ff6b35;
  color: white !important;
  border-radius: 50px;
  padding: 0.5rem 1rem !important;
  margin-left: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(255,107,53,0.3);
  transition: all 0.2s ease;
}

.navbar-cta:hover {
  background-color: #e55a2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255,107,53,0.4);
}

/* Progress Bar on Scroll */
.scroll-progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: rgba(255,255,255,0.1);
  z-index: 1030;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ff6b35, #2ec4b6);
  width: 0%;
}
/* 
 * Corpify Custom Fixes
 * Additional styling to ensure consistency and polish across the site
 */

/* Global Consistency Fixes */

/* Ensure consistent spacing */
.section-padding {
  padding: 5rem 0;
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 3rem 0;
  }
}

/* Fix inconsistent button styling */
.btn {
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

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

/* Ensure consistent card styling */
.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Fix image aspect ratios */
.img-fixed-height {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

/* Typography enhancements */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
}

/* Accessibility improvements */
:focus {
  outline: 3px solid rgba(0, 102, 204, 0.5);
  outline-offset: 2px;
}

.btn:focus, .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
}

/* Improve color contrast for better accessibility */
.text-muted {
  color: #5a6268 !important; /* Darker than Bootstrap default for better contrast */
}

/* Fix form elements for consistency */
.form-control {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  border: 1px solid #ced4da;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--secondary);
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Fix footer styling */
.footer {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 4rem 0 2rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  margin-right: 0.75rem;
  color: white;
  transition: all 0.3s ease;
}

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

.footer-links a {
  color: rgba(255,255,255,0.8);
  margin-left: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* Fix navigation active state */
.nav-link.active {
  font-weight: 600;
  position: relative;
}

/* Fix hero section for better responsiveness */
.hero-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 4rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .lead {
    font-size: 1.1rem;
  }
}

/* Fix testimonial cards for consistent height */
.testimonial-card {
  height: 100%;
}

/* Fix blog card images */
.blog-card-img {
  height: 200px;
  object-fit: cover;
}

/* Fix form validation styling */
.was-validated .form-control:valid, .form-control.is-valid {
  border-color: var(--success);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: var(--danger);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Fix placeholder images with branded gradients */
.placeholder-img {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 500;
}

/* Fix ad container integration */
.ad-container {
  margin: 2rem auto;
}

/* Fix animation timing for better performance */
.animate-fade-in {
  animation-duration: 0.8s;
}

/* Fix print styles */
@media print {
  .navbar, .footer, .cta-section, .ad-container {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  
  .container {
    max-width: 100%;
    width: 100%;
  }
  
  a {
    text-decoration: underline;
    color: #000;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    page-break-inside: avoid;
  }
  
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  
  .card, .feature-card, .testimonial-card, .blog-card {
    break-inside: avoid;
  }
}

/* Fix for image loading */
.lazy-load {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lazy-load.loaded {
  opacity: 1;
}

/* Fix for consistent shadows */
.shadow-sm {
  box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
}

.shadow-md {
  box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
}

.shadow-lg {
  box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* Fix for consistent border-radius */
.rounded-sm {
  border-radius: 4px !important;
}

.rounded-md {
  border-radius: 8px !important;
}

.rounded-lg {
  border-radius: 12px !important;
}

.rounded-xl {
  border-radius: 16px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

/* Fix for consistent transitions */
.transition-all {
  transition: all 0.3s ease !important;
}

/* Fix for consistent hover effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Fix for consistent spacing between sections */
.section-padding + .section-padding {
  padding-top: 0;
}

/* Fix for consistent CTA sections */
.cta-section {
  position: relative;
  z-index: 1;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('../img/pattern.svg');
  background-size: cover;
  opacity: 0.05;
  z-index: -1;
}

/* Fix for consistent blockquotes */
blockquote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background-color: var(--light);
  font-style: italic;
}

/* Fix for consistent tables */
.table {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.table thead {
  background-color: var(--primary);
  color: white;
}

/* Fix for consistent alerts */
.alert {
  border: none;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Fix for consistent badges */
.badge {
  padding: 0.5em 1em;
  font-weight: 500;
  border-radius: 50px;
}

/* Fix for consistent tooltips */
.tooltip {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
}

/* Fix for consistent modals */
.modal-content {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.modal-header {
  border-bottom: 1px solid #e9ecef;
  padding: 1.5rem;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  border-top: 1px solid #e9ecef;
  padding: 1.5rem;
}

/* Fix for consistent dropdown menus */
.dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 0.5rem;
}

.dropdown-item {
  border-radius: 4px;
  padding: 0.5rem 1rem;
}

.dropdown-item:hover, .dropdown-item:focus {
  background-color: var(--primary-light);
  color: var(--primary);
}

/* Fix for consistent pagination */
.pagination .page-link {
  border: none;
  margin: 0 0.25rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
  background-color: var(--primary);
  color: white;
}

.pagination .page-link:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Fix for consistent breadcrumbs */
.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 1.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--primary);
}

.breadcrumb-item.active {
  color: var(--primary);
  font-weight: 500;
}

/* Fix for consistent list groups */
.list-group-item {
  border: none;
  border-radius: 8px !important;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.list-group-item:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

.list-group-item.active {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Fix for consistent progress bars */
.progress {
  height: 0.75rem;
  border-radius: 50px;
  background-color: var(--light);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 50px;
}

/* Fix for consistent spinners */
.spinner-border, .spinner-grow {
  color: var(--primary);
}

/* Fix for consistent toasts */
.toast {
  border: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.toast-header {
  border-bottom: 1px solid #e9ecef;
}

/* Fix for consistent navs and tabs */
.nav-tabs {
  border-bottom: 1px solid #e9ecef;
}

.nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 0.75rem 1rem;
  color: var(--dark);
  transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}

.nav-tabs .nav-link.active {
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
}

.tab-content {
  padding: 1.5rem 0;
}

/* Fix for consistent carousel */
.carousel-control-prev, .carousel-control-next {
  width: 10%;
  opacity: 0.8;
}

.carousel-indicators {
  margin-bottom: 1rem;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary);
  opacity: 0.5;
}

.carousel-indicators .active {
  opacity: 1;
}

/* Fix for consistent accordion */
.accordion-item {
  border: none;
  border-radius: 8px !important;
  margin-bottom: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  overflow: hidden;
}

.accordion-button {
  padding: 1.25rem 1.5rem;
  font-weight: 500;
  color: var(--dark);
}

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

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-light);
}

.accordion-body {
  padding: 1.5rem;
}

/* Fix for consistent offcanvas */
.offcanvas {
  border: none;
  box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

.offcanvas-header {
  padding: 1.5rem;
}

.offcanvas-body {
  padding: 1.5rem;
}

/* Fix for consistent close button */
.btn-close {
  opacity: 0.8;
  transition: all 0.3s ease;
}

.btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* Fix for consistent scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/* 
 * Corpify Animations
 * Subtle animations to enhance user experience without being distracting
 */

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}

/* Staggered Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Fade In Left Animation */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease forwards;
  opacity: 0;
}

/* Fade In Right Animation */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease forwards;
  opacity: 0;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

/* Fade In Down Animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-down {
  animation: fadeInDown 0.8s ease forwards;
  opacity: 0;
}

/* Scale In Animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-scale-in {
  animation: scaleIn 0.8s ease forwards;
  opacity: 0;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.animate-bounce {
  animation: bounce 2s infinite;
}

/* Shake Animation */
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

.animate-shake {
  animation: shake 0.8s ease;
}

/* Rotate Animation */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-rotate {
  animation: rotate 2s linear infinite;
}

/* Typing Animation */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: var(--primary);
  }
}

.animate-typing {
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid var(--primary);
  animation: 
    typing 3.5s steps(40, end),
    blink-caret 0.75s step-end infinite;
}

/* Shimmer Animation (for loading states) */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate-shimmer {
  background: linear-gradient(90deg, 
    rgba(255,255,255,0), 
    rgba(255,255,255,0.5), 
    rgba(255,255,255,0)
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Reveal Text Animation */
@keyframes revealText {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

.animate-reveal-text {
  animation: revealText 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* Fade In Blur Animation */
@keyframes fadeInBlur {
  from {
    opacity: 0;
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

.animate-fade-in-blur {
  animation: fadeInBlur 1s ease forwards;
  opacity: 0;
}

/* Ripple Animation */
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.3);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(var(--primary-rgb), 0);
  }
}

.animate-ripple {
  animation: ripple 1.5s infinite;
}

/* Slide In Animation */
@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.animate-slide-in {
  animation: slideIn 0.8s ease forwards;
}

/* Attention Seeker Animation */
@keyframes attentionSeeker {
  0%, 100% {
    transform: scale(1);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: scale(0.95);
  }
  20%, 40%, 60%, 80% {
    transform: scale(1.05);
  }
}

.animate-attention {
  animation: attentionSeeker 1s ease;
}

/* Intersection Observer for Scroll Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  .animate-fade-in,
  .animate-fade-in-left,
  .animate-fade-in-right,
  .animate-fade-in-up,
  .animate-fade-in-down,
  .animate-scale-in,
  .animate-pulse,
  .animate-bounce,
  .animate-shake,
  .animate-rotate,
  .animate-typing,
  .animate-shimmer,
  .animate-float,
  .animate-reveal-text,
  .animate-fade-in-blur,
  .animate-ripple,
  .animate-slide-in,
  .animate-attention,
  .reveal-on-scroll {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
/* 
 * Corpify Icons CSS
 * Standardized circular icons with perfectly centered content
 */

/* Feature Icons - Large circular icons used in feature cards */
.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light, #e6f0ff), #ffffff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary, #004080);
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(0,64,128,0.1);
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.feature-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Icon Box - Small circular icons used throughout the site */
.icon-box {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.icon-box i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Testimonial Avatar - User avatars in testimonials */
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary, #004080);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 1rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.testimonial-avatar span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Team Member Avatar - Circular avatars for team members */
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  aspect-ratio: 1/1;
  position: relative;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.team-avatar div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Social Media Icons - Circular social media icons */
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary, #004080);
  color: white;
  transition: all 0.3s ease;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.social-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer Social Icons */
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,0.1);
  color: white;
  margin: 0 5px;
  transition: all 0.3s ease;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.footer-social a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-social a:hover {
  background-color: white;
  color: var(--primary, #004080);
  transform: translateY(-3px);
}

/* Ensure all Bootstrap icons maintain proper sizing and centering */
.bi {
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  aspect-ratio: 1/1;
}

/* Fix for any other circular elements */
[class*="rounded-circle"],
[class*="rounded-50"] {
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* General fix for any icon containers */
[class*="icon-"] {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fix for any text content inside circular elements */
[class*="rounded-circle"] span,
[class*="rounded-50"] span,
[class*="avatar"] span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
/* 
 * Button Fix CSS
 * Ensures buttons are properly styled and clickable
 */

/* Make sure buttons have pointer cursor */
.btn {
  cursor: pointer !important;
}

/* Ensure hero section buttons are clickable */
.hero-section .btn {
  position: relative !important;
  z-index: 1000 !important;
  pointer-events: auto !important;
}

/* Add padding to the top of sections with IDs to account for fixed header */
section[id] {
  scroll-margin-top: 80px !important;
  scroll-padding-top: 80px !important;
}

/* Ensure sections are visible */
#coaching-section, 
#tools-section {
  position: relative !important;
  z-index: 1 !important;
}
/* 
 * Anchor Fix CSS
 * Ensures proper scrolling to anchor links
 */

/* Add padding to the top of sections with IDs to account for fixed header */
section[id] {
  scroll-margin-top: 80px;
}

/* Ensure sections are visible and not hidden behind fixed elements */
#coaching-section, 
#tools-section {
  position: relative;
  z-index: 1;
}

/* Make sure buttons are clickable */
.hero-section .btn {
  position: relative;
  z-index: 10;
}
/* 
 * Hero Fix CSS
 * Ensures hero section buttons are clickable
 */

/* Make sure the hero section allows clicks */
.hero-section {
  pointer-events: auto !important;
}

/* Ensure hero section buttons are clickable */
.hero-section .btn {
  position: relative !important;
  z-index: 1000 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}

/* Make button container have high z-index */
.hero-section .d-flex {
  position: relative !important;
  z-index: 1000 !important;
}

/* Fix for any overlays or animations */
.hero-section::before,
.hero-section::after {
  pointer-events: none !important;
}

/* Ensure animations don't block clicks */
.animate-fade-in {
  pointer-events: auto !important;
}

/* Add padding to the top of sections with IDs to account for fixed header */
section[id] {
  scroll-margin-top: 80px !important;
}
/* 
 * Footer Fix CSS
 * Ensures footer styling is consistent across all pages
 */

/* Remove any bottom margin/padding from body and html */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  height: 100%;
  overflow-x: hidden;
}

/* Fix footer styling and ensure it's the last element */
.footer {
  color: white;
  padding: 4rem 0 2rem;
  margin: 0 !important;
  position: relative;
  z-index: 1;
}

/* Ensure nothing appears after footer */
.footer::after {
  content: "";
  display: block;
  height: 0;
  margin: 0;
  padding: 0;
  clear: both;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  margin-right: 0.75rem;
  color: white !important;
  transition: all 0.3s ease;
}

.footer-social a .x-logo::before {
  color: white !important;
}

.footer-social a i {
  color: white !important;
}

.footer-social a:hover {
  background-color: #2ec4b6;
  transform: translateY(-3px);
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  margin-left: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer h5 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer hr.border-light {
  opacity: 0.1;
  margin: 2rem 0;
}

.footer .list-unstyled li {
  margin-bottom: 0.75rem;
}

.footer .list-unstyled a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .list-unstyled a:hover {
  color: white;
}
/* Universal Navbar Spacing Fix - Prevents overlap on all pages */

/* Force body padding for all pages */
body {
    padding-top: 80px !important;
    margin-top: 0 !important;
}

/* Ensure all top-level content has proper spacing */
main,
.main-content,
.container:first-child,
.hero-section,
section:first-of-type,
.page-header,
header:first-of-type {
    margin-top: 0 !important;
    padding-top: 1rem !important;
}

/* Special handling for hero sections */
.hero-section {
    padding-top: 2rem !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 80px !important;
    }
    
    .hero-section {
        padding-top: 1.5rem !important;
    }
}

/* Override any conflicting styles */
* {
    box-sizing: border-box;
}
