* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Futura PT', sans-serif;

}

.section-3d {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.section-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures proper image scaling */
    object-position: center; /* Centers the image */
    display: block;
}

.section-3d::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Overlay darkness */
    z-index: 1;
}

.section-3d .top-left,
.section-3d .bottom-right {
    position: absolute;
    z-index: 2;
    color: white;
}

.top-left {
    top: 20px;
    left: 30px;
    text-align: left;
}

.top-left h2 {
    font-size: 26px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: white;
    line-height: 1.2;
}

.top-left .see-more-btn {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 8px 24px;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 16px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.top-left .see-more-btn:hover {
    background: white;
    color: black;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .top-left h2 {
        font-size: 22px;
    }
    
    .top-left .see-more-btn {
        font-size: 14px;
        padding: 7px 20px;
    }
    
    .top-left {
        left: 25px;
        top: 18px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-3d {
        height: 70vh; /* Reduce height on mobile for better proportion */
        min-height: 400px; /* Ensure minimum height */
    }
    
    .section-3d img {
        object-fit: cover;
        object-position: center center;
    }
    
    .top-left h2 {
        font-size: 18px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .top-left .see-more-btn,
    .bottom-right .call-btn {
        padding: 6px 16px;
        font-size: 13px;
        border-radius: 3px;
    }

    .top-left {
        left: 15px;
        top: 15px;
    }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    .section-3d {
        height: 60vh;
        min-height: 350px;
    }
    
    .top-left h2 {
        font-size: 16px;
        margin-bottom: 6px;
        max-width: calc(100vw - 30px); /* Prevent text overflow */
        word-wrap: break-word;
    }

    .top-left .see-more-btn {
        padding: 5px 12px;
        font-size: 12px;
        min-width: 80px; /* Ensure button is touchable */
        text-align: center;
    }

    .top-left {
        left: 10px;
        top: 12px;
        right: 10px; /* Add right margin */
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .section-3d {
        height: 55vh;
        min-height: 300px;
    }
    
    .top-left h2 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .top-left .see-more-btn {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .top-left {
        left: 8px;
        top: 10px;
        right: 8px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .section-3d {
        height: 100vh; /* Full height in landscape */
    }
    
    .top-left h2 {
        font-size: 16px;
    }
    
    .top-left .see-more-btn {
        font-size: 12px;
        padding: 5px 14px;
    }
}