.landing-page{
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    background-image: url('../assets/images/landing3.jpeg');
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.landing-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.landing-page .top-div{
    height: 100%;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    padding: 0 80px 80px 80px;
}

.landing-page .top-div .left{
    height: auto;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 500px;
}

.landing-page .top-div .left .bullet-points {
    display: flex;
    gap: 24px;
    margin-bottom: 8px;
}

.landing-page .top-div .left .bullet-item {
    font-family: "Inter Tight", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.landing-page .top-div .left .bullet-item:nth-child(1) {
    animation-delay: 0.1s;
}

.landing-page .top-div .left .bullet-item:nth-child(2) {
    animation-delay: 0.2s;
}

.landing-page .top-div .left .bullet-item:nth-child(3) {
    animation-delay: 0.3s;
}

.landing-page .top-div .left .main-heading {
    font-family: "Inter Tight", sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
    line-height: 1.3;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.landing-page .top-div .left .subtext {
    font-family: "Inter Tight", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    text-align: left;
    line-height: 29px;
    letter-spacing: 1px;
    max-width: 500px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}



.landing-page .top-div .left .monitor-btn {
    background: transparent;
    color: white;
    border: none;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.landing-page .top-div .left .monitor-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: white;
    transform-origin: left;
    transition: transform 0.3s ease;
}

.landing-page .top-div .left .monitor-btn:hover {
    transform: translateX(5px);
    font-style: italic;
}

.landing-page .top-div .left .monitor-btn:hover::after {
    transform: scaleX(0);
}

.landing-page .top-div .left .monitor-btn:hover .btn-arrow {
    transform: translateX(20px);
}

.landing-page .top-div .left .monitor-btn .btn-arrow {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.landing-page .top-div .right{
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    color: white;
    justify-content: space-between;
    align-items: end;
    text-align: center;
    max-width: 550px;
}

.landing-page .top-div .right .main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.landing-page .top-div .right h1 {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    line-height: 60px;
    color: #ffffff;
    text-align: right;
    letter-spacing: 0px;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.landing-page .top-div .right h1 .blue-text {
    background: linear-gradient(135deg, #2e7eff 0%, #00d4ff 50%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-page .top-div .right .scrolling-text {
    margin-top: 0;
    margin-bottom: 20px;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.2s;
    position: relative;
    width: 100%;
    mask: linear-gradient(90deg, transparent 0%, white 15%, white 85%, transparent 100%);
    -webkit-mask: linear-gradient(90deg, transparent 0%, white 15%, white 85%, transparent 100%);
}

.landing-page .top-div .right .scrolling-text::before,
.landing-page .top-div .right .scrolling-text::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
    backdrop-filter: blur(3px);
}

.landing-page .top-div .right .scrolling-text::before {
    left: 0;
}

.landing-page .top-div .right .scrolling-text::after {
    right: 0;
}

.landing-page .top-div .right .scrolling-text .scroll-content {
    display: inline-block;
    animation: scroll-left 20s linear infinite;
    width: max-content;
}

.landing-page .top-div .right .scrolling-text span {
    font-family: "Inter Tight", sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-right: 3rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}







@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .landing-page .top-div {
        padding: 0 60px 60px 60px;
    }
    
    .landing-page .top-div .right h1 {
        font-size: 55px;
        line-height: 65px;
    }
    
    .landing-page .top-div .left .subtext {
        font-size: 22px;
        line-height: 27px;
    }
}

@media (max-width: 1200px) {
    .landing-page .top-div {
        padding: 0 50px 50px 50px;
    }
    
    .landing-page .top-div .right h1 {
        font-size: 48px;
        line-height: 58px;
    }
    
    .landing-page .top-div .left .subtext {
        font-size: 20px;
        line-height: 25px;
        max-width: 450px;
    }
    
    .landing-page .top-div .left .main-heading {
        font-size: 1.6rem;
    }
    
    .landing-page .top-div .left .bullet-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .landing-page {
        background-attachment: scroll;
    }
    
    .landing-page .top-div {
        padding: 0 40px 40px 40px;
        gap: 30px;
    }
    
    .landing-page .top-div .right h1 {
        font-size: 42px;
        line-height: 50px;
    }
    
    .landing-page .top-div .left .subtext {
        font-size: 18px;
        line-height: 23px;
        max-width: 400px;
    }
    
    .landing-page .top-div .left .main-heading {
        font-size: 1.5rem;
    }
    
    .landing-page .top-div .right .scrolling-text {
        margin-top: 0;
    }
    
    .landing-page .top-div .right .scrolling-text span {
        font-size: 0.8rem;
        margin-right: 2.5rem;
    }
}

@media (max-width: 768px) {
    .landing-page .top-div {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        padding: 0 25px 25px 25px;
        text-align: center;
    }
    
    .landing-page .top-div .left,
    .landing-page .top-div .right {
        max-width: 100%;
        align-items: center;
        justify-content: center;
    }
    
    .landing-page .top-div .left {
        order: 2;
    }
    
    .landing-page .top-div .right {
        order: 1;
    }
    
    .landing-page .top-div .right h1 {
        font-size: 42px;
        line-height: 48px;
        text-align: center;
    }
    
    .landing-page .top-div .left .subtext {
        font-size: 18px;
        line-height: 24px;
        max-width: 400px;
        text-align: center;
    }
    
    .landing-page .top-div .left .main-heading {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .landing-page .top-div .left .bullet-points {
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
    }
    
    .landing-page .top-div .left .bullet-item {
        font-size: 1rem;
    }
    
    .landing-page .top-div .left .monitor-btn {
        align-self: center;
        font-size: 1rem;
    }
    
    .landing-page .top-div .right .scrolling-text {
        margin-top: 0;
    }
    
    .landing-page .top-div .right .scrolling-text span {
        font-size: 0.85rem;
        margin-right: 2rem;
    }
}

@media (max-width: 640px) {
    .landing-page .top-div {
        padding: 0 20px 20px 20px;
        gap: 20px;
    }
    
    .landing-page .top-div .right h1 {
        font-size: 36px;
        line-height: 42px;
    }
    
    .landing-page .top-div .left .subtext {
        font-size: 17px;
        line-height: 23px;
        max-width: 350px;
    }
    
    .landing-page .top-div .left .main-heading {
        font-size: 1.4rem;
    }
    
    .landing-page .top-div .left .bullet-item {
        font-size: 0.95rem;
    }
    
    .landing-page .top-div .left .monitor-btn {
        font-size: 1.1rem;
        padding: 16px 0;
        gap: 12px;
    }
    
    .landing-page .top-div .left .monitor-btn .btn-arrow {
        width: 32px;
        height: 32px;
    }
    
    .landing-page .top-div .right .scrolling-text {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .landing-page .top-div {
        padding: 0 18px 18px 18px;
        gap: 18px;
    }
    
    .landing-page .top-div .right h1 {
        font-size: 32px;
        line-height: 38px;
    }
    
    .landing-page .top-div .left .subtext {
        font-size: 16px;
        line-height: 22px;
        max-width: 320px;
    }
    
    .landing-page .top-div .left .main-heading {
        font-size: 1.3rem;
    }
    
    .landing-page .top-div .left .bullet-points {
        gap: 15px;
    }
    
    .landing-page .top-div .left .bullet-item {
        font-size: 0.9rem;
    }
    
    .landing-page .top-div .left .monitor-btn {
        font-size: 1.05rem;
        padding: 15px 0;
        gap: 10px;
    }
    
    .landing-page .top-div .left .monitor-btn .btn-arrow {
        width: 30px;
        height: 30px;
    }
    
    .landing-page .top-div .right .scrolling-text {
        margin-top: 0;
    }
    
    .landing-page .top-div .right .scrolling-text span {
        font-size: 0.8rem;
        margin-right: 1.8rem;
    }
}

@media (max-width: 360px) {
    .landing-page .top-div {
        padding: 0 15px 15px 15px;
        gap: 15px;
    }
    
    .landing-page .top-div .right h1 {
        font-size: 28px;
        line-height: 34px;
    }
    
    .landing-page .top-div .left .subtext {
        font-size: 15px;
        line-height: 21px;
        max-width: 300px;
    }
    
    .landing-page .top-div .left .main-heading {
        font-size: 1.2rem;
    }
    
    .landing-page .top-div .left .bullet-item {
        font-size: 0.85rem;
    }
    
    .landing-page .top-div .left .monitor-btn {
        font-size: 1rem;
        padding: 14px 0;
        gap: 10px;
    }
    
    .landing-page .top-div .left .monitor-btn .btn-arrow {
        width: 28px;
        height: 28px;
    }
    
    .landing-page .top-div .right .scrolling-text {
        margin-top: 0;
    }
    
    .landing-page .top-div .right .scrolling-text span {
        font-size: 0.75rem;
        margin-right: 1.5rem;
    }
}

