/* Overall Font */
@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/Gotham-Bold.woff2') format('woff2'),
       url('assets/fonts/Gotham-Bold.woff') format('woff'),
       url('assets/fonts/Gotham-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}
body {
  font-family: 'Gotham', sans-serif;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  color: #F61B79;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

/* Navbar Styles */
.navbar {
  background-color: #ffffff !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 1rem;
}
.navbar-brand {
  color: #F61B79 !important;
  font-weight: bold;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}
.navbar-logo {
  height: 35px;
  width: auto;
  object-fit: contain;
}
.navbar-nav .nav-link {
  color: #340441 !important;
  font-size: 16px;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease-in-out;
}
.navbar-nav .nav-link:hover {
  color: #F61B79 !important;
}
.navbar-toggler-icon {
  padding: 0 !important;
}
@media (max-width: 768px) {
  .navbar-logo {
    height: 30px;
  }
  .navbar-nav .nav-link {
    font-size: 14px;
    padding: 0.5rem 0.75rem;
  }
  .navbar-brand {
    font-size: 18px;
  }
}

/* Button Display */
.btn-primary {
  background-color: #ffffff !important;
  outline-style: solid;
  outline-color: #622081;
  color: #622081 !important;
  border: none !important;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #F61B79 !important;
  outline-style: solid;
  outline-color: #F61B79;
  color: #ffffff !important;
  border: none !important;
}

/* Cost Description Display */
h1 {
  color: #622081;
  font-size: 40px;
  font-weight: bold;
}
h2 {
  color: #622081;
  font-size: 14px;
  font-weight: bold;
}
h3 {
  color: #622081;
  font-size: 16px;
  font-weight: bold;
  margin-top: 12px;
}
p {
  color: #F61B79;
  margin-bottom: 65px;
}
p1 {
  color: #F61B79;
  font-size: 15px;
  font-weight: bold;
}
p2 {
  color: #F61B79;
  font-size: 12px;
  font-weight: bold;
}
p3 {
  color: #F61B79;
  font-size: 17px;
  font-weight: bold;
  margin-top: 12px;
}
span {
  padding: 61px;
}
hr {
  width: 80%;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 20px;
}
/* Cost Description Container Display */
.container .col-md-6:first-child {
  padding-left: 0; /* Remove any default padding on the left */
  margin-left: -50px; /* Adjust this value as needed to shift the image left */
}
.container .col-md-6:last-child {
  margin-left: 50px; /* Adds space between the image and text */
}
@media (max-width: 1200px) {
  h1 {
    font-size: 35px;
  }
  span {
    padding: 30px;
  }
  hr {
    width: 90%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  span {
    padding: 0px;
  }
  hr {
    width: 100%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 30px;
  }
  span {
    padding: 40px;
  }
  hr {
    width: 85%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 25px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 20px;
  }
  h2 {
    font-size: 11px;
  }
  h3 {
    font-size: 14px;
  }
  p1 {
    font-size: 12px;
  }
  span {
    padding: 40px;
  }
}
@media (max-width: 450px) {
  span {
    padding: 30px;
  }
}
@media (max-width: 395px) {
  span {
    padding: 20px;
  }
}
@media (max-width: 350px) {
  span {
    padding: 15px;
  }
}


/* Payment Process Display */
h4 {
  color: #622081;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0px;
  margin-top: 35px;
}
p4 {
  color: #F61B79;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 50px;
}
/* Payment Process Container */
.content-white-box {
  background-color: rgba(202, 195, 195, 0.045);
  padding: 5px 60px;
}

/* Card Number Box Style */
.card-number-box {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 15px 15px 0 0;
  width: 100%;
  background-color: white;
  padding: 0px;
}
/* Card Number Input Field Style */
.card-number-box input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 15px 15px 0 0;
  padding: 8px;
  font-size: 1rem;
  height: 40px;
}
/* Card Brand Logos inside Card Number Box */
.card-brand-logos {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 8px;
}
/* Brand Logos Size */
.card-brand-logos img {
  width: 27px;
  height: auto;
}
/* MM / YY and CVC Adjacent Fields */
.card-fields {
  display: flex;
  gap: 0;
  margin-top: -5px;
  width: 100%;
}
/* MM / YY Box */
.card-fields .col-6:first-child input {
  border-radius: 0 0 0 15px; /* Circular bottom-left corner */
  padding: 7px;
  border: 1px solid #ddd;
}
/* CVC Box */
.card-fields .col-6:last-child input {
  border-radius: 0 0 15px 0; /* Circular bottom-right corner */
  padding: 7px;
  border: 1px solid #ddd;
}
/* Card Field Input Styling */
.card-fields input {
  width: 100%;
  border-radius: 0;
  padding: 5px;
  font-size: 1rem;
  border: 1px solid #ddd;
}
/* Card Information Detail Formatting */
.card-fields .col-6 {
  position: relative;
  height: 35px;
}
.card-number-box {
  margin-bottom: 5px; /* Space between card number box and MM/YY, CVC boxes */
}
.card-fields input:focus {
  outline: none;
  border: 1px solid #007bff;
}
@media (max-width: 992px) {
  .content-white-box {
    padding: 5px 0px;
  }
}
/* Adjust padding for screens max-width 767px */
@media (max-width: 767px) {

  /* Adjust padding for content box */
  .content-white-box {
    padding: 5px 60px !important;
  }
}

@media (max-width: 600px) {
  .btn.btn-primary {
    padding: 5px 10px !important;  /* Further reduce horizontal padding */
    width: 80% !important;  /* Ensure it doesn't stretch full width */
    display: block; /* Make it behave like a block-level element */
    margin-left: auto; /* Center horizontally */
    margin-right: auto; /* Center horizontally */
  }
}