#moreContent {
    display: none;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    overflow: hidden;
}

#moreContent.show {
    display: block;
    max-height: 1000px; /* Adjust as needed */
    opacity: 1;
}

.temporary-message {
    position: absolute;
    background-color: #ffcc00;
    padding: 5px 10px;
    border-radius: 5px;
    color: #000;
    font-size: 14px;
    display: none;
    z-index: 1000;
    white-space: nowrap;
    max-width: 200px;
    word-wrap: break-word;
  }

  .user_option {
    position: relative;
    display: flex;
    align-items: center;
  }

  .about_section .heading_container h2 {
    text-transform: uppercase;
  }
  
  .about_section .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .about_section .detail-box p {
    margin-top: 15px;
  }
  
  .about_section .detail-box a {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    padding: 10px 40px;
    border-radius: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: none;
    margin-top: 15px;
  }
  
  .about_section .detail-box a:hover {
    background-color: #ffd401;
  }
  
  .about_section .img-box {
    position: relative;
  }
  
  .about_section .img-box .stripe_design {
    position: absolute;
    width: 25px;
    height: 95%;
    opacity: 70%;
    background-color: #f7941d;
    -webkit-transform: skewX(-25deg);
            transform: skewX(-25deg);
  }
  
  .about_section .img-box .stripe_design.sd1 {
    right: 18%;
    top: 30%;
    z-index: 2;
  }
  
  .about_section .img-box .stripe_design.sd2 {
    right: 16%;
    top: 0;
    z-index: 2;
  }
  
  .about_section .img-box .stripe_design.sd3 {
    right: 33%;
    bottom: -25%;
  }
  
  .about_section .img-box .stripe_design.sd4 {
    right: 23%;
    top: -25%;
  }
  
  .about_section .img-box .stripe_design.sd5 {
    right: 35%;
    top: -12%;
  }
  
  .about_section .img-box .stripe_design.sd6 {
    right: 52%;
    bottom: -12%;
  }
  
  .about_section .img-box img {
    width: 100%;
    position: relative;
    z-index: 1;
  
  }

#contact {
    padding: 20px;
    background-color: #f9f9f9;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
#contact h2 {
    color: #333;
}

#contactForm label{
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #444;
}
#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#contactForm button {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

#contactForm button:hover {
    background-color: #555;
}

#formMessage {
    margin-top: 10px;
    color: green;
}

#contact .contact-info {
    margin: 20px 0;
    font-size: 16px;
}

#contact .contact-info p {
    margin: 5px 0;
}