*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    gap: 30%;
  }
  
  
  /* HEADER SECTION */
  
  nav{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding: 10px;
    background-color: #ffffff;
    width: 100%;
    position: fixed;
    top: auto;
    z-index: 1;
  }
  
  nav .logo{
    font-size: 30px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  
  nav .logo img{
    opacity: 0.7;
  }
  
  nav .logo img:hover{
    opacity: 5;
  }
  
  .nav-item{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2%;
  } 
  
  nav a{
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    align-items: center;
    text-align: center;
    font-family: Verdana;
  }
  
  nav button{
    width: 10%;
    height: 50px;
    font-size: 15px;
    font-weight: 300;
    color: white;
    background-color: #901c42;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    }
    
     .menu{
        display: none;
        gap: 5px;
        flex-direction: column;
    }
  
    .menu-item{
        height: 6px;
        width: 30px;
        background-color: blue;
    }
    
    @media screen and (max-width:768px) {
      nav{
        width: 100%;
        display: flex; 
        justify-content: center;
        align-items: center;
        gap: 40px;
        padding: 20px; 
        
       
      }
        
         
            
          
        nav.logo{
            display: flex;
            position: absolute;
            left: 50px;
             margin-top: -20px;
        }
        nav a{
            font-size: 14px;
        }
         nav button{
          width: 30%;
            font-size: 14px;
            padding: 5px 10px;
            right: 50px;
         }
         .nav-item{
            flex-direction: column;
            margin-top: -40px;
            width: 100%;
            display: flex;
            top: 17%;
            right: 0;
            background-color: #fff;
            position: absolute;
            transition: 0.5s ease-in-out;
            height: 60vh;
            transform: translateX(-100%);
            text-align: center;
            z-index: 1;
         }
        
         .menu{
            display: flex;
      
         }
         .nav-item.hidden{
            transform: translateX(0);
         }
  
    }
  
  /* HOME SECTION */
  
  .video-overlay-item{
    max-width: 600px;
    height: auto;
    background-color: #27242f;
    padding: 20px;
    margin: auto;
    border-radius: 10px;
    margin-left: 100px;
  }
  
  .video-overlay-item h1{
    font-size: 3em;
    color: #fff;
    margin-top: 20px 0;
  }
  
  .video-overlay-item p{
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.5;
  }
  
  .video-background {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  #bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }
  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.5); 
  }
  
  .video-overlay-item button{
    margin-top: 20px;
    width: 200px;
    height: 60px;
    background-color: #901c42;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  .video-overlay-item button:hover{
    background-color: #701a36;
  }
  
  @media screen and (max-width:768px) {
    .video-background{
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
  
    }
   
  
    .video-overlay{
        flex-direction: column;
        margin: auto;
    }
    .video-overlay-item{
        width: 90%;
        margin-left: 20px;
        padding: 5%;
        display: flex;
        flex-direction: column;
    }
    .video-overlay-item h1{
        font-size: 2em;
    }
    .video-overlay-item button{
        width: 200px;
        height: 50px;
    }
  }
  
      /* HOME ABOUT US SECTION */
  
  .about{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3%;
    background-color: #fff;
  }
  
  .about-item{
    width: 30%;
    height: 300px;
    background-color: #fff;
  }
  
  .about-item h1{
    font-size: 2em;
    padding-left: 90px;
    position: absolute; 
    left: 0;
    color: #404040;
    text-decoration: underline;
    text-decoration-color: #901c42;
    text-underline-offset: 10px;
  }
  
  .about-item p{
    font-size: 30px;
    flex-direction: column;
    position: absolute;
    color: #949494;
    left: 0;
    margin-top: 70px;
    margin-left: 85px;
  }
  
  .about-item button{
    font-size: 1rem;
    position: absolute;
    left: 0;
    margin-top: 210px;
    margin-left: 85px;
    width: 120px;
    height: 60px;
    border: none;
    background-color: #901c42;
    color: #fff;
  }
  
  @media screen and (max-width:768px) {
    .about{
      flex-direction: column;
      padding: 10px;
      justify-content: center;
        align-items: center;
      }
      .about-item{
        width: 100%;
        display: flex;
        justify-content: start;
        align-items: start;
        padding: 0px;
      }
      .about-item h1{
        font-size: 2.5rem;     
        
      }
      .about-item p{
        font-size: 1.7rem;
        line-height: 1.9rem;
        width: 70%;
        
      }
      .about-item button{
      margin-top: 320px;
        width: 200px;
        height: 50px;
        border-radius: 5px;
    }
  }
  
  /* HOME OUR SERVICE SECTION */
  
  .text{
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3%;
    gap: 20px;
    background-color: #f1f1f1;
    margin: 70px auto;
  }
  
  .text-item{
    width: 35%;
    height: 400px;
    background-color: #fff;
    box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.3);
  }
  
  .text:hover{
    border: 1px solid #901c42;
    border-radius: 5px;
  }
  
  .text-item:nth-child(2){
    padding: 10px;
  }
  
  .text-item img{
    width: 170%;
    height: 100%;
    object-fit: cover;
  }
  
  .text-item h1{
    margin-top: 20px;
    font-size: 2rem;
    color: #404040;
    text-decoration: underline;
    text-decoration-color: #901c42;
    text-underline-offset: 13px;
    padding-left: 20px;
  }
  
  .text-item h2{
    padding-left: 20px;
    margin-top: 20px;
    font-size: 2rem;
    color: #787575;
  }
  
  .text-item p{
    padding-left: 20px;
    margin-top: 8px;
    font-size: 1rem;
    line-height: 20px;
    color: #787575;
  }
  
  .text-item button{
    background-color: #901c42;
    color: #fff;
    margin-left: 20px;
    height: 40px;
    width: 100px;
    border: none;
  }
  
  @media screen and (max-width:768px) {
  
  
    .text{
        flex-direction: column;
       
    }
    .text-item{
        width: 90%;
    }
    .text-item h1{
        font-size: 1.5em;
        margin-top: -10px;
    }
    .text-item h2{
        font-size: 1em;
        margin-top: -5px;
    }
    .text-item p{
        font-size: 0.7em;
        margin-top: -10px;
    }
    .text-item img{
        width: 100%;
        height: 100%;
    }
  }
  
  /* HOME COMMUNITY SECTION */
  .community{
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 70px auto;
    gap: 5px;
    padding: 3%;
    background-color: #f1f1f1;
  }
  .community:hover{
    border: 1px solid #901c42;
    border-radius: 5px;
  }
  
  .community-item:first-child{
    padding: 10px;
  }
  
  .community-item{
    width: 35%;
    height: 400px;
    background-color: #fff;
    box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.3);
  }
  
  .community-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
  }
  .community-item h1{
    text-decoration: underline;
    text-decoration-color: #901c42;
    text-underline-offset: 10px;
    margin-top: 10px;
    font-size: 2rem;
    color: #787575;
  }
  .community-item h2{
    font-size: 3rem;
    margin-top: 10px;
    color: #9d9090;
  }
  .community-item p{
    font-size: 0.8em;
    line-height: 22px;
    color: #787575;
  }
  .community-item button{
    width: 100px;
    height: 40px;
    color: #fff;
    background-color: #901c42;
    border: none;
    margin-top: 20px;
  }
  
  @media screen and (max-width:768px) {
    .community{
        flex-direction: column;
    }
    .community-item{
        width: 90%;
        margin-bottom: 20px;
    }
    .community-item h1{
        font-size: 1.5em;
        margin-top: -10px;
    }
    .community-item h2{
        font-size: 1.5em;
        margin-top: -15px;
    }
    .community-item p{
        font-size: 0.9em;
        margin-top: -10px;
    }
    .community-item button{
        width: 90px;
        height: 40px;
        margin-top: -15px;
        border-radius: 5px;
    }
    .community-item img{
        width: 90%;
        height: 90%;
    }
  }
  
  /* HOME REAL ESTATE SECTION */
  
  .estate{
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3%;
    background-color: #f1f1f1;
    margin: 70px auto;
  }
  .estate:hover{
    border: 1px solid #901c42;
    border-radius: 5px;
  }
  
  .estate-item{
    width: 35%;
    height: 400px;
    background-color: #fff;
    box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.3);
  }
  .estate-item h1{
    text-decoration: underline;
    text-decoration-color: #901c42;
    text-underline-offset: 10px;
    margin-top: 50px;
    color: #807d7d;
    font-weight: 500;
  }
  .estate-item h2{
    font-size: 3rem;
    margin-top: 20px;
    color: #9d9090;
  }
  .estate-item p{
    font-size: 1rem;
    line-height: 25px;
    color: #787575;
  }
  .estate-item button{
    width: 100px;
    height: 40px;
    color: #fff;
    background-color: #901c42;
    border: none;
    margin-top: 20px;
  }
  
  @media screen and (max-width:768px) {
    .estate{
        flex-direction: column;
        margin-top: 0;
    }
    .estate-item{
        width: 90%;
    }
    .estate-item h1{
        font-size: 1.5em;
        margin-top: -20px;
    }
    .estate-item h2{
        font-size: 1.5em;
        margin-top: -10px;
    }
    .estate-item p{
        margin-top: -20px;
    }
    .estate-item button{
        margin-top: -20px;
        
    }
  }
  
  
  /* HOME INVESTMENT SECTION */
  
  .investment{
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 70px auto;
    gap: 5px;
    padding: 3%;
    background-color: #f1f1f1;
  }
  
  .investment:hover{
    border: 1px solid #901c42;
    border-radius: 5px;
  }
  .investment-item:first-child{
    padding: 6px;
  }
  
  .investment-item{
    width: 35%;
    height: 580px;
    background-color: #fff;
    box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.3);
  }
  
  .investment-item h1{
    text-decoration: underline;
    text-decoration-color: #901c42;
    text-underline-offset: 10px;
    color: #949494;
    margin-top: 50px;
  }
  
  .investment-item h2{
    margin-top: 25px;
    color: #807d7d;
    font-size: 35px;
  }
  
  .investment-item p{
    margin-top: 20px;
    line-height: 30px;
    font-size: 1rem;
    color: #27242f;
  }
  
  .investment-item h3{
    margin-top: 10px;
    font-size: 15px;
    color: #938d8d;
  }
  .investment-item button{
    background-color: #901c42;
    color: #f7f7f7;
    width: 100px;
    height: 40px;
    border: none;
    border-radius: 3px;
    margin-top: 40px;
  }
  
  .investment-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  @media screen and (max-width:768px) {
    .investment{
        flex-direction: column;
    }
    .investment-item{
        width: 90%;
        margin-bottom: 20px;
    }
    .investment-item h1{
        font-size: 1.5em;
        margin-top: -3px;
    }
    .investment-item h2{
        margin-top: -10px;
    }
    .investment-item p{
        font-size: 1em;
        margin-top: -10px;
    }
    .investment-item h3{
        font-size: 0.9em;
        margin-top: -10px;
    }
    .investment-item button{
        margin-top: -10px;
    }
    .investment-item img{
        width: 100%;
        height: 100%;
    }
  }
  
  /* Home Mentorship Section */
  
  .mentorship{
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 70px auto;
    gap: 10px;
    padding: 3%;
    background-color: #f1f1f1;
  }
  
  .mentorship:hover{
    border: 1px solid #901c42;
    border-radius: 5px;
  
  }
  
  .mentorship-item{
    width: 40%;
    height: 600px;
    background-color: #fff;
    box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.3);
  
  }
  .mentorship-item:nth-child(2){
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  
  }
  
  .mentorship-item img{
    width: 87%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #901c42;
  }
  
  .mentorship-item h1{
    text-decoration: underline;
    text-decoration-color: #901c42;
    text-underline-offset: 10px;
    color: #807d7d;
    font-weight: 500;
    font-size: 3em;
  }
  
  .mentorship-item h2{
    font-size: 2rem;
    color: #9d9090;
    line-height: 35px;
  }
  
  .mentorship-item h3{
    font-size: 1.5rem;
    color: #807d7d;
  }
  
  .mentorship-item p{
    font-size: 1rem;
    line-height: 25px;
    color: #787575;
  }
  
  .mentorship-item button{
    width: 130px;
    height: 50px;
    color: #fff;
    background-color: #901c42;
    border: none;
  }
  
  @media screen and (max-width:768px) {
    .mentorship{
        flex-direction: column;
    }
    .mentorship-item{
        width: 90%;
        margin-bottom: 20px;
    }
    .mentorship-item h1{
        font-size: 1.5em;
    }
    .mentorship-item h2{
        margin-top: -20px;
    }
    .mentorship-item p{
        margin-top: -30px;
    }
    .mentorship-item h3{
        font-size: 1em;
        margin-top: -50px;
    }
    .mentorship-item button{
        margin-top: -40px;
    }
  }
  
  /* HOME LIGHT SPACE SECTION */
  
  .light{
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 70px auto;
    padding: 3%;
    background-color: #f7f7f7;
  }
  
  .light:hover{
    border: 1px solid #901c42;
    border-radius: 5px;
  }
  
  .light-item:first-child{
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .light-item{
    width: 35%;
    height: 400px;
    background-color: #f1f1f1;
    box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.3);
  }
  
  .light-item h1{
    text-decoration: underline;
    text-decoration-color: #901c42;
    text-underline-offset: 10px;
    margin-top: 10px;
    color: #807d7d;
    font-weight: 500;
  }
  
  .light-item h2{
    font-size: 3rem;
    color: #9d9090;
  }
  
  .light-item p{
    font-size: 1rem;
    line-height: 25px;
    color: #787575;
  }
  
  .light-item button{
    width: 100px;
    height: 40px;
    color: #fff;
    background-color: #901c42;
    border: none;
  }
  
  .light-item img{
    width: 80%;
    height: 100%;
    object-fit: contain;
  }
  
  @media screen and (max-width:768px) {
    .light{
        flex-direction: column;
    }
    .light-item{
        width: 90%;
        margin-bottom: 20px;
    }
    .light-item button{
        font-size: 0.9rem;
    }
    .light-item h1, h2, h3{
        font-size: 1.5em;
    }
     .light-item img{
         width: 100%;
         height: auto;
    }
  
  }
  
  /* HOME RENTAL SECTION */
  
  .rental{
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 70px auto;
    gap: 10px;
    padding: 3%;
    background-color: #f1f1f1;
  }
  
  .rental:hover{
    border: 1px solid #901c42;
    border-radius: 5px;
  }
  
  .rental-item:nth-child(2){
    padding: 7px;
  }
  
  .rental-item{
    width: 35%;
    height: 500px;
    background-color: #fff;
  }
  
  .rental-item h1{
    text-decoration: underline;
    text-decoration-color: #901c42;
    text-underline-offset: 10px; 
    margin-top: 50px;
    color: #807d7d;
    font-weight: 500;
  
  }
  
  .rental-item h2{
    font-size: 3rem;
    margin-top: 25px;
    color: #9d9090;
  }
  
  .rental-item p{
    font-size: 1rem;
    line-height: 25px;
    color: #787575;
    margin-top: 20px;
  }
  
  .rental-item button{
    width: 100px;
    height: 40px;
    color: #fff;
    background-color: #901c42;
    border: none;
    margin-top: 20px;
  }
  
  .rental-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  @media screen and (max-width:768px) {
    .rental{
        flex-direction: column;
    }
    .rental-item{
        width: 90%;
        margin-bottom: 20px;
    }
    .rental-item{
        font-size: 1.5em;
        margin-top: -30px;
    }
    .rental-item h2{
        font-size: 1.3em;
        margin-top: -10px;
    }
    .rental-item p{
        font-size: 1.3em;
        margin-top: -10px;
    }
    .rental-item button{
        margin-top: -20px;
        font-size: 0.9em;
    }
  
  }
  
  /* HOME LAND BANKING SECTION */
  
  .land{
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 70px auto;
    padding: 3%;
    background-color: #f1f1f1;
  }
  
  .land:hover{
    border: 1px solid #901c42;
    border-radius: 5px;
  }
  
  .land-item:first-child{
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 435px;
    margin-top: 40px;
  }
  
  .land-item{
    width: 35%;
    height: 400px;
    background-color: #fff;
  }
  
  .land-item h1{
    text-decoration: underline;
    text-decoration-color: #901c42;
    text-underline-offset: 10px;
    margin-top: 50px;
    color: #807d7d;
    font-weight: 500;
  }
  
  .land-item h2{
    font-size: 3rem;
    color: #9d9090;
  }
  
  .land-item p{
    font-size: 1rem;
    line-height: 25px;
    color: #787575;
  }
  
  .land-item h3{
    font-size: 1rem;
    color: black;
  }
  
  .land-item button{
    width: 100px;
    height: 40px;
    color: #fff;
    background-color: #901c42;
    border: none;
  }
  
  .land-item img{
    width: 109%;
    height: 109%;
    object-fit: cover;
  }
  
  @media screen and (max-width:768px) {
    .land{
        flex-direction: column;
    }
    .land-item{
        width: 90%;
        margin-bottom: 20px;
    }
     .land-item img{
        width: 100%;
        height: auto;
    }
     .land-item h1, h2{
        font-size: 1.5em;
     }
     .land-item h3{
        font-size: 1.5em;
        margin-top: 30px;
     }
  
     .land-item button{
        font-size: 0.9em;
    }
  }
  
  /* HOME FOOTER SECTION */
  
  footer {
    background-color: rgb(28,7,7);
    color: #fff;
    display: flex;
    padding: 40px 0;
    text-align: center;
  }
  
  .footer-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    width: 90%;
    gap: 10px;
    margin: 0 auto;
  }
  .hr{
    opacity: 0.9;
    width: 99%;
  }
  .footer-item {
    width: 99%;
    display: flex;
    justify-content: space-between;
    height: 200px;
    align-items: center;
  }
  .footer-itema {
    width: 99%;
    display: flex;
    justify-content: space-between;
    height: 100px;
    align-items: center;
  }
  .footer-item1{
    width: 200px;
    height: 200px;
    justify-content: left;
    display: flex;
    gap: 20px;
    padding: 10px;  
    font-family: sans-serif;
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-item1 h3{
    color: #fff;
    font-size: 1.3rem;
  }
  .footer-item1 a{
    text-decoration: none;
  }
  .footer-item1 p{
    color: #fff;
  }
  .footer-item1 img{
    opacity: 0.7;
  }
  .footer-item1 img:hover{
    opacity: 1;
  }
  .footer-icon{
    width: 200px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .footer-icons{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background-color: rgb(144,28,66);
  }
  .footer-icons:hover{
    background-color: white;
    color: black;
  }
  .footer-items{
    width: 360px;
    height: 100px;
    display: flex;
    padding: 10px;
    justify-content: left;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }
  
  .footer-items i{
    font-size: 30px;
  }
  
  .footer-items a {
    text-decoration: none;
    color: white;
  }
  
  .footer-items a:hover{
    color: #901c42;
  }
  
  .footer-bottom p {
    font-size: 14px;
    color: #ccc;
  }
  
  @media screen and (max-width:768px) {
    .footer-container{
        flex-direction: column;
    }
    .footer-item{
        width: 90%;
        margin-bottom: 20px;
    }
    .footer-item1{
        flex-direction: column;
    }
    .footer-item1 h3{
        font-size: 1.5em;
    }
    .footer-item1 a p{
        font-size: 0.9rem;
        margin-top: -30px;
    }
    .footer-item1 img{
        margin-top: -10px;
        font-size: 0.9rem;
    }
    .footer-item1 h3{
        font-size: 1em;
    }
    .footer-icons{
        font-size: 0.9rem;
    }
    .hr{
        font-size: 0.9rem;
    }
    .footer-items i, a{
         font-size: 0.9rem;
    }
    .footer-items i{
        font-size: 0.9rem;
    }
    footer-items p{
         text-align: center;
         font-size: 0.9rem;
         margin-top: -30px;
    }
  }
  
  /* END OF FOOTER  *