:root {
  --primary-color: #0b6fc0;
  --gradient: linear-gradient(270.46deg, #1fdce5 0.32%, #0c74c2 108.77%);
  --light-gray: #f8f9fa;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-brand img {
  height: 50px;
}

.subscription-container {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.left-section {
  width: 50%;
  padding-right: 30px;
  position: relative;
}

.right-section {
  width: 50%;
  background-color: var(--light-gray);
  border-radius: 10px;
  color: #696984 !important;
  padding: 25px;
}

.section-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 25px;
}

.payment-btn {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--primary-color);
  border-radius: 25px;
  background-color: white;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 500;
  transition: all 0.3s;
}

.payment-btn.active {
  background: var(--gradient);
  color: white !important;
  color: white;
  border: none;
}

.payment-btn:hover:not(.active) {
  background-color: rgba(11, 111, 192, 0.1);
}

.premium-box {
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.premium-icon {
  font-size: 24px;
  color: var(--primary-color);
}

.premium-details span{
  color: #1B223C;
  font-weight: 600;
  font-size: 23px;
}
.premium-details {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.premium-title {
  font-weight: 600;
  font-size: 20px;
  margin-left: 15px;
}

.premium-price {
  font-weight: 600;
  font-size: 18px;
}

.subscription-details {
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
}

.details-row {
  color: #666;
  font-size: 14px;
}

.price-breakdown {
  margin-top: 20px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 18px;
  border-top: 1px solid #ddd;
  margin-top: 10px;
  padding-top: 15px;
}

.form-label {
  font-weight: 500;
  color: #555;
  margin-bottom: 5px;
}

.form-control {
  border-radius: 8px;
  padding: 10px 15px;
  border: 1px solid #b2b3cf;
  margin-bottom: 15px;
}

.form-select {
  border-radius: 8px;
  padding: 10px 15px;
  border: 1px solid #b2b3cf;
  background-position: right 15px center;
  margin-bottom: 15px;
}

.payment-methods {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-method img {
  height: 30px;
}

.pay-now-btn,
.submit-link-btn {
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  font-weight: 500;
  margin-top: 20px;
  transition: all 0.3s;
}

.pay-now-btn:hover,
.submit-link-btn:hover {
  border: 2px solid transparent;
background: linear-gradient(270.46deg, #1FDCE5 0.32%, #0C74C2 108.77%);
  color: white;
}

.terms-text {
  font-size: 12px;
  color: #666;
  margin-top: 15px;
  text-align: center;
}

.terms-text a {
  color: var(--primary-color);
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--primary-color);
  font-weight: normal;
  margin-top: 2px;
}

.section-heading {
  font-weight: 500;
  color: #696984;
  margin: 20px 0 15px 0;
}

.payment-option {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.payment-option input[type="radio"] {
  margin-right: 10px;
}

.payment-option img {
  height: 30px;
  margin-left: 10px;
}

.countries-select {
  width: 100%;
  padding: 10px 15px;
  border-radius: 8px;
  background-color: #f1f1f1;
  border: none;
  outline: none;
  margin-bottom: 20px;
}

.payment-form {
  background-color: #f1f1f1;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.card-input-container {
  position: relative;
  margin-bottom: 15px;
}

.card-input-container input {
  margin-bottom: 0;
  padding-left: 40px;
  padding-right: 110px;
  border-radius: 10px;
  outline: none;
  background: #ebecef !important;
  color: #696984 !important;
}

.payment-method-section input {
  outline: none;
  background: #ebecef !important;
  border-radius: 10px;
  color: #696984 !important;
}

.card-input-container .card-icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.card-input-container .mastercard-icon {
  position: absolute;
  top: 50%;
  right: 65px;
  transform: translateY(-50%);
}
.card-input-container .visa-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}


.card-icons {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.card-icons img {
  height: 25px;
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.card-header h3 {
}

.card-input {
  background-color: #e9e9e9;
  border: none;
  padding: 12px 15px;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 15px;
}

.card-row {
  display: flex;
  gap: 15px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  margin: 15px 0;
}

.checkbox-container input[type="checkbox"] {
  margin-right: 10px;

}

.checkbox-container label{
  font-size: 16px;
  color: #696984;
}

.bank-details {
  background-color: #f1f1f1;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.bank-info {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  margin-top: 15px;
}

.bank-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bank-label {
  font-weight: 500;
  color: #696984;
}

.bank-value {
  font-weight: 600;
}

.form-section {
  display: none;
}

.form-section.active {
  display: block;
}

.payment-method-section {
  display: none;
}

.payment-method-section.active {
  display: block;
}

.paypal-method-section {
  display: none;
}

.paypal-method-section.active {
  display: block;
}

.bank-method-section {
  display: none;
}

.bank-method-section.active {
  display: block;
}

.section-title-blue {
  color: #0039a6;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Blur Popup Styles */
.blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content {
  width: 80%;
  max-width: 400px;
  text-align: center;
  margin-top: -480px;
}

.popup-title {
  color: #0039a6;
  font-weight: 600;
  margin-bottom: 25px;
}

.popup-buttons {
  flex-direction: column;
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.popup-btn {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--primary-color);
  border-radius: 25px;
  background-color: white;
  color: var(--primary-color);
  font-weight: 500;
  transition: all 0.3s;
}

.popup-btn:hover {
  color: white;
  border: 1px solid transparent !important;
  background: linear-gradient(270.46deg, #1fdce5 0.32%, #0c74c2 108.77%);
}

.popup-btn.active {
  background: var(--gradient);
  color: white;
  border: none;
}

@media (max-width: 768px) {
  .subscription-container {
    flex-direction: column;
  }

  .left-section,
  .right-section {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .card-row {
    flex-direction: column;
  }
}


.popup {
  height: 100vh;
  width: 100%;
  padding: 0 4%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 10000;
}

.payment-box {
  position: relative;
  max-width: 500px;
  width: 100%;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}

.payment-box .popup-btn{
  width: 100px;
  padding: 6px 0 !important;
  margin: auto;
  cursor: pointer;
}
.payment-box h3{
  color: #0C74C2;
}
.payment-box p{
  margin-top: 10px;
  font-size: 15px;
  color: #000000;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.paypal-payment-box {
  width: 100%;
  background: #f1f1f1;
  padding: 30px 30px;
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-radius: 10px;
}

.paypal-payment-box h4{
  color: #696984;
  font-size: 14px;
}

.paypal-payment-box svg{
  width: 180px ;
  margin: auto;
}
.paypal-payment-box svg path{
  stroke: #696984 !important;
}