<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 Theme Name: BallotPartner
 Theme URI: https://ballotpartner.com
 Author: BallotPartner.com
 Author URI: https://ballotpartner.com
 Description: A secure digital election platform theme for cooperatives, schools, and organizations.
 Version: 1.0.2
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Tags: election, voting, secure, digital
 Text Domain: ballotpartner
*/

.logo-img {
  width: 250px;     
  height: auto;      
  max-height: 70px; 
  object-fit: contain;
}

.header {
  transition: all 0.4s ease;
  background: transparent;
}

.header-scrolled {
  background: white !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-scrolled .login-btn {
  background: transparent;
  color: #2c3e50;
  border-color: #2c3e50;
}

.header-scrolled .signup-btn {
  background: #2c3e50;  
  color: white;
  border-color: #2c3e50;
}

.header-scrolled .navmenu a {
  color: #333 !important;
}

.auth-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-btn, .signup-btn {
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.login-btn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.signup-btn {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}

.hero-heading {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.highlight-text {
  color: #5FB0FF;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  color: #f1f5f9; 
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.tagline {
  font-size: 1.15rem;
  margin: 2rem 0;
  color: #f1f5f9; 
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.icon-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-5px);
}

.icon-box i {
  font-size: 2rem;
  color: #2b6cb0;
  margin-bottom: 1rem;
}

.trust-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  height: 100%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-top: 4px solid #2b6cb0;
  transition: all 0.3s ease;
}

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

.trust-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 108, 176, 0.1);
  color: #2b6cb0;
  font-size: 1.5rem;
}

.trust-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.trust-card p {
  font-size: 0.9rem;
  color: #6c757d;
}

.features {
  padding: 80px 0;
}

.features-item {
  margin-bottom: 80px;
}

.features-img-bg {
  min-height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
}

.features-img-bg img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.features-item h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.features-item p {
  color: #7f8c8d;
  margin-bottom: 25px;
}

.features-item ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.features-item ul li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
}

.features-item ul li i {
  color: #2575fc;
  font-size: 1.2rem;
  margin-right: 10px;
  margin-top: 3px;
}

.payment-note {
  display: block !important;
  margin-top: 2rem !important;
}

.footer {
  width: 100%;
  margin: 0;
  padding: 0;
}

.footer-bg {
  background-color: #f5f5f5;  
  width: 100%;
  padding: 1rem 0; 
}

.footer-content {
  max-width: 1200px;  
  margin: 0 auto;    
  text-align: center;
  padding: 0 15px;    
}

.navmenu ul {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.fixed-top  .navmenu a {
  color: #FFF;
}

.sticky-top  .navmenu a {
  color: #3a3939;
}

.navmenu a {
  position: relative;
  color: #3a3939;
  font-weight: 500;
  padding: 0.5rem 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navmenu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #5FB0FF;
  transition: width 0.3s ease;
}

.navmenu a:hover::after,
.navmenu a.active::after {
  width: 100%;
}

.navmenu a:hover {
  color: #5FB0FF;
}

.navmenu .active {
  color: #5FB0FF;
}

.header-scrolled .navmenu a {
  color: #2c3e50 !important;
}

.header-scrolled .navmenu a:hover,
.header-scrolled .navmenu .active {
  color: #5FB0FF !important;
}

.navmenu .dropdown {
  position: relative;
}

.navmenu .dropdown-content {
  display: none;
  position: absolute;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 8px;
  z-index: 1;
  padding: 0.5rem 0;
  top: 100%;
  left: 0;
}

.navmenu .dropdown:hover .dropdown-content {
  display: block;
}

.navmenu .dropdown-content a {
  color: #2c3e50 !important;
  padding: 0.75rem 1.5rem;
  display: block;
}

.navmenu .dropdown-content a:hover {
  background: #f8f9fa;
  color: #5FB0FF !important;
}

.faq-intro-card {
  background: white;
  height: 100%;
  border-left: 4px solid var(--bs-primary);
}

.faq-item {
  margin-bottom: 0.75rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.faq-item.active {
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.faq-header {
  background: white;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.faq-header h4 {
  margin: 0;
  flex: 1;
  font-weight: 600;
  font-size: 1.1rem;
}

.number-bubble {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-right: 1rem;
}

.toggle-icon {
  font-size: 1.25rem;
  color: var(--bs-primary);
  transition: all 0.3s ease;
  margin-left: 0.5rem;
}

.faq-content {
  background: #f8f9fa;
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-content {
  max-height: 1000px; 
  padding: 0 1.5rem 1.5rem;
}

.faq-content p {
  margin: 0;
  padding: 1rem 0;
  white-space: normal; 
  overflow: visible; 
}

.map-container {
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;
}

.contact-form-container {
  background: transparent;
  border-radius: 12px;
  box-shadow: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: none; 
}

.php-email-form .form-control {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 0;
}

.php-email-form .form-label {
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.php-email-form textarea.form-control {
  min-height: 150px;
}

.php-email-form button[type="submit"] {
  padding: 12px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.php-email-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.menu-item-26, .menu-item-25 {
  display: none;
}

@media (max-width: 1199px) {
  .menu-item-26, .menu-item-25 {
    display: block;
  }

  .auth-buttons {
    display: none;
  }
}

@media (max-width: 992px) {
  .map-container {
    height: 350px;
    margin-bottom: 30px;
  }
    
  .contact-form-container {
    padding: 25px;
  }
    
  .php-email-form button[type="submit"] {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .trust-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 992px) {
  .auth-buttons {
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .logo-img {
    width: 150px;
    max-height: 50px;
  }
}

@media (max-width: 576px) {
  .logo-img {
    width: 120px;
    max-height: 40px;
  }
}</pre></body></html>