.landing-page {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
    padding: 6rem 3rem 10rem 3rem;
    clip-path: polygon(7% 0, 100% 0, 100% 87%, 93% 100%, 0 100%, 0% 60%, 0 13%);
    background-color: #ffffff;
    margin: 6rem 1rem 0 1rem !important;
    border-radius: 16px;
    overflow: hidden;
}

#bgVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -100; 
}

.landing-page .left {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    color: #fff;
}

.landing-page .left h1{
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.landing-page .left p{
    font-size: 1.3rem;
}

.left .buttons-container {
    display: flex;
    width: 100%;
    justify-content: start;
    gap: 40px;
}

.left .buttons-container button {
    letter-spacing: 2px;
    text-transform: uppercase;
}

.left .buttons-container .know-more {
    display: inline-block;
    border-radius: 15px;
    padding: 0.7rem 1rem;
    border: 0;
    text-decoration: none;
    background-color: rgb(138, 71, 16);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3.5rem);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

.left .buttons-container .know-more:hover {
    background-color: rgb(134, 72, 15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3.5rem);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: scale(1.1);
}

.landing-page .right {
    display: flex;
    flex-direction: column;
    align-self: start;
    gap: 50px;
}


.landing-page .right .socials-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.landing-page .right .socials-container .socials{
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 100;
}

.landing-page .right .socials-container .socials .icon-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border-radius: 50px;
    transition: 0.2s ease-out;
    cursor: pointer;
    border: none;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.644);
    font-size: 1.2rem;
    padding: 15px;
    overflow: hidden;
}

.landing-page .right .socials-container .abz-icon{
    width: 30px;
}

.landing-page .right .socials-container .abz-icon-a{
    padding: 10px!important;
}

.icn-btn:hover {
    transform: scale(1.2);
    background-color: rgb(255, 255, 255);
}

.landing-page .right .socials i {
    color: #52742c;
}

/* Mobile Styles (up to 767px) */
@media (max-width: 1000px) {
    .landing-page {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 3rem 1.5rem 12rem 1.5rem;
        margin: 6rem 0.5rem 0 0.5rem;
        clip-path: polygon(4% 0, 100% 0, 100% 90%, 96% 100%, 0 100%, 0% 60%, 0 10%);
    }

    .landing-page .left {
        width: 100%;
        text-align: left;
        gap: 2rem;
    }

    .landing-page .left h1 {
        font-size: 3rem;
    }

    .landing-page .left p {
        font-size: 1rem;
    }

    .left .buttons-container {
        justify-content: center;
        gap: 20px;
    }

    .left .buttons-container button {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }

    .landing-page .right {
        align-items: center;
        width: 100%;
        gap: 30px;
    }

    .landing-page .right  .socials-container .socials {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 20px;
        margin-top: 2rem;

    }

  
    .scroll-down{
        display: none;
    }
}

/* Tablet Styles (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .landing-page {
        padding: 4rem 2rem 7rem 2rem;
        margin: 6rem 0.75rem 0 0.75rem;
    }

    .landing-page .left {
        width: 55%;
        gap: 3rem;
    }

    .landing-page .left h1 {
        font-size: 4rem;
    }

    .landing-page .left p {
        font-size: 1.1rem;
    }

    .left .buttons-container {
        gap: 30px;
    }

    .landing-page .right {
        gap: 40px;
    }

    .landing-page .right .socials {
        gap: 25px;
    }

   

    
}

/* Larger Desktop Styles (1200px and up) */
@media (min-width: 1200px) {
    .landing-page {
        padding: 8rem 4rem 12rem 4rem;
        margin: 8rem 2rem 0 2rem;
    }

    .landing-page .left {
        gap: 6rem;
    }

    .landing-page .left h1 {
        font-size: 6rem;
    }

    .landing-page .left p {
        font-size: 1.5rem;
    }

    .left .buttons-container {
        gap: 50px;
    }

    .landing-page .right {
        gap: 60px;
    }

    .landing-page .right .socials {
        gap: 35px;
    }


}