/* Header Styles */

.logo {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;

}

.logo img {
  height: 60px;
  width: 60px;
}

.nav {
  width: 100%;
  padding: 4px 0;
  background: #f5f5f5;
  border-bottom: 2px solid #1D1F241A;

}

.nav-container {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  align-content: center;
  align-self: center;
}

.brand-name2 {
  color: #1a1a1a;
  align-self: center;
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 1.5vw, 32px);
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: clamp(8px, 1.5vw, 20px);
  align-items: center;


}

.nav-links-right {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  margin-right: 40px;
  flex-direction: row;
  justify-content: center;
}

.nav-links a {
  display: flex;
  gap: 20px;
  align-items: center;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 20px);
}

.cta-home {
  color: #324dd4;
  box-shadow: 0 2px 0 #324dd4;

}

.about-page .cta-home {
  color: #334155;
  box-shadow: 0 2px 0 #F5F5F5;
}


.contact-page .cta-home {
  color: #334155;
  box-shadow: 0 2px 0 #F5F5F5;
}

.how-it-works-page .cta-home {
  color: #334155;
  box-shadow: 0 2px 0 #F5F5F5;
}

.request-page .cta-home {
  color: #334155;
  box-shadow: 0 2px 0 #f5f5f5;
}

.workers-page .cta-home {
  color: #334155;
  box-shadow: 0 2px 0 #f5f5f5;
}

.cta-how-it-works {
  color: #334155;
}


.how-it-works-page .cta-how-it-works {
  color: #324dd4;
  box-shadow: 0 2px 0 #324dd4;
}

.cta-request {
  color: #334155;

}

.request-page .cta-request {
  color: #324dd4;
  box-shadow: 0 2px 0 #324dd4;

}


.workers-page .cta-painters {
  color: #324dd4;
  box-shadow: 0 2px 0 #324dd4;
}

.cta-painters {
  color: #334155;
}

.cta-about-us {
  color: #334155;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 600;
  align-self: center;
}

.how-it-works-page .cta-about-us {
  color: #334155;

}

.request-page .cta-about-us {
  color: #334155;

}

.workers-page .cta-about-us {
  color: #334155;

}

.about-page .cta-about-us {
 color: #324dd4;
  box-shadow: 0 2px 0 #324dd4;

}

.cta-contact-us {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  background-color: #1a1a1a;
  border-radius: 30px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  color: #FFFFFF;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  gap: 6px;
  display: flex;

}

.contact-page .cta-contact-us {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  background-color: #1a1a1a;
  border-radius: 30px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  color: #FFFFFF;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  gap: 6px;
  display: flex;

}

.how-it-works-page .cta-contact-us {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  background-color: #324dd4;
  border-radius: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  color: #FFFFFF;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  gap: 6px;
  display: flex;

}

.request-page .cta-contact-us {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  background-color: #324dd4;
  border-radius: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  color: #FFFFFF;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  gap: 6px;
  display: flex;

}

.workers-page .cta-contact-us {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  background-color: #324dd4;
  border-radius: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  color: #FFFFFF;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  gap: 6px;
  display: flex;

}


.nav-links-right img {
  width: 18px;
  height: 18px;

}

.hamburger {
  display: none;
}

.nav {
  position: relative;
  z-index: 1000;
}

.mobile-only {
  display: none !important;
}



@media (max-width: 950px) {

  .hamburger {
    display: block;
    font-size: 32px;
    cursor: pointer;
  }


  .nav-links,
  .nav-links-right {
    display: none;
  }


  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #f5f5f5;
    padding: 20px 0;
    gap: 15px;

  }

  .nav-links.active a {
    font-size: clamp(16px, 1.5vw, 22px);

  }

  .mobile-only {
    display: flex !important;
    ;
  }

  .about-page .cta-about-us {
    color: #334155;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 600;
    align-self: center;
    color: #324dd4;
    box-shadow: 0 2px 0 #324dd4;
  }

  .nav-links.active .cta-contact-us {
    all: unset;

    color: #334155;
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.5vw, 22px);
    font-weight: 600;

    cursor: pointer;
    text-decoration: none;

    
  }
  .contact-page .cta-contact-us {
    color: #334155;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.5vw, 22px);
    font-weight: 600;
    align-self: center;
    color: #324dd4 !important;
    box-shadow: 0 2px 0 #324dd4 !important;
  }


}
p {
    margin: 0;
}

.hero {
    background: radial-gradient(circle at center,
            #8FA2FF 0%,
            /* lighter center (more glow) */
            #324DD4 70%,
            /* main blue */
            #1E3A8A 100%
            /* dark edges */
        );

    padding-top: 40px;
    padding-bottom: 40px;
    ;


}


body {
    margin: 0;
    padding: 0;
}

.bolt {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.bolt p {
    background-color: #ffffff;
}

.bolt-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #324dd4;
    padding: 6px 12px;
    border-radius: 20px;
    font-family: "Inter", sans-serif;
    font-size: clamp(12px, 2vw, 16px);
    border: 1px solid #324dd4;
    font-weight: 600;
}

.big-text {

    justify-content: center;
    font-family: "Inter", sans-serif;
    font-size: clamp(32px, 4vw, 68px);
    width: 40%;
    margin: 0 auto;
    font-weight: 700;
    text-align: center;
    color: white;

}

.small-text {
    margin-top: 0px;
    justify-content: center;
    width: 45%;
    margin: 10px auto 0;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 2vw, 24px);
    color: white;
}

.big-text p,
.small-text p {
    margin: 0;
}

@media (max-width: 900px) {

    .big-text,
    .small-text {
        width: 60%;

    }
}

@media (max-width: 600px) {

    .big-text,
    .small-text {
        width: 90%;
    }
}

.blue-text {
    color: #324DD4
}

.container {
    display: flex;
    justify-content: center;
    padding-bottom: 50px;

}

.inside-container img {
    width: 400px;
    height:400px;
    border-radius: 12px;
    object-fit: cover;
    
}


.inside-container {
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: center;
    margin: 50px auto 0;
    width: 100%;



}


.text p {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;

}

.text {
    width: 40%;
    display: flex;
    flex-direction: column;

}

.text .header2 {
    font-size: 40px;
    font-family: "Inter",sans-serif;
    font-weight: 700;
    color:#1A1D2D;
}

.final-cta {
    background-color: #1A1D2D;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-container {
    margin-top: 60px;
      display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.cta-header {
    color: white;
    font-family: "Inter", sans-serif;
    font-size: clamp(22px, 3.5vw, 68px);
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.cta-medium-text {
    color: white;
    margin: 0 auto;
    margin-top: 15px;
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 2.5vw, 26px);
    width:50%;
    display: flex;
    text-align: center;
    
}

.final-btn {
    margin-top: 20px;
    justify-content: center;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.final-request {
    padding: 10px 16px;
    background-color: #324dd4;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-family: "Inter", sans-serif;
    font-size: clamp(12px, 1.8vw, 22px);
    font-weight: 600;
    display: flex;
    align-self: center;
    font-family: "Inter", sans-serif;
    border: 1px solid #324DD4;
}

.final-painters {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: clamp(12px, 1.8vw, 22px);
    font-family: "Inter", sans-serif;
    display: flex;
    justify-content: center;
    align-self: center;
    border: 1px solid white;
    padding: 10px 16px;
    border-radius: 10px;
}

.small-text9 {
    color: #9cafa3;
    display: flex;
    justify-content: center;
    margin: 0;
    margin-top: 20px;
}

.divider6 {
    width: 100%;
    height: 1px;
    background-color: #E5E7EB;
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}

.icon-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.icon-text-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width:100%
}

@media (max-width: 900px) {
    .inside-container {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .inside-container img {
        width: 100%;
        height: auto;
    }

    .text {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .final-btn {
        flex-direction: column;
        align-items: center;
    }
}