/* AboutUs.css */
*{font-family: 'Georgia';}
.aboutus-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color:white;
}

.left-container87 {
  flex: 1;
  display: flex;
  justify-content: center;
}

.left-image87 {
  height: 300px;
  width: 150px;; /* Adjust the height as needed */
}

.middle-container87 {
  flex: 2;
  text-align: center;
  padding: 0 20px;
}

.middle-container87 h2{
  margin-bottom: 10px;
  font-size: 24px;
  border-bottom: 2px solid #151416;
  display: inline-block;
  color: rgb(82, 20, 120);
}

.middle-container87 p {
  font-size: 20px;
  line-height: 1.5;
}

.highlight87 {
  font-weight: bold;
  font-size: 18px;
}

.right-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.right-images {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.right-image {
  width: 300px; /* Adjust the width as needed */
  height: 250px; /* Adjust the height as needed */
}

.about-section {
    text-align: center;
    padding: 20px;
    width: 100%;
    height: 25%;
  }

  .image-placeholder {
    width: 100px;
    height: 100px;
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
  }
  
  .why-startup {
    padding: 20px 0;
    margin:0%;
  }
.why-startup p{
  margin-left:40px;
  margin-right:20px;
  font-size:25px;
}
  .why-startup h2{
    color: rgb(82, 20, 120);
    text-align: center;
    font-size:35px;
  }

  .features {
    display: flex;
    justify-content: space-between;
    margin: 25px;
  }
  .features h3{
    color: rgb(12, 12, 101);
    padding: 5px;
    margin-bottom: 10px;
  }
  .feature {
    width: 30%;
    background: linear-gradient(135deg, #D894D2, #CBCDF6);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 2px 2px #e3e3e3;
    transition: transform 0.3s ease; /* Smooth transition for transform */
}

.feature:hover {
    transform: scale(1.05); /* Scale the container on hover */
    box-shadow: 0 0 16px darkblue;
}

  .feature ul {
    list-style-type: none;
    padding: 0;
  }

  .about-startup {
    background: linear-gradient(135deg, #D894D2, #CBCDF6);
    border-radius: 20px;
    margin: 5px;
    overflow:hidden;
  }
  .about-startup p {
    font-size:25px;
    padding: 20px;
  }

#abt_img{
    height: 200px;
    width: 200px;
  }

  .box1{
    width:20%;
    height: fit-content ;
  }
  .box2{
    width: 80%;
    height: 200px;
    position: relative;
  }
  .box1,.box2{
    display: inline-block;

  }
  .left, .right, .center{
    margin-left: 10px;
    width: 30%;
    border: 2px solid black;
    display:inline-block;
    margin: 5px;
  }

  .query{
    background-color:white;
    margin-bottom: 20px;
    margin-top: 20px;
    height:200px;
    display: flex;
    align-items: center;
  }

  .text-container{
    display: flex;            
    flex-direction: column;     
    justify-content: center; 
    flex:1;
    margin-left: 20%;
    font-size:20px;
    font-weight: bold;
  }

  .text-container p{
    margin:5px;
  }

  .cont_img{
    height: 200px;
    width: 200px;
    margin-left: 150px;
  }
  .contact-us{
    color: 'orange'; 
    text-decoration: 'none';
    background:linear-gradient(to right, purple, darkblue);
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    animation: contac-us 1.2s infinite linear;
    border-radius: 4px;
  }
 
  @keyframes contac-us {
     0%{transform: scale(1);}
     50%{transform: scale(1.2);}
     100%{transform: scale(1);}    
  }

