/*--------------------------------------------------------------
# Enhanced Header & Navigation Styles
# Modern, responsive header with improved styling
--------------------------------------------------------------*/

/* Header Variables */
:root {
  --header-bg: #040b14;
  --header-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  --nav-item-hover: rgba(255, 255, 255, 0.1);
  --accent-glow: rgba(20, 157, 221, 0.3);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 70px; /* Reduced header height for tighter spacing */
  --header-height-scrolled: 55px; /* Compressed header height */
}

/*--------------------------------------------------------------
# Top Header Enhancement
--------------------------------------------------------------*/
.top-header {
  background: linear-gradient(135deg, var(--header-bg) 0%, #0a1628 100%);
  border-bottom: 2px solid rgba(20, 157, 221, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
  box-shadow: var(--header-shadow);
  padding: 12px 0;
  backdrop-filter: blur(10px);
}

.top-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 11, 20, 0.95);
  z-index: -1;
}

/* Scrolled header effect */
.top-header.scrolled {
  padding: 8px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
  border-bottom-color: rgba(20, 157, 221, 0.4);
}

.top-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
}

/*--------------------------------------------------------------
# Logo Section Enhancement
--------------------------------------------------------------*/
.logo-section {
  flex-shrink: 0;
  z-index: 100;
  display: flex;
  align-items: center;
}

/* Logo wrapper specific styling for horizontal layout */
.logo-section .logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  width: auto;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.top-logo {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  position: relative;
}

.top-logo:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 8px rgba(20, 157, 221, 0.3));
}

.top-logo h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  background: linear-gradient(45deg, #ffffff, #149ddd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.top-logo h1::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #149ddd, #17a2b8);
  transition: width 0.3s ease;
}

.top-logo:hover h1::after {
  width: 100%;
}

.top-logo img {
  max-height: 45px;
  width: auto;
  transition: var(--transition-smooth);
}

.top-logo:hover img {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Enhanced Navigation Menu
--------------------------------------------------------------*/
.top-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
  z-index: 99;
}

.top-nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
  align-items: center;
}

.top-nav-menu li {
  position: relative;
}

.top-nav-menu a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 20px;
  transition: var(--transition-smooth);
  position: relative;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Navigation icons */
.top-nav-menu a .navicon {
  font-size: 18px;
  transition: var(--transition-smooth);
}

/* Hover effects */
.top-nav-menu a:hover,
.top-nav-menu a.active {
  color: #ffffff;
  background: var(--nav-item-hover);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(20, 157, 221, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(20, 157, 221, 0.2);
}

.top-nav-menu a:hover .navicon,
.top-nav-menu a.active .navicon {
  color: #149ddd;
  transform: scale(1.1);
}

/* Animated underline */
.top-nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #149ddd, #17a2b8);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}

.top-nav-menu a:hover::before,
.top-nav-menu a.active::before {
  width: 80%;
}

/*--------------------------------------------------------------
# Mobile Menu Toggle Enhancement
--------------------------------------------------------------*/
.top-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(20, 157, 221, 0.3);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  width: 50px;
  height: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.top-menu-toggle:hover {
  background: rgba(20, 157, 221, 0.2);
  border-color: rgba(20, 157, 221, 0.5);
  transform: scale(1.05);
}

.hamburger {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #ffffff, #149ddd);
  transition: var(--transition-smooth);
  border-radius: 1px;
}

/* Hamburger Animation */
.top-menu-toggle.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #149ddd;
}

.top-menu-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.top-menu-toggle.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #149ddd;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1024px) {
  .top-header-content {
    padding: 0 20px;
  }
  
  .top-nav-menu {
    gap: 25px;
  }
  
  .top-nav-menu a {
    padding: 10px 15px;
    font-size: 15px;
  }
}

/* Tablet Support - Show mobile menu on tablets too */
@media (max-width: 1024px) {
  .top-menu-toggle {
    display: flex;
    z-index: 1002;
    position: relative;
  }
  
  /* Use sidebar menu for tablets as well */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(2px);
  }
  
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .top-navigation {
    position: fixed;
    top: 0;
    right: -380px;
    width: 350px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(145deg, #1a2332 0%, #0f1419 100%);
    backdrop-filter: blur(20px);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    padding: 80px 0 40px 0;
    overflow-y: auto;
    border-left: 2px solid rgba(20, 157, 221, 0.2);
  }
  
  .top-navigation.active {
    right: 0;
  }
}

@media (max-width: 768px) {
  .top-menu-toggle {
    display: flex;
    z-index: 1002;
    position: relative;
  }
  
  .top-header-content {
    padding: 0 15px;
  }
  
  /* Mobile Menu Overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(2px);
  }
  
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Sidebar Navigation */
  .top-navigation {
    position: fixed;
    top: 0;
    right: -350px; /* Start hidden off-screen to the right */
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(145deg, #1a2332 0%, #0f1419 100%);
    backdrop-filter: blur(20px);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    padding: 80px 0 40px 0;
    overflow-y: auto;
    border-left: 2px solid rgba(20, 157, 221, 0.2);
  }
  
  .top-navigation.active {
    right: 0; /* Slide in from right */
  }
  
  /* Sidebar Header */
  .sidebar-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 25px;
    background: rgba(20, 157, 221, 0.1);
    border-bottom: 1px solid rgba(20, 157, 221, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .sidebar-title {
    color: #149ddd;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }
  
  .sidebar-close {
    width: 35px;
    height: 35px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
  }
  
  .sidebar-close:hover {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
  }
  
  /* Navigation Menu in Sidebar */
  .top-nav-menu {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: stretch;
    padding: 0 25px;
    list-style: none;
    margin: 0;
  }
  
  .top-nav-menu li {
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.4s ease forwards;
  }
  
  .top-nav-menu li:nth-child(1) { animation-delay: 0.1s; }
  .top-nav-menu li:nth-child(2) { animation-delay: 0.2s; }
  .top-nav-menu li:nth-child(3) { animation-delay: 0.3s; }
  .top-nav-menu li:nth-child(4) { animation-delay: 0.4s; }
  .top-nav-menu li:nth-child(5) { animation-delay: 0.5s; }
  
  .top-nav-menu a {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
  }
  
  .top-nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 157, 221, 0.1), transparent);
    transition: left 0.5s ease;
  }
  
  .top-nav-menu a:hover {
    background: rgba(20, 157, 221, 0.08);
    border-color: rgba(20, 157, 221, 0.3);
    transform: translateX(8px);
    color: white;
  }
  
  .top-nav-menu a:hover::before {
    left: 100%;
  }
  
  .top-nav-menu a.active {
    background: rgba(20, 157, 221, 0.15);
    border-color: rgba(20, 157, 221, 0.4);
    color: #149ddd;
  }
  
  /* Slide-in animation for menu items */
  @keyframes slideInRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

@media (max-width: 480px) {
  .top-logo h1 {
    font-size: 24px;
  }
  
  .top-header {
    padding: 10px 0;
  }
  
  .top-nav-menu a {
    font-size: 16px;
    padding: 15px 18px;
  }
}

/*--------------------------------------------------------------
# Additional Enhancements
--------------------------------------------------------------*/

/* Loading animation for navigation */
@keyframes navItemLoad {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.top-nav-menu li {
  animation: navItemLoad 0.6s ease forwards;
}

.top-nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.top-nav-menu li:nth-child(2) { animation-delay: 0.2s; }
.top-nav-menu li:nth-child(3) { animation-delay: 0.3s; }
.top-nav-menu li:nth-child(4) { animation-delay: 0.4s; }
.top-nav-menu li:nth-child(5) { animation-delay: 0.5s; }
.top-nav-menu li:nth-child(6) { animation-delay: 0.6s; }
.top-nav-menu li:nth-child(7) { animation-delay: 0.7s; }

/* Scroll indicator */
.header-scroll-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #149ddd, #17a2b8);
  transition: width 0.3s ease;
  z-index: 101;
}

/* Focus states for accessibility */
.top-nav-menu a:focus {
  outline: 2px solid #149ddd;
  outline-offset: 2px;
  background: var(--nav-item-hover);
}

.top-menu-toggle:focus {
  outline: 2px solid #149ddd;
  outline-offset: 2px;
}

/*--------------------------------------------------------------
# Body Adjustments for Top Header Only
--------------------------------------------------------------*/
/* Remove all left spacing for top header only layout */
body {
  margin-left: 0 !important; /* Ensure no sidebar margin */
}

/* Remove left spacing from main content areas */
.main,
#main,
main {
  margin-left: 0 !important;
  padding-left: 0;
}

/* Remove left spacing from containers */
.container {
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 15px;
  padding-right: 15px;
}

/* Remove left spacing from sections */
section,
.section {
  margin-left: 0 !important;
  padding-left: 0;
}

/* Ensure full width content */
.hero,
.about,
.skills,
.resume,
.portfolio,
.services,
.testimonials,
.contact {
  margin-left: 0 !important;
  padding-left: 0;
}

/* Override any potential sidebar layout margins */
@media (min-width: 992px) {
  body {
    margin-left: 0 !important;
  }
  
  .main,
  #main,
  main {
    margin-left: 0 !important;
  }
}

/* Ensure Bootstrap container works properly */
.container,
.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100%;
  max-width: 1200px;
}

/* Fix specific layout issues */
.layout-contained,
.layout-full-width,
.layout-narrow {
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 15px;
  padding-right: 15px;
}

/* Ensure all sections start from the left edge */
.hero .container,
.about .container,
.stats .container,
.skills .container,
.portfolio .container,
.services .container,
.contact .container,
.gallery .container {
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  max-width: 1200px;
}

/* Remove any potential left offset */
@media (min-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 992px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Comprehensive spacing reset */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Override main.css body styling and ensure proper top spacing for fixed header */
body {
  margin-top: 0 !important; /* Override main.css margin-top: 70px */
  padding-top: 0 !important; /* Remove any padding-top */
}

/* Add minimal spacing for main content area to account for fixed header */
#main,
.main,
main {
  margin-top: var(--header-height) !important; /* Space for fixed header */
  padding-top: 0 !important; /* No additional padding - tight spacing */
}

/* Specific spacing for hero section */
.hero,
#hero {
  margin-top: var(--header-height) !important;
  padding-top: 0 !important;
}

/* Ensure other sections have minimal spacing */
section:first-of-type,
.section:first-of-type {
  margin-top: var(--header-height) !important;
  padding-top: 0 !important; /* No extra padding */
}

/* Alternative approach: Use padding-top on body when content starts immediately */
body.no-hero {
  padding-top: var(--header-height) !important;
}

body.no-hero #main,
body.no-hero .main,
body.no-hero main {
  margin-top: 0 !important;
}

/* Ultra-tight spacing - content right after header */
.hero-container,
.section:first-child,
section:first-child,
#hero .container,
.hero .container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Remove any default section padding that creates gaps */
section.hero {
  padding-top: 0 !important;
}

/* Ensure containers don't add extra spacing */
.container:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Reset any potential sidebar margins */
body.home,
body.page,
body.single,
body.archive {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

/* Responsive header spacing adjustments */
@media (max-width: 768px) {
  :root {
    --header-height: 60px; /* Smaller header on mobile for tight spacing */
  }
  
  #main,
  .main,
  main {
    margin-top: var(--header-height) !important;
    padding-top: 0 !important; /* Tight spacing on mobile too */
  }
  
  .hero,
  #hero {
    margin-top: var(--header-height) !important;
  }
  
  section:first-of-type,
  .section:first-of-type {
    margin-top: var(--header-height) !important;
    padding-top: 0 !important; /* No extra padding on mobile */
  }
}

/* Reset main content area */
#main,
.main,
main,
.content-area,
.site-main {
  margin-left: 0 !important;
  padding-left: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

/* Ensure sections don't have left spacing */
section {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

/* Force containers to be centered properly */
.container {
  margin: 0 auto !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  max-width: 1200px !important;
}

/* Override any theme-specific layouts */
.layout-contained {
  margin-left: 0 !important;
}

.layout-full-width {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.layout-narrow {
  margin-left: auto !important;
  margin-right: auto !important;
}

/*--------------------------------------------------------------
# Dark/Light Mode Support
--------------------------------------------------------------*/
/* Contact info strict column alignment */
.contact .info-item {
  display: grid !important;
  grid-template-columns: 56px 1fr;
  column-gap: 14px;
  align-items: start;
}

.contact .info-item i {
  width: 56px !important;
  height: 56px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
}

.contact .info-item h3,
.contact .info-item p {
  margin-left: 0 !important;
  text-align: left !important;
}

@media (prefers-color-scheme: light) {
  :root {
    --header-bg: #ffffff;
  }
  
  .top-header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(20, 157, 221, 0.2);
  }
  
  .top-header::before {
    background: rgba(255, 255, 255, 0.95);
  }
  
  .top-logo h1 {
    background: linear-gradient(45deg, #040b14, #149ddd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .top-nav-menu a {
    color: rgba(4, 11, 20, 0.9);
  }
  
  .top-nav-menu a:hover {
    color: #040b14;
    background: rgba(20, 157, 221, 0.1);
  }
}

/* Services hover effects (override) */
.services-item {
  background: var(--surface-color);
  border: 1px solid rgba(20, 157, 221, 0.15);
  border-radius: 14px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.services-item i {
  /* Bigger, vibrant, and accessible icon style */
  --icon-size: 56px;
  --icon-grad: linear-gradient(135deg, #149ddd 0%, #0d8abc 100%);
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: var(--icon-size) !important;
  height: var(--icon-size) !important;
  border-radius: 50% !important;
  background: var(--icon-grad) !important;
  color: #ffffff !important;
  font-size: 1.6rem !important;
  box-shadow: 0 10px 25px rgba(20, 157, 221, 0.25) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  backface-visibility: hidden;
}

.services-item i::after {
  content: '';
  position: absolute;
  width: calc(var(--icon-size) + 10px);
  height: calc(var(--icon-size) + 10px);
  border-radius: 50%;
  border: 2px solid rgba(20, 157, 221, 0.25);
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Trigger on either the wrapper or the card itself */
.service-item:hover .services-item,
.services-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(20, 157, 221, 0.25);
  border-color: rgba(20, 157, 221, 0.35);
}

.service-item:hover .services-item i,
.services-item:hover i {
  transform: translateY(-3px) scale(1.04);
}

.service-item:hover .services-item i::after,
.services-item:hover i::after {
  opacity: 1;
  transform: scale(1.05);
}
}

.services-item::after {
  content: '';
  position: absolute;
  inset: -40% -40% auto -40%;
  height: 60%;
  background: radial-gradient(60% 60% at 50% 50%, rgba(20,157,221,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  transform: translateY(30%);
}

.service-item:hover .services-item::after,
.services-item:hover::after {
  opacity: 1;
  transform: translateY(0%);
}

@media (prefers-reduced-motion: reduce) {
  .services-item,
  .services-item i,
  .services-item::after {
    transition: none;
  }
}

/* User provided overrides */
/* Note: added verbatim per request */

theme.logo-section .logo-wrapper {
    display: flex
;
    align-items: center;
    gap: 15px;
    width: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.header-social-links .social-icon {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}
@media (min-width: 769px) {
    .header-social-links .social-icon {
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
    }
}
.header-social-links .social-icon {
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--default-color);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s 
ease;
    font-size: 16px;
}
@media (min-width: 769px) {
    .header-social-links .social-icon {
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
    }
}
.header-social-links .social-icon {
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--default-color);
    text-decoration: none;
    border-radius: 50%;
transition: all 0.3s 
ease;
    font-size: 16px;
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}
.item-spacing-normal {
    --section-padding: 2rem 0;
    --item-gap: 2rem;
}
.text-align-center {
    text-align: center !important;
}
section, .section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    overflow: clip;
}
section, .section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    overflow: clip;
}
.stats .stats-item {
    padding: 100px;
    width: 100%;
    text-align: center;
}
.stats .stats-item {
    padding: 230px;
    width: 100%;
    text-align: center;
}
/* Tablet */
@media (max-width: 1024px) {
    .stats .stats-item {
        padding: 60px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .stats .stats-item {
        padding: 30px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .stats .stats-item {
        padding: 20px;
    }
}
/* Hide on desktop, show on mobile */
.sidebar-close {
  display: block; /* or flex, inline-block, etc. */
}

@media (min-width: 1024px) {
  .sidebar-close  {
    display: none;
  }
}


.social-media-link.customize-unpreviewable {
  display: block; /* or inline-block, flex, etc. */
}

@media (min-width: 1024px) {
  .social-media-link.customize-unpreviewable {
    display: none;
  }
}

.social-media-link {
  display: block; /* or inline-block, flex, etc. */
}

@media (min-width: 1024px) {
  .social-media-link {
    display: none;
  }
}
@media (min-width: 920px) {
  .social-media-link {
    display: none;
  }
}

/* Stats responsive padding overrides */
/* > 1132px => 211px; 1024px - 1132px => 184px */
@media (min-width: 1133px) {
  .stats .stats-item {
    padding: 211px;
  }
}

@media (min-width: 1024px) and (max-width: 1132px) {
  .stats .stats-item {
    padding: 184px;
  }
}
