/* --------------------------SECTION 1 ------------------- */
.background {
  background: url("http://staging.ammaraslam.com/wp-content/uploads/2026/02/Domus-banner.png")
    no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: left;
  align-items: center;
}
.content {
  /* background: rgba(0, 0, 0, 0.5); Adds a semi-transparent background */
  color: #ffffff;
  padding: 50px 0px 50px 100px;
  text-align: start;
}

.content h1 {
  font-family: "playfair";
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 600;
}
.content h4 {
  font-family: "playfair";
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
}
.domus-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.domus-btn-primary {
    background: linear-gradient(135deg, #C05A2B, #d97742);
    color: #ffffff;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.domus-btn-primary:hover {
    background: linear-gradient(135deg, #a94e25, #c05a2b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 90, 43, 0.4);
}

.domus-btn-secondary {
    background: transparent;
    color: #C05A2B;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #C05A2B;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.domus-btn-secondary:hover {
    background: #1E1E24;
    color: #ffffff;
    border-color: #C05A2B;
    transform: translateY(-2px);
}
/* Section 2 */
.section2 h1 {
  color: black !important;
}
.problem-section {
    background: linear-gradient(rgba(30,30,36,0.95), rgba(30,30,36,0.95)),
                url('your-banner-image.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.section-label {
    color: #C05A2B;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin: 20px 0;
}

.accent-text {
    background: linear-gradient(90deg, #C05A2B, #f1c27d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-text {
    font-size: 18px;
    color: #d6d6d6;
    margin-bottom: 15px;
}

.section-text-muted {
    font-size: 16px;
    color: #9ca3af;
}

/* Right Card */
.problem-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 90, 43, 0.3);
    position: relative;
}

.problem-card h5 {
    color: #f5f5f5;
    margin-bottom: 20px;
    font-weight: 500;
}

.problem-card:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(192, 90, 43, 0.3);
}

/* Section 4 The Solution */
.solution-section {
    background-color: #1E1E24;
    color: #ffffff;
}

.section-label {
    color: #C05A2B;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin: 15px 0;
}

.accent-text {
    background: linear-gradient(90deg, #C05A2B, #f1c27d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-text {
    color: #cfcfcf;
    font-size: 18px;
}

/* Feature Cards */

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(192, 90, 43, 0.25);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.solution-card h5 {
    margin: 0;
    font-weight: 500;
    color: #f5f5f5;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(192, 90, 43, 0.35);
    border-color: #C05A2B;
}

/* Highlight Card */
.highlight-card {
    background: linear-gradient(135deg, #C05A2B, #d97742);
    color: #ffffff;
    font-weight: 600;
    border: none;
}
/* ------------------Section 3------------------------ */

.animated-box {
  background-color: #202529;
  /* Bootstrap primary color */
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  border-radius: 10px;
  color: white;
}

.animated-box:hover {
  transform: scale(1.1);
  /* Zoom in */
  background-color: #C05A2B;
  /* Change to success color */
  color: #000000;
}

