/* Line Under Header */
/* Header Line */
/* Underline with dot */
.line {
    position: relative;
    padding-bottom: 20px;
}

.line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 385px;
    height: 2px;
    background: linear-gradient(to right, transparent, #D9AF70 40%, #D9AF70 60%, transparent);
  border-radius:10px;
}




/* Underline with dot for short heading */
.line2 {
    position: relative;
    padding-bottom: 20px;
}

.line2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, transparent, #D9AF70 40%, #D9AF70 60%, transparent);
  border-radius:10px;
}

.line2::before {
    content: '●';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 10px;
    z-index: 1;
    background: #D9AF70; /* match your background color */
    padding: 0 5px;
      width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Left Underline with dot */
.line2-left {
    position: relative;
    padding-bottom: 20px;
}


/* for Left align */
.line-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0%;
    transform: translateX(0%);
    width: 385px;
    height: 2px;
    background: linear-gradient(to right, transparent, #c9a84c 40%, #c9a84c 60%, transparent);
  border-radius:10px;
}

.line-left::before {
    content: '●';
    position: absolute;
    bottom: -6.5px;
    left: 192.5px;
    transform: translateX(-50%);
    color: #c9a84c;
    font-size: 10px;
    z-index: 1;
    background: #1a2a4a; /* match your background color */
    padding: 0 5px;
  width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


::selection {
  background-color: #D9AF70;
  color: #FFFFFF;
}

::-moz-selection {
  background-color: #D9AF70;
  color: #FFFFFF;
}