@import url("variables2.css");

.primary {
  color: var(--accent-color) !important;
}
.secondary {
  color: var(--sec-color) !important;
}
.trd-color {
  color: var(--trd-color) !important;
}

#mainmenu li > ul {
  width: 300px;
  top: 40px;
}
header.smaller #mainmenu li > ul {
  width: 300px;
  top: 40px !important;
}

#mainmenu li li:hover {
  background-color: rgb(255, 132, 32) !important;
}

footer {
  color: #24282f !important;
}

/* PAGES*********************** */

/* ************************************************************** */
/* direct-mail.phh*********************************************************************************** */
/* ************************************************************** */

/* Hero Section Container */
.hero-direct-mail {
  /* background-size: cover !important; */
  /* background-position: center right !important; */
  min-height: 600px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

/* Typography */
.hero-direct-mail h1 {
  letter-spacing: -1px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-direct-mail .text-blue {
  color: #4a90e2; /* The specific light blue from the image */
}

.hero-direct-mail p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 550px; /* Keeps text from stretching too far across the screen */
  margin-bottom: 40px;
  font-weight: 300;
}

/* Buttons */
.hero-direct-mail .btn-cta {
  font-weight: 700;
  font-size: 0.9rem;
  padding: 15px 30px;
  border-radius: 4px; /* Slight rounding based on the image */
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  text-decoration: none;
}

.btn-blue {
  background-color: #007bff;
  color: white !important;
}

.btn-blue:hover {
  background-color: #0056b3;
}

.btn-white {
  background-color: #ffffff;
  color: #333 !important;
  margin-left: 15px;
}

.btn-white:hover {
  background-color: #f0f0f0;
}

/* General Spacing */
.py-100 {
  padding: 100px 0;
}
.bg-light {
  background-color: #f8f9fa;
}
.bg-dark {
  background-color: #1a1a1a;
}

/* Process Cards */
.process-card {
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
  background: rgba(255, 255, 255, 0.01);
  border: 3px solid #ff6b35;
  border-radius: 5px !important;
  /* border: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%) 1; */
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.process-card:hover {
  transform: translateY(-10px);
}
.icon-box {
  font-size: 3rem;
  color: #007bff;
}

/* List Styling */
.custom-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}
.check-icon {
  color: #1e4f78;
  margin-right: 15px;
  font-style: normal;
  font-weight: bold;
}

/* Text Blue (Matching your header) */
.text-blue {
  color: #4a90e2 !important;
}

/* Responsive fix for mobile */
@media (max-width: 768px) {
  .hero-direct-mail {
    text-align: center;
    background-position: center;
  }
  .hero-direct-mail .btn-white {
    margin-left: 0;
    margin-top: 15px;
    display: block;
  }
}
