/* .home-contact-btn{
    background-color: rgb(0, 42, 53);
    border: none;
    padding: 10px;
    color: white;
    width: 100%;
    border-radius: 10px;
}

.about-h2{
    letter-spacing: 2px;
    line-height: 1.7;
}

.contact-card {
  background: #ffffff;
  transition: all 0.3s ease;
  border: 1px solid #f1f1f1;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-box {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background:rgb(0, 42, 53);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 26px;
  flex-shrink: 0;
}

.contact-link {
  text-decoration: none;
  color: #555;
  letter-spacing: 1px;
  transition: 0.3s;
}

.contact-link:hover {
  color: #0d6efd;
} */



/* Brand Utility Classes */
.brand-text {
  color: rgb(0, 42, 53);
}

.letter-spacing-2 {
  letter-spacing: 2px;
}

.about-h2 {
  letter-spacing: 0.5px;
  line-height: 1.4;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.title-underline {
  width: 60px;
  height: 4px;
  background-color: rgb(0, 42, 53);
  border-radius: 2px;
}

/* Contact Form & Controls Styling */
.contact-form-wrapper {
  border: 1px solid rgba(0, 42, 53, 0.08);
}

.form-box {
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
  transition: all 0.25s ease;
  color: #334155;
}

.form-box:focus {
  background-color: #ffffff;
  border-color: rgb(0, 42, 53);
  box-shadow: 0 0 0 4px rgba(0, 42, 53, 0.1);
  outline: none;
}

.home-contact-btn {
  background-color: rgb(0, 42, 53);
  border: none;
  padding: 12px 24px;
  color: white;
  width: 100%;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.home-contact-btn:hover {
  background-color: #001f28;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 42, 53, 0.25);
}

.home-contact-btn:active {
  transform: translateY(0);
}

/* Contact Details Cards */
.contact-card {
  border: 1px solid rgba(0, 42, 53, 0.08);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 42, 53, 0.1) !important;
  border-color: rgba(0, 42, 53, 0.2);
}

.icon-box {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgb(0, 42, 53);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.contact-card:hover .icon-box {
  transform: scale(1.08);
}

.contact-link {
  text-decoration: none;
  color: #64748b;
  transition: color 0.25s ease;
}

.contact-link:hover {
  color: rgb(0, 42, 53);
}