/*
Theme Name:   Go Global Conference
Theme URI:    https://goglobalconference.com/
Author:       MalachiLabs
Author URI:   https://yourwebsite.com
Description:  A custom WordPress theme developed for Go Global Conference.
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  your-theme-textdomain
Tags:         responsive, custom-header, featured-images, etc.
*/
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;
	
}
