
.about-row {
    display: flex; 
    flex-wrap: wrap; 
    gap: 0px;
    flex-direction: row; 
}
.about-col-1{
    padding: 50px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-h1{
    margin-bottom: 2.5rem;
    color: rgb(43, 2, 9);
    font-size: 2.6rem;
}
.about-h2{
    font-size: 1.4rem;
}
.about-h4{
    margin-top: 2.5rem;
}
.about-col-2 {
    width: 50%;
}
.about-col-2 img{
    height: 400px;
    width: 500px;
    border-radius: 30px;
}
.about-container{
    margin-left: 30px;
    height: auto;
    padding: 90px;
    border: 2px solid #c52b6e;
    border-radius: 0 0 200px 200px;
    background-color: rgb(244, 233, 233);
    margin-right: 30px;
    width: 90%;
}
.heading2{
    margin: 20px;
    font-family: 'Maiandra GD';
}
.ab-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    gap: 30px;
    margin: 5%;
    border: 2px solid #c52b6e;
}
.ab-column {
    padding: 30px;
    width: 40%;
}
.ab-icon {
    font-size: 30px;
    color: #c52b6e;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}

.ab-icon:hover {
    color: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
  text-shadow: 0 0 10px #c52b6e, 0 0 20px #ff82b8, 0 0 30px #ff006f;

}  

.ab-column h2 {
    color: #333;
}
.ab-column p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 35px;
}
/*--------------------------our story part-------------------------*/
.story-container {
    width: 80%;
    padding: 20px;
    background-color: #f49fb8;
    border-radius: 20px;
    text-align: center;
}

.story-container p {
    font-size: 20px;
    margin: 20px;
    font-family: 'Comic Sans MS';
}

.ourstory-col1 {
    place-items: center;
    width: 50%;
    margin-top: 10px;

}

.ourstory-col1 h1 {
    margin-bottom: 10px;
    align-self: center;
}

.ourstory-col2 {
    place-items: center;
    width: 50%;

}

.ourstory-col2 img {
    width: 80%;
    border-radius: 30px;
    margin-top: 55px;
    height: 370px;
}
  /*------------------- Vision Mission part ---------------------*/
  .vision-row1 {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      padding-left: 60px;
      margin-top: 50px;
  }

  .vision-text h1 {
      color: #c52b6e;
      margin: 10px;
  }

  .vision-text h3 {
      color: #4d4d4d;

  }

  .vision-slider {
      height: 50px;
      width: 100px;
      margin: 30px;
  }

  .vision-image {
      height: 70px;
      width: 100px;
  }

  .vision-col1 {
      width: 400px;
  }

  .vision-col2 {
      display: flex;
      flex-direction: row;
  }

  .vision-row2 {
      display: flex;
      flex-direction: row;
      justify-content: flex-end;
      padding-right: 60px;
  }

  .vision-col3 {
      width: 400px;
  }

  .vision-col4 {
      display: flex;
      flex-direction: row;
  }
/*-------------------------Contact part -------------------------*/
.tell-container{
    border: 2px solid #c52b6e ;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    place-items: center; 
    padding: 30px;
    margin: 50px;
    border-radius: 30px;
}
.contact-btn{
    background-color: #fff;
    border: 2px solid #c52b6e ;
    border-radius: 5px;
    padding: 15px;
    color:#c52b6e ;
}
.contact-btn:hover{
    background-color: #fee1e1;
    border: 2px solid #c52b6e ;
    border-radius: 5px;
    padding: 15px;
    color:#c52b6e ;
}

.contact-button {
    width: 150px;
    height: 150px;
    border: 1px solid #c52b6e ;
    border-radius: 50%;
    background: white;
    color:#c52b6e ;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 150px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  /* Hover effects */
  .contact-button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }

  /* Pulse animation effect */
  .contact-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border:  1px solid #c52b6e;
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 0.7;
    }
    50% {
      transform: scale(1.4);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 0;
    }
  }

  /* Text hover effect */
  .contact-button span {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease-in-out;
  }

  .contact-button:hover span {
    color: #333;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  }
.new-p{
    margin:0.5rem;
}
/*--------------------RESPONSIVENES-----------RESPONSIVENESS-------------RESPONSIVENESS------------*/


@media (max-width: 1200px) {
    .about-col-1, .about-col-2 {
        width: 100%;
    }
    .about-col-2 img {
        height: 350px;
    }
    .about-container {
        padding: 60px;
        border-radius: 0 0 150px 150px;
        margin-left: 8%;
        width: 80%;
    }
        .vision-row1 {
            padding-left: 15px;
            padding-right: 15px;
            margin-bottom: 10px;
        }
    
        .vision-row2 {
            padding-left: 15px;
            padding-right: 15px;
            margin-bottom: 10px;
        }
        .ourstory-col1{
            width:100% ;
        }
}

@media (max-width: 992px) {
    .about-col-1, .about-col-2 {
        width: 100%;
        padding: 30px;
    }
    .about-col-2 img {
        height: 300px;
        width: 100%;
    }
    .about-container {
        padding: 50px;
        border-radius: 0 0 100px 100px;
        margin-left: 6%;
        width: 70%;
    }
    .story-container{
          width: 90%;
          padding: 10px;
          margin: 15px;
      }
      .story-container p{
          font-size: 20px;
          margin: 8px;
      }
    .our-story-row{
        display:flex;
        flex-direction: column;
        place-items: center;
    }
    .ourstory-col1{
        width: 100%;
    
      }
      .ourstory-col2{
        width: 100%;
        place-items: center;
        align-items: center;
    
      }
      .ourstory-col2 img{
        width: 96%;
        height: 370px;
        margin: 15px;
        
      }.story-container {
        width: 90%;
        padding: 10px;
        margin: 15px;
    }
    
    .story-container p {
        font-size: 20px;
        margin: 8px;
        font-family: 'Comic Sans MS';
    }
    
    .our-story-row {
        display: flex;
        flex-direction: column;
        place-items: center;
    }
    
    .ourstory-col1 {
        width: 100%;
    
    }
    .ourstory-col1 h1{
        flex: row;
        flex-direction: row;
        font-size: 15px;
    }
    
    .ourstory-col2 {
        width: 100%;
        place-items: center;
        align-items: center;
    
    }
    
    .ourstory-col2 img {
        width: 96%;
        height: 370px;
        margin: 15px;
    
    }
}

@media (max-width: 768px) {
    .new-p2{
    margin:0.1rem;
}
    .about-row {
        flex-direction: column;
        gap: 20px;
    }
    .about-col-1, .about-col-2 {
        width: 100%;
        padding: 20px;
    }
    .about-col-2 img {
        height: 200px;
        width: 250px;
    }
    .about-h1{
        font-family: 'Dubai Medium';
        margin: 0.5rem;
        font-size: 1.4rem;
    }
    .about-h2{
        font-size: 0.9rem;
    }
    .about-h4{
        font-family: 'Calibri Light';
        font-size: 0.8rem;
    }
    .about-container {
        padding: 20px;
        border-radius: 0 0 80px 80px;
        margin-left: 8%;
        width: 74%;
    }
    .heading2 {
        font-size: 25px;
        font-family: 'Maiandra GD';
    }
    .ab-container {
        flex-direction: column;
    }
    .ab-column {
        width: 90%;
    }
    .icon-col{
        display: flex;
        justify-content: center;
    }
    .ab-container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        gap: 30px;
    }
    .story-container{
        width: 90%;
          padding: 10px;
          margin: 15px;
      }
      .story-container p{
          font-size: 20px;
          margin: 8px;
      }
      .ourstory-col1{
        width: 100%;
    
      }
      .ourstory-col2{
        width: 100%;
    
      }
      .ourstory-col1 h1 {
    margin-bottom: 10px;
    align-self: center;
}
      .ourstory-col2 img{
        width: 100%;
        border-radius: 20px;
        margin-top: 25px;
        height: 270px;
        margin:4px;
        
}
      .vision-row1{
        display: flex;
        flex-direction: row;
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 15px;
    }
.vision-row2{
    display: flex;
    flex-direction: row;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 5px;
}
.vision-col3{
    width: 300px;
}
.vision-col1{
    width: 300px;
}
.vision-text h1{
    color:#c52b6e;
    margin: 7px;
}
.vision-text h3{
    color:#4d4d4d;
    font-size: 13px;
    
}
.vision-slider{
    height:30px;
    width: 70px;
    margin: 10px;
}
.story-container {
    width: 90%;
    padding: 10px;
    margin: 15px;
}

.story-container p {
    font-size: 20px;
    margin: 8px;
}

.ourstory-col1 {
    width: 100%;

}

.ourstory-col2 {
    width: 100%;

}

.ourstory-col2 img {
    width: 100%;
    border-radius: 20px;
    margin-top: 25px;
    height: 270px;
    margin: 4px;

}

.vision-row1 {
    display: flex;
    flex-direction: row;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 15px;
}

.vision-row2 {
    display: flex;
    flex-direction: row;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 5px;
}

.vision-col3 {
    width: 300px;
}

.vision-col1 {
    width: 300px;
}

.vision-text h1 {
    color: #c52b6e;
    margin: 7px;
}

.vision-text h3 {
    color: #4d4d4d;
    font-size: 13px;

}

.vision-slider {
    height: 30px;
    width: 70px;
    margin: 10px;
}

}
@media (max-width: 576px) {
    .about-container {
        padding: 30px;
        border-radius: 0 0 50px 50px;
    }
    .about-col-1 {
        padding: 15px;
    }
    .heading {
        margin: 10px;
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 991px) {


}