/* Updated Resume Styling */
.resume-container {
  width: 8.27in;
  margin: auto;
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  color: #333;
}
.resume-container h4 {
  font-size: 16px;
}

.h2-resume {
  font-size: 1.5em;
  color: #3756a6;
  margin-bottom: 5px;
}

.h2-resume::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin-top: 5px;
  margin-bottom: 15px;
}

.resume-header {
  text-align: center;
  margin-bottom: 20px;
}

.resume-header h1 {
  font-size: 2em;
  margin: 0;
}

.resume-header p {
  font-size: 0.9em;
  color: #666;
}

.section {
  margin-bottom: 20px;
}

.section-title {
  font-weight: bold;
  color: #3756a6;
  margin-bottom: 5px;
}

.experience-item,
.additional-item,
.education-item {
  margin-bottom: 10px;
}

.job-title {
  font-weight: bold;
}

.company-details {
  font-size: 0.9em;
  color: #555;
}

/* .ul-resume {
      list-style-type: disc;
      padding-left: 20px;
      margin-top: 5px;
  } */

/* B.ul-resumelet points */
/* .experience-item .ul-resume,
  .additional-item .ul-resume {
      list-style-type: disc;
      margin: 5px 0;
  } */

/* 14/ 11/ 2024 - Added by Hassan */
/* Card Hover Effect */
.card-hover {
  position: relative;
  overflow: hidden;
}

.bg-holder {
  transition: transform 0.3s ease;
  height: 100%;
  width: 100%;
}

.card-hover:hover .bg-holder {
  transform: scale(1.1); /* Slight zoom effect */
}

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-hover:hover .hover-overlay {
  opacity: 1;
}

.hover-overlay .btn {
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.hover-overlay .btn:hover {
  background-color: #0056b3;
}

.grid-view {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.grid-view > div {
  display: flex;
  align-items: start;
  gap: 7px;
}
.circle-icon {
  height: 12px;
  width: 12px;
  margin-top: 5px;
  margin-right: 5px;
  flex-shrink: 0;
}
.resume-template-font-gradient {
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 32, 121, 1) 28%,
    rgba(0, 164, 215, 1) 100%
  );
  transition: background 0.5s ease;
}

.card-hover:hover .resume-template-font-gradient {
  background: linear-gradient(
    45deg,
    rgba(0, 165, 215, 0.737) 0%,
    rgba(9, 31, 121, 0.674) 28%,
    rgba(24, 39, 172, 0.587) 100%
  );
}

.single-brand-logo{
  width: 130px;
}


.custom-btn-style1 {
  border-top-right-radius: 35px !important;
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 35px !important;
  border-bottom-right-radius: 5px !important;
}

.floating-circle-why-choose-section {
  position: absolute;
  left: 29px;
  top: -26px;
  color: #C16A4C;
}

.main-btn-bg{
  background-color: #C16A4C;
  color: white;
  transition: all 0.3s ease;
  font-size: 18px;
}

.main-btn-bg:hover{
  background-color: #864934;
  color: white;
}

.main-btn-bg-outline{
  border:2px solid #C16A4C;
  color: #a85b42;
  background-color: rgba(255, 255, 255, 0.007);
  padding: 5px 25px 5px 25px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 20px;
}

.main-btn-bg-outline:hover{
  background-color: #864934;
  color: white;
  border:2px solid #864934;
}

.payment-floating-btn{
  position: absolute;
  left: 183px;
  top: 296px;
  border-color: #C16A4C;
}

.main-heading{
  font-size: 45px;
  line-height: 54px;
  font-weight: 700;
}

.secondary-heading{
  font-size: 37px;
  line-height: 44px;
  font-weight: 700;
}

.paragraph-text{
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
}

@media (max-width: 448px) {
  .payment-floating-btn{
    position: absolute;
    left: 145px;
    top: 300px;
    border-color: #C16A4C;
  }
}

.secondary-btn-bg{
  background-color: #3d3d3c;
  color: white;
  transition: all 0.3s ease; 
}

.secondary-btn-bg:hover{
  background-color: #222221;
  color: white;
}

.footer-btn{
  border-top-right-radius: 35px; 
  border-top-left-radius: 5px; 
  border-bottom-left-radius: 35px; 
  border-bottom-right-radius: 5px; 
  padding: 0.61rem 0.9375rem; 
  border:none;
}