.wp-block-image img {
    border-radius: 20px;
}
.wp-block-quote:not(.has-text-align-right):not(.has-text-align-center) {
    font-size: 18px;
    border-left: 5px solid #1f57fe; 
    background-color: #fffdeb; /* Light Yellow */
    padding: 15px;
    border-radius: 5px;
}
li{
	margin-left: 40px;
}
.widget li {
    margin: 0px;
    list-style-type: none;
}
/*button text underline remove*/
.ast-single-post .entry-content a, .ast-comment-content a:not(.ast-comment-edit-reply-wrap a) {
    text-decoration: none;
}

header.entry-header:not(.related-entry-header) .entry-title {
    font-weight: 800;
    font-size: 36px;
}


@media (max-width: 768px) {
    header.entry-header:not(.related-entry-header) .entry-title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    header.entry-header:not(.related-entry-header) .entry-title {
        font-size: 28px;
    }
}


/* Default styles for desktop */
h1.hero-title {
    font-size: 2.75rem; /* 52px equivalent */
    font-weight: 800;
    line-height: 1.1;
    color: #323346;
		max-width: 1100px; 
    margin: 0 auto;
}

h2.hero-title {
    font-size: 2.25rem; 
    font-weight: 800;
    line-height: 1.1;
    color: #323346;
    max-width: 1000px; 
    margin: 0 auto;
}

h3.hero-title {
    font-size: 1.75rem; /* 32px equivalent */
    font-weight: 800;
    line-height: 1.1;
    color: #323346;
}

div.hero-descrp {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.555;
    color: #1F2937;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive styles for tablets */
@media (max-width: 1024px) {
    h1.hero-title {
        font-size: 2.25rem; /* ~44px */
    }

    h2.hero-title {
        font-size: 2rem; /* ~36px */
    }

    h3.hero-title {
        font-size: 1.5rem; /* ~28px */
    }

    div.hero-descrp {
        font-size: 16px; /* 16px */
        line-height: 1.5; /* 24px */
    }
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
    h1.hero-title {
        font-size: 2rem; /* ~36px */
    }

    h2.hero-title {
        font-size: 1.625rem; /* ~30px */
    }

    h3.hero-title {
        font-size: 1.25rem; /* ~24px */
    }

    div.hero-descrp {
        font-size: 14px; /* 14px */
        line-height: 1.428; /* 20px */
    }
}

/* Additional responsiveness for smaller screens */
@media (max-width: 480px) {
    h1.hero-title {
        font-size: 2rem; 
    }

    h2.hero-title {
        font-size: 1.75rem; 
    }

    h3.hero-title {
        font-size: 1.5rem; 
    }

    div.hero-descrp {
        font-size: 1rem;
        line-height: 1.333; /* 16px */
    }
}

.main-header-bar {
    padding: 0em 0;
}

.wpcf7-form input {
font-size: 14px;
}


.grecaptcha-badge { 
    visibility: hidden !important;
}
.entry-title a {
    font-weight: bold;
}


/* GLOBAL CTA SECTION */
.global-cta-section {
  width: 100%;
  height: auto;
  min-height: 200px;
  background-image: url('https://getbravo.io/wp-content/uploads/2025/05/background-image.png');
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  margin: 40px 0;
  display: flex;
  align-items: center;
  padding: 30px 25px;
  color: #333333;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: box-shadow 0.3s ease;
}

.global-cta-section:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

/* 1. MIDDLE VARIANT - CENTRED */
.cta-middle .cta-content {
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1;
  animation: slideUp 1s ease forwards;
}

.cta-middle h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 22px;
  color: #222222;
  line-height: 1.3;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background-color: #ffdf09; /* Yellow button */
  color: #333333;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
}

.cta-button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  transition: all 0.6s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  background-color: #ffcb0c;
  color: #222222;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.cta-button:hover::after {
  left: 100%;
}

/* 2. BOTTOM VARIANT - BOXED FLEX STYLE */
.cta-bottom .cta-boxed {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
  animation: fadeInRight 1s ease forwards;
}

.cta-bottom h2 {
  font-size: 30px;
  font-weight: 600;
  color: #222222;
  max-width: 80%;
  line-height: 1.3;
  margin-bottom: 20px;
}

.boxed-button {
  background-color: #ffdf09; /* Yellow Button */
  color: #333333;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  white-space: nowrap;
  animation: bounce 3s infinite;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.boxed-button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  transition: all 0.6s ease;
}

.boxed-button:hover {
  transform: translateY(-3px) scale(1.05);
  background-color: #ffcb0c;
  color: #222222;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.boxed-button:hover::after {
  left: 100%;
}

/* Shared Button Animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 223, 9, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 223, 9, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 223, 9, 0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Entry Animations */
@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideUp {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .global-cta-section {
    padding: 25px 20px;
  }
  
  .cta-middle h2,
  .cta-bottom h2 {
    font-size: 24px;
    margin-bottom: 18px;
  }
  
  .cta-button,
  .boxed-button {
    font-size: 0.95rem;
    padding: 10px 20px;
    width: 100%;
    max-width: 240px;
    text-align: center;
  }
  
  .cta-bottom h2 {
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .global-cta-section {
    padding: 20px 15px;
  }
  
  .cta-middle h2,
  .cta-bottom h2 {
    font-size: 21px;
  }
  
  .cta-button,
  .boxed-button {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

body.logged-in .mysticky-welcomebar-fixed-wrap {
    display: none !important;
}

.centered-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* Optional: adds horizontal padding for smaller screens */
  width: 100%;
  box-sizing: border-box;
}