.sec1{
    display:flex;
    align-items:center;
    justify-content: center;
    min-height:90vh;
    gap:60px;
    padding: 40px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.sec-1-1 img{
    width:400px;
    height:400px;
    border-radius:50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sec-1-1 img:hover{
    transform: scale(1.05);
}

.sec-1-2{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.sec-1-2-1{
    font-weight:600;
}

h1{
    font-size:50px;
    color:darkorange;
}

.sec-1-2-3{
    font-weight:600;
    font-size:20px;
}

p{
    font-size:18px;
    width:90%;
    line-height: 1.8;
    color: #333;
}

.btns{
    display:flex;
    gap:20px;
    margin-top:20px;
}
.btns>:nth-child(1){
  padding:12px 28px;
  font-size:16px;
  font-weight:600;
  background-color: transparent;
  border-radius: 30px;
  border:2px solid black;
  transition: all 0.3s ease;
  cursor:pointer;
  text-decoration: none;
  display: inline-block;
}
.btns>:nth-child(1):hover{
    background-color: black;
    color:white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btns>:nth-child(2){
    padding:12px 28px;
    background-color: black;
    color:white;
    font-size:16px;
    font-weight:600;
    border-radius: 30px;
    border:2px solid black;
    transition:all 0.3s;
    cursor:pointer;
}
.btns>:nth-child(2):hover{
    color:white;
    border-color:darkorange;
    background-color:darkorange;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,140,0,0.3);
}

.social{
    display:flex;
    gap:20px;
}

.social a{
    font-size:2.5rem;
    transition: all 0.3s;
    cursor:pointer;
    color: black;
}

.social a:hover{
    transform:translateY(-3px);
    color:darkorange;
}



@media(max-width:1024px){
    .sec1{
        flex-direction: column;
        min-height:100%;
        padding: 60px 5% 50px;
    }

    p{
        width:85%;
        text-align:center;
    }

    .sec-1-1 img{
        width:380px;
        height:380px;
    }

    .sec-1-2{
       align-items:center;
       text-align: center;
    }
}

@media(max-width:767px){
    .sec1{
        flex-direction: column;
        padding: 80px 5% 40px;
    }

    h1{
        font-size:40px;
    }

    p{
        width:95%;
        text-align:center;
        font-size: 16px;
    }

    .sec-1-1 img{
        width:280px;
        height:280px;
    }

    .sec-1-2{
       align-items:center;
    }

    .btns{
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .btns>:nth-child(1),
    .btns>:nth-child(2){
        width: 100%;
        max-width: 250px;
    }
}





