/*
Theme Name: Custom Theme
Author: You
Description: A custom WordPress theme with dynamic header and footer.
Version: 1.0
*/

/* Custom WordPress Theme Styles - Only add custom overrides here */

/* Ensure proper page structure and scrolling */
html, body {
    overflow-x: hidden; /* Prevent horizontal scroll */
    scroll-behavior: smooth;
}

body {
    position: relative;
}

/* Ensure main content has proper spacing */
.site-main {
    min-height: 50vh; /* Ensure there's content to scroll to */
    position: relative;
    z-index: 1;
}

/* Custom WordPress-specific footer overrides only */
.footer-widget-box.about-us .footer-logo h3 {
    color: white;
    margin-bottom: 20px;
}

/* Ensure newsletter form displays properly in widgets */
.footer-newsletter .subscribe-form .form-group {
    position: relative;
}

/* pop up */
.popup-content ul {
  list-style: none; /* Remove default bullets */
  padding-left: 0;   /* Remove default indent */
}

.popup-content ul li {
  position: relative;
  padding-left: 25px; /* Creates space for the checkmark */
  margin-bottom: 10px;
}
.popup-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--theme-color);
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
}
.popup-button .theme-btn {
	color:#000 !important;
	
}
.popup-button .theme-btn:hover {
	color:#fff !important;
	
}
