.about_school{
    width: 100%;
    height:700px;
    display: flex;
    justify-content:center;
    /* border: 1px solid red; */
    background-color: #F3FAFF;
    column-gap: 20px;
    align-items:center ;
    flex-wrap: wrap;
}
.about_school_photo_section{
    width: 600px;
    height: 90%;
    /* border: 1px solid red; */
    display: flex;
    justify-content: space-between;
}
.photo_section_part1{
    width: 290px;
    height:100%;
    /* border: 1px solid red; */
    
    
}
.photo_section_part1_photo1{
    width:290px;
    height: 433px;
    /* border: 1px solid red; */
    background-color: aliceblue;
    border-radius: 0px 75px 0px 75px;
    overflow: hidden;
  
}

.photo_section_part1_photo1 img{
    width: 100%;
    height:100%;
    transition: transform 0.8s;
}
 .photo_section_part1_photo1:hover img{
  transform: scale(1.5);
  cursor: pointer;
 }
.photo_section_part1_photo2{
    width:290px;
    height:120px;
    background-color: #FF7A21;
    /* border-radius: 20px 60px 60px 20px; */
      border-radius: 50px 50px 50px 0;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
   
}
.photo_section_part1_photo2_img{
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-right:10px ;
    display: flex;
    justify-content: center;
    /* align-items: center; */
}
.photo_section_part1_photo2_img img{
    width:80%;
    height:80%;
}
.photo_section_part1_photo2 .letter{
  font-weight: bold;
  color: #fff;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.photo_section_part2{
    width: 290px;
    height:100%;
    /* border: 1px solid red; */
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}
/* Outer rotating dashed border */
.photo_section_part2_photo1 {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: spin 10s linear infinite;
}

.photo_section_part2_photo1::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(
    #002B7F 0deg 5deg,
    transparent 5deg 10deg
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 4px),
    black calc(100% - 2px)
  );
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 4px),
    black calc(100% - 2px)
  );
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Inner photo */
.photo_section_part2_photo1_main_photo {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo_section_part2_photo1_main_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  animation: spin-reverse 10s linear infinite;
}

@keyframes spin-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* Video icon on top of image */
.video-icon {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 43, 127, 0.6); 
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* Play icon style */
.video-icon i{
  font-size: 32px;
  color: white;
  position: relative;
  z-index: 2;
  animation: spin-reverse 10s linear infinite;
}

/* Ripple (spray) effect */
.video-icon::before,
.video-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 85, 201, 0.3);
  animation: pulse 2s ease-out infinite;
}

.video-icon::after {
  animation-delay: 1s;
}

@keyframes pulse {
  from {
    transform: scale(1);
    opacity: 1;
    
  }
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}
.photo_section_part2_photo2{
    width:270px;
    height:340px;
    /* border: 1px solid red; */
    background-color: aliceblue;
    border-radius: 0px 60px 60px 0px;
    overflow: hidden;
}
.photo_section_part2_photo2 img{
    width: 100%;
    height: 100%;
     transition: transform 0.8s;
}
 .photo_section_part2_photo2:hover img{
   transform: scale(1.5);
   cursor: pointer;
 }
.about_school_data_section{
    width: 600px;
    height: 90%;
    /* border: 1px solid red; */
}
.about_school_heading{
    letter-spacing: 4px;
    border-bottom: 2px solid #FF7A21;
    padding-bottom: 3px;
    font-size: 18px;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.about_school_heading i{
    color:#FF7A21;
    font-size: 25px;
    margin-right: 5px;
}
.about_school_subheading{
    font-weight: 700;
    text-transform: capitalize;
    font-size: 50px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-top: 10px;
}
.about_school_subheading_part{
    color:#FF7A21;
    margin-right: 14px;
}
.about_school_data_section .about_school_paragraph{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgb(100, 100, 100);
    line-height:27px;
    margin-top: 30px;
}
.about_school_data_section .about_school_read_more_button{
    height: 48px;
    width: 170px;
    /* background-color: #002B7F; */
      background: linear-gradient(#0b7e9b, #084252);
    border:none;
    color: #fff;
    font-size: 17px;
    position: relative;
    align-content: center;
    padding-left: 20px;
    cursor: pointer;
    margin-top: 40px;
    transition: all 0.3s;
      border-radius: 50px 50px 50px 0;

}
.about_school_read_more_button i{
  margin-left: 5px;
  font-size: 15px;
  position: absolute;
  top:15px;
  left:125px;
  transition: all 0.3s;
}
.about_school_read_more_button:hover{
  background-color: rgb(47, 58, 201);
}
.about_school_read_more_button:hover i{
  left:133px;
}