.custom-hover {
    background-color: #e6681e; /* default color */
    color: #fff;
    transition: all 0.3s ease;
}

.custom-hover:hover {
    background-color: #ff6b00 !important; /* orange hover */
    border-color: #ff6b00 !important;
    transform: scale(1.05);
    color: #fff;
}


.captcha-box {
  width: 130px;
  height: 45px;
  background: linear-gradient(135deg, #f3f3f3, #ddd);
  border: 1px solid #999;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: 24px;
  color: #333;
  text-align: center;
  line-height: 45px;
  letter-spacing: 3px;
  user-select: none;
  position: relative;
}

.captcha-box::before, .captcha-box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: rgba(0,0,0,0.2);
  left: 0;
  top: 50%;
  transform: rotate(-15deg);
}

/* Contact Section Styles */
#contact {
    font-family: 'Bitter', sans-serif;
    margin-top: 30px;
    margin-bottom: 30px;
}

.contact-info {
    border-top: 6px solid orange;
}


.contact-info hr {
    border: 2px solid black;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background-color: #000;
    color: #fd7e14;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1rem; /* optional, adjust icon size if needed */
}

#icon-circle{
width:40px; height:40px; background-color:#000; color:#fd7e14;
}

icon-circle-circle{
width:45px; height:40px; background-color:#000; color:#fd7e14;
}

/* Social Links Container */
.social-links {
    display: flex;
    gap: 20px; /* space between icons */
    justify-content: center; /* center horizontally */
    margin-top: 1rem; /* equivalent to mt-4 */
     margin-left: 30px; /* ✅ added margin-left */
}

/* Social Icon Circle */
.social-links a {
    width: 50px;
    height: 50px;
    background-color: #000;
    color: #fd7e14;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: transform 0.3s;
    text-decoration: none; /* remove underline */
}

.social-links a:hover {
    transform: scale(1.1); /* hover effect */
}

.contact-form-wrapper {
    border-top: 6px solid orange;
    padding: 1rem;       /* p-4 equivalent */
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075); /* shadow-sm equivalent */
    border-radius: .25rem; /* rounded */
    background-color: #f8f9fa; /* bg-light equivalent */
}


.refresh-btn {
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    background-color: #ff6b00 !important; /* Orange on hover */
    border-color: #ff6b00 !important;
    color: #fff !important;
}

#captcha-canvas {
    border: 1px solid #999;
}

#captcha-row {
    gap: 10px;
}






