/* studio-top-section */
.studio-top-section {
    position: relative;
    /* Ensures child absolute/fixed elements relate to this */
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Prevent horizontal scroll from overflow */

    background-image:
        linear-gradient(to top, black 0px, black 20px, transparent 200px),
        linear-gradient(to right, black 0px, black 20px, transparent 200px),
        url(./images/robo-studio);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.studio-top-content{
    padding: 500px 20px 200px 20px;
    width: 57%;
    margin-left: auto;
    /* Pushes content to the right */
    /* Aligns text and button to the right */
}

/* banner-section */
.banner-section {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Align children (like <p>) to the right */
}

.banner-img {
    width: 100%;
    height: 100vh;
    object-fit: cover; /* Optional: ensures image fills area nicely */
}

.banner-img-topic {
    width: 65%;
    margin: 0;
    font-size: 20px;
    color: #b3b3b3;
    padding: 20px 0px;
    text-align: left; /* Align text inside the paragraph to the right */
}
.banner-grid{
    display: flex;
    gap: 30px;
    padding: 20px 30px;
}
.banner-box{
    width: 25%;
    border-top: 0.5px solid #454545;
    text-align: center;
}
.banner-box-head{
    font-size: 50px;
    padding: 15px 0px;
    color: rgb(214, 214, 214);
    margin: 0;
}
.banner-box-para{
    margin: 0;
    font-size: 20px;
    color: #b3b3b3;
    font-weight: 400;
}
/* award-section */
.award-section {
    padding: 18rem 30px; 
}
.award-header-section{
display: flex;
    justify-content: flex-end;
}

.award-header-portion {
    width: 60%;
}
.award {
    margin: 0;
    font-size: 20px;
    color: #B0B0B0;
}

.award-head {
    margin: 0;
    font-size: 60px;
    color: #b3b3b3;
    line-height: 3.6rem;
    padding: 20px 0px;
}
.award-grid-box{
    padding: 15px 0px;
    display: flex;
}
.award-grid-box-left{
    width: 40%;
}
.award-grid-box-right{
    width: 60%;
    
}
.right-line{
display: flex;
border-bottom: 0.5px solid #4f4f4f;
padding: 10px 0px;
}
.award-content{
    font-size: 28px;
    color: #b8b8b8;
    margin: 0;
    padding: 0;
}
.right-cout{
    width: 35%;
}
.milestone{
   width: 65%;
}
/* team-section */
.team-section{
    padding: 10rem 30px;
    padding-top: 0;
    padding-bottom: 2rem;
}
.team-grid{
    display: flex;
    gap: 20px;
    padding: 25px 0px;
}
.team-box{
    width: 25%;
    text-align: center;
    padding: 10px 10px;
}
.team-img-section {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center; /* Horizontal center */
    align-items: center;     /* Vertical center */
    overflow: hidden;        /* Hide overflow if image is larger */
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes image cover the section proportionally */
}
.team-img-head{
    font-size: 26px;
    color: #cfcfcf;
    margin: 0;
    padding: 8px 0px;
}
.team-icon-grid{
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 10px;
}
.icon-s {
    fill: white;
    width: 25px;
    height: 25px;
}
.icon-s:hover{
    fill: #EF7C00;
}


/* Full-screen divs styling */
.studio-animated-section{
    padding: 10rem 30px;
}
.full-screen-div {
  height: 80vh;
  background-image: url(./images/topic.png);
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* Center button at bottom */
.collab-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background-color: #ffffff10;
  font-size: 18px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  z-index: 10;
  
}

.collab-btn .corner {
  position: absolute;
  width: 8px;
  height: 8px;
 
}

.corner.bl {
  bottom: 0;
  left: 0;
}

.corner.br {
  bottom: 0;
  right: 0;
}
