/* author name */
/* Clinton Clarke */
/* content="
            local css control the main section on all the pages from 1 to 12
"> */
/* @charset "UTF-8"; */
#subject,
    #email,
    #name,
    #message {
        visibility: hidde;
    }


.tooltip {
  visibility: hidden;
  /* width: 120px; */
  /* background-color: rgb(255, 255, 255); */
  color: rgb(255, 2, 2);
  text-align: center;
  border-radius: 0.5rem;
  padding: 0.5rem;
  margin-top: -2rem;
  margin-left: 10%;
  
  /* Position the tooltip */
  position: absolute;
  /* z-index: 1; */
  }


/*!!!!!!!!!!!! document prep starting !!!!!!!!*/
.document_prep-main {
    padding-top: 5rem;
    flex-grow: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .document_prep-main h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .document_service-description {
    line-height: 1.5rem;
    width: 100rem;
    margin-bottom: 2rem;
  }
  
  .document-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }

  /* .document-types {
    display: flex;
    width: 90rem;
  } */
  
  .document-type {
    background-color: var(--bg-color);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .document-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .document-type h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .document-cta-section {
    /* width: 100rem; */
    text-align: center;
    margin-top: 13rem;
  }
  
  .document-cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
  }
  
  .document-cta-button:hover {
    background-color: var(--nav-active);
  }
/*!!!!!!!!!!!! document prep ending !!!!!!!!*/

/*!!!!!!!!!!!! landlord starting !!!!!!!!*/
.landlord-main {
    padding-top: 5rem;
    flex-grow: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .landlord-main h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .landlord-main .service-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .landlord-main .service-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .landlord-main .detail-card {
    background-color: var(--bg-color);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .landlord-main .detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .landlord-main .detail-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  /* .cta-section {
    text-align: center;
    margin-top: 3rem;
  } */
  
  .landlord-main .cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
  }
  
  .landlord-main .cta-button:hover {
    background-color: var(--nav-active);
  }
/*!!!!!!!!!!!! landlord section ending !!!!!!!!*/
.notary-public-main {
  padding-top: 5rem;
  flex-grow: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.notary-public-main h1, h2 {
  color: var(--primary-color);
}

/*!!!!!!!!!!!! commissioner starting !!!!!!!!*/
.commissioner-service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.commissioner-main {
  padding-top: 5rem;
  flex-grow: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.commissioner-main h1, h2 {
  color: var(--primary-color);
}
/*!!!!!!!!!!!! commissioner section ending !!!!!!!!*/

/*!!!!!!!!!!!! claim starting !!!!!!!!*/
.claim-main {
    padding-top: 5rem;
    flex-grow: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .claim-main h1, h2 {
    color: var(--primary-color);
  }
  
  .claim-service-description {
    margin-bottom: 2rem;
  }
  
  .claim-service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .claim-feature-card {
    background-color: var(--bg-color);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .claim-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .claim-feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
/*!!!!!!!!!!!! claim section ending !!!!!!!!*/

/*!!!!!!!!!!!! ticket main starting !!!!!!!!*/
.ticket-main {
    padding-top: 6rem;
    flex-grow: 1;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 2rem; */
  }
  
  .ticket-main h1, h2 {
    color: var(--primary-color);
  }
  
  .service-description {
    width: 60%;
    margin-bottom: 2rem;
  }
  
  .ticket-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .ticket-type {
    background-color: var(--bg-color);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .ticket-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .ticket-cta-section {
    text-align: center;
    margin-top: 3rem;
  }
  
  .ticket-cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .ticket-cta-button:hover {
    background-color: var(--nav-active);
  }
/*!!!!!!!!!!!!  ticket main ending !!!!!!!!*/

/*!!!!!!!!!!!! about section Sent starting !!!!!!!!*/
.about-main {
    padding-top: 4rem;
    flex-grow: 1;
  }
  
  .about-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--bg-color);
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 10px;
  }
  
  .about-section h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .about-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  
  .specialties {
    margin-top: 2rem;
  }
  
  .specialties h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .specialties ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .specialties li {
    background-color: var(--nav-bg);
    color: var(--nav-text);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .specialties li:hover {
    transform: translateY(-5px);
  }
/*!!!!!!!!!!!! about-section ending !!!!!!!!*/

/*!!!!!!!!!!!! award starting !!!!!!!!*/
.award-main {
    padding-top: 4rem;
    flex-grow: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem 2rem;
  }
  
  .award-main h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-top: 4rem;
    flex-grow: 1;
  }
  
  .award-main h1 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
  }
  
  .award-main h2 {
    color: var(--primary-color);
    margin-top: 2rem;
  }
  
  .award {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: rgba(255, 0, 0, 0.05);
    border-radius: 5px;
    transition: transform 0.3s ease;
  }
  
  .award:hover {
    transform: translateY(-5px);
  }
  
  .award h3 {
    color: var(--primary-color);
    margin-top: 0;
  }
  
  .award p {
    margin: 0.5rem 0;
  }
  
  .charity {
    margin-top: 3rem;
    padding: 1rem;
    background-color: rgba(255, 0, 0, 0.05);
    border-radius: 5px;
  }
/*!!!!!!!!!!!! award ending !!!!!!!!*/

/*!!!!!!!!!!!! contact form starting !!!!!!!!*/
.contact-main {
    padding-top: 4rem;
    flex-grow: 1;
  }
  
  .contact-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--bg-color);
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 10px;
  }
  
  .contact-section h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  /**!!!!!!!!!!!!!**********     email */
  #contact-email {
    color:var(--contact-email) ;
  }
  
  #contact-email:hover {
      color: #ff0000;
  }
  
  .contact-form {
    margin-top: 2rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  .form-group textarea {
    height: 150px;
  }
  
  .submit-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: var(--nav-active);
  }
  
  /* p of the form of communication  */
/*!!!!!!!!!!!! contact-form ending !!!!!!!!*/


/*!!!!!!!!!!!! Home page starting !!!!!!!!*/
.home-main {
    padding-top: 0rem;
    flex-grow: 1;
  }
  
  .hero {
    
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .hero-content {
    padding-top: 8rem;
    height: 100%;
    background-color: #1a1a1a94;
    text-align: center;
    z-index: 2;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    padding: 2rem;
  }
  
  .hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .hero-image.active {
    opacity: 1;
  }
  
  .head_services {
    position: absolute;
    /* background-color: #ff0000; */
    width: 100%;
    text-align: center;
    margin-top: 6rem;
  }
  
  .services {
    
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  #service-card1 {
    margin-top: 4rem;
  }
  
  .service-card {
    margin-top: 8rem;
    background-color: var(--bg-color);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .home-main .cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: var(--nav-active);
  }
/*!!!!!!!!!!!! home page ending !!!!!!!!*/


/*!!!!!!!!!!!! Message Sent starting !!!!!!!!*/
.confirmation-main {
    padding-top: 4rem;
    flex-grow: 1;
  }
  
  .confirmation-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--bg-color);
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    text-align: center;
  }
  
  .confirmation-section h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .confirmation-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  #messageSummary {
    line-height: 2rem;
  }
  
  .confirmation-back-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
  }
  
  .confirmation-back-btn:hover {
    background-color: var(--nav-active);
  }
  /*!!!!!!!!!!!! Message Sent ending !!!!!!!!*/


/*!!!!!!!!!!!! Privacy policy starting!!!!!!!!*/
.privacy-body {
    /* background-image: url(../image/hero_img5.jpg) ; */
    background-repeat: no-repeat, repeat;
    background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}
.privacy-main {
    background-color:var(--bg-color) ;
    padding-top: 4rem;
    flex-grow: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem 2rem;
  }
  
  .privacy-main  h1 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
  }
  
  .privacy-main h2 {
    color: var(--primary-color);
    margin-top: 2rem;
  }
  
  .privacy-main p {
    line-height: 1.6;
  }
  
  .privacy-main ul {
    padding-left: 1.5rem;
    line-height: 1.5rem;
  }

  /**!!!!!!!!!!!!!**********     email */
.privacy-email {
    color:var(--contact-email) ;
  }
  
.privacy-email:hover {
      color: #ff0000;
  }
/*!!!!!!!!!!!! Privacy policy ending !!!!!!!!*/


/*!!!!!!!!!!!! Terms of Service starting!!!!!!!!*/
.terms-main {
    flex-grow: 1;
    padding-top: 4rem;
    padding: 6rem 2rem 2rem;
  }
  
  .terms-content {
    max-width: 800px;
    margin: 2rem auto;
    line-height: 1.6;
  }
  
  .terms-content h1, h2 {
    color: var(--primary-color);
  }
/*!!!!!!!!!!!! Terms of Service ending !!!!!!!!*/


/*!!!!!!!!!!!! Client Testimonies starting!!!!!!!!*/
.testimonies-main {
    padding-top: 5rem;
    flex-grow: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 2rem;
}

.testimonies-main h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 4rem;
    flex-grow: 1;
}

/* .testimonies-main h1 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
} */

.testimonies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimony-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimony-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.testimony-card h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.testimony-card p {
    margin-bottom: 0.5rem;
}

.testimony-card .year {
    font-style: italic;
    color: var(--primary-color);
}



.note {
    margin-top: 2rem;
    font-style: italic;
    font-size: 0.9rem;
}
/*!!!!!!!!!!!! Client Testimonies ending !!!!!!!!*/







